public class it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap<V> extends it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceMap<V> 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.longs.Long2ReferenceOpenHashMap
  super_class: it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceMap
{
  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 long[] key;
    descriptor: [J
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient V[] value;
    descriptor: [Ljava/lang/Object;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT
    Signature: [TV;

  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 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.longs.Long2ReferenceMap$FastEntrySet<V> entries;
    descriptor: Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT
    Signature: Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet<TV;>;

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

  protected transient it.unimi.dsi.fastutil.objects.ReferenceCollection<V> values;
    descriptor: Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT
    Signature: Lit/unimi/dsi/fastutil/objects/ReferenceCollection<TV;>;

  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.longs.Long2ReferenceOpenHashMap this
        start local 1 // int expected
        start local 2 // float f
         0: .line 98
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceMap.<init>:()V
         1: .line 99
            fload 2 /* f */
            fconst_0
            fcmpg
            ifle 2
            fload 2 /* f */
            fconst_1
            fcmpl
            ifle 3
         2: .line 100
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap 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
         3: .line 101
      StackMap locals:
      StackMap stack:
            iload 1 /* expected */
            ifge 5
         4: .line 102
            new java.lang.IllegalArgumentException
            dup
            ldc "The expected number of elements must be nonnegative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* f */
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
         6: .line 104
            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.longs.Long2ReferenceOpenHashMap.n:I
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.minN:I
         7: .line 105
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
         8: .line 106
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            fload 2 /* f */
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.maxFill:I
         9: .line 107
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
        10: .line 108
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            iadd
            anewarray java.lang.Object
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
        11: .line 109
            return
        end local 2 // float f
        end local 1 // int expected
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   12     1  expected  I
            0   12     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.longs.Long2ReferenceOpenHashMap this
        start local 1 // int expected
         0: .line 117
            aload 0 /* this */
            iload 1 /* expected */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.<init>:(IF)V
         1: .line 118
            return
        end local 1 // int expected
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            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.longs.Long2ReferenceOpenHashMap this
         0: .line 125
            aload 0 /* this */
            bipush 16
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.<init>:(IF)V
         1: .line 126
            return
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;

  public void <init>(java.util.Map<? extends java.lang.Long, ? extends V>, );
    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.longs.Long2ReferenceOpenHashMap this
        start local 1 // java.util.Map m
        start local 2 // float f
         0: .line 136
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            fload 2 /* f */
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.<init>:(IF)V
         1: .line 137
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.putAll:(Ljava/util/Map;)V
         2: .line 138
            return
        end local 2 // float f
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    3     1     m  Ljava/util/Map<+Ljava/lang/Long;+TV;>;
            0    3     2     f  F
    Signature: (Ljava/util/Map<+Ljava/lang/Long;+TV;>;F)V
    MethodParameters:
      Name  Flags
      m     final
      f     final

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

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

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

  public void <init>(long[], V[], );
    descriptor: ([J[Ljava/lang/Object;F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long[] k
        start local 2 // java.lang.Object[] v
        start local 3 // float f
         0: .line 184
            aload 0 /* this */
            aload 1 /* k */
            arraylength
            fload 3 /* f */
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.<init>:(IF)V
         1: .line 185
            aload 1 /* k */
            arraylength
            aload 2 /* v */
            arraylength
            if_icmpeq 5
         2: .line 186
            new java.lang.IllegalArgumentException
            dup
         3: .line 187
            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 186
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 188
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap long[] java.lang.Object[] float
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 189
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* k */
            iload 4 /* i */
            laload
            aload 2 /* v */
            iload 4 /* i */
            aaload
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 188
            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 190
            return
        end local 3 // float f
        end local 2 // java.lang.Object[] v
        end local 1 // long[] k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   11     1     k  [J
            0   11     2     v  [Ljava/lang/Object;
            0   11     3     f  F
            6   10     4     i  I
    Signature: ([J[TV;F)V
    MethodParameters:
      Name  Flags
      k     final
      v     final
      f     final

  public void <init>(long[], );
    descriptor: ([J[Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long[] k
        start local 2 // java.lang.Object[] v
         0: .line 203
            aload 0 /* this */
            aload 1 /* k */
            aload 2 /* v */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.<init>:([J[Ljava/lang/Object;F)V
         1: .line 204
            return
        end local 2 // java.lang.Object[] v
        end local 1 // long[] k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    2     1     k  [J
            0    2     2     v  [Ljava/lang/Object;
    Signature: ([J[TV;)V
    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.longs.Long2ReferenceOpenHashMap this
         0: .line 206
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            iconst_1
            isub
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;

  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.longs.Long2ReferenceOpenHashMap this
        start local 1 // int capacity
         0: .line 209
            iload 1 /* capacity */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            istore 2 /* needed */
        start local 2 // int needed
         1: .line 210
            iload 2 /* needed */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            if_icmple 3
         2: .line 211
            aload 0 /* this */
            iload 2 /* needed */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.rehash:(I)V
         3: .line 212
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int needed
        end local 1 // int capacity
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            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.longs.Long2ReferenceOpenHashMap this
        start local 1 // long capacity
         0: .line 214
            ldc 1073741824
         1: .line 215
            ldc 2
            lload 1 /* capacity */
            l2f
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.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 214
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 3 /* needed */
        start local 3 // int needed
         3: .line 216
            iload 3 /* needed */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            if_icmple 5
         4: .line 217
            aload 0 /* this */
            iload 3 /* needed */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.rehash:(I)V
         5: .line 218
      StackMap locals: int
      StackMap stack:
            return
        end local 3 // int needed
        end local 1 // long capacity
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    6     1  capacity  J
            3    6     3    needed  I
    MethodParameters:
          Name  Flags
      capacity  final

  private V removeEntry();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // int pos
         0: .line 220
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 1 /* pos */
            aaload
            astore 2 /* oldValue */
        start local 2 // java.lang.Object oldValue
         1: .line 221
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 1 /* pos */
            aconst_null
            aastore
         2: .line 222
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
         3: .line 223
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.shiftKeys:(I)V
         4: .line 224
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.minN:I
            if_icmple 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            bipush 16
            if_icmple 6
         5: .line 225
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.rehash:(I)V
         6: .line 226
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* oldValue */
            areturn
        end local 2 // java.lang.Object oldValue
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    7     1       pos  I
            1    7     2  oldValue  TV;
    Signature: (I)TV;
    MethodParameters:
      Name  Flags
      pos   final

  private V removeNullEntry();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
         0: .line 229
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
         1: .line 230
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            astore 1 /* oldValue */
        start local 1 // java.lang.Object oldValue
         2: .line 231
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aconst_null
            aastore
         3: .line 232
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
         4: .line 233
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.minN:I
            if_icmple 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            bipush 16
            if_icmple 6
         5: .line 234
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.rehash:(I)V
         6: .line 235
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* oldValue */
            areturn
        end local 1 // java.lang.Object oldValue
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            2    7     1  oldValue  TV;
    Signature: ()TV;

  public void putAll(java.util.Map<? extends java.lang.Long, ? extends V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // java.util.Map m
         0: .line 239
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            f2d
            ldc 0.5
            dcmpg
            ifgt 2
         1: .line 240
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.ensureCapacity:(I)V
            goto 3
         2: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:()I
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            iadd
            i2l
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.tryCapacity:(J)V
         3: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* m */
            invokespecial it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceMap.putAll:(Ljava/util/Map;)V
         4: .line 245
            return
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    5     1     m  Ljava/util/Map<+Ljava/lang/Long;+TV;>;
    Signature: (Ljava/util/Map<+Ljava/lang/Long;+TV;>;)V
    MethodParameters:
      Name  Flags
      m     

  private int find(long);
    descriptor: (J)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
         0: .line 248
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 249
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            iadd
            ineg
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         5: .line 254
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         6: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 255
            iload 6 /* pos */
            iconst_1
            iadd
            ineg
            ireturn
         9: .line 256
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        10: .line 257
            iload 6 /* pos */
            ireturn
        11: .line 260
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 261
            iload 6 /* pos */
            iconst_1
            iadd
            ineg
            ireturn
        13: .line 262
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        14: .line 263
            iload 6 /* pos */
            ireturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   15     1     k  J
            7   15     3  curr  J
            5   15     5   key  [J
            6   15     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  private void insert(int, long, );
    descriptor: (IJLjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // int pos
        start local 2 // long k
        start local 4 // java.lang.Object v
         0: .line 267
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            if_icmpne 2
         1: .line 268
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
         2: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            iload 1 /* pos */
            lload 2 /* k */
            lastore
         3: .line 270
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 1 /* pos */
            aload 4 /* v */
            aastore
         4: .line 271
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.maxFill:I
            if_icmplt 6
         5: .line 272
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.rehash:(I)V
         6: .line 275
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.Object v
        end local 2 // long k
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    7     1   pos  I
            0    7     2     k  J
            0    7     4     v  TV;
    Signature: (IJTV;)V
    MethodParameters:
      Name  Flags
      pos   final
      k     final
      v     final

  public V put(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object v
         0: .line 278
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         1: .line 279
            iload 4 /* pos */
            ifge 4
         2: .line 280
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            aload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.insert:(IJLjava/lang/Object;)V
         3: .line 281
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         4: .line 283
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aaload
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
         5: .line 284
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aload 3 /* v */
            aastore
         6: .line 285
            aload 5 /* oldValue */
            areturn
        end local 5 // java.lang.Object oldValue
        end local 4 // int pos
        end local 3 // java.lang.Object v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    7     1         k  J
            0    7     3         v  TV;
            1    7     4       pos  I
            5    7     5  oldValue  TV;
    Signature: (JTV;)TV;
    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=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // int pos
         0: .line 298
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 6 /* key */
        start local 6 // long[] key
         1: .line 300
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int top top top top long[]
      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.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            istore 1 /* pos */
         3: .line 302
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int int top top top long[]
      StackMap stack:
            aload 6 /* key */
            iload 1 /* pos */
            laload
            dup2
            lstore 4 /* curr */
        start local 4 // long curr
         4: lconst_0
            lcmp
            ifne 8
         5: .line 303
            aload 6 /* key */
            iload 2 /* last */
            lconst_0
            lastore
         6: .line 304
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 2 /* last */
            aconst_null
            aastore
         7: .line 305
            return
         8: .line 307
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int int top long long[]
      StackMap stack:
            lload 4 /* curr */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            istore 3 /* slot */
        start local 3 // int slot
         9: .line 308
            iload 2 /* last */
            iload 1 /* pos */
            if_icmpgt 10
            iload 2 /* last */
            iload 3 /* slot */
            if_icmpge 14
            iload 3 /* slot */
            iload 1 /* pos */
            if_icmple 12
            goto 14
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int int int long long[]
      StackMap stack:
        10: iload 2 /* last */
            iload 3 /* slot */
            if_icmplt 12
            iload 3 /* slot */
            iload 1 /* pos */
            if_icmple 12
        11: .line 309
            goto 14
        12: .line 310
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            istore 1 /* pos */
        end local 4 // long curr
        end local 3 // int slot
        13: .line 301
            goto 3
        start local 3 // int slot
        start local 4 // long curr
        14: .line 312
      StackMap locals:
      StackMap stack:
            aload 6 /* key */
            iload 2 /* last */
            lload 4 /* curr */
            lastore
        15: .line 313
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 2 /* last */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 1 /* pos */
            aaload
            aastore
        end local 4 // long curr
        end local 3 // int slot
        end local 2 // int last
        16: .line 299
            goto 1
        end local 6 // long[] key
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   17     1   pos  I
            2   16     2  last  I
            9   13     3  slot  I
           14   16     3  slot  I
            4   13     4  curr  J
           14   16     4  curr  J
            1   17     6   key  [J
    MethodParameters:
      Name  Flags
      pos   

  public V remove();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
         0: .line 319
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 320
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 3
         2: .line 321
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeNullEntry:()Ljava/lang/Object;
            areturn
         3: .line 322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         4: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         5: .line 328
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         6: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 329
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         9: .line 330
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        10: .line 331
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            areturn
        11: .line 333
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 334
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
        13: .line 335
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        14: .line 336
            aload 0 /* this */
            iload 6 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            areturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   15     1     k  J
            7   15     3  curr  J
            5   15     5   key  [J
            6   15     6   pos  I
    Signature: (J)TV;
    MethodParameters:
      Name  Flags
      k     final

  public V get();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
         0: .line 342
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 343
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
         4: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         5: .line 348
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         6: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 349
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         9: .line 350
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        10: .line 351
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 6 /* pos */
            aaload
            areturn
        11: .line 354
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 355
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
        13: .line 356
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 11
        14: .line 357
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 6 /* pos */
            aaload
            areturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   15     1     k  J
            7   15     3  curr  J
            5   15     5   key  [J
            6   15     6   pos  I
    Signature: (J)TV;
    MethodParameters:
      Name  Flags
      k     final

  public boolean containsKey(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
         0: .line 363
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 2
         1: .line 364
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ireturn
         2: .line 366
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 5 /* key */
        start local 5 // long[] key
         3: .line 369
            aload 5 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
        start local 6 // int pos
         4: laload
            dup2
            lstore 3 /* curr */
        start local 3 // long curr
         5: lconst_0
            lcmp
            ifne 7
         6: .line 370
            iconst_0
            ireturn
         7: .line 371
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 9
         8: .line 372
            iconst_1
            ireturn
         9: .line 375
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 6 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 6 /* pos */
            laload
            dup2
            lstore 3 /* curr */
            lconst_0
            lcmp
            ifne 11
        10: .line 376
            iconst_0
            ireturn
        11: .line 377
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 3 /* curr */
            lcmp
            ifne 9
        12: .line 378
            iconst_1
            ireturn
        end local 6 // int pos
        end local 5 // long[] key
        end local 3 // long curr
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   13     1     k  J
            5   13     3  curr  J
            3   13     5   key  [J
            4   13     6   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // java.lang.Object v
         0: .line 383
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            astore 2 /* value */
        start local 2 // java.lang.Object[] value
         1: .line 384
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 3 /* key */
        start local 3 // long[] key
         2: .line 385
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 4
            aload 2 /* value */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            aload 1 /* v */
            if_acmpne 4
         3: .line 386
            iconst_1
            ireturn
         4: .line 387
      StackMap locals: java.lang.Object[] long[]
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            istore 4 /* i */
        start local 4 // int i
         5: goto 8
         6: .line 388
      StackMap locals: int
      StackMap stack:
            aload 3 /* key */
            iload 4 /* i */
            laload
            lconst_0
            lcmp
            ifeq 8
            aload 2 /* value */
            iload 4 /* i */
            aaload
            aload 1 /* v */
            if_acmpne 8
         7: .line 389
            iconst_1
            ireturn
         8: .line 387
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iinc 4 /* i */ -1
            ifne 6
        end local 4 // int i
         9: .line 390
            iconst_0
            ireturn
        end local 3 // long[] key
        end local 2 // java.lang.Object[] value
        end local 1 // java.lang.Object v
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   10     1      v  Ljava/lang/Object;
            1   10     2  value  [Ljava/lang/Object;
            2   10     3    key  [J
            5    9     4      i  I
    MethodParameters:
      Name  Flags
      v     final

  public V getOrDefault(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object defaultValue
         0: .line 396
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 4
         1: .line 397
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 3 /* defaultValue */
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
         4: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 6 /* key */
        start local 6 // long[] key
         5: .line 402
            aload 6 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 7 /* pos */
        start local 7 // int pos
         6: laload
            dup2
            lstore 4 /* curr */
        start local 4 // long curr
         7: lconst_0
            lcmp
            ifne 9
         8: .line 403
            aload 3 /* defaultValue */
            areturn
         9: .line 404
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 4 /* curr */
            lcmp
            ifne 11
        10: .line 405
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 7 /* pos */
            aaload
            areturn
        11: .line 408
      StackMap locals:
      StackMap stack:
            aload 6 /* key */
            iload 7 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 7 /* pos */
            laload
            dup2
            lstore 4 /* curr */
            lconst_0
            lcmp
            ifne 13
        12: .line 409
            aload 3 /* defaultValue */
            areturn
        13: .line 410
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 4 /* curr */
            lcmp
            ifne 11
        14: .line 411
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 7 /* pos */
            aaload
            areturn
        end local 7 // int pos
        end local 6 // long[] key
        end local 4 // long curr
        end local 3 // java.lang.Object defaultValue
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   15     1             k  J
            0   15     3  defaultValue  TV;
            7   15     4          curr  J
            5   15     6           key  [J
            6   15     7           pos  I
    Signature: (JTV;)TV;
    MethodParameters:
              Name  Flags
      k             final
      defaultValue  final

  public V putIfAbsent(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object v
         0: .line 417
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         1: .line 418
            iload 4 /* pos */
            iflt 3
         2: .line 419
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aaload
            areturn
         3: .line 420
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            aload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.insert:(IJLjava/lang/Object;)V
         4: .line 421
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
        end local 4 // int pos
        end local 3 // java.lang.Object v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    5     1     k  J
            0    5     3     v  TV;
            1    5     4   pos  I
    Signature: (JTV;)TV;
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean remove(long, java.lang.Object);
    descriptor: (JLjava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object v
         0: .line 427
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 5
         1: .line 428
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 4
            aload 3 /* v */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            if_acmpne 4
         2: .line 429
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeNullEntry:()Ljava/lang/Object;
            pop
         3: .line 430
            iconst_1
            ireturn
         4: .line 432
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         5: .line 435
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 6 /* key */
        start local 6 // long[] key
         6: .line 438
            aload 6 /* key */
            lload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 7 /* pos */
        start local 7 // int pos
         7: laload
            dup2
            lstore 4 /* curr */
        start local 4 // long curr
         8: lconst_0
            lcmp
            ifne 10
         9: .line 439
            iconst_0
            ireturn
        10: .line 440
      StackMap locals: long long[] int
      StackMap stack:
            lload 1 /* k */
            lload 4 /* curr */
            lcmp
            ifne 13
            aload 3 /* v */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 7 /* pos */
            aaload
            if_acmpne 13
        11: .line 441
            aload 0 /* this */
            iload 7 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            pop
        12: .line 442
            iconst_1
            ireturn
        13: .line 445
      StackMap locals:
      StackMap stack:
            aload 6 /* key */
            iload 7 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            dup
            istore 7 /* pos */
            laload
            dup2
            lstore 4 /* curr */
            lconst_0
            lcmp
            ifne 15
        14: .line 446
            iconst_0
            ireturn
        15: .line 447
      StackMap locals:
      StackMap stack:
            lload 1 /* k */
            lload 4 /* curr */
            lcmp
            ifne 13
            aload 3 /* v */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 7 /* pos */
            aaload
            if_acmpne 13
        16: .line 448
            aload 0 /* this */
            iload 7 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            pop
        17: .line 449
            iconst_1
            ireturn
        end local 7 // int pos
        end local 6 // long[] key
        end local 4 // long curr
        end local 3 // java.lang.Object v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   18     1     k  J
            0   18     3     v  Ljava/lang/Object;
            8   18     4  curr  J
            6   18     6   key  [J
            7   18     7   pos  I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean replace(long, V, );
    descriptor: (JLjava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object oldValue
        start local 4 // java.lang.Object v
         0: .line 456
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 5 /* pos */
        start local 5 // int pos
         1: .line 457
            iload 5 /* pos */
            iflt 2
            aload 3 /* oldValue */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 5 /* pos */
            aaload
            if_acmpeq 3
         2: .line 458
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
         3: .line 459
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 5 /* pos */
            aload 4 /* v */
            aastore
         4: .line 460
            iconst_1
            ireturn
        end local 5 // int pos
        end local 4 // java.lang.Object v
        end local 3 // java.lang.Object oldValue
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    5     1         k  J
            0    5     3  oldValue  TV;
            0    5     4         v  TV;
            1    5     5       pos  I
    Signature: (JTV;TV;)Z
    MethodParameters:
          Name  Flags
      k         final
      oldValue  final
      v         final

  public V replace(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object v
         0: .line 465
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         1: .line 466
            iload 4 /* pos */
            ifge 3
         2: .line 467
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         3: .line 468
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aaload
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
         4: .line 469
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aload 3 /* v */
            aastore
         5: .line 470
            aload 5 /* oldValue */
            areturn
        end local 5 // java.lang.Object oldValue
        end local 4 // int pos
        end local 3 // java.lang.Object v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    6     1         k  J
            0    6     3         v  TV;
            1    6     4       pos  I
            4    6     5  oldValue  TV;
    Signature: (JTV;)TV;
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public V computeIfAbsent(long, java.util.function.LongFunction<? extends V>);
    descriptor: (JLjava/util/function/LongFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.LongFunction mappingFunction
         0: .line 475
            aload 3 /* mappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 476
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 477
            iload 4 /* pos */
            iflt 4
         3: .line 478
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aaload
            areturn
         4: .line 479
      StackMap locals: int
      StackMap stack:
            aload 3 /* mappingFunction */
            lload 1 /* k */
            invokeinterface java.util.function.LongFunction.apply:(J)Ljava/lang/Object;
            astore 5 /* newValue */
        start local 5 // java.lang.Object newValue
         5: .line 480
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            aload 5 /* newValue */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.insert:(IJLjava/lang/Object;)V
         6: .line 481
            aload 5 /* newValue */
            areturn
        end local 5 // java.lang.Object newValue
        end local 4 // int pos
        end local 3 // java.util.function.LongFunction mappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0    7     1                k  J
            0    7     3  mappingFunction  Ljava/util/function/LongFunction<+TV;>;
            2    7     4              pos  I
            5    7     5         newValue  TV;
    Signature: (JLjava/util/function/LongFunction<+TV;>;)TV;
    MethodParameters:
                 Name  Flags
      k                final
      mappingFunction  final

  public V computeIfPresent(long, java.util.function.BiFunction<? super java.lang.Long, ? super V, ? extends V>);
    descriptor: (JLjava/util/function/BiFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.BiFunction remappingFunction
         0: .line 487
            aload 3 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 488
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 489
            iload 4 /* pos */
            ifge 4
         3: .line 490
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         4: .line 491
      StackMap locals: int
      StackMap stack:
            aload 3 /* remappingFunction */
            lload 1 /* k */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aaload
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* newValue */
        start local 5 // java.lang.Object newValue
         5: .line 492
            aload 5 /* newValue */
            ifnonnull 10
         6: .line 493
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 8
         7: .line 494
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeNullEntry:()Ljava/lang/Object;
            pop
            goto 9
         8: .line 496
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            pop
         9: .line 497
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
        10: .line 499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aload 5 /* newValue */
            dup_x2
            aastore
            areturn
        end local 5 // java.lang.Object newValue
        end local 4 // int pos
        end local 3 // java.util.function.BiFunction remappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   11     0               this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   11     1                  k  J
            0   11     3  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Long;-TV;+TV;>;
            2   11     4                pos  I
            5   11     5           newValue  TV;
    Signature: (JLjava/util/function/BiFunction<-Ljava/lang/Long;-TV;+TV;>;)TV;
    MethodParameters:
                   Name  Flags
      k                  final
      remappingFunction  final

  public V compute(long, java.util.function.BiFunction<? super java.lang.Long, ? super V, ? extends V>);
    descriptor: (JLjava/util/function/BiFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.util.function.BiFunction remappingFunction
         0: .line 505
            aload 3 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 506
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 507
            aload 3 /* remappingFunction */
            lload 1 /* k */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            iload 4 /* pos */
            iflt 3
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aaload
            goto 4
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap long java.util.function.BiFunction int
      StackMap stack: java.util.function.BiFunction java.lang.Long
         3: aconst_null
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap long java.util.function.BiFunction int
      StackMap stack: java.util.function.BiFunction java.lang.Long java.lang.Object
         4: invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* newValue */
        start local 5 // java.lang.Object newValue
         5: .line 508
            aload 5 /* newValue */
            ifnonnull 11
         6: .line 509
            iload 4 /* pos */
            iflt 10
         7: .line 510
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 9
         8: .line 511
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeNullEntry:()Ljava/lang/Object;
            pop
            goto 10
         9: .line 513
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            pop
        10: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
        11: .line 517
      StackMap locals:
      StackMap stack:
            aload 5 /* newValue */
            astore 6 /* newVal */
        start local 6 // java.lang.Object newVal
        12: .line 518
            iload 4 /* pos */
            ifge 15
        13: .line 519
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            aload 6 /* newVal */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.insert:(IJLjava/lang/Object;)V
        14: .line 520
            aload 6 /* newVal */
            areturn
        15: .line 522
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 4 /* pos */
            aload 6 /* newVal */
            dup_x2
            aastore
            areturn
        end local 6 // java.lang.Object newVal
        end local 5 // java.lang.Object newValue
        end local 4 // int pos
        end local 3 // java.util.function.BiFunction remappingFunction
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   16     0               this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   16     1                  k  J
            0   16     3  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Long;-TV;+TV;>;
            2   16     4                pos  I
            5   16     5           newValue  TV;
           12   16     6             newVal  TV;
    Signature: (JLjava/util/function/BiFunction<-Ljava/lang/Long;-TV;+TV;>;)TV;
    MethodParameters:
                   Name  Flags
      k                  final
      remappingFunction  final

  public V merge(long, V, java.util.function.BiFunction<? super V, ? super V, ? extends V>);
    descriptor: (JLjava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // long k
        start local 3 // java.lang.Object v
        start local 4 // java.util.function.BiFunction remappingFunction
         0: .line 528
            aload 4 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 529
            aload 0 /* this */
            lload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.find:(J)I
            istore 5 /* pos */
        start local 5 // int pos
         2: .line 530
            iload 5 /* pos */
            iflt 3
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 5 /* pos */
            aaload
            ifnonnull 7
         3: .line 531
      StackMap locals: int
      StackMap stack:
            aload 3 /* v */
            ifnonnull 5
         4: .line 532
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
         5: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* pos */
            ineg
            iconst_1
            isub
            lload 1 /* k */
            aload 3 /* v */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.insert:(IJLjava/lang/Object;)V
         6: .line 534
            aload 3 /* v */
            areturn
         7: .line 536
      StackMap locals:
      StackMap stack:
            aload 4 /* remappingFunction */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 5 /* pos */
            aaload
            aload 3 /* v */
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* newValue */
        start local 6 // java.lang.Object newValue
         8: .line 537
            aload 6 /* newValue */
            ifnonnull 13
         9: .line 538
            lload 1 /* k */
            lconst_0
            lcmp
            ifne 11
        10: .line 539
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeNullEntry:()Ljava/lang/Object;
            pop
            goto 12
        11: .line 541
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.removeEntry:(I)Ljava/lang/Object;
            pop
        12: .line 542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.defRetValue:Ljava/lang/Object;
            areturn
        13: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 5 /* pos */
            aload 6 /* newValue */
            dup_x2
            aastore
            areturn
        end local 6 // java.lang.Object newValue
        end local 5 // int pos
        end local 4 // java.util.function.BiFunction remappingFunction
        end local 3 // java.lang.Object v
        end local 1 // long k
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   14     0               this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   14     1                  k  J
            0   14     3                  v  TV;
            0   14     4  remappingFunction  Ljava/util/function/BiFunction<-TV;-TV;+TV;>;
            2   14     5                pos  I
            8   14     6           newValue  TV;
    Signature: (JTV;Ljava/util/function/BiFunction<-TV;-TV;+TV;>;)TV;
    MethodParameters:
                   Name  Flags
      k                  final
      v                  final
      remappingFunction  final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
         0: .line 555
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            ifne 2
         1: .line 556
            return
         2: .line 557
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
         3: .line 558
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
         4: .line 559
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            lconst_0
            invokestatic java.util.Arrays.fill:([JJ)V
         5: .line 560
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         6: .line 561
            return
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;

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

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

  public it.unimi.dsi.fastutil.longs.Long2ReferenceMap$FastEntrySet<V> long2ReferenceEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
         0: .line 872
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
            ifnonnull 2
         1: .line 873
            aload 0 /* this */
            new it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapEntrySet
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapEntrySet.<init>:(Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
         2: .line 874
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
            areturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
    Signature: ()Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet<TV;>;

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

  public it.unimi.dsi.fastutil.objects.ReferenceCollection<V> values();
    descriptor: ()Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
         0: .line 955
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.values:Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
            ifnonnull 2
         1: .line 956
            aload 0 /* this */
            new it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$1
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$1.<init>:(Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.values:Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
         2: .line 983
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.values:Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
            areturn
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
    Signature: ()Lit/unimi/dsi/fastutil/objects/ReferenceCollection<TV;>;

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

  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.longs.Long2ReferenceOpenHashMap this
        start local 1 // int n
         0: .line 1024
            iload 1 /* n */
            i2f
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.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 1025
            iload 2 /* l */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            if_icmpge 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            iload 2 /* l */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            if_icmple 3
         2: .line 1026
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
         3: .line 1028
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* l */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.rehash:(I)V
         4: .line 1029
            goto 7
      StackMap locals:
      StackMap stack: java.lang.OutOfMemoryError
         5: pop
         6: .line 1030
            iconst_0
            ireturn
         7: .line 1032
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // int l
        end local 1 // int n
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            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=4, locals=10, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // int newN
         0: .line 1048
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 2 /* key */
        start local 2 // long[] key
         1: .line 1049
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object[] value
         2: .line 1050
            iload 1 /* newN */
            iconst_1
            isub
            istore 4 /* mask */
        start local 4 // int mask
         3: .line 1051
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 11
            astore 5 /* newKey */
        start local 5 // long[] newKey
         4: .line 1052
            iload 1 /* newN */
            iconst_1
            iadd
            anewarray java.lang.Object
            astore 6 /* newValue */
        start local 6 // java.lang.Object[] newValue
         5: .line 1053
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            istore 7 /* i */
        start local 7 // int i
         6: .line 1054
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.realSize:()I
            istore 9 /* j */
        start local 9 // int j
         7: goto 14
         8: .line 1055
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int long[] java.lang.Object[] int long[] java.lang.Object[] int top int
      StackMap stack:
            aload 2 /* key */
            iinc 7 /* i */ -1
            iload 7 /* i */
            laload
            lconst_0
            lcmp
            ifeq 8
         9: .line 1056
            aload 5 /* newKey */
            aload 2 /* key */
            iload 7 /* i */
            laload
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            iload 4 /* mask */
            iand
            dup
            istore 8 /* pos */
        start local 8 // int pos
        10: laload
            lconst_0
            lcmp
            ifeq 12
        11: .line 1057
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int long[] java.lang.Object[] int long[] java.lang.Object[] int int int
      StackMap stack:
            aload 5 /* newKey */
            iload 8 /* pos */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            dup
            istore 8 /* pos */
            laload
            lconst_0
            lcmp
            ifne 11
        12: .line 1058
      StackMap locals:
      StackMap stack:
            aload 5 /* newKey */
            iload 8 /* pos */
            aload 2 /* key */
            iload 7 /* i */
            laload
            lastore
        13: .line 1059
            aload 6 /* newValue */
            iload 8 /* pos */
            aload 3 /* value */
            iload 7 /* i */
            aaload
            aastore
        end local 8 // int pos
        14: .line 1054
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int long[] java.lang.Object[] int long[] java.lang.Object[] int top int
      StackMap stack:
            iload 9 /* j */
            iinc 9 /* j */ -1
            ifne 8
        end local 9 // int j
        15: .line 1061
            aload 6 /* newValue */
            iload 1 /* newN */
            aload 3 /* value */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            aastore
        16: .line 1062
            aload 0 /* this */
            iload 1 /* newN */
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
        17: .line 1063
            aload 0 /* this */
            iload 4 /* mask */
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
        18: .line 1064
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.maxFill:I
        19: .line 1065
            aload 0 /* this */
            aload 5 /* newKey */
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
        20: .line 1066
            aload 0 /* this */
            aload 6 /* newValue */
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
        21: .line 1067
            return
        end local 7 // int i
        end local 6 // java.lang.Object[] newValue
        end local 5 // long[] newKey
        end local 4 // int mask
        end local 3 // java.lang.Object[] value
        end local 2 // long[] key
        end local 1 // int newN
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   22     1      newN  I
            1   22     2       key  [J
            2   22     3     value  [Ljava/lang/Object;
            3   22     4      mask  I
            4   22     5    newKey  [J
            5   22     6  newValue  [Ljava/lang/Object;
            6   22     7         i  I
           10   14     8       pos  I
            7   15     9         j  I
    MethodParameters:
      Name  Flags
      newN  final

  public it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap<V> clone();
    descriptor: ()Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
         0: .line 1083
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
            astore 1 /* c */
        start local 1 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap c
         1: .line 1084
            goto 4
        end local 1 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap c
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
         2: pop
         3: .line 1085
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
        start local 1 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap c
         4: .line 1087
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
      StackMap stack:
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.keys:Lit/unimi/dsi/fastutil/longs/LongSet;
         5: .line 1088
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.values:Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
         6: .line 1089
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.entries:Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
         7: .line 1090
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
         8: .line 1091
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
         9: .line 1092
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
        10: .line 1093
            aload 1 /* c */
            areturn
        end local 1 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap c
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            1    2     1     c  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            4   11     1     c  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.CloneNotSupportedException
    Signature: ()Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
         0: .line 1106
            iconst_0
            istore 1 /* h */
        start local 1 // int h
         1: .line 1107
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.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 14
         5: .line 1109
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int int int int
      StackMap stack:
            iinc 3 /* i */ 1
         6: .line 1108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            iload 3 /* i */
            laload
            lconst_0
            lcmp
            ifeq 5
         7: .line 1110
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            iload 3 /* i */
            laload
            invokestatic it.unimi.dsi.fastutil.HashCommon.long2int:(J)I
            istore 4 /* t */
         8: .line 1111
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            if_acmpeq 12
         9: .line 1112
            iload 4 /* t */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            ifnonnull 10
            iconst_0
            goto 11
      StackMap locals:
      StackMap stack: int
        10: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int int int int
      StackMap stack: int int
        11: ixor
            istore 4 /* t */
        12: .line 1113
      StackMap locals:
      StackMap stack:
            iload 1 /* h */
            iload 4 /* t */
            iadd
            istore 1 /* h */
        13: .line 1114
            iinc 3 /* i */ 1
        14: .line 1107
      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
        15: .line 1117
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
            ifeq 19
        16: .line 1118
            iload 1 /* h */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            ifnonnull 17
            iconst_0
            goto 18
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int
      StackMap stack: int
        17: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aaload
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap int
      StackMap stack: int int
        18: iadd
            istore 1 /* h */
        19: .line 1119
      StackMap locals:
      StackMap stack:
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            1   20     1     h  I
            2   15     2     j  I
            3   15     3     i  I
            4   15     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.longs.Long2ReferenceOpenHashMap this
        start local 1 // java.io.ObjectOutputStream s
         0: .line 1122
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 2 /* key */
        start local 2 // long[] key
         1: .line 1123
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object[] value
         2: .line 1124
            new it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator.<init>:(Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap;)V
            astore 4 /* i */
        start local 4 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator i
         3: .line 1125
            aload 1 /* s */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         4: .line 1126
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            istore 5 /* j */
        start local 5 // int j
         5: goto 9
         6: .line 1127
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap java.io.ObjectOutputStream long[] java.lang.Object[] it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator int
      StackMap stack:
            aload 4 /* i */
            invokevirtual it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator.nextEntry:()I
            istore 6 /* e */
        start local 6 // int e
         7: .line 1128
            aload 1 /* s */
            aload 2 /* key */
            iload 6 /* e */
            laload
            invokevirtual java.io.ObjectOutputStream.writeLong:(J)V
         8: .line 1129
            aload 1 /* s */
            aload 3 /* value */
            iload 6 /* e */
            aaload
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
        end local 6 // int e
         9: .line 1126
      StackMap locals:
      StackMap stack:
            iload 5 /* j */
            iinc 5 /* j */ -1
            ifne 6
        end local 5 // int j
        10: .line 1131
            return
        end local 4 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator i
        end local 3 // java.lang.Object[] value
        end local 2 // long[] key
        end local 1 // java.io.ObjectOutputStream s
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   11     1      s  Ljava/io/ObjectOutputStream;
            1   11     2    key  [J
            2   11     3  value  [Ljava/lang/Object;
            3   11     4      i  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>.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=4, locals=9, args_size=2
        start local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
        start local 1 // java.io.ObjectInputStream s
         0: .line 1134
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 1135
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
         2: .line 1136
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.maxFill:I
         3: .line 1137
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
         4: .line 1138
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.key:[J
            astore 2 /* key */
        start local 2 // long[] key
         5: .line 1139
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            iconst_1
            iadd
            anewarray java.lang.Object
            dup_x1
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.value:[Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object[] value
         6: .line 1142
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.size:I
            istore 7 /* i */
        start local 7 // int i
         7: goto 20
         8: .line 1143
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap java.io.ObjectInputStream long[] java.lang.Object[] top top top int
      StackMap stack:
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readLong:()J
            lstore 4 /* k */
        start local 4 // long k
         9: .line 1144
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 6 /* v */
        start local 6 // java.lang.Object v
        10: .line 1145
            lload 4 /* k */
            lconst_0
            lcmp
            ifne 14
        11: .line 1146
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.n:I
            istore 8 /* pos */
        start local 8 // int pos
        12: .line 1147
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.containsNullKey:Z
        13: .line 1148
            goto 18
        end local 8 // int pos
        14: .line 1149
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap java.io.ObjectInputStream long[] java.lang.Object[] long java.lang.Object int
      StackMap stack:
            lload 4 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(J)J
            l2i
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            istore 8 /* pos */
        start local 8 // int pos
        15: .line 1150
            goto 17
        16: .line 1151
      StackMap locals: int
      StackMap stack:
            iload 8 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap.mask:I
            iand
            istore 8 /* pos */
        17: .line 1150
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 8 /* pos */
            laload
            lconst_0
            lcmp
            ifne 16
        18: .line 1153
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 8 /* pos */
            lload 4 /* k */
            lastore
        19: .line 1154
            aload 3 /* value */
            iload 8 /* pos */
            aload 6 /* v */
            aastore
        end local 8 // int pos
        end local 6 // java.lang.Object v
        end local 4 // long k
        20: .line 1142
      StackMap locals: it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap java.io.ObjectInputStream long[] java.lang.Object[] top top top int
      StackMap stack:
            iload 7 /* i */
            iinc 7 /* i */ -1
            ifne 8
        end local 7 // int i
        21: .line 1158
            return
        end local 3 // java.lang.Object[] value
        end local 2 // long[] key
        end local 1 // java.io.ObjectInputStream s
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;
            0   22     1      s  Ljava/io/ObjectInputStream;
            5   22     2    key  [J
            6   22     3  value  [Ljava/lang/Object;
            9   20     4      k  J
           10   20     6      v  TV;
            7   21     7      i  I
           12   14     8    pos  I
           15   20     8    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.longs.Long2ReferenceOpenHashMap this
         0: .line 1160
            return
        end local 0 // it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap<TV;>;

  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.longs.Long2ReferenceOpenHashMap.keySet:()Lit/unimi/dsi/fastutil/longs/LongSet;
            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.longs.Long2ReferenceOpenHashMap.values:()Lit/unimi/dsi/fastutil/objects/ReferenceCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.objects.ObjectSet long2ReferenceEntrySet();
    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.longs.Long2ReferenceOpenHashMap.long2ReferenceEntrySet:()Lit/unimi/dsi/fastutil/longs/Long2ReferenceMap$FastEntrySet;
            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.longs.Long2ReferenceOpenHashMap.clone:()Lit/unimi/dsi/fastutil/longs/Long2ReferenceOpenHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
Signature: <V:Ljava/lang/Object;>Lit/unimi/dsi/fastutil/longs/AbstractLong2ReferenceMap<TV;>;Ljava/io/Serializable;Ljava/lang/Cloneable;Lit/unimi/dsi/fastutil/Hash;
SourceFile: "Long2ReferenceOpenHashMap.java"
NestMembers:
  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$1  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$EntryIterator  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$FastEntryIterator  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$KeyIterator  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$KeySet  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapEntry  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapEntrySet  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$ValueIterator
InnerClasses:
  public abstract Entry = it.unimi.dsi.fastutil.longs.Long2ReferenceMap$Entry of it.unimi.dsi.fastutil.longs.Long2ReferenceMap
  public abstract FastEntrySet = it.unimi.dsi.fastutil.longs.Long2ReferenceMap$FastEntrySet of it.unimi.dsi.fastutil.longs.Long2ReferenceMap
  it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$1
  private EntryIterator = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$EntryIterator of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  private FastEntryIterator = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$FastEntryIterator of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  private final KeyIterator = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$KeyIterator of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  private final KeySet = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$KeySet of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  final MapEntry = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapEntry of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  private final MapEntrySet = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapEntrySet of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  private MapIterator = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$MapIterator of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap
  private final ValueIterator = it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap$ValueIterator of it.unimi.dsi.fastutil.longs.Long2ReferenceOpenHashMap