public class org.h2.mvstore.MVMap<K, V> extends java.util.AbstractMap<K, V> implements java.util.concurrent.ConcurrentMap<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.mvstore.MVMap
  super_class: java.util.AbstractMap
{
  public final org.h2.mvstore.MVStore store;
    descriptor: Lorg/h2/mvstore/MVStore;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicReference<org.h2.mvstore.RootReference> root;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lorg/h2/mvstore/RootReference;>;

  private final int id;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long createVersion;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.h2.mvstore.type.DataType keyType;
    descriptor: Lorg/h2/mvstore/type/DataType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.h2.mvstore.type.DataType valueType;
    descriptor: Lorg/h2/mvstore/type/DataType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int keysPerPage;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final K[] keysBuffer;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: [TK;

  private final V[] valuesBuffer;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: [TV;

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

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

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

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

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

  static final long INITIAL_VERSION;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -1

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

  private static volatile int[] $SWITCH_TABLE$org$h2$mvstore$MVMap$Decision;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 31
            ldc Lorg/h2/mvstore/MVMap;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
         3: .line 69
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(java.util.Map<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=11, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.util.Map config
         0: .line 72
            aload 0 /* this */
            aload 1 /* config */
            ldc "store"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.h2.mvstore.MVStore
         1: .line 73
            aload 1 /* config */
            ldc "key"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.h2.mvstore.type.DataType
         2: .line 74
            aload 1 /* config */
            ldc "val"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.h2.mvstore.type.DataType
         3: .line 75
            aload 1 /* config */
            ldc "id"
            iconst_0
            invokestatic org.h2.mvstore.DataUtils.readHexInt:(Ljava/util/Map;Ljava/lang/String;I)I
         4: .line 76
            aload 1 /* config */
            ldc "createVersion"
            lconst_0
            invokestatic org.h2.mvstore.DataUtils.readHexLong:(Ljava/util/Map;Ljava/lang/String;J)J
         5: .line 77
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         6: .line 78
            aload 1 /* config */
            ldc "store"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.h2.mvstore.MVStore
            invokevirtual org.h2.mvstore.MVStore.getKeysPerPage:()I
         7: .line 79
            aload 1 /* config */
            ldc "singleWriter"
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 8
            aload 1 /* config */
            ldc "singleWriter"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 8
            iconst_1
            goto 9
      StackMap locals: uninitialized-this java.util.Map
      StackMap stack: uninitialized-this org.h2.mvstore.MVStore org.h2.mvstore.type.DataType org.h2.mvstore.type.DataType int long java.util.concurrent.atomic.AtomicReference int
         8: iconst_0
      StackMap locals: uninitialized-this java.util.Map
      StackMap stack: uninitialized-this org.h2.mvstore.MVStore org.h2.mvstore.type.DataType org.h2.mvstore.type.DataType int long java.util.concurrent.atomic.AtomicReference int int
         9: invokespecial org.h2.mvstore.MVMap.<init>:(Lorg/h2/mvstore/MVStore;Lorg/h2/mvstore/type/DataType;Lorg/h2/mvstore/type/DataType;IJLjava/util/concurrent/atomic/AtomicReference;IZ)V
        10: .line 81
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.createEmptyLeaf:()Lorg/h2/mvstore/Page;
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getCurrentVersion:()J
            invokevirtual org.h2.mvstore.MVMap.setInitialRoot:(Lorg/h2/mvstore/Page;J)V
        11: .line 82
            return
        end local 1 // java.util.Map config
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   12     1  config  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;)V
    MethodParameters:
        Name  Flags
      config  

  protected void <init>(org.h2.mvstore.MVMap<K, V>);
    descriptor: (Lorg/h2/mvstore/MVMap;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.MVMap source
         0: .line 86
            aload 0 /* this */
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.keyType:Lorg/h2/mvstore/type/DataType;
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.valueType:Lorg/h2/mvstore/type/DataType;
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.id:I
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.createVersion:J
         1: .line 87
            new java.util.concurrent.atomic.AtomicReference
            dup
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast org.h2.mvstore.RootReference
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.keysPerPage:I
            aload 1 /* source */
            getfield org.h2.mvstore.MVMap.singleWriter:Z
            invokespecial org.h2.mvstore.MVMap.<init>:(Lorg/h2/mvstore/MVStore;Lorg/h2/mvstore/type/DataType;Lorg/h2/mvstore/type/DataType;IJLjava/util/concurrent/atomic/AtomicReference;IZ)V
         2: .line 88
            return
        end local 1 // org.h2.mvstore.MVMap source
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    3     1  source  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: (Lorg/h2/mvstore/MVMap<TK;TV;>;)V
    MethodParameters:
        Name  Flags
      source  

  void <init>(org.h2.mvstore.MVStore);
    descriptor: (Lorg/h2/mvstore/MVStore;)V
    flags: (0x0000) 
    Code:
      stack=10, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.MVStore store
         0: .line 92
            aload 0 /* this */
            aload 1 /* store */
            getstatic org.h2.mvstore.type.StringDataType.INSTANCE:Lorg/h2/mvstore/type/StringDataType;
            getstatic org.h2.mvstore.type.StringDataType.INSTANCE:Lorg/h2/mvstore/type/StringDataType;
            iconst_0
            lconst_0
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 93
            aload 1 /* store */
            invokevirtual org.h2.mvstore.MVStore.getKeysPerPage:()I
            iconst_0
            invokespecial org.h2.mvstore.MVMap.<init>:(Lorg/h2/mvstore/MVStore;Lorg/h2/mvstore/type/DataType;Lorg/h2/mvstore/type/DataType;IJLjava/util/concurrent/atomic/AtomicReference;IZ)V
         2: .line 94
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.createEmptyLeaf:()Lorg/h2/mvstore/Page;
            aload 1 /* store */
            invokevirtual org.h2.mvstore.MVStore.getCurrentVersion:()J
            invokevirtual org.h2.mvstore.MVMap.setInitialRoot:(Lorg/h2/mvstore/Page;J)V
         3: .line 95
            return
        end local 1 // org.h2.mvstore.MVStore store
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    4     1  store  Lorg/h2/mvstore/MVStore;
    MethodParameters:
       Name  Flags
      store  

  private void <init>(org.h2.mvstore.MVStore, org.h2.mvstore.type.DataType, org.h2.mvstore.type.DataType, int, long, java.util.concurrent.atomic.AtomicReference<org.h2.mvstore.RootReference>, int, );
    descriptor: (Lorg/h2/mvstore/MVStore;Lorg/h2/mvstore/type/DataType;Lorg/h2/mvstore/type/DataType;IJLjava/util/concurrent/atomic/AtomicReference;IZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=10, args_size=9
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.MVStore store
        start local 2 // org.h2.mvstore.type.DataType keyType
        start local 3 // org.h2.mvstore.type.DataType valueType
        start local 4 // int id
        start local 5 // long createVersion
        start local 7 // java.util.concurrent.atomic.AtomicReference root
        start local 8 // int keysPerPage
        start local 9 // boolean singleWriter
         0: .line 98
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 54
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield org.h2.mvstore.MVMap.lock:Ljava/lang/Object;
         2: .line 100
            aload 0 /* this */
            aload 1 /* store */
            putfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
         3: .line 101
            aload 0 /* this */
            iload 4 /* id */
            putfield org.h2.mvstore.MVMap.id:I
         4: .line 102
            aload 0 /* this */
            lload 5 /* createVersion */
            putfield org.h2.mvstore.MVMap.createVersion:J
         5: .line 103
            aload 0 /* this */
            aload 2 /* keyType */
            putfield org.h2.mvstore.MVMap.keyType:Lorg/h2/mvstore/type/DataType;
         6: .line 104
            aload 0 /* this */
            aload 3 /* valueType */
            putfield org.h2.mvstore.MVMap.valueType:Lorg/h2/mvstore/type/DataType;
         7: .line 105
            aload 0 /* this */
            aload 7 /* root */
            putfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
         8: .line 106
            aload 0 /* this */
            iload 8 /* keysPerPage */
            putfield org.h2.mvstore.MVMap.keysPerPage:I
         9: .line 107
            aload 0 /* this */
            iload 9 /* singleWriter */
            ifeq 10
            iload 8 /* keysPerPage */
            anewarray java.lang.Object
            goto 11
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.MVStore org.h2.mvstore.type.DataType org.h2.mvstore.type.DataType int long java.util.concurrent.atomic.AtomicReference int int
      StackMap stack: org.h2.mvstore.MVMap
        10: aconst_null
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.MVStore org.h2.mvstore.type.DataType org.h2.mvstore.type.DataType int long java.util.concurrent.atomic.AtomicReference int int
      StackMap stack: org.h2.mvstore.MVMap java.lang.Object[]
        11: putfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
        12: .line 108
            aload 0 /* this */
            iload 9 /* singleWriter */
            ifeq 13
            iload 8 /* keysPerPage */
            anewarray java.lang.Object
            goto 14
      StackMap locals:
      StackMap stack: org.h2.mvstore.MVMap
        13: aconst_null
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.MVStore org.h2.mvstore.type.DataType org.h2.mvstore.type.DataType int long java.util.concurrent.atomic.AtomicReference int int
      StackMap stack: org.h2.mvstore.MVMap java.lang.Object[]
        14: putfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
        15: .line 109
            aload 0 /* this */
            iload 9 /* singleWriter */
            putfield org.h2.mvstore.MVMap.singleWriter:Z
        16: .line 110
            return
        end local 9 // boolean singleWriter
        end local 8 // int keysPerPage
        end local 7 // java.util.concurrent.atomic.AtomicReference root
        end local 5 // long createVersion
        end local 4 // int id
        end local 3 // org.h2.mvstore.type.DataType valueType
        end local 2 // org.h2.mvstore.type.DataType keyType
        end local 1 // org.h2.mvstore.MVStore store
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   17     1          store  Lorg/h2/mvstore/MVStore;
            0   17     2        keyType  Lorg/h2/mvstore/type/DataType;
            0   17     3      valueType  Lorg/h2/mvstore/type/DataType;
            0   17     4             id  I
            0   17     5  createVersion  J
            0   17     7           root  Ljava/util/concurrent/atomic/AtomicReference<Lorg/h2/mvstore/RootReference;>;
            0   17     8    keysPerPage  I
            0   17     9   singleWriter  Z
    Signature: (Lorg/h2/mvstore/MVStore;Lorg/h2/mvstore/type/DataType;Lorg/h2/mvstore/type/DataType;IJLjava/util/concurrent/atomic/AtomicReference<Lorg/h2/mvstore/RootReference;>;IZ)V
    MethodParameters:
               Name  Flags
      store          
      keyType        
      valueType      
      id             
      createVersion  
      root           
      keysPerPage    
      singleWriter   

  protected org.h2.mvstore.MVMap<K, V> cloneIt();
    descriptor: ()Lorg/h2/mvstore/MVMap;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 118
            new org.h2.mvstore.MVMap
            dup
            aload 0 /* this */
            invokespecial org.h2.mvstore.MVMap.<init>:(Lorg/h2/mvstore/MVMap;)V
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: ()Lorg/h2/mvstore/MVMap<TK;TV;>;

  static java.lang.String getMapRootKey(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int mapId
         0: .line 128
            new java.lang.StringBuilder
            dup
            ldc "root."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* mapId */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // int mapId
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  mapId  I
    MethodParameters:
       Name  Flags
      mapId  

  static java.lang.String getMapKey(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int mapId
         0: .line 138
            new java.lang.StringBuilder
            dup
            ldc "map."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* mapId */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // int mapId
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  mapId  I
    MethodParameters:
       Name  Flags
      mapId  

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 150
            aload 2 /* value */
            ifnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "The value may not be null"
            iconst_0
            anewarray java.lang.Object
            invokestatic org.h2.mvstore.DataUtils.checkArgument:(ZLjava/lang/String;[Ljava/lang/Object;)V
         3: .line 151
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            getstatic org.h2.mvstore.MVMap$DecisionMaker.PUT:Lorg/h2/mvstore/MVMap$DecisionMaker;
            invokevirtual org.h2.mvstore.MVMap.operate:(Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    4     1    key  TK;
            0    4     2  value  TV;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public final K firstKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 160
            aload 0 /* this */
            iconst_1
            invokevirtual org.h2.mvstore.MVMap.getFirstLast:(Z)Ljava/lang/Object;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: ()TK;

  public final K lastKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 169
            aload 0 /* this */
            iconst_0
            invokevirtual org.h2.mvstore.MVMap.getFirstLast:(Z)Ljava/lang/Object;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: ()TK;

  public final K getKey();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long index
         0: .line 181
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* index */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.sizeAsLong:()J
            lcmp
            iflt 2
         1: .line 182
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            astore 3 /* p */
        start local 3 // org.h2.mvstore.Page p
         3: .line 185
            lconst_0
            lstore 4 /* offset */
        start local 4 // long offset
         4: .line 187
      StackMap locals: org.h2.mvstore.Page long
      StackMap stack:
            aload 3 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 9
         5: .line 188
            lload 1 /* index */
            lload 4 /* offset */
            aload 3 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            i2l
            ladd
            lcmp
            iflt 7
         6: .line 189
            aconst_null
            areturn
         7: .line 192
      StackMap locals:
      StackMap stack:
            aload 3 /* p */
            lload 1 /* index */
            lload 4 /* offset */
            lsub
            l2i
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            astore 6 /* key */
        start local 6 // java.lang.Object key
         8: .line 193
            aload 6 /* key */
            areturn
        end local 6 // java.lang.Object key
         9: .line 195
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        10: aload 0 /* this */
            aload 3 /* p */
            invokevirtual org.h2.mvstore.MVMap.getChildPageCount:(Lorg/h2/mvstore/Page;)I
            istore 7 /* size */
        start local 7 // int size
        11: .line 196
            goto 17
        12: .line 197
      StackMap locals: int int
      StackMap stack:
            aload 3 /* p */
            iload 6 /* i */
            invokevirtual org.h2.mvstore.Page.getCounts:(I)J
            lstore 8 /* c */
        start local 8 // long c
        13: .line 198
            lload 1 /* index */
            lload 8 /* c */
            lload 4 /* offset */
            ladd
            lcmp
            ifge 15
        14: .line 199
            goto 18
        15: .line 201
      StackMap locals: long
      StackMap stack:
            lload 4 /* offset */
            lload 8 /* c */
            ladd
            lstore 4 /* offset */
        end local 8 // long c
        16: .line 196
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 6 /* i */
            iload 7 /* size */
            if_icmplt 12
        18: .line 203
      StackMap locals:
      StackMap stack:
            iload 6 /* i */
            iload 7 /* size */
            if_icmpne 20
        19: .line 204
            aconst_null
            areturn
        20: .line 206
      StackMap locals:
      StackMap stack:
            aload 3 /* p */
            iload 6 /* i */
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            astore 3 /* p */
        end local 7 // int size
        end local 6 // int i
        21: .line 186
            goto 4
        end local 4 // long offset
        end local 3 // org.h2.mvstore.Page p
        end local 1 // long index
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   22     1   index  J
            3   22     3       p  Lorg/h2/mvstore/Page;
            4   22     4  offset  J
            8    9     6     key  TK;
           10   21     6       i  I
           11   21     7    size  I
           13   16     8       c  J
    Signature: (J)TK;
    MethodParameters:
       Name  Flags
      index  

  public final java.util.List<K> keyList();
    descriptor: ()Ljava/util/List;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 219
            new org.h2.mvstore.MVMap$1
            dup
            aload 0 /* this */
            invokespecial org.h2.mvstore.MVMap$1.<init>:(Lorg/h2/mvstore/MVMap;)V
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: ()Ljava/util/List<TK;>;

  public final long getKeyIndex();
    descriptor: (Ljava/lang/Object;)J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 253
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            astore 2 /* p */
        start local 2 // org.h2.mvstore.Page p
         1: .line 254
            aload 2 /* p */
            invokevirtual org.h2.mvstore.Page.getTotalCount:()J
            lconst_0
            lcmp
            ifne 3
         2: .line 255
            ldc -1
            lreturn
         3: .line 257
      StackMap locals: org.h2.mvstore.Page
      StackMap stack:
            lconst_0
            lstore 3 /* offset */
        start local 3 // long offset
         4: .line 259
      StackMap locals: long
      StackMap stack:
            aload 2 /* p */
            aload 1 /* key */
            invokevirtual org.h2.mvstore.Page.binarySearch:(Ljava/lang/Object;)I
            istore 5 /* x */
        start local 5 // int x
         5: .line 260
            aload 2 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 9
         6: .line 261
            iload 5 /* x */
            ifge 8
         7: .line 262
            lload 3 /* offset */
            lneg
            lstore 3 /* offset */
         8: .line 264
      StackMap locals: int
      StackMap stack:
            lload 3 /* offset */
            iload 5 /* x */
            i2l
            ladd
            lreturn
         9: .line 266
      StackMap locals:
      StackMap stack:
            iload 5 /* x */
            iinc 5 /* x */ 1
            ifge 11
        10: .line 267
            iload 5 /* x */
            ineg
            istore 5 /* x */
        11: .line 269
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        12: goto 15
        13: .line 270
      StackMap locals: int
      StackMap stack:
            lload 3 /* offset */
            aload 2 /* p */
            iload 6 /* i */
            invokevirtual org.h2.mvstore.Page.getCounts:(I)J
            ladd
            lstore 3 /* offset */
        14: .line 269
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 6 /* i */
            iload 5 /* x */
            if_icmplt 13
        end local 6 // int i
        16: .line 272
            aload 2 /* p */
            iload 5 /* x */
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            astore 2 /* p */
        end local 5 // int x
        17: .line 258
            goto 4
        end local 3 // long offset
        end local 2 // org.h2.mvstore.Page p
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   18     1     key  TK;
            1   18     2       p  Lorg/h2/mvstore/Page;
            4   18     3  offset  J
            5   17     5       x  I
           12   16     6       i  I
    Signature: (TK;)J
    MethodParameters:
      Name  Flags
      key   

  private K getFirstLast();
    descriptor: (Z)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // boolean first
         0: .line 284
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            astore 2 /* p */
        start local 2 // org.h2.mvstore.Page p
         1: .line 285
            aload 2 /* p */
            invokevirtual org.h2.mvstore.Page.getTotalCount:()J
            lconst_0
            lcmp
            ifne 3
         2: .line 286
            aconst_null
            areturn
         3: .line 289
      StackMap locals: org.h2.mvstore.Page
      StackMap stack:
            aload 2 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 7
         4: .line 290
            aload 2 /* p */
            iload 1 /* first */
            ifeq 5
            iconst_0
            goto 6
      StackMap locals:
      StackMap stack: org.h2.mvstore.Page
         5: aload 2 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            iconst_1
            isub
      StackMap locals: org.h2.mvstore.MVMap int org.h2.mvstore.Page
      StackMap stack: org.h2.mvstore.Page int
         6: invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            areturn
         7: .line 292
      StackMap locals:
      StackMap stack:
            aload 2 /* p */
            iload 1 /* first */
            ifeq 8
            iconst_0
            goto 9
      StackMap locals:
      StackMap stack: org.h2.mvstore.Page
         8: aload 0 /* this */
            aload 2 /* p */
            invokevirtual org.h2.mvstore.MVMap.getChildPageCount:(Lorg/h2/mvstore/Page;)I
            iconst_1
            isub
      StackMap locals: org.h2.mvstore.MVMap int org.h2.mvstore.Page
      StackMap stack: org.h2.mvstore.Page int
         9: invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            astore 2 /* p */
        10: .line 288
            goto 3
        end local 2 // org.h2.mvstore.Page p
        end local 1 // boolean first
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   11     1  first  Z
            1   11     2      p  Lorg/h2/mvstore/Page;
    Signature: (Z)TK;
    MethodParameters:
       Name  Flags
      first  

  public final K higherKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 304
            aload 0 /* this */
            aload 1 /* key */
            iconst_0
            iconst_1
            invokevirtual org.h2.mvstore.MVMap.getMinMax:(Ljava/lang/Object;ZZ)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public final K ceilingKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 314
            aload 0 /* this */
            aload 1 /* key */
            iconst_0
            iconst_0
            invokevirtual org.h2.mvstore.MVMap.getMinMax:(Ljava/lang/Object;ZZ)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public final K floorKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 324
            aload 0 /* this */
            aload 1 /* key */
            iconst_1
            iconst_0
            invokevirtual org.h2.mvstore.MVMap.getMinMax:(Ljava/lang/Object;ZZ)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public final K lowerKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 335
            aload 0 /* this */
            aload 1 /* key */
            iconst_1
            iconst_1
            invokevirtual org.h2.mvstore.MVMap.getMinMax:(Ljava/lang/Object;ZZ)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  private K getMinMax(K, boolean, );
    descriptor: (Ljava/lang/Object;ZZ)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // boolean min
        start local 3 // boolean excluding
         0: .line 347
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            aload 1 /* key */
            iload 2 /* min */
            iload 3 /* excluding */
            invokevirtual org.h2.mvstore.MVMap.getMinMax:(Lorg/h2/mvstore/Page;Ljava/lang/Object;ZZ)Ljava/lang/Object;
            areturn
        end local 3 // boolean excluding
        end local 2 // boolean min
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1        key  TK;
            0    1     2        min  Z
            0    1     3  excluding  Z
    Signature: (TK;ZZ)TK;
    MethodParameters:
           Name  Flags
      key        
      min        
      excluding  

  private K getMinMax(org.h2.mvstore.Page, K, boolean, );
    descriptor: (Lorg/h2/mvstore/Page;Ljava/lang/Object;ZZ)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page p
        start local 2 // java.lang.Object key
        start local 3 // boolean min
        start local 4 // boolean excluding
         0: .line 352
            aload 1 /* p */
            aload 2 /* key */
            invokevirtual org.h2.mvstore.Page.binarySearch:(Ljava/lang/Object;)I
            istore 5 /* x */
        start local 5 // int x
         1: .line 353
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 14
         2: .line 354
            iload 5 /* x */
            ifge 7
         3: .line 355
            iload 5 /* x */
            ineg
            iload 3 /* min */
            ifeq 4
            iconst_2
            goto 5
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page java.lang.Object int int int
      StackMap stack: int
         4: iconst_1
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page java.lang.Object int int int
      StackMap stack: int int
         5: isub
            istore 5 /* x */
         6: .line 356
            goto 11
      StackMap locals:
      StackMap stack:
         7: iload 4 /* excluding */
            ifeq 11
         8: .line 357
            iload 5 /* x */
            iload 3 /* min */
            ifeq 9
            iconst_m1
            goto 10
      StackMap locals:
      StackMap stack: int
         9: iconst_1
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page java.lang.Object int int int
      StackMap stack: int int
        10: iadd
            istore 5 /* x */
        11: .line 359
      StackMap locals:
      StackMap stack:
            iload 5 /* x */
            iflt 12
            iload 5 /* x */
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            if_icmplt 13
        12: .line 360
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        13: .line 362
      StackMap locals:
      StackMap stack:
            aload 1 /* p */
            iload 5 /* x */
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            areturn
        14: .line 364
      StackMap locals:
      StackMap stack:
            iload 5 /* x */
            iinc 5 /* x */ 1
            ifge 16
        15: .line 365
            iload 5 /* x */
            ineg
            istore 5 /* x */
        16: .line 368
      StackMap locals:
      StackMap stack:
            iload 5 /* x */
            iflt 17
            iload 5 /* x */
            aload 0 /* this */
            aload 1 /* p */
            invokevirtual org.h2.mvstore.MVMap.getChildPageCount:(Lorg/h2/mvstore/Page;)I
            if_icmplt 18
        17: .line 369
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        18: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* p */
            iload 5 /* x */
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            aload 2 /* key */
            iload 3 /* min */
            iload 4 /* excluding */
            invokevirtual org.h2.mvstore.MVMap.getMinMax:(Lorg/h2/mvstore/Page;Ljava/lang/Object;ZZ)Ljava/lang/Object;
            astore 6 /* k */
        start local 6 // java.lang.Object k
        19: .line 372
            aload 6 /* k */
            ifnull 21
        20: .line 373
            aload 6 /* k */
            areturn
        21: .line 375
      StackMap locals: java.lang.Object
      StackMap stack:
            iload 5 /* x */
            iload 3 /* min */
            ifeq 22
            iconst_m1
            goto 23
      StackMap locals:
      StackMap stack: int
        22: iconst_1
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page java.lang.Object int int int java.lang.Object
      StackMap stack: int int
        23: iadd
            istore 5 /* x */
        end local 6 // java.lang.Object k
        24: .line 367
            goto 16
        end local 5 // int x
        end local 4 // boolean excluding
        end local 3 // boolean min
        end local 2 // java.lang.Object key
        end local 1 // org.h2.mvstore.Page p
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   25     0       this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   25     1          p  Lorg/h2/mvstore/Page;
            0   25     2        key  TK;
            0   25     3        min  Z
            0   25     4  excluding  Z
            1   25     5          x  I
           19   24     6          k  TK;
    Signature: (Lorg/h2/mvstore/Page;TK;ZZ)TK;
    MethodParameters:
           Name  Flags
      p          
      key        
      min        
      excluding  

  public final V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 389
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            aload 1 /* key */
            invokevirtual org.h2.mvstore.MVMap.get:(Lorg/h2/mvstore/Page;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   key  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public V get(org.h2.mvstore.Page, );
    descriptor: (Lorg/h2/mvstore/Page;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page p
        start local 2 // java.lang.Object key
         0: .line 402
            aload 1 /* p */
            aload 2 /* key */
            invokestatic org.h2.mvstore.Page.get:(Lorg/h2/mvstore/Page;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object key
        end local 1 // org.h2.mvstore.Page p
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1     p  Lorg/h2/mvstore/Page;
            0    1     2   key  Ljava/lang/Object;
    Signature: (Lorg/h2/mvstore/Page;Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      p     
      key   

  public final boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 407
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.h2.mvstore.MVMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 416
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.createEmptyLeaf:()Lorg/h2/mvstore/Page;
            astore 2 /* emptyRootPage */
        start local 2 // org.h2.mvstore.Page emptyRootPage
         1: .line 417
            iconst_0
            istore 3 /* attempt */
        start local 3 // int attempt
         2: .line 419
      StackMap locals: org.h2.mvstore.MVMap top org.h2.mvstore.Page int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
        start local 1 // org.h2.mvstore.RootReference rootReference
         3: .line 420
            aload 0 /* this */
            aload 1 /* rootReference */
            aload 2 /* emptyRootPage */
            iinc 3 /* attempt */ 1
            iload 3 /* attempt */
            invokevirtual org.h2.mvstore.MVMap.updateRoot:(Lorg/h2/mvstore/RootReference;Lorg/h2/mvstore/Page;I)Z
            ifeq 2
         4: .line 421
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            invokevirtual org.h2.mvstore.Page.removeAllRecursive:()V
         5: .line 422
            return
        end local 3 // int attempt
        end local 2 // org.h2.mvstore.Page emptyRootPage
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            3    6     1  rootReference  Lorg/h2/mvstore/RootReference;
            1    6     2  emptyRootPage  Lorg/h2/mvstore/Page;
            2    6     3        attempt  I

  final void close();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 429
            aload 0 /* this */
            iconst_1
            putfield org.h2.mvstore.MVMap.closed:Z
         1: .line 430
            return
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final boolean isClosed();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 433
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.closed:Z
            ireturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public V remove();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
         0: .line 446
            aload 0 /* this */
            aload 1 /* key */
            aconst_null
            getstatic org.h2.mvstore.MVMap$DecisionMaker.REMOVE:Lorg/h2/mvstore/MVMap$DecisionMaker;
            invokevirtual org.h2.mvstore.MVMap.operate:(Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   key  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public final V putIfAbsent(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 458
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            getstatic org.h2.mvstore.MVMap$DecisionMaker.IF_ABSENT:Lorg/h2/mvstore/MVMap$DecisionMaker;
            invokevirtual org.h2.mvstore.MVMap.operate:(Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1    key  TK;
            0    1     2  value  TV;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public boolean remove(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 471
            new org.h2.mvstore.MVMap$EqualsDecisionMaker
            dup
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valueType:Lorg/h2/mvstore/type/DataType;
            aload 2 /* value */
            invokespecial org.h2.mvstore.MVMap$EqualsDecisionMaker.<init>:(Lorg/h2/mvstore/type/DataType;Ljava/lang/Object;)V
            astore 3 /* decisionMaker */
        start local 3 // org.h2.mvstore.MVMap$EqualsDecisionMaker decisionMaker
         1: .line 472
            aload 0 /* this */
            aload 1 /* key */
            aconst_null
            aload 3 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap.operate:(Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
            pop
         2: .line 473
            aload 3 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap$EqualsDecisionMaker.getDecision:()Lorg/h2/mvstore/MVMap$Decision;
            getstatic org.h2.mvstore.MVMap$Decision.ABORT:Lorg/h2/mvstore/MVMap$Decision;
            if_acmpeq 3
            iconst_1
            ireturn
      StackMap locals: org.h2.mvstore.MVMap$EqualsDecisionMaker
      StackMap stack:
         3: iconst_0
            ireturn
        end local 3 // org.h2.mvstore.MVMap$EqualsDecisionMaker decisionMaker
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    4     1            key  Ljava/lang/Object;
            0    4     2          value  Ljava/lang/Object;
            1    4     3  decisionMaker  Lorg/h2/mvstore/MVMap$EqualsDecisionMaker<TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

  static boolean areValuesEqual(org.h2.mvstore.type.DataType, java.lang.Object, java.lang.Object);
    descriptor: (Lorg/h2/mvstore/type/DataType;Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.mvstore.type.DataType datatype
        start local 1 // java.lang.Object a
        start local 2 // java.lang.Object b
         0: .line 485
            aload 1 /* a */
            aload 2 /* b */
            if_acmpeq 3
         1: .line 486
            aload 1 /* a */
            ifnull 2
            aload 2 /* b */
            ifnull 2
            aload 0 /* datatype */
            aload 1 /* a */
            aload 2 /* b */
            invokeinterface org.h2.mvstore.type.DataType.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifeq 3
         2: .line 485
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 2 // java.lang.Object b
        end local 1 // java.lang.Object a
        end local 0 // org.h2.mvstore.type.DataType datatype
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0  datatype  Lorg/h2/mvstore/type/DataType;
            0    4     1         a  Ljava/lang/Object;
            0    4     2         b  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      datatype  
      a         
      b         

  public final boolean replace(K, V, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object oldValue
        start local 3 // java.lang.Object newValue
         0: .line 499
            new org.h2.mvstore.MVMap$EqualsDecisionMaker
            dup
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valueType:Lorg/h2/mvstore/type/DataType;
            aload 2 /* oldValue */
            invokespecial org.h2.mvstore.MVMap$EqualsDecisionMaker.<init>:(Lorg/h2/mvstore/type/DataType;Ljava/lang/Object;)V
            astore 4 /* decisionMaker */
        start local 4 // org.h2.mvstore.MVMap$EqualsDecisionMaker decisionMaker
         1: .line 500
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* newValue */
            aload 4 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap.operate:(Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
            astore 5 /* result */
        start local 5 // java.lang.Object result
         2: .line 501
            aload 4 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap$EqualsDecisionMaker.getDecision:()Lorg/h2/mvstore/MVMap$Decision;
            getstatic org.h2.mvstore.MVMap$Decision.ABORT:Lorg/h2/mvstore/MVMap$Decision;
            if_acmpeq 3
            iconst_1
            goto 4
      StackMap locals: org.h2.mvstore.MVMap$EqualsDecisionMaker java.lang.Object
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 6 /* res */
        start local 6 // boolean res
         5: .line 502
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 6
            iload 6 /* res */
            ifeq 6
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valueType:Lorg/h2/mvstore/type/DataType;
            aload 2 /* oldValue */
            aload 5 /* result */
            invokestatic org.h2.mvstore.MVMap.areValuesEqual:(Lorg/h2/mvstore/type/DataType;Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 6
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 2 /* oldValue */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " != "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 5 /* result */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 503
      StackMap locals: int
      StackMap stack:
            iload 6 /* res */
            ireturn
        end local 6 // boolean res
        end local 5 // java.lang.Object result
        end local 4 // org.h2.mvstore.MVMap$EqualsDecisionMaker decisionMaker
        end local 3 // java.lang.Object newValue
        end local 2 // java.lang.Object oldValue
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    7     1            key  TK;
            0    7     2       oldValue  TV;
            0    7     3       newValue  TV;
            1    7     4  decisionMaker  Lorg/h2/mvstore/MVMap$EqualsDecisionMaker<TV;>;
            2    7     5         result  TV;
            5    7     6            res  Z
    Signature: (TK;TV;TV;)Z
    MethodParameters:
          Name  Flags
      key       
      oldValue  
      newValue  

  public final V replace(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 515
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            getstatic org.h2.mvstore.MVMap$DecisionMaker.IF_PRESENT:Lorg/h2/mvstore/MVMap$DecisionMaker;
            invokevirtual org.h2.mvstore.MVMap.operate:(Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1    key  TK;
            0    1     2  value  TV;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  final int compare(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object a
        start local 2 // java.lang.Object b
         0: .line 526
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keyType:Lorg/h2/mvstore/type/DataType;
            aload 1 /* a */
            aload 2 /* b */
            invokeinterface org.h2.mvstore.type.DataType.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ireturn
        end local 2 // java.lang.Object b
        end local 1 // java.lang.Object a
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1     a  Ljava/lang/Object;
            0    1     2     b  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      a     
      b     

  public final org.h2.mvstore.type.DataType getKeyType();
    descriptor: ()Lorg/h2/mvstore/type/DataType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 535
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keyType:Lorg/h2/mvstore/type/DataType;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final org.h2.mvstore.type.DataType getValueType();
    descriptor: ()Lorg/h2/mvstore/type/DataType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 544
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valueType:Lorg/h2/mvstore/type/DataType;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  final org.h2.mvstore.Page readPage(long);
    descriptor: (J)Lorg/h2/mvstore/Page;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long pos
         0: .line 554
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual org.h2.mvstore.MVStore.readPage:(Lorg/h2/mvstore/MVMap;J)Lorg/h2/mvstore/Page;
            areturn
        end local 1 // long pos
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1   pos  J
    MethodParameters:
      Name  Flags
      pos   

  final void setRootPos(long, long);
    descriptor: (JJ)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long rootPos
        start local 3 // long version
         0: .line 564
            aload 0 /* this */
            lload 1 /* rootPos */
            invokevirtual org.h2.mvstore.MVMap.readOrCreateRootPage:(J)Lorg/h2/mvstore/Page;
            astore 5 /* root */
        start local 5 // org.h2.mvstore.Page root
         1: .line 565
            aload 0 /* this */
            aload 5 /* root */
            lload 3 /* version */
            invokevirtual org.h2.mvstore.MVMap.setInitialRoot:(Lorg/h2/mvstore/Page;J)V
         2: .line 566
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getCurrentVersion:()J
            invokevirtual org.h2.mvstore.MVMap.setWriteVersion:(J)Lorg/h2/mvstore/RootReference;
            pop
         3: .line 567
            return
        end local 5 // org.h2.mvstore.Page root
        end local 3 // long version
        end local 1 // long rootPos
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    4     1  rootPos  J
            0    4     3  version  J
            1    4     5     root  Lorg/h2/mvstore/Page;
    MethodParameters:
         Name  Flags
      rootPos  
      version  

  private org.h2.mvstore.Page readOrCreateRootPage(long);
    descriptor: (J)Lorg/h2/mvstore/Page;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long rootPos
         0: .line 570
            lload 1 /* rootPos */
            lconst_0
            lcmp
            ifne 1
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.createEmptyLeaf:()Lorg/h2/mvstore/Page;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            lload 1 /* rootPos */
            invokevirtual org.h2.mvstore.MVMap.readPage:(J)Lorg/h2/mvstore/Page;
      StackMap locals:
      StackMap stack: org.h2.mvstore.Page
         2: astore 3 /* root */
        start local 3 // org.h2.mvstore.Page root
         3: .line 571
            aload 3 /* root */
            areturn
        end local 3 // org.h2.mvstore.Page root
        end local 1 // long rootPos
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    4     1  rootPos  J
            3    4     3     root  Lorg/h2/mvstore/Page;
    MethodParameters:
         Name  Flags
      rootPos  

  public final java.util.Iterator<K> keyIterator(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/Iterator;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object from
         0: .line 581
            new org.h2.mvstore.Cursor
            dup
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            aload 1 /* from */
            invokespecial org.h2.mvstore.Cursor.<init>:(Lorg/h2/mvstore/Page;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object from
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1  from  TK;
    Signature: (TK;)Ljava/util/Iterator<TK;>;
    MethodParameters:
      Name  Flags
      from  

  final void rewrite(java.util.Set<java.lang.Integer>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.util.Set set
         0: .line 590
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            aload 1 /* set */
            invokevirtual org.h2.mvstore.MVMap.rewrite:(Lorg/h2/mvstore/Page;Ljava/util/Set;)I
            pop
         1: .line 591
            return
        end local 1 // java.util.Set set
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1   set  Ljava/util/Set<Ljava/lang/Integer;>;
    Signature: (Ljava/util/Set<Ljava/lang/Integer;>;)V
    MethodParameters:
      Name  Flags
      set   

  private int rewrite(org.h2.mvstore.Page, java.util.Set<java.lang.Integer>);
    descriptor: (Lorg/h2/mvstore/Page;Ljava/util/Set;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page p
        start local 2 // java.util.Set set
         0: .line 594
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 9
         1: .line 595
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.getPos:()J
            lstore 3 /* pos */
        start local 3 // long pos
         2: .line 596
            lload 3 /* pos */
            invokestatic org.h2.mvstore.DataUtils.getPageChunkId:(J)I
            istore 5 /* chunkId */
        start local 5 // int chunkId
         3: .line 597
            aload 2 /* set */
            iload 5 /* chunkId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 598
            iconst_0
            ireturn
         5: .line 600
      StackMap locals: long int
      StackMap stack:
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 6
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            ifgt 6
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         6: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* p */
            invokevirtual org.h2.mvstore.MVMap.rewritePage:(Lorg/h2/mvstore/Page;)Z
            ifeq 7
            iconst_0
            goto 8
      StackMap locals:
      StackMap stack:
         7: iconst_1
      StackMap locals:
      StackMap stack: int
         8: ireturn
        end local 5 // int chunkId
        end local 3 // long pos
         9: .line 603
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* writtenPageCount */
        start local 3 // int writtenPageCount
        10: .line 604
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        11: goto 19
        12: .line 605
      StackMap locals: int int
      StackMap stack:
            aload 1 /* p */
            iload 4 /* i */
            invokevirtual org.h2.mvstore.Page.getChildPagePos:(I)J
            lstore 5 /* childPos */
        start local 5 // long childPos
        13: .line 606
            lload 5 /* childPos */
            lconst_0
            lcmp
            ifeq 17
            lload 5 /* childPos */
            invokestatic org.h2.mvstore.DataUtils.getPageType:(J)I
            ifne 17
        14: .line 610
            lload 5 /* childPos */
            invokestatic org.h2.mvstore.DataUtils.getPageChunkId:(J)I
            istore 7 /* chunkId */
        start local 7 // int chunkId
        15: .line 611
            aload 2 /* set */
            iload 7 /* chunkId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifne 17
        16: .line 612
            goto 18
        end local 7 // int chunkId
        17: .line 615
      StackMap locals: long
      StackMap stack:
            iload 3 /* writtenPageCount */
            aload 0 /* this */
            aload 1 /* p */
            iload 4 /* i */
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            aload 2 /* set */
            invokevirtual org.h2.mvstore.MVMap.rewrite:(Lorg/h2/mvstore/Page;Ljava/util/Set;)I
            iadd
            istore 3 /* writtenPageCount */
        end local 5 // long childPos
        18: .line 604
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* i */
            aload 0 /* this */
            aload 1 /* p */
            invokevirtual org.h2.mvstore.MVMap.getChildPageCount:(Lorg/h2/mvstore/Page;)I
            if_icmplt 12
        end local 4 // int i
        20: .line 617
            iload 3 /* writtenPageCount */
            ifne 31
        21: .line 618
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.getPos:()J
            lstore 4 /* pos */
        start local 4 // long pos
        22: .line 619
            lload 4 /* pos */
            invokestatic org.h2.mvstore.DataUtils.getPageChunkId:(J)I
            istore 6 /* chunkId */
        start local 6 // int chunkId
        23: .line 620
            aload 2 /* set */
            iload 6 /* chunkId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 31
        24: .line 627
            aload 1 /* p */
            astore 7 /* p2 */
        start local 7 // org.h2.mvstore.Page p2
        25: .line 628
            goto 27
        26: .line 629
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page java.util.Set int long int org.h2.mvstore.Page
      StackMap stack:
            aload 7 /* p2 */
            iconst_0
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            astore 7 /* p2 */
        27: .line 628
      StackMap locals:
      StackMap stack:
            aload 7 /* p2 */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 26
        28: .line 631
            aload 0 /* this */
            aload 7 /* p2 */
            invokevirtual org.h2.mvstore.MVMap.rewritePage:(Lorg/h2/mvstore/Page;)Z
            ifeq 30
        29: .line 632
            iconst_0
            ireturn
        30: .line 634
      StackMap locals:
      StackMap stack:
            iinc 3 /* writtenPageCount */ 1
        end local 7 // org.h2.mvstore.Page p2
        end local 6 // int chunkId
        end local 4 // long pos
        31: .line 637
      StackMap locals:
      StackMap stack:
            iload 3 /* writtenPageCount */
            ireturn
        end local 3 // int writtenPageCount
        end local 2 // java.util.Set set
        end local 1 // org.h2.mvstore.Page p
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   32     0              this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   32     1                 p  Lorg/h2/mvstore/Page;
            0   32     2               set  Ljava/util/Set<Ljava/lang/Integer;>;
            2    9     3               pos  J
            3    9     5           chunkId  I
           10   32     3  writtenPageCount  I
           11   20     4                 i  I
           13   18     5          childPos  J
           15   17     7           chunkId  I
           22   31     4               pos  J
           23   31     6           chunkId  I
           25   31     7                p2  Lorg/h2/mvstore/Page;
    Signature: (Lorg/h2/mvstore/Page;Ljava/util/Set<Ljava/lang/Integer;>;)I
    MethodParameters:
      Name  Flags
      p     
      set   

  private boolean rewritePage(org.h2.mvstore.Page);
    descriptor: (Lorg/h2/mvstore/Page;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page p
         0: .line 642
            aload 1 /* p */
            iconst_0
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            astore 2 /* key */
        start local 2 // java.lang.Object key
         1: .line 643
            aload 0 /* this */
            aload 2 /* key */
            invokevirtual org.h2.mvstore.MVMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         2: .line 644
            aload 3 /* value */
            ifnull 6
         3: .line 645
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.isClosed:()Z
            ifeq 5
         4: .line 646
            iconst_1
            ireturn
         5: .line 648
      StackMap locals: java.lang.Object java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 2 /* key */
            aload 3 /* value */
            aload 3 /* value */
            invokevirtual org.h2.mvstore.MVMap.replace:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         6: .line 650
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object key
        end local 1 // org.h2.mvstore.Page p
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    7     1      p  Lorg/h2/mvstore/Page;
            1    7     2    key  TK;
            2    7     3  value  TV;
    MethodParameters:
      Name  Flags
      p     

  public final org.h2.mvstore.Cursor<K, V> cursor(K);
    descriptor: (Ljava/lang/Object;)Lorg/h2/mvstore/Cursor;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object from
         0: .line 660
            new org.h2.mvstore.Cursor
            dup
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            aload 1 /* from */
            invokespecial org.h2.mvstore.Cursor.<init>:(Lorg/h2/mvstore/Page;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object from
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1  from  TK;
    Signature: (TK;)Lorg/h2/mvstore/Cursor<TK;TV;>;
    MethodParameters:
      Name  Flags
      from  

  public final java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 665
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            astore 1 /* root */
        start local 1 // org.h2.mvstore.Page root
         1: .line 666
            new org.h2.mvstore.MVMap$2
            dup
            aload 0 /* this */
            aload 1 /* root */
            invokespecial org.h2.mvstore.MVMap$2.<init>:(Lorg/h2/mvstore/MVMap;Lorg/h2/mvstore/Page;)V
            areturn
        end local 1 // org.h2.mvstore.Page root
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            1    2     1  root  Lorg/h2/mvstore/Page;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 709
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            astore 1 /* root */
        start local 1 // org.h2.mvstore.Page root
         1: .line 710
            new org.h2.mvstore.MVMap$3
            dup
            aload 0 /* this */
            aload 1 /* root */
            invokespecial org.h2.mvstore.MVMap$3.<init>:(Lorg/h2/mvstore/MVMap;Lorg/h2/mvstore/Page;)V
            areturn
        end local 1 // org.h2.mvstore.Page root
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            1    2     1  root  Lorg/h2/mvstore/Page;
    Signature: ()Ljava/util/Set<TK;>;

  public final java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 736
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.id:I
            invokevirtual org.h2.mvstore.MVStore.getMapName:(I)Ljava/lang/String;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final org.h2.mvstore.MVStore getStore();
    descriptor: ()Lorg/h2/mvstore/MVStore;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 740
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final int getId();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 750
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.id:I
            ireturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final org.h2.mvstore.Page getRootPage();
    descriptor: ()Lorg/h2/mvstore/Page;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 759
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.flushAndGetRoot:()Lorg/h2/mvstore/RootReference;
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public org.h2.mvstore.RootReference getRoot();
    descriptor: ()Lorg/h2/mvstore/RootReference;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 763
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast org.h2.mvstore.RootReference
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public org.h2.mvstore.RootReference flushAndGetRoot();
    descriptor: ()Lorg/h2/mvstore/RootReference;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 772
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
        start local 1 // org.h2.mvstore.RootReference rootReference
         1: .line 773
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.singleWriter:Z
            ifeq 3
            aload 1 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            ifle 3
         2: .line 774
            aload 0 /* this */
            aload 1 /* rootReference */
            iconst_0
            invokevirtual org.h2.mvstore.MVMap.flushAppendBuffer:(Lorg/h2/mvstore/RootReference;Z)Lorg/h2/mvstore/RootReference;
            areturn
         3: .line 776
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
            aload 1 /* rootReference */
            areturn
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            1    4     1  rootReference  Lorg/h2/mvstore/RootReference;

  final void setInitialRoot(org.h2.mvstore.Page, long);
    descriptor: (Lorg/h2/mvstore/Page;J)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page rootPage
        start local 2 // long version
         0: .line 786
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            new org.h2.mvstore.RootReference
            dup
            aload 1 /* rootPage */
            lload 2 /* version */
            invokespecial org.h2.mvstore.RootReference.<init>:(Lorg/h2/mvstore/Page;J)V
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
         1: .line 787
            return
        end local 2 // long version
        end local 1 // org.h2.mvstore.Page rootPage
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1  rootPage  Lorg/h2/mvstore/Page;
            0    2     2   version  J
    MethodParameters:
          Name  Flags
      rootPage  
      version   

  final void rollbackTo(long);
    descriptor: (J)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long version
         0: .line 796
            lload 1 /* version */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.createVersion:J
            lcmp
            ifle 2
         1: .line 797
            aload 0 /* this */
            lload 1 /* version */
            invokevirtual org.h2.mvstore.MVMap.rollbackRoot:(J)V
         2: .line 799
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long version
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    3     1  version  J
    MethodParameters:
         Name  Flags
      version  

  void rollbackRoot(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long version
         0: .line 808
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.flushAndGetRoot:()Lorg/h2/mvstore/RootReference;
            astore 3 /* rootReference */
        start local 3 // org.h2.mvstore.RootReference rootReference
         1: .line 810
            goto 5
        start local 4 // org.h2.mvstore.RootReference previous
         2: .line 811
      StackMap locals: org.h2.mvstore.RootReference org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            aload 3 /* rootReference */
            aload 4 /* previous */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         3: .line 812
            aload 4 /* previous */
            astore 3 /* rootReference */
         4: .line 813
            aload 0 /* this */
            iconst_0
            putfield org.h2.mvstore.MVMap.closed:Z
        end local 4 // org.h2.mvstore.RootReference previous
         5: .line 810
      StackMap locals:
      StackMap stack:
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.version:J
            lload 1 /* version */
            lcmp
            iflt 7
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.previous:Lorg/h2/mvstore/RootReference;
            dup
            astore 4 /* previous */
        start local 4 // org.h2.mvstore.RootReference previous
         6: ifnonnull 2
        end local 4 // org.h2.mvstore.RootReference previous
         7: .line 816
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* version */
            invokevirtual org.h2.mvstore.MVMap.setWriteVersion:(J)Lorg/h2/mvstore/RootReference;
            pop
         8: .line 817
            return
        end local 3 // org.h2.mvstore.RootReference rootReference
        end local 1 // long version
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    9     1        version  J
            1    9     3  rootReference  Lorg/h2/mvstore/RootReference;
            2    5     4       previous  Lorg/h2/mvstore/RootReference;
            6    7     4       previous  Lorg/h2/mvstore/RootReference;
    MethodParameters:
         Name  Flags
      version  

  protected final boolean updateRoot(org.h2.mvstore.RootReference, org.h2.mvstore.Page, int);
    descriptor: (Lorg/h2/mvstore/RootReference;Lorg/h2/mvstore/Page;I)Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=8, locals=5, args_size=4
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.RootReference expectedRootReference
        start local 2 // org.h2.mvstore.Page newRootPage
        start local 3 // int attemptUpdateCounter
         0: .line 829
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.flushAndGetRoot:()Lorg/h2/mvstore/RootReference;
            astore 4 /* currentRoot */
        start local 4 // org.h2.mvstore.RootReference currentRoot
         1: .line 830
            aload 4 /* currentRoot */
            aload 1 /* expectedRootReference */
            if_acmpne 8
         2: .line 831
            aload 4 /* currentRoot */
            getfield org.h2.mvstore.RootReference.lockedForUpdate:Z
            ifne 8
         3: .line 832
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            aload 4 /* currentRoot */
         4: .line 833
            new org.h2.mvstore.RootReference
            dup
            aload 4 /* currentRoot */
            aload 2 /* newRootPage */
            iload 3 /* attemptUpdateCounter */
            i2l
            invokespecial org.h2.mvstore.RootReference.<init>:(Lorg/h2/mvstore/RootReference;Lorg/h2/mvstore/Page;J)V
         5: .line 832
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
         6: .line 833
            ifeq 8
         7: .line 830
            iconst_1
            ireturn
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
         8: iconst_0
            ireturn
        end local 4 // org.h2.mvstore.RootReference currentRoot
        end local 3 // int attemptUpdateCounter
        end local 2 // org.h2.mvstore.Page newRootPage
        end local 1 // org.h2.mvstore.RootReference expectedRootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    9     0                   this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    9     1  expectedRootReference  Lorg/h2/mvstore/RootReference;
            0    9     2            newRootPage  Lorg/h2/mvstore/Page;
            0    9     3   attemptUpdateCounter  I
            1    9     4            currentRoot  Lorg/h2/mvstore/RootReference;
    MethodParameters:
                       Name  Flags
      expectedRootReference  
      newRootPage            
      attemptUpdateCounter   

  private void removeUnusedOldVersions(org.h2.mvstore.RootReference);
    descriptor: (Lorg/h2/mvstore/RootReference;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.RootReference rootReference
         0: .line 841
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getOldestVersionToKeep:()J
            lstore 2 /* oldest */
        start local 2 // long oldest
         1: .line 847
            aload 1 /* rootReference */
            astore 4 /* rootRef */
        start local 4 // org.h2.mvstore.RootReference rootRef
         2: goto 6
         3: .line 848
      StackMap locals: long org.h2.mvstore.RootReference
      StackMap stack:
            aload 4 /* rootRef */
            getfield org.h2.mvstore.RootReference.version:J
            lload 2 /* oldest */
            lcmp
            ifge 5
         4: .line 849
            aload 4 /* rootRef */
            aconst_null
            putfield org.h2.mvstore.RootReference.previous:Lorg/h2/mvstore/RootReference;
         5: .line 847
      StackMap locals:
      StackMap stack:
            aload 4 /* rootRef */
            getfield org.h2.mvstore.RootReference.previous:Lorg/h2/mvstore/RootReference;
            astore 4 /* rootRef */
      StackMap locals:
      StackMap stack:
         6: aload 4 /* rootRef */
            ifnonnull 3
        end local 4 // org.h2.mvstore.RootReference rootRef
         7: .line 852
            return
        end local 2 // long oldest
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    8     1  rootReference  Lorg/h2/mvstore/RootReference;
            1    8     2         oldest  J
            2    7     4        rootRef  Lorg/h2/mvstore/RootReference;
    MethodParameters:
               Name  Flags
      rootReference  

  public final boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 855
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.readOnly:Z
            ireturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final void setVolatile(boolean);
    descriptor: (Z)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // boolean isVolatile
         0: .line 864
            aload 0 /* this */
            iload 1 /* isVolatile */
            putfield org.h2.mvstore.MVMap.isVolatile:Z
         1: .line 865
            return
        end local 1 // boolean isVolatile
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1  isVolatile  Z
    MethodParameters:
            Name  Flags
      isVolatile  

  public final boolean isVolatile();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 875
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.isVolatile:Z
            ireturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  protected final void beforeWrite();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 887
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.closed:Z
            ifeq 5
         1: .line 888
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getId:()I
            istore 1 /* id */
        start local 1 // int id
         2: .line 889
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            iload 1 /* id */
            invokevirtual org.h2.mvstore.MVStore.getMapName:(I)Ljava/lang/String;
            astore 2 /* mapName */
        start local 2 // java.lang.String mapName
         3: .line 891
            iconst_4
            ldc "Map {0}({1}) is closed. {2}"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* mapName */
            aastore
            dup
            iconst_1
            iload 1 /* id */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getPanicException:()Ljava/lang/IllegalStateException;
            aastore
         4: .line 890
            invokestatic org.h2.mvstore.DataUtils.newIllegalStateException:(ILjava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalStateException;
            athrow
        end local 2 // java.lang.String mapName
        end local 1 // int id
         5: .line 893
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.readOnly:Z
            ifeq 8
         6: .line 895
            ldc "This map is read-only"
         7: .line 894
            invokestatic org.h2.mvstore.DataUtils.newUnsupportedOperationException:(Ljava/lang/String;)Ljava/lang/UnsupportedOperationException;
            athrow
         8: .line 897
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVStore.beforeWrite:(Lorg/h2/mvstore/MVMap;)V
         9: .line 898
            return
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            2    5     1       id  I
            3    5     2  mapName  Ljava/lang/String;

  public final int hashCode();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 902
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.id:I
            ireturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object o
         0: .line 907
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public final int size();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 919
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.sizeAsLong:()J
            lstore 1 /* size */
        start local 1 // long size
         1: .line 920
            lload 1 /* size */
            ldc 2147483647
            lcmp
            ifle 2
            ldc 2147483647
            goto 3
      StackMap locals: long
      StackMap stack:
         2: lload 1 /* size */
            l2i
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // long size
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            1    4     1  size  J

  public final long sizeAsLong();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 929
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            invokevirtual org.h2.mvstore.RootReference.getTotalCount:()J
            lreturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 934
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.sizeAsLong:()J
            lconst_0
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public final long getCreateVersion();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 938
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.createVersion:J
            lreturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  protected final void removePage(long, int);
    descriptor: (JI)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long pos
        start local 3 // int memory
         0: .line 948
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            lload 1 /* pos */
            iload 3 /* memory */
            invokevirtual org.h2.mvstore.MVStore.removePage:(JI)V
         1: .line 949
            return
        end local 3 // int memory
        end local 1 // long pos
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1     pos  J
            0    2     3  memory  I
    MethodParameters:
        Name  Flags
      pos     
      memory  

  public final org.h2.mvstore.MVMap<K, V> openVersion(long);
    descriptor: (J)Lorg/h2/mvstore/MVMap;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long version
         0: .line 958
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.readOnly:Z
            ifeq 3
         1: .line 960
            ldc "This map is read-only; need to call the method on the writable map"
         2: .line 959
            invokestatic org.h2.mvstore.DataUtils.newUnsupportedOperationException:(Ljava/lang/String;)Ljava/lang/UnsupportedOperationException;
            athrow
         3: .line 963
      StackMap locals:
      StackMap stack:
            lload 1 /* version */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.createVersion:J
            lcmp
            iflt 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
         5: .line 964
      StackMap locals:
      StackMap stack: int
            ldc "Unknown version {0}; this map was created in version is {1}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
         6: .line 965
            lload 1 /* version */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.createVersion:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
         7: .line 963
            invokestatic org.h2.mvstore.DataUtils.checkArgument:(ZLjava/lang/String;[Ljava/lang/Object;)V
         8: .line 966
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 3 /* rootReference */
        start local 3 // org.h2.mvstore.RootReference rootReference
         9: .line 967
            aload 0 /* this */
            aload 3 /* rootReference */
            invokevirtual org.h2.mvstore.MVMap.removeUnusedOldVersions:(Lorg/h2/mvstore/RootReference;)V
        10: .line 968
            goto 12
        11: .line 969
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.previous:Lorg/h2/mvstore/RootReference;
            astore 3 /* rootReference */
        12: .line 968
      StackMap locals:
      StackMap stack:
            aload 3 /* rootReference */
            ifnull 13
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.version:J
            lload 1 /* version */
            lcmp
            ifgt 11
        13: .line 972
      StackMap locals:
      StackMap stack:
            aload 3 /* rootReference */
            ifnonnull 16
        14: .line 974
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getId:()I
            lload 1 /* version */
            invokevirtual org.h2.mvstore.MVStore.getRootPos:(IJ)J
            lload 1 /* version */
            invokevirtual org.h2.mvstore.MVMap.openReadOnly:(JJ)Lorg/h2/mvstore/MVMap;
            astore 4 /* map */
        start local 4 // org.h2.mvstore.MVMap map
        15: .line 975
            aload 4 /* map */
            areturn
        end local 4 // org.h2.mvstore.MVMap map
        16: .line 977
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            lload 1 /* version */
            invokevirtual org.h2.mvstore.MVMap.openReadOnly:(Lorg/h2/mvstore/Page;J)Lorg/h2/mvstore/MVMap;
            astore 4 /* m */
        start local 4 // org.h2.mvstore.MVMap m
        17: .line 978
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 18
            aload 4 /* m */
            invokevirtual org.h2.mvstore.MVMap.getVersion:()J
            lload 1 /* version */
            lcmp
            ifle 18
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            aload 4 /* m */
            invokevirtual org.h2.mvstore.MVMap.getVersion:()J
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " <= "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 1 /* version */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        18: .line 979
      StackMap locals: org.h2.mvstore.MVMap
      StackMap stack:
            aload 4 /* m */
            areturn
        end local 4 // org.h2.mvstore.MVMap m
        end local 3 // org.h2.mvstore.RootReference rootReference
        end local 1 // long version
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   19     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   19     1        version  J
            9   19     3  rootReference  Lorg/h2/mvstore/RootReference;
           15   16     4            map  Lorg/h2/mvstore/MVMap<TK;TV;>;
           17   19     4              m  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: (J)Lorg/h2/mvstore/MVMap<TK;TV;>;
    MethodParameters:
         Name  Flags
      version  

  final org.h2.mvstore.MVMap<K, V> openReadOnly(long, long);
    descriptor: (JJ)Lorg/h2/mvstore/MVMap;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long rootPos
        start local 3 // long version
         0: .line 990
            aload 0 /* this */
            lload 1 /* rootPos */
            invokevirtual org.h2.mvstore.MVMap.readOrCreateRootPage:(J)Lorg/h2/mvstore/Page;
            astore 5 /* root */
        start local 5 // org.h2.mvstore.Page root
         1: .line 991
            aload 0 /* this */
            aload 5 /* root */
            lload 3 /* version */
            invokevirtual org.h2.mvstore.MVMap.openReadOnly:(Lorg/h2/mvstore/Page;J)Lorg/h2/mvstore/MVMap;
            areturn
        end local 5 // org.h2.mvstore.Page root
        end local 3 // long version
        end local 1 // long rootPos
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    2     1  rootPos  J
            0    2     3  version  J
            1    2     5     root  Lorg/h2/mvstore/Page;
    Signature: (JJ)Lorg/h2/mvstore/MVMap<TK;TV;>;
    MethodParameters:
         Name  Flags
      rootPos  
      version  

  private org.h2.mvstore.MVMap<K, V> openReadOnly(org.h2.mvstore.Page, long);
    descriptor: (Lorg/h2/mvstore/Page;J)Lorg/h2/mvstore/MVMap;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page root
        start local 2 // long version
         0: .line 995
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.cloneIt:()Lorg/h2/mvstore/MVMap;
            astore 4 /* m */
        start local 4 // org.h2.mvstore.MVMap m
         1: .line 996
            aload 4 /* m */
            iconst_1
            putfield org.h2.mvstore.MVMap.readOnly:Z
         2: .line 997
            aload 4 /* m */
            aload 1 /* root */
            lload 2 /* version */
            invokevirtual org.h2.mvstore.MVMap.setInitialRoot:(Lorg/h2/mvstore/Page;J)V
         3: .line 998
            aload 4 /* m */
            areturn
        end local 4 // org.h2.mvstore.MVMap m
        end local 2 // long version
        end local 1 // org.h2.mvstore.Page root
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    4     1     root  Lorg/h2/mvstore/Page;
            0    4     2  version  J
            1    4     4        m  Lorg/h2/mvstore/MVMap<TK;TV;>;
    Signature: (Lorg/h2/mvstore/Page;J)Lorg/h2/mvstore/MVMap<TK;TV;>;
    MethodParameters:
         Name  Flags
      root     
      version  

  public final long getVersion();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1008
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            invokestatic org.h2.mvstore.MVMap.getVersion:(Lorg/h2/mvstore/RootReference;)J
            lreturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  private static long getVersion(org.h2.mvstore.RootReference);
    descriptor: (Lorg/h2/mvstore/RootReference;)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.mvstore.RootReference rootReference
         0: .line 1012
            aload 0 /* rootReference */
            getfield org.h2.mvstore.RootReference.previous:Lorg/h2/mvstore/RootReference;
            astore 1 /* previous */
        start local 1 // org.h2.mvstore.RootReference previous
         1: .line 1013
            aload 1 /* previous */
            ifnull 3
            aload 1 /* previous */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            aload 0 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            if_acmpne 3
         2: .line 1014
            aload 1 /* previous */
            getfield org.h2.mvstore.RootReference.appendCounter:B
            aload 0 /* rootReference */
            getfield org.h2.mvstore.RootReference.appendCounter:B
            if_icmpeq 4
         3: .line 1015
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* rootReference */
            getfield org.h2.mvstore.RootReference.version:J
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 1 /* previous */
            getfield org.h2.mvstore.RootReference.version:J
         5: .line 1013
      StackMap locals:
      StackMap stack: long
            lreturn
        end local 1 // org.h2.mvstore.RootReference previous
        end local 0 // org.h2.mvstore.RootReference rootReference
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0  rootReference  Lorg/h2/mvstore/RootReference;
            1    6     1       previous  Lorg/h2/mvstore/RootReference;
    MethodParameters:
               Name  Flags
      rootReference  

  final boolean hasChangesSince(long);
    descriptor: (J)Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long version
         0: .line 1025
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 3 /* rootReference */
        start local 3 // org.h2.mvstore.RootReference rootReference
         1: .line 1026
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            astore 4 /* root */
        start local 4 // org.h2.mvstore.Page root
         2: .line 1027
            aload 4 /* root */
            invokevirtual org.h2.mvstore.Page.isSaved:()Z
            ifne 3
            aload 3 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getTotalCount:()J
            lconst_0
            lcmp
            ifgt 5
         3: .line 1028
      StackMap locals: org.h2.mvstore.RootReference org.h2.mvstore.Page
      StackMap stack:
            aload 3 /* rootReference */
            invokestatic org.h2.mvstore.MVMap.getVersion:(Lorg/h2/mvstore/RootReference;)J
            lload 1 /* version */
         4: .line 1027
            lcmp
            ifgt 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
        end local 4 // org.h2.mvstore.Page root
        end local 3 // org.h2.mvstore.RootReference rootReference
        end local 1 // long version
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    6     1        version  J
            1    6     3  rootReference  Lorg/h2/mvstore/RootReference;
            2    6     4           root  Lorg/h2/mvstore/Page;
    MethodParameters:
         Name  Flags
      version  

  protected int getChildPageCount(org.h2.mvstore.Page);
    descriptor: (Lorg/h2/mvstore/Page;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page p
         0: .line 1040
            aload 1 /* p */
            invokevirtual org.h2.mvstore.Page.getRawChildPageCount:()I
            ireturn
        end local 1 // org.h2.mvstore.Page p
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1     p  Lorg/h2/mvstore/Page;
    MethodParameters:
      Name  Flags
      p     

  public java.lang.String getType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1049
            aconst_null
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  protected java.lang.String asString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.String name
         0: .line 1059
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* buff */
        start local 2 // java.lang.StringBuilder buff
         1: .line 1060
            aload 1 /* name */
            ifnull 3
         2: .line 1061
            aload 2 /* buff */
            ldc "name"
            aload 1 /* name */
            invokestatic org.h2.mvstore.DataUtils.appendMap:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V
         3: .line 1063
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.createVersion:J
            lconst_0
            lcmp
            ifeq 5
         4: .line 1064
            aload 2 /* buff */
            ldc "createVersion"
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.createVersion:J
            invokestatic org.h2.mvstore.DataUtils.appendMap:(Ljava/lang/StringBuilder;Ljava/lang/String;J)V
         5: .line 1066
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getType:()Ljava/lang/String;
            astore 3 /* type */
        start local 3 // java.lang.String type
         6: .line 1067
            aload 3 /* type */
            ifnull 8
         7: .line 1068
            aload 2 /* buff */
            ldc "type"
            aload 3 /* type */
            invokestatic org.h2.mvstore.DataUtils.appendMap:(Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V
         8: .line 1070
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* buff */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // java.lang.String type
        end local 2 // java.lang.StringBuilder buff
        end local 1 // java.lang.String name
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    9     1  name  Ljava/lang/String;
            1    9     2  buff  Ljava/lang/StringBuilder;
            6    9     3  type  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  final org.h2.mvstore.RootReference setWriteVersion(long);
    descriptor: (J)Lorg/h2/mvstore/RootReference;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // long writeVersion
         0: .line 1074
            iconst_0
            istore 3 /* attempt */
        start local 3 // int attempt
         1: .line 1076
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.flushAndGetRoot:()Lorg/h2/mvstore/RootReference;
            astore 4 /* rootReference */
        start local 4 // org.h2.mvstore.RootReference rootReference
         2: .line 1077
            aload 4 /* rootReference */
            getfield org.h2.mvstore.RootReference.version:J
            lload 1 /* writeVersion */
            lcmp
            iflt 4
         3: .line 1078
            aload 4 /* rootReference */
            areturn
         4: .line 1079
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.isClosed:()Z
            ifeq 8
         5: .line 1080
            aload 4 /* rootReference */
            getfield org.h2.mvstore.RootReference.version:J
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getOldestVersionToKeep:()J
            lcmp
            ifge 7
         6: .line 1081
            aconst_null
            areturn
         7: .line 1083
      StackMap locals:
      StackMap stack:
            aload 4 /* rootReference */
            areturn
         8: .line 1085
      StackMap locals:
      StackMap stack:
            new org.h2.mvstore.RootReference
            dup
            aload 4 /* rootReference */
            lload 1 /* writeVersion */
            iinc 3 /* attempt */ 1
            iload 3 /* attempt */
            invokespecial org.h2.mvstore.RootReference.<init>:(Lorg/h2/mvstore/RootReference;JI)V
            astore 5 /* updatedRootReference */
        start local 5 // org.h2.mvstore.RootReference updatedRootReference
         9: .line 1086
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            aload 4 /* rootReference */
            aload 5 /* updatedRootReference */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 1
        10: .line 1087
            aload 0 /* this */
            aload 5 /* updatedRootReference */
            invokevirtual org.h2.mvstore.MVMap.removeUnusedOldVersions:(Lorg/h2/mvstore/RootReference;)V
        11: .line 1088
            aload 5 /* updatedRootReference */
            areturn
        end local 5 // org.h2.mvstore.RootReference updatedRootReference
        end local 4 // org.h2.mvstore.RootReference rootReference
        end local 3 // int attempt
        end local 1 // long writeVersion
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   12     0                  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   12     1          writeVersion  J
            1   12     3               attempt  I
            2   12     4         rootReference  Lorg/h2/mvstore/RootReference;
            9   12     5  updatedRootReference  Lorg/h2/mvstore/RootReference;
    MethodParameters:
              Name  Flags
      writeVersion  

  public org.h2.mvstore.Page createEmptyLeaf();
    descriptor: ()Lorg/h2/mvstore/Page;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1099
            aload 0 /* this */
            invokestatic org.h2.mvstore.Page.createEmptyLeaf:(Lorg/h2/mvstore/MVMap;)Lorg/h2/mvstore/Page;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  protected org.h2.mvstore.Page createEmptyNode();
    descriptor: ()Lorg/h2/mvstore/Page;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1108
            aload 0 /* this */
            invokestatic org.h2.mvstore.Page.createEmptyNode:(Lorg/h2/mvstore/MVMap;)Lorg/h2/mvstore/Page;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  final void copyFrom(org.h2.mvstore.MVMap<K, V>);
    descriptor: (Lorg/h2/mvstore/MVMap;)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.MVMap sourceMap
         0: .line 1123
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.registerVersionUsage:()Lorg/h2/mvstore/MVStore$TxCounter;
            astore 2 /* txCounter */
        start local 2 // org.h2.mvstore.MVStore$TxCounter txCounter
         1: .line 1125
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.beforeWrite:()V
         2: .line 1126
            aload 0 /* this */
            aload 1 /* sourceMap */
            invokevirtual org.h2.mvstore.MVMap.getRootPage:()Lorg/h2/mvstore/Page;
            aconst_null
            iconst_0
            invokevirtual org.h2.mvstore.MVMap.copy:(Lorg/h2/mvstore/Page;Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/Page;
            pop
         3: .line 1127
            goto 7
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.MVMap org.h2.mvstore.MVStore$TxCounter
      StackMap stack: java.lang.Throwable
         4: astore 3
         5: .line 1128
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 2 /* txCounter */
            invokevirtual org.h2.mvstore.MVStore.deregisterVersionUsage:(Lorg/h2/mvstore/MVStore$TxCounter;)V
         6: .line 1129
            aload 3
            athrow
         7: .line 1128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 2 /* txCounter */
            invokevirtual org.h2.mvstore.MVStore.deregisterVersionUsage:(Lorg/h2/mvstore/MVStore$TxCounter;)V
         8: .line 1130
            return
        end local 2 // org.h2.mvstore.MVStore$TxCounter txCounter
        end local 1 // org.h2.mvstore.MVMap sourceMap
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    9     1  sourceMap  Lorg/h2/mvstore/MVMap<TK;TV;>;
            1    9     2  txCounter  Lorg/h2/mvstore/MVStore$TxCounter;
      Exception table:
        from    to  target  type
           1     4       4  any
    Signature: (Lorg/h2/mvstore/MVMap<TK;TV;>;)V
    MethodParameters:
           Name  Flags
      sourceMap  

  private org.h2.mvstore.Page copy(org.h2.mvstore.Page, org.h2.mvstore.Page, int);
    descriptor: (Lorg/h2/mvstore/Page;Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/Page;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page source
        start local 2 // org.h2.mvstore.Page parent
        start local 3 // int index
         0: .line 1133
            aload 1 /* source */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.Page.copy:(Lorg/h2/mvstore/MVMap;)Lorg/h2/mvstore/Page;
            astore 4 /* target */
        start local 4 // org.h2.mvstore.Page target
         1: .line 1134
            aload 2 /* parent */
            ifnonnull 4
         2: .line 1135
            aload 0 /* this */
            aload 4 /* target */
            ldc -1
            invokevirtual org.h2.mvstore.MVMap.setInitialRoot:(Lorg/h2/mvstore/Page;J)V
         3: .line 1136
            goto 5
         4: .line 1137
      StackMap locals: org.h2.mvstore.Page
      StackMap stack:
            aload 2 /* parent */
            iload 3 /* index */
            aload 4 /* target */
            invokevirtual org.h2.mvstore.Page.setChild:(ILorg/h2/mvstore/Page;)V
         5: .line 1139
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifne 13
         6: .line 1140
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         7: goto 11
         8: .line 1141
      StackMap locals: int
      StackMap stack:
            aload 1 /* source */
            iload 5 /* i */
            invokevirtual org.h2.mvstore.Page.getChildPagePos:(I)J
            lconst_0
            lcmp
            ifeq 10
         9: .line 1145
            aload 0 /* this */
            aload 1 /* source */
            iload 5 /* i */
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            aload 4 /* target */
            iload 5 /* i */
            invokevirtual org.h2.mvstore.MVMap.copy:(Lorg/h2/mvstore/Page;Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/Page;
            pop
        10: .line 1140
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            aload 0 /* this */
            aload 4 /* target */
            invokevirtual org.h2.mvstore.MVMap.getChildPageCount:(Lorg/h2/mvstore/Page;)I
            if_icmplt 8
        end local 5 // int i
        12: .line 1148
            aload 4 /* target */
            invokevirtual org.h2.mvstore.Page.setComplete:()V
        13: .line 1150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 4 /* target */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            invokevirtual org.h2.mvstore.MVStore.registerUnsavedPage:(I)V
        14: .line 1151
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.isSaveNeeded:()Z
            ifeq 16
        15: .line 1152
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.commit:()J
            pop2
        16: .line 1154
      StackMap locals:
      StackMap stack:
            aload 4 /* target */
            areturn
        end local 4 // org.h2.mvstore.Page target
        end local 3 // int index
        end local 2 // org.h2.mvstore.Page parent
        end local 1 // org.h2.mvstore.Page source
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   17     1  source  Lorg/h2/mvstore/Page;
            0   17     2  parent  Lorg/h2/mvstore/Page;
            0   17     3   index  I
            1   17     4  target  Lorg/h2/mvstore/Page;
            7   12     5       i  I
    MethodParameters:
        Name  Flags
      source  
      parent  
      index   

  private org.h2.mvstore.RootReference flushAppendBuffer(org.h2.mvstore.RootReference, boolean);
    descriptor: (Lorg/h2/mvstore/RootReference;Z)Lorg/h2/mvstore/RootReference;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=20, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.RootReference rootReference
        start local 2 // boolean lockedForUpdate
         0: .line 1166
            new org.h2.mvstore.MVMap$IntValueHolder
            dup
            invokespecial org.h2.mvstore.MVMap$IntValueHolder.<init>:()V
            astore 3 /* unsavedMemoryHolder */
        start local 3 // org.h2.mvstore.MVMap$IntValueHolder unsavedMemoryHolder
         1: .line 1167
            iload 2 /* lockedForUpdate */
            ifeq 2
            aload 1 /* rootReference */
            goto 3
      StackMap locals: org.h2.mvstore.MVMap$IntValueHolder
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: org.h2.mvstore.RootReference
         3: astore 4 /* lockedRootReference */
        start local 4 // org.h2.mvstore.RootReference lockedRootReference
         4: .line 1169
            iconst_0
            istore 5 /* attempt */
        start local 5 // int attempt
         5: .line 1171
            goto 102
        start local 6 // int keyCount
         6: .line 1172
      StackMap locals: org.h2.mvstore.RootReference int int
      StackMap stack:
            aload 4 /* lockedRootReference */
            ifnonnull 12
         7: .line 1173
            aload 0 /* this */
            aload 1 /* rootReference */
            iinc 5 /* attempt */ 1
            iload 5 /* attempt */
            invokevirtual org.h2.mvstore.MVMap.tryLock:(Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
            astore 4 /* lockedRootReference */
         8: .line 1174
            aload 4 /* lockedRootReference */
            ifnonnull 9
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 4 /* lockedRootReference */
      StackMap locals:
      StackMap stack: org.h2.mvstore.RootReference
        10: astore 1 /* rootReference */
        11: .line 1175
            goto 102
        12: .line 1178
      StackMap locals:
      StackMap stack:
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            astore 7 /* rootPage */
        start local 7 // org.h2.mvstore.Page rootPage
        13: .line 1180
            aload 7 /* rootPage */
            aconst_null
            invokevirtual org.h2.mvstore.Page.getAppendCursorPos:(Lorg/h2/mvstore/CursorPos;)Lorg/h2/mvstore/CursorPos;
            astore 8 /* pos */
        start local 8 // org.h2.mvstore.CursorPos pos
        14: .line 1181
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 15
            aload 8 /* pos */
            ifnonnull 15
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        15: .line 1182
      StackMap locals: org.h2.mvstore.Page org.h2.mvstore.CursorPos
      StackMap stack:
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 16
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            iflt 16
            new java.lang.AssertionError
            dup
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            invokespecial java.lang.AssertionError.<init>:(I)V
            athrow
        16: .line 1183
      StackMap locals:
      StackMap stack:
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            ineg
            iconst_1
            isub
            istore 9 /* index */
        start local 9 // int index
        17: .line 1184
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 18
            iload 9 /* index */
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            if_icmpeq 18
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            iload 9 /* index */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " != "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        18: .line 1185
      StackMap locals: int
      StackMap stack:
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 10 /* p */
        start local 10 // org.h2.mvstore.Page p
        19: .line 1186
            aload 8 /* pos */
            astore 11 /* tip */
        start local 11 // org.h2.mvstore.CursorPos tip
        20: .line 1187
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 8 /* pos */
        21: .line 1189
            iconst_0
            istore 12 /* remainingBuffer */
        start local 12 // int remainingBuffer
        22: .line 1190
            aconst_null
            astore 13 /* page */
        start local 13 // org.h2.mvstore.Page page
        23: .line 1191
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getKeysPerPage:()I
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            isub
            istore 14 /* available */
        start local 14 // int available
        24: .line 1192
            iload 14 /* available */
            ifle 42
        25: .line 1193
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.copy:()Lorg/h2/mvstore/Page;
            astore 10 /* p */
        26: .line 1194
            iload 6 /* keyCount */
            iload 14 /* available */
            if_icmpgt 29
        27: .line 1195
            aload 10 /* p */
            iload 6 /* keyCount */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            invokevirtual org.h2.mvstore.Page.expand:(I[Ljava/lang/Object;[Ljava/lang/Object;)V
        28: .line 1196
            goto 48
        29: .line 1197
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference int int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page int
      StackMap stack:
            aload 10 /* p */
            iload 14 /* available */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            invokevirtual org.h2.mvstore.Page.expand:(I[Ljava/lang/Object;[Ljava/lang/Object;)V
        30: .line 1198
            iload 6 /* keyCount */
            iload 14 /* available */
            isub
            istore 6 /* keyCount */
        31: .line 1199
            iload 2 /* lockedForUpdate */
            ifeq 36
        32: .line 1200
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            iload 14 /* available */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            iconst_0
            iload 6 /* keyCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        33: .line 1201
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            iload 14 /* available */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            iconst_0
            iload 6 /* keyCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        34: .line 1202
            iload 6 /* keyCount */
            istore 12 /* remainingBuffer */
        35: .line 1203
            goto 48
        36: .line 1204
      StackMap locals:
      StackMap stack:
            iload 6 /* keyCount */
            anewarray java.lang.Object
            astore 15 /* keys */
        start local 15 // java.lang.Object[] keys
        37: .line 1205
            iload 6 /* keyCount */
            anewarray java.lang.Object
            astore 16 /* values */
        start local 16 // java.lang.Object[] values
        38: .line 1206
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            iload 14 /* available */
            aload 15 /* keys */
            iconst_0
            iload 6 /* keyCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        39: .line 1207
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            iload 14 /* available */
            aload 16 /* values */
            iconst_0
            iload 6 /* keyCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        40: .line 1208
            aload 0 /* this */
            aload 15 /* keys */
            aload 16 /* values */
            iconst_0
            invokestatic org.h2.mvstore.Page.createLeaf:(Lorg/h2/mvstore/MVMap;[Ljava/lang/Object;[Ljava/lang/Object;I)Lorg/h2/mvstore/Page;
            astore 13 /* page */
        end local 16 // java.lang.Object[] values
        end local 15 // java.lang.Object[] keys
        41: .line 1211
            goto 48
        42: .line 1212
      StackMap locals:
      StackMap stack:
            aload 11 /* tip */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 11 /* tip */
        43: .line 1213
            aload 0 /* this */
        44: .line 1214
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            iload 6 /* keyCount */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
        45: .line 1215
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            iload 6 /* keyCount */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
        46: .line 1216
            iconst_0
        47: .line 1213
            invokestatic org.h2.mvstore.Page.createLeaf:(Lorg/h2/mvstore/MVMap;[Ljava/lang/Object;[Ljava/lang/Object;I)Lorg/h2/mvstore/Page;
            astore 13 /* page */
        48: .line 1219
      StackMap locals:
      StackMap stack:
            aload 3 /* unsavedMemoryHolder */
            iconst_0
            putfield org.h2.mvstore.MVMap$IntValueHolder.value:I
        49: .line 1220
            aload 13 /* page */
            ifnull 83
        50: .line 1221
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 51
            aload 13 /* page */
            getfield org.h2.mvstore.Page.map:Lorg/h2/mvstore/MVMap;
            aload 0 /* this */
            if_acmpeq 51
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        51: .line 1222
      StackMap locals:
      StackMap stack:
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 52
            aload 13 /* page */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            ifgt 52
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        52: .line 1223
      StackMap locals:
      StackMap stack:
            aload 13 /* page */
            iconst_0
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            astore 15 /* key */
        start local 15 // java.lang.Object key
        53: .line 1224
            aload 3 /* unsavedMemoryHolder */
            dup
            getfield org.h2.mvstore.MVMap$IntValueHolder.value:I
            aload 13 /* page */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            iadd
            putfield org.h2.mvstore.MVMap$IntValueHolder.value:I
        54: .line 1226
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 8 /* pos */
            ifnonnull 65
        55: .line 1227
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            ifne 58
        56: .line 1228
            aload 13 /* page */
            astore 10 /* p */
        57: .line 1229
            goto 83
        58: .line 1230
      StackMap locals:
      StackMap stack:
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 15 /* key */
            aastore
            astore 16 /* keys */
        start local 16 // java.lang.Object[] keys
        59: .line 1231
            iconst_2
            anewarray org.h2.mvstore.Page$PageReference
            dup
            iconst_0
        60: .line 1232
            new org.h2.mvstore.Page$PageReference
            dup
            aload 10 /* p */
            invokespecial org.h2.mvstore.Page$PageReference.<init>:(Lorg/h2/mvstore/Page;)V
            aastore
            dup
            iconst_1
        61: .line 1233
            new org.h2.mvstore.Page$PageReference
            dup
            aload 13 /* page */
            invokespecial org.h2.mvstore.Page$PageReference.<init>:(Lorg/h2/mvstore/Page;)V
            aastore
        62: .line 1231
            astore 17 /* children */
        start local 17 // org.h2.mvstore.Page$PageReference[] children
        63: .line 1234
            aload 0 /* this */
            aload 16 /* keys */
            aload 17 /* children */
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.getTotalCount:()J
            aload 13 /* page */
            invokevirtual org.h2.mvstore.Page.getTotalCount:()J
            ladd
            iconst_0
            invokestatic org.h2.mvstore.Page.createNode:(Lorg/h2/mvstore/MVMap;[Ljava/lang/Object;[Lorg/h2/mvstore/Page$PageReference;JI)Lorg/h2/mvstore/Page;
            astore 10 /* p */
        end local 17 // org.h2.mvstore.Page$PageReference[] children
        end local 16 // java.lang.Object[] keys
        64: .line 1236
            goto 83
        65: .line 1238
      StackMap locals:
      StackMap stack:
            aload 10 /* p */
            astore 16 /* c */
        start local 16 // org.h2.mvstore.Page c
        66: .line 1239
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 10 /* p */
        67: .line 1240
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            istore 9 /* index */
        68: .line 1241
            aload 8 /* pos */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 8 /* pos */
        69: .line 1242
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.copy:()Lorg/h2/mvstore/Page;
            astore 10 /* p */
        70: .line 1243
            aload 10 /* p */
            iload 9 /* index */
            aload 13 /* page */
            invokevirtual org.h2.mvstore.Page.setChild:(ILorg/h2/mvstore/Page;)V
        71: .line 1244
            aload 10 /* p */
            iload 9 /* index */
            aload 15 /* key */
            aload 16 /* c */
            invokevirtual org.h2.mvstore.Page.insertNode:(ILjava/lang/Object;Lorg/h2/mvstore/Page;)V
        72: .line 1245
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            istore 6 /* keyCount */
        73: .line 1246
            iload 6 /* keyCount */
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 74
            iconst_1
            goto 75
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference int int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page int java.lang.Object org.h2.mvstore.Page
      StackMap stack: int
        74: iconst_2
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference int int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page int java.lang.Object org.h2.mvstore.Page
      StackMap stack: int int
        75: isub
            istore 17 /* at */
        start local 17 // int at
        76: .line 1247
            iload 6 /* keyCount */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getKeysPerPage:()I
            if_icmpgt 79
        77: .line 1248
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            i2l
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getMaxPageSize:()J
            lcmp
            iflt 83
            iload 17 /* at */
            ifgt 79
        78: .line 1249
            goto 83
        79: .line 1251
      StackMap locals: int
      StackMap stack:
            aload 10 /* p */
            iload 17 /* at */
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            astore 15 /* key */
        80: .line 1252
            aload 10 /* p */
            iload 17 /* at */
            invokevirtual org.h2.mvstore.Page.split:(I)Lorg/h2/mvstore/Page;
            astore 13 /* page */
        81: .line 1253
            aload 3 /* unsavedMemoryHolder */
            dup
            getfield org.h2.mvstore.MVMap$IntValueHolder.value:I
            aload 10 /* p */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            aload 13 /* page */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            iadd
            iadd
            putfield org.h2.mvstore.MVMap$IntValueHolder.value:I
        end local 17 // int at
        end local 16 // org.h2.mvstore.Page c
        82: .line 1225
            goto 54
        end local 15 // java.lang.Object key
        83: .line 1256
      StackMap locals:
      StackMap stack:
            aload 8 /* pos */
            aload 10 /* p */
            aload 3 /* unsavedMemoryHolder */
            invokestatic org.h2.mvstore.MVMap.replacePage:(Lorg/h2/mvstore/CursorPos;Lorg/h2/mvstore/Page;Lorg/h2/mvstore/MVMap$IntValueHolder;)Lorg/h2/mvstore/Page;
            astore 10 /* p */
        84: .line 1258
            new org.h2.mvstore.RootReference
            dup
            aload 1 /* rootReference */
            aload 10 /* p */
            iload 12 /* remainingBuffer */
        85: .line 1259
            iload 2 /* lockedForUpdate */
        86: .line 1258
            invokespecial org.h2.mvstore.RootReference.<init>:(Lorg/h2/mvstore/RootReference;Lorg/h2/mvstore/Page;IZ)V
            astore 15 /* updatedRootReference */
        start local 15 // org.h2.mvstore.RootReference updatedRootReference
        87: .line 1260
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* rootReference */
            aload 15 /* updatedRootReference */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 101
        88: .line 1261
            aconst_null
            astore 4 /* lockedRootReference */
        89: .line 1262
            goto 92
        90: .line 1263
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
            aload 11 /* tip */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            invokevirtual org.h2.mvstore.Page.removePage:()V
        91: .line 1264
            aload 11 /* tip */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 11 /* tip */
        92: .line 1262
      StackMap locals:
      StackMap stack:
            aload 11 /* tip */
            ifnonnull 90
        93: .line 1266
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getFileStore:()Lorg/h2/mvstore/FileStore;
            ifnull 95
        94: .line 1267
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 3 /* unsavedMemoryHolder */
            getfield org.h2.mvstore.MVMap$IntValueHolder.value:I
            invokevirtual org.h2.mvstore.MVStore.registerUnsavedPage:(I)V
        95: .line 1269
      StackMap locals:
      StackMap stack:
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 96
            iload 2 /* lockedForUpdate */
            ifne 96
            aload 15 /* updatedRootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            ifeq 96
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        96: .line 1270
      StackMap locals:
      StackMap stack:
            aload 15 /* updatedRootReference */
            astore 19
        97: .line 1275
            aload 4 /* lockedRootReference */
            ifnull 100
            iload 2 /* lockedForUpdate */
            ifne 100
        98: .line 1276
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 99
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            aload 4 /* lockedRootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            if_acmpeq 99
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        99: .line 1277
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference int int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page int org.h2.mvstore.RootReference top top top org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
       100: .line 1270
      StackMap locals:
      StackMap stack:
            aload 19
            areturn
       101: .line 1272
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference int int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page org.h2.mvstore.CursorPos int org.h2.mvstore.Page int org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
        end local 15 // org.h2.mvstore.RootReference updatedRootReference
        end local 14 // int available
        end local 13 // org.h2.mvstore.Page page
        end local 12 // int remainingBuffer
        end local 11 // org.h2.mvstore.CursorPos tip
        end local 10 // org.h2.mvstore.Page p
        end local 9 // int index
        end local 8 // org.h2.mvstore.CursorPos pos
        end local 7 // org.h2.mvstore.Page rootPage
        end local 6 // int keyCount
       102: .line 1171
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference int
      StackMap stack:
            aload 1 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            dup
            istore 6 /* keyCount */
        start local 6 // int keyCount
       103: ifgt 6
        end local 6 // int keyCount
        end local 5 // int attempt
       104: .line 1274
            goto 110
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference
      StackMap stack: java.lang.Throwable
       105: astore 18
       106: .line 1275
            aload 4 /* lockedRootReference */
            ifnull 109
            iload 2 /* lockedForUpdate */
            ifne 109
       107: .line 1276
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 108
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            aload 4 /* lockedRootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            if_acmpeq 108
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
       108: .line 1277
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference top top top top top top top top top top top top top java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
       109: .line 1279
      StackMap locals:
      StackMap stack:
            aload 18
            athrow
       110: .line 1275
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.MVMap$IntValueHolder org.h2.mvstore.RootReference
      StackMap stack:
            aload 4 /* lockedRootReference */
            ifnull 113
            iload 2 /* lockedForUpdate */
            ifne 113
       111: .line 1276
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 112
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            aload 4 /* lockedRootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            if_acmpeq 112
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
       112: .line 1277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
       113: .line 1280
      StackMap locals:
      StackMap stack:
            aload 1 /* rootReference */
            areturn
        end local 4 // org.h2.mvstore.RootReference lockedRootReference
        end local 3 // org.h2.mvstore.MVMap$IntValueHolder unsavedMemoryHolder
        end local 2 // boolean lockedForUpdate
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0  114     0                  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0  114     1         rootReference  Lorg/h2/mvstore/RootReference;
            0  114     2       lockedForUpdate  Z
            1  114     3   unsavedMemoryHolder  Lorg/h2/mvstore/MVMap$IntValueHolder;
            4  114     4   lockedRootReference  Lorg/h2/mvstore/RootReference;
            5  104     5               attempt  I
            6  102     6              keyCount  I
          103  104     6              keyCount  I
           13  102     7              rootPage  Lorg/h2/mvstore/Page;
           14  102     8                   pos  Lorg/h2/mvstore/CursorPos;
           17  102     9                 index  I
           19  102    10                     p  Lorg/h2/mvstore/Page;
           20  102    11                   tip  Lorg/h2/mvstore/CursorPos;
           22  102    12       remainingBuffer  I
           23  102    13                  page  Lorg/h2/mvstore/Page;
           24  102    14             available  I
           37   41    15                  keys  [Ljava/lang/Object;
           38   41    16                values  [Ljava/lang/Object;
           53   83    15                   key  Ljava/lang/Object;
           59   64    16                  keys  [Ljava/lang/Object;
           63   64    17              children  [Lorg/h2/mvstore/Page$PageReference;
           66   82    16                     c  Lorg/h2/mvstore/Page;
           76   82    17                    at  I
           87  102    15  updatedRootReference  Lorg/h2/mvstore/RootReference;
      Exception table:
        from    to  target  type
           4    97     105  any
         101   105     105  any
    MethodParameters:
                 Name  Flags
      rootReference    
      lockedForUpdate  

  private static org.h2.mvstore.Page replacePage(org.h2.mvstore.CursorPos, org.h2.mvstore.Page, org.h2.mvstore.MVMap$IntValueHolder);
    descriptor: (Lorg/h2/mvstore/CursorPos;Lorg/h2/mvstore/Page;Lorg/h2/mvstore/MVMap$IntValueHolder;)Lorg/h2/mvstore/Page;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.h2.mvstore.CursorPos path
        start local 1 // org.h2.mvstore.Page replacement
        start local 2 // org.h2.mvstore.MVMap$IntValueHolder unsavedMemoryHolder
         0: .line 1284
            aload 1 /* replacement */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            istore 3 /* unsavedMemory */
        start local 3 // int unsavedMemory
         1: .line 1285
            goto 9
         2: .line 1286
      StackMap locals: int
      StackMap stack:
            aload 0 /* path */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 4 /* parent */
        start local 4 // org.h2.mvstore.Page parent
         3: .line 1289
            aload 4 /* parent */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            ifle 8
         4: .line 1290
            aload 1 /* replacement */
            astore 5 /* child */
        start local 5 // org.h2.mvstore.Page child
         5: .line 1291
            aload 4 /* parent */
            invokevirtual org.h2.mvstore.Page.copy:()Lorg/h2/mvstore/Page;
            astore 1 /* replacement */
         6: .line 1292
            aload 1 /* replacement */
            aload 0 /* path */
            getfield org.h2.mvstore.CursorPos.index:I
            aload 5 /* child */
            invokevirtual org.h2.mvstore.Page.setChild:(ILorg/h2/mvstore/Page;)V
         7: .line 1293
            iload 3 /* unsavedMemory */
            aload 1 /* replacement */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            iadd
            istore 3 /* unsavedMemory */
        end local 5 // org.h2.mvstore.Page child
         8: .line 1295
      StackMap locals: org.h2.mvstore.Page
      StackMap stack:
            aload 0 /* path */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 0 /* path */
        end local 4 // org.h2.mvstore.Page parent
         9: .line 1285
      StackMap locals:
      StackMap stack:
            aload 0 /* path */
            ifnonnull 2
        10: .line 1297
            aload 2 /* unsavedMemoryHolder */
            dup
            getfield org.h2.mvstore.MVMap$IntValueHolder.value:I
            iload 3 /* unsavedMemory */
            iadd
            putfield org.h2.mvstore.MVMap$IntValueHolder.value:I
        11: .line 1298
            aload 1 /* replacement */
            areturn
        end local 3 // int unsavedMemory
        end local 2 // org.h2.mvstore.MVMap$IntValueHolder unsavedMemoryHolder
        end local 1 // org.h2.mvstore.Page replacement
        end local 0 // org.h2.mvstore.CursorPos path
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   12     0                 path  Lorg/h2/mvstore/CursorPos;
            0   12     1          replacement  Lorg/h2/mvstore/Page;
            0   12     2  unsavedMemoryHolder  Lorg/h2/mvstore/MVMap$IntValueHolder;
            1   12     3        unsavedMemory  I
            3    9     4               parent  Lorg/h2/mvstore/Page;
            5    8     5                child  Lorg/h2/mvstore/Page;
    MethodParameters:
                     Name  Flags
      path                 
      replacement          
      unsavedMemoryHolder  

  public void append(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 1310
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.beforeWrite:()V
         1: .line 1311
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            iconst_1
            invokevirtual org.h2.mvstore.MVMap.lockRoot:(Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
            astore 3 /* rootReference */
        start local 3 // org.h2.mvstore.RootReference rootReference
         2: .line 1312
            aload 3 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            istore 4 /* appendCounter */
        start local 4 // int appendCounter
         3: .line 1314
            iload 4 /* appendCounter */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysPerPage:I
            if_icmplt 7
         4: .line 1315
            aload 0 /* this */
            aload 3 /* rootReference */
            iconst_1
            invokevirtual org.h2.mvstore.MVMap.flushAppendBuffer:(Lorg/h2/mvstore/RootReference;Z)Lorg/h2/mvstore/RootReference;
            astore 3 /* rootReference */
         5: .line 1316
            aload 3 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            istore 4 /* appendCounter */
         6: .line 1317
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 7
            iload 4 /* appendCounter */
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysPerPage:I
            if_icmplt 7
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         7: .line 1319
      StackMap locals: org.h2.mvstore.RootReference int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.keysBuffer:[Ljava/lang/Object;
            iload 4 /* appendCounter */
            aload 1 /* key */
            aastore
         8: .line 1320
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.valuesBuffer:[Ljava/lang/Object;
            iload 4 /* appendCounter */
            aload 2 /* value */
            aastore
         9: .line 1321
            iinc 4 /* appendCounter */ 1
        10: .line 1322
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 5
        12: .line 1323
            aload 0 /* this */
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            iload 4 /* appendCounter */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/RootReference;
            pop
        13: .line 1324
            aload 5
            athrow
        14: .line 1323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            iload 4 /* appendCounter */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/RootReference;
            pop
        15: .line 1325
            return
        end local 4 // int appendCounter
        end local 3 // org.h2.mvstore.RootReference rootReference
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   16     0           this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   16     1            key  TK;
            0   16     2          value  TV;
            2   16     3  rootReference  Lorg/h2/mvstore/RootReference;
            3   16     4  appendCounter  I
      Exception table:
        from    to  target  type
           3    11      11  any
    Signature: (TK;TV;)V
    MethodParameters:
       Name  Flags
      key    
      value  

  public void trimLast();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1333
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
        start local 1 // org.h2.mvstore.RootReference rootReference
         1: .line 1334
            aload 1 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            istore 2 /* appendCounter */
        start local 2 // int appendCounter
         2: .line 1335
            iload 2 /* appendCounter */
            ifne 3
            iconst_1
            goto 4
      StackMap locals: org.h2.mvstore.RootReference int
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 3 /* useRegularRemove */
        start local 3 // boolean useRegularRemove
         5: .line 1336
            iload 3 /* useRegularRemove */
            ifne 14
         6: .line 1337
            aload 0 /* this */
            aload 1 /* rootReference */
            iconst_1
            invokevirtual org.h2.mvstore.MVMap.lockRoot:(Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
         7: .line 1338
            aload 1 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            istore 2 /* appendCounter */
         8: .line 1339
            iload 2 /* appendCounter */
            ifne 9
            iconst_1
            goto 10
      StackMap locals: int
      StackMap stack:
         9: iconst_0
      StackMap locals:
      StackMap stack: int
        10: istore 3 /* useRegularRemove */
        11: .line 1340
            iload 3 /* useRegularRemove */
            ifne 13
        12: .line 1341
            iinc 2 /* appendCounter */ -1
        13: .line 1343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            iload 2 /* appendCounter */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/RootReference;
            pop
        14: .line 1345
      StackMap locals:
      StackMap stack:
            iload 3 /* useRegularRemove */
            ifeq 20
        15: .line 1346
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            aconst_null
            invokevirtual org.h2.mvstore.Page.getAppendCursorPos:(Lorg/h2/mvstore/CursorPos;)Lorg/h2/mvstore/CursorPos;
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 4 /* lastLeaf */
        start local 4 // org.h2.mvstore.Page lastLeaf
        16: .line 1347
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 17
            aload 4 /* lastLeaf */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifne 17
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        17: .line 1348
      StackMap locals: org.h2.mvstore.Page
      StackMap stack:
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 18
            aload 4 /* lastLeaf */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            ifgt 18
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        18: .line 1349
      StackMap locals:
      StackMap stack:
            aload 4 /* lastLeaf */
            aload 4 /* lastLeaf */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            iconst_1
            isub
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            astore 5 /* key */
        start local 5 // java.lang.Object key
        19: .line 1350
            aload 0 /* this */
            aload 5 /* key */
            invokevirtual org.h2.mvstore.MVMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 5 // java.lang.Object key
        end local 4 // org.h2.mvstore.Page lastLeaf
        20: .line 1352
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean useRegularRemove
        end local 2 // int appendCounter
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   21     0              this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            1   21     1     rootReference  Lorg/h2/mvstore/RootReference;
            2   21     2     appendCounter  I
            5   21     3  useRegularRemove  Z
           16   20     4          lastLeaf  Lorg/h2/mvstore/Page;
           19   20     5               key  Ljava/lang/Object;

  public final java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1356
            aload 0 /* this */
            aconst_null
            invokevirtual org.h2.mvstore.MVMap.asString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  public V operate(K, V, org.h2.mvstore.MVMap$DecisionMaker<? super V>);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Lorg/h2/mvstore/MVMap$DecisionMaker;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=25, args_size=4
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
        start local 3 // org.h2.mvstore.MVMap$DecisionMaker decisionMaker
         0: .line 1649
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.beforeWrite:()V
         1: .line 1650
            new org.h2.mvstore.MVMap$IntValueHolder
            dup
            invokespecial org.h2.mvstore.MVMap$IntValueHolder.<init>:()V
            astore 4 /* unsavedMemoryHolder */
        start local 4 // org.h2.mvstore.MVMap$IntValueHolder unsavedMemoryHolder
         2: .line 1651
            iconst_0
            istore 5 /* attempt */
        start local 5 // int attempt
         3: .line 1653
      StackMap locals: org.h2.mvstore.MVMap$IntValueHolder int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.flushAndGetRoot:()Lorg/h2/mvstore/RootReference;
            astore 6 /* rootReference */
        start local 6 // org.h2.mvstore.RootReference rootReference
         4: .line 1654
            aconst_null
            astore 7 /* lockedRootReference */
        start local 7 // org.h2.mvstore.RootReference lockedRootReference
         5: .line 1655
            iinc 5 /* attempt */ 1
            iload 5 /* attempt */
            iconst_3
            if_icmpgt 6
            aload 6 /* rootReference */
            getfield org.h2.mvstore.RootReference.lockedForUpdate:Z
            ifeq 8
         6: .line 1656
      StackMap locals: org.h2.mvstore.RootReference org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* this */
            aload 6 /* rootReference */
            iload 5 /* attempt */
            invokevirtual org.h2.mvstore.MVMap.lockRoot:(Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
            astore 7 /* lockedRootReference */
         7: .line 1657
            aload 7 /* lockedRootReference */
            astore 6 /* rootReference */
         8: .line 1659
      StackMap locals:
      StackMap stack:
            aload 6 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            astore 8 /* rootPage */
        start local 8 // org.h2.mvstore.Page rootPage
         9: .line 1662
            aload 4 /* unsavedMemoryHolder */
            iconst_0
            putfield org.h2.mvstore.MVMap$IntValueHolder.value:I
        10: .line 1664
            aload 8 /* rootPage */
            aload 1 /* key */
            invokestatic org.h2.mvstore.MVMap.traverseDown:(Lorg/h2/mvstore/Page;Ljava/lang/Object;)Lorg/h2/mvstore/CursorPos;
            astore 11 /* pos */
        start local 11 // org.h2.mvstore.CursorPos pos
        11: .line 1665
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 12 /* p */
        start local 12 // org.h2.mvstore.Page p
        12: .line 1666
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            istore 13 /* index */
        start local 13 // int index
        13: .line 1667
            aload 11 /* pos */
            astore 9 /* tip */
        start local 9 // org.h2.mvstore.CursorPos tip
        14: .line 1668
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 11 /* pos */
        15: .line 1669
            iload 13 /* index */
            ifge 16
            aconst_null
            goto 17
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos top org.h2.mvstore.CursorPos org.h2.mvstore.Page int
      StackMap stack:
        16: aload 12 /* p */
            iload 13 /* index */
            invokevirtual org.h2.mvstore.Page.getValue:(I)Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
        17: astore 10 /* result */
        start local 10 // java.lang.Object result
        18: .line 1670
            aload 3 /* decisionMaker */
            aload 10 /* result */
            aload 2 /* value */
            invokevirtual org.h2.mvstore.MVMap$DecisionMaker.decide:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/h2/mvstore/MVMap$Decision;
            astore 14 /* decision */
        start local 14 // org.h2.mvstore.MVMap$Decision decision
        19: .line 1672
            invokestatic org.h2.mvstore.MVMap.$SWITCH_TABLE$org$h2$mvstore$MVMap$Decision:()[I
            aload 14 /* decision */
            invokevirtual org.h2.mvstore.MVMap$Decision.ordinal:()I
            iaload
            tableswitch { // 1 - 4
                    1: 24
                    2: 33
                    3: 58
                    4: 20
              default: 91
          }
        20: .line 1674
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision
      StackMap stack:
            aload 3 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap$DecisionMaker.reset:()V
        21: .line 1768
            aload 7 /* lockedRootReference */
            ifnull 3
        22: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
        23: .line 1675
            goto 3
        24: .line 1677
      StackMap locals:
      StackMap stack:
            aload 6 /* rootReference */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            if_acmpeq 29
        25: .line 1678
            aload 3 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap$DecisionMaker.reset:()V
        26: .line 1768
            aload 7 /* lockedRootReference */
            ifnull 3
        27: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
        28: .line 1679
            goto 3
        29: .line 1681
      StackMap locals:
      StackMap stack:
            aload 10 /* result */
            astore 24
        30: .line 1768
            aload 7 /* lockedRootReference */
            ifnull 32
        31: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
        32: .line 1681
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision top top top top top top top top top java.lang.Object
      StackMap stack:
            aload 24
            areturn
        33: .line 1683
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision
      StackMap stack:
            iload 13 /* index */
            ifge 42
        34: .line 1684
            aload 6 /* rootReference */
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            if_acmpeq 39
        35: .line 1685
            aload 3 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap$DecisionMaker.reset:()V
        36: .line 1768
            aload 7 /* lockedRootReference */
            ifnull 3
        37: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
        38: .line 1686
            goto 3
        39: .line 1768
      StackMap locals:
      StackMap stack:
            aload 7 /* lockedRootReference */
            ifnull 41
        40: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
        41: .line 1688
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        42: .line 1691
      StackMap locals:
      StackMap stack:
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.getTotalCount:()J
            lconst_1
            lcmp
            ifne 55
            aload 11 /* pos */
            ifnull 55
        43: .line 1694
      StackMap locals:
      StackMap stack:
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 12 /* p */
        44: .line 1695
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            istore 13 /* index */
        45: .line 1696
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 11 /* pos */
        46: .line 1697
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            istore 15 /* keyCount */
        start local 15 // int keyCount
        47: .line 1702
            iload 15 /* keyCount */
            ifne 48
            aload 11 /* pos */
            ifnonnull 43
        48: .line 1704
      StackMap locals: int
      StackMap stack:
            iload 15 /* keyCount */
            iconst_1
            if_icmpgt 55
        49: .line 1705
            iload 15 /* keyCount */
            iconst_1
            if_icmpne 53
        50: .line 1706
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 51
            iload 13 /* index */
            iconst_1
            if_icmple 51
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        51: .line 1707
      StackMap locals:
      StackMap stack:
            aload 12 /* p */
            iconst_1
            iload 13 /* index */
            isub
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            astore 12 /* p */
        52: .line 1708
            goto 91
        53: .line 1712
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic org.h2.mvstore.Page.createEmptyLeaf:(Lorg/h2/mvstore/MVMap;)Lorg/h2/mvstore/Page;
            astore 12 /* p */
        54: .line 1714
            goto 91
        end local 15 // int keyCount
        55: .line 1717
      StackMap locals:
      StackMap stack:
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.copy:()Lorg/h2/mvstore/Page;
            astore 12 /* p */
        56: .line 1718
            aload 12 /* p */
            iload 13 /* index */
            invokevirtual org.h2.mvstore.Page.remove:(I)V
        57: .line 1719
            goto 91
        58: .line 1722
      StackMap locals:
      StackMap stack:
            aload 3 /* decisionMaker */
            aload 10 /* result */
            aload 2 /* value */
            invokevirtual org.h2.mvstore.MVMap$DecisionMaker.selectValue:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* value */
        59: .line 1723
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.copy:()Lorg/h2/mvstore/Page;
            astore 12 /* p */
        60: .line 1724
            iload 13 /* index */
            ifge 90
        61: .line 1725
            aload 12 /* p */
            iload 13 /* index */
            ineg
            iconst_1
            isub
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual org.h2.mvstore.Page.insertLeaf:(ILjava/lang/Object;Ljava/lang/Object;)V
        62: .line 1727
            goto 83
        start local 15 // int keyCount
        63: .line 1730
      StackMap locals: int
      StackMap stack:
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.getTotalCount:()J
            lstore 16 /* totalCount */
        start local 16 // long totalCount
        64: .line 1731
            iload 15 /* keyCount */
            iconst_1
            ishr
            istore 18 /* at */
        start local 18 // int at
        65: .line 1732
            aload 12 /* p */
            iload 18 /* at */
            invokevirtual org.h2.mvstore.Page.getKey:(I)Ljava/lang/Object;
            astore 19 /* k */
        start local 19 // java.lang.Object k
        66: .line 1733
            aload 12 /* p */
            iload 18 /* at */
            invokevirtual org.h2.mvstore.Page.split:(I)Lorg/h2/mvstore/Page;
            astore 20 /* split */
        start local 20 // org.h2.mvstore.Page split
        67: .line 1734
            aload 4 /* unsavedMemoryHolder */
            dup
            getfield org.h2.mvstore.MVMap$IntValueHolder.value:I
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            aload 20 /* split */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            iadd
            iadd
            putfield org.h2.mvstore.MVMap$IntValueHolder.value:I
        68: .line 1735
            aload 11 /* pos */
            ifnonnull 76
        69: .line 1736
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 19 /* k */
            aastore
            astore 21 /* keys */
        start local 21 // java.lang.Object[] keys
        70: .line 1737
            iconst_2
            anewarray org.h2.mvstore.Page$PageReference
            dup
            iconst_0
        71: .line 1738
            new org.h2.mvstore.Page$PageReference
            dup
            aload 12 /* p */
            invokespecial org.h2.mvstore.Page$PageReference.<init>:(Lorg/h2/mvstore/Page;)V
            aastore
            dup
            iconst_1
        72: .line 1739
            new org.h2.mvstore.Page$PageReference
            dup
            aload 20 /* split */
            invokespecial org.h2.mvstore.Page$PageReference.<init>:(Lorg/h2/mvstore/Page;)V
            aastore
        73: .line 1737
            astore 22 /* children */
        start local 22 // org.h2.mvstore.Page$PageReference[] children
        74: .line 1741
            aload 0 /* this */
            aload 21 /* keys */
            aload 22 /* children */
            lload 16 /* totalCount */
            iconst_0
            invokestatic org.h2.mvstore.Page.createNode:(Lorg/h2/mvstore/MVMap;[Ljava/lang/Object;[Lorg/h2/mvstore/Page$PageReference;JI)Lorg/h2/mvstore/Page;
            astore 12 /* p */
        75: .line 1742
            goto 91
        end local 22 // org.h2.mvstore.Page$PageReference[] children
        end local 21 // java.lang.Object[] keys
        76: .line 1744
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision int long int java.lang.Object org.h2.mvstore.Page
      StackMap stack:
            aload 12 /* p */
            astore 21 /* c */
        start local 21 // org.h2.mvstore.Page c
        77: .line 1745
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            astore 12 /* p */
        78: .line 1746
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.index:I
            istore 13 /* index */
        79: .line 1747
            aload 11 /* pos */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 11 /* pos */
        80: .line 1748
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.copy:()Lorg/h2/mvstore/Page;
            astore 12 /* p */
        81: .line 1749
            aload 12 /* p */
            iload 13 /* index */
            aload 20 /* split */
            invokevirtual org.h2.mvstore.Page.setChild:(ILorg/h2/mvstore/Page;)V
        82: .line 1750
            aload 12 /* p */
            iload 13 /* index */
            aload 19 /* k */
            aload 21 /* c */
            invokevirtual org.h2.mvstore.Page.insertNode:(ILjava/lang/Object;Lorg/h2/mvstore/Page;)V
        end local 21 // org.h2.mvstore.Page c
        end local 20 // org.h2.mvstore.Page split
        end local 19 // java.lang.Object k
        end local 18 // int at
        end local 16 // long totalCount
        end local 15 // int keyCount
        83: .line 1727
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision
      StackMap stack:
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.getKeyCount:()I
            dup
            istore 15 /* keyCount */
        start local 15 // int keyCount
        84: aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getKeysPerPage:()I
            if_icmpgt 63
        85: .line 1728
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.getMemory:()I
            i2l
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getMaxPageSize:()J
            lcmp
            ifle 91
        86: .line 1729
            iload 15 /* keyCount */
            aload 12 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 87
            iconst_1
            goto 88
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision int
      StackMap stack: int
        87: iconst_2
        88: .line 1727
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object org.h2.mvstore.CursorPos org.h2.mvstore.Page int org.h2.mvstore.MVMap$Decision int
      StackMap stack: int int
            if_icmpgt 63
        end local 15 // int keyCount
        89: .line 1752
            goto 91
        90: .line 1753
      StackMap locals:
      StackMap stack:
            aload 12 /* p */
            iload 13 /* index */
            aload 2 /* value */
            invokevirtual org.h2.mvstore.Page.setValue:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
        91: .line 1758
      StackMap locals:
      StackMap stack:
            aload 11 /* pos */
            aload 12 /* p */
            aload 4 /* unsavedMemoryHolder */
            invokestatic org.h2.mvstore.MVMap.replacePage:(Lorg/h2/mvstore/CursorPos;Lorg/h2/mvstore/Page;Lorg/h2/mvstore/MVMap$IntValueHolder;)Lorg/h2/mvstore/Page;
            astore 8 /* rootPage */
        92: .line 1759
            aload 7 /* lockedRootReference */
            ifnonnull 104
        93: .line 1760
            aload 0 /* this */
            aload 6 /* rootReference */
            aload 8 /* rootPage */
            iload 5 /* attempt */
            invokevirtual org.h2.mvstore.MVMap.updateRoot:(Lorg/h2/mvstore/RootReference;Lorg/h2/mvstore/Page;I)Z
            ifne 98
        94: .line 1761
            aload 3 /* decisionMaker */
            invokevirtual org.h2.mvstore.MVMap$DecisionMaker.reset:()V
        95: .line 1768
            aload 7 /* lockedRootReference */
            ifnull 3
        96: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
        97: .line 1762
            goto 3
        98: .line 1764
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.notifyWaiters:()V
        end local 14 // org.h2.mvstore.MVMap$Decision decision
        end local 13 // int index
        end local 12 // org.h2.mvstore.Page p
        end local 11 // org.h2.mvstore.CursorPos pos
        99: .line 1767
            goto 104
        end local 10 // java.lang.Object result
        end local 9 // org.h2.mvstore.CursorPos tip
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page
      StackMap stack: java.lang.Throwable
       100: astore 23
       101: .line 1768
            aload 7 /* lockedRootReference */
            ifnull 103
       102: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
       103: .line 1771
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page top top top top top top top top top top top top top top java.lang.Throwable
      StackMap stack:
            aload 23
            athrow
        start local 9 // org.h2.mvstore.CursorPos tip
        start local 10 // java.lang.Object result
       104: .line 1768
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object java.lang.Object org.h2.mvstore.MVMap$DecisionMaker org.h2.mvstore.MVMap$IntValueHolder int org.h2.mvstore.RootReference org.h2.mvstore.RootReference org.h2.mvstore.Page org.h2.mvstore.CursorPos java.lang.Object
      StackMap stack:
            aload 7 /* lockedRootReference */
            ifnull 109
       105: .line 1769
            aload 0 /* this */
            aload 8 /* rootPage */
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
            pop
       106: .line 1772
            goto 109
       107: .line 1773
      StackMap locals:
      StackMap stack:
            aload 9 /* tip */
            getfield org.h2.mvstore.CursorPos.page:Lorg/h2/mvstore/Page;
            invokevirtual org.h2.mvstore.Page.removePage:()V
       108: .line 1774
            aload 9 /* tip */
            getfield org.h2.mvstore.CursorPos.parent:Lorg/h2/mvstore/CursorPos;
            astore 9 /* tip */
       109: .line 1772
      StackMap locals:
      StackMap stack:
            aload 9 /* tip */
            ifnonnull 107
       110: .line 1776
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            invokevirtual org.h2.mvstore.MVStore.getFileStore:()Lorg/h2/mvstore/FileStore;
            ifnull 112
       111: .line 1777
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.store:Lorg/h2/mvstore/MVStore;
            aload 4 /* unsavedMemoryHolder */
            getfield org.h2.mvstore.MVMap$IntValueHolder.value:I
            invokevirtual org.h2.mvstore.MVStore.registerUnsavedPage:(I)V
       112: .line 1779
      StackMap locals:
      StackMap stack:
            aload 10 /* result */
            areturn
        end local 10 // java.lang.Object result
        end local 9 // org.h2.mvstore.CursorPos tip
        end local 8 // org.h2.mvstore.Page rootPage
        end local 7 // org.h2.mvstore.RootReference lockedRootReference
        end local 6 // org.h2.mvstore.RootReference rootReference
        end local 5 // int attempt
        end local 4 // org.h2.mvstore.MVMap$IntValueHolder unsavedMemoryHolder
        end local 3 // org.h2.mvstore.MVMap$DecisionMaker decisionMaker
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0  113     0                 this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0  113     1                  key  TK;
            0  113     2                value  TV;
            0  113     3        decisionMaker  Lorg/h2/mvstore/MVMap$DecisionMaker<-TV;>;
            2  113     4  unsavedMemoryHolder  Lorg/h2/mvstore/MVMap$IntValueHolder;
            3  113     5              attempt  I
            4  113     6        rootReference  Lorg/h2/mvstore/RootReference;
            5  113     7  lockedRootReference  Lorg/h2/mvstore/RootReference;
            9  113     8             rootPage  Lorg/h2/mvstore/Page;
           14  100     9                  tip  Lorg/h2/mvstore/CursorPos;
          104  113     9                  tip  Lorg/h2/mvstore/CursorPos;
           18  100    10               result  TV;
          104  113    10               result  TV;
           11   99    11                  pos  Lorg/h2/mvstore/CursorPos;
           12   99    12                    p  Lorg/h2/mvstore/Page;
           13   99    13                index  I
           19   99    14             decision  Lorg/h2/mvstore/MVMap$Decision;
           47   55    15             keyCount  I
           63   83    15             keyCount  I
           84   89    15             keyCount  I
           64   83    16           totalCount  J
           65   83    18                   at  I
           66   83    19                    k  Ljava/lang/Object;
           67   83    20                split  Lorg/h2/mvstore/Page;
           70   76    21                 keys  [Ljava/lang/Object;
           74   76    22             children  [Lorg/h2/mvstore/Page$PageReference;
           77   83    21                    c  Lorg/h2/mvstore/Page;
      Exception table:
        from    to  target  type
          10    21     100  any
          24    26     100  any
          29    30     100  any
          33    36     100  any
          42    95     100  any
          98   100     100  any
    Signature: (TK;TV;Lorg/h2/mvstore/MVMap$DecisionMaker<-TV;>;)TV;
    MethodParameters:
               Name  Flags
      key            
      value          
      decisionMaker  

  private org.h2.mvstore.RootReference lockRoot(org.h2.mvstore.RootReference, int);
    descriptor: (Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.RootReference rootReference
        start local 2 // int attempt
         0: .line 1785
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* rootReference */
            iload 2 /* attempt */
            iinc 2 /* attempt */ 1
            invokevirtual org.h2.mvstore.MVMap.tryLock:(Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
            astore 3 /* lockedRootReference */
        start local 3 // org.h2.mvstore.RootReference lockedRootReference
         1: .line 1786
            aload 3 /* lockedRootReference */
            ifnull 3
         2: .line 1787
            aload 3 /* lockedRootReference */
            areturn
         3: .line 1789
      StackMap locals: org.h2.mvstore.RootReference
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 1 /* rootReference */
        end local 3 // org.h2.mvstore.RootReference lockedRootReference
         4: .line 1784
            goto 0
        end local 2 // int attempt
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    5     0                 this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    5     1        rootReference  Lorg/h2/mvstore/RootReference;
            0    5     2              attempt  I
            1    4     3  lockedRootReference  Lorg/h2/mvstore/RootReference;
    MethodParameters:
               Name  Flags
      rootReference  
      attempt        

  private org.h2.mvstore.RootReference tryLock(org.h2.mvstore.RootReference, int);
    descriptor: (Lorg/h2/mvstore/RootReference;I)Lorg/h2/mvstore/RootReference;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=9, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.RootReference rootReference
        start local 2 // int attempt
         0: .line 1794
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.lockedForUpdate:Z
            ifne 4
         1: .line 1795
            new org.h2.mvstore.RootReference
            dup
            aload 1 /* rootReference */
            iload 2 /* attempt */
            invokespecial org.h2.mvstore.RootReference.<init>:(Lorg/h2/mvstore/RootReference;I)V
            astore 3 /* lockedRootReference */
        start local 3 // org.h2.mvstore.RootReference lockedRootReference
         2: .line 1796
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* rootReference */
            aload 3 /* lockedRootReference */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 1797
            aload 3 /* lockedRootReference */
            areturn
        end local 3 // org.h2.mvstore.RootReference lockedRootReference
         4: .line 1801
      StackMap locals:
      StackMap stack:
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.previous:Lorg/h2/mvstore/RootReference;
            astore 3 /* oldRootReference */
        start local 3 // org.h2.mvstore.RootReference oldRootReference
         5: .line 1802
            iconst_1
            istore 4 /* contention */
        start local 4 // int contention
         6: .line 1803
            aload 3 /* oldRootReference */
            ifnull 15
         7: .line 1804
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.updateAttemptCounter:J
         8: .line 1805
            aload 3 /* oldRootReference */
            getfield org.h2.mvstore.RootReference.updateAttemptCounter:J
         9: .line 1804
            lsub
            lstore 5 /* updateAttemptCounter */
        start local 5 // long updateAttemptCounter
        10: .line 1806
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 11
            lload 5 /* updateAttemptCounter */
            lconst_0
            lcmp
            ifge 11
            new java.lang.AssertionError
            dup
            lload 5 /* updateAttemptCounter */
            invokespecial java.lang.AssertionError.<init>:(J)V
            athrow
        11: .line 1807
      StackMap locals: org.h2.mvstore.RootReference int long
      StackMap stack:
            aload 1 /* rootReference */
            getfield org.h2.mvstore.RootReference.updateCounter:J
            aload 3 /* oldRootReference */
            getfield org.h2.mvstore.RootReference.updateCounter:J
            lsub
            lstore 7 /* updateCounter */
        start local 7 // long updateCounter
        12: .line 1808
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 13
            lload 7 /* updateCounter */
            lconst_0
            lcmp
            ifge 13
            new java.lang.AssertionError
            dup
            lload 7 /* updateCounter */
            invokespecial java.lang.AssertionError.<init>:(J)V
            athrow
        13: .line 1809
      StackMap locals: long
      StackMap stack:
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 14
            lload 5 /* updateAttemptCounter */
            lload 7 /* updateCounter */
            lcmp
            ifge 14
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            lload 5 /* updateAttemptCounter */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " >= "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 7 /* updateCounter */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        14: .line 1810
      StackMap locals:
      StackMap stack:
            iload 4 /* contention */
            lload 5 /* updateAttemptCounter */
            lconst_1
            ladd
            lload 7 /* updateCounter */
            lconst_1
            ladd
            ldiv
            l2i
            iadd
            istore 4 /* contention */
        end local 7 // long updateCounter
        end local 5 // long updateAttemptCounter
        15: .line 1813
      StackMap locals:
      StackMap stack:
            iload 2 /* attempt */
            iconst_4
            if_icmple 33
        16: .line 1814
            iload 2 /* attempt */
            bipush 12
            if_icmpgt 19
        17: .line 1815
            invokestatic java.lang.Thread.yield:()V
        18: .line 1816
            goto 33
      StackMap locals:
      StackMap stack:
        19: iload 2 /* attempt */
            bipush 70
            iconst_2
            iload 4 /* contention */
            imul
            isub
            if_icmpgt 24
        20: .line 1818
            iload 4 /* contention */
            i2l
            invokestatic java.lang.Thread.sleep:(J)V
        21: .line 1819
            goto 33
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        22: astore 5 /* ex */
        start local 5 // java.lang.InterruptedException ex
        23: .line 1820
            new java.lang.RuntimeException
            dup
            aload 5 /* ex */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.InterruptedException ex
        24: .line 1823
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.lock:Ljava/lang/Object;
            dup
            astore 5
            monitorenter
        25: .line 1824
            aload 0 /* this */
            iconst_1
            putfield org.h2.mvstore.MVMap.notificationRequested:Z
        26: .line 1826
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.lock:Ljava/lang/Object;
            ldc 5
            invokevirtual java.lang.Object.wait:(J)V
        27: .line 1827
            goto 29
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.RootReference int org.h2.mvstore.RootReference int java.lang.Object
      StackMap stack: java.lang.InterruptedException
        28: pop
        29: .line 1823
      StackMap locals:
      StackMap stack:
            aload 5
            monitorexit
        30: goto 33
      StackMap locals:
      StackMap stack: java.lang.Throwable
        31: aload 5
            monitorexit
        32: athrow
        33: .line 1832
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 4 // int contention
        end local 3 // org.h2.mvstore.RootReference oldRootReference
        end local 2 // int attempt
        end local 1 // org.h2.mvstore.RootReference rootReference
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   34     0                  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   34     1         rootReference  Lorg/h2/mvstore/RootReference;
            0   34     2               attempt  I
            2    4     3   lockedRootReference  Lorg/h2/mvstore/RootReference;
            5   34     3      oldRootReference  Lorg/h2/mvstore/RootReference;
            6   34     4            contention  I
           10   15     5  updateAttemptCounter  J
           12   15     7         updateCounter  J
           23   24     5                    ex  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
          20    21      22  Class java.lang.InterruptedException
          26    27      28  Class java.lang.InterruptedException
          25    30      31  any
          31    32      31  any
    MethodParameters:
               Name  Flags
      rootReference  
      attempt        

  private org.h2.mvstore.RootReference unlockRoot();
    descriptor: ()Lorg/h2/mvstore/RootReference;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1836
            aload 0 /* this */
            aconst_null
            iconst_m1
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/RootReference;
            areturn
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;

  private org.h2.mvstore.RootReference unlockRoot(org.h2.mvstore.Page);
    descriptor: (Lorg/h2/mvstore/Page;)Lorg/h2/mvstore/RootReference;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page newRootPage
         0: .line 1840
            aload 0 /* this */
            aload 1 /* newRootPage */
            iconst_m1
            invokevirtual org.h2.mvstore.MVMap.unlockRoot:(Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/RootReference;
            areturn
        end local 1 // org.h2.mvstore.Page newRootPage
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0    1     1  newRootPage  Lorg/h2/mvstore/Page;
    MethodParameters:
             Name  Flags
      newRootPage  

  private org.h2.mvstore.RootReference unlockRoot(org.h2.mvstore.Page, int);
    descriptor: (Lorg/h2/mvstore/Page;I)Lorg/h2/mvstore/RootReference;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // org.h2.mvstore.MVMap this
        start local 1 // org.h2.mvstore.Page newRootPage
        start local 2 // int appendCounter
         0: .line 1847
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.getRoot:()Lorg/h2/mvstore/RootReference;
            astore 5 /* rootReference */
        start local 5 // org.h2.mvstore.RootReference rootReference
         1: .line 1848
            getstatic org.h2.mvstore.MVMap.$assertionsDisabled:Z
            ifne 2
            aload 5 /* rootReference */
            getfield org.h2.mvstore.RootReference.lockedForUpdate:Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 1849
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page int top top org.h2.mvstore.RootReference
      StackMap stack:
            new org.h2.mvstore.RootReference
            dup
            aload 5 /* rootReference */
         3: .line 1850
            aload 1 /* newRootPage */
            ifnonnull 4
            aload 5 /* rootReference */
            getfield org.h2.mvstore.RootReference.root:Lorg/h2/mvstore/Page;
            goto 5
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page int top top org.h2.mvstore.RootReference
      StackMap stack: new 2 new 2 org.h2.mvstore.RootReference
         4: aload 1 /* newRootPage */
         5: .line 1851
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page int top top org.h2.mvstore.RootReference
      StackMap stack: new 2 new 2 org.h2.mvstore.RootReference org.h2.mvstore.Page
            iload 2 /* appendCounter */
            iconst_m1
            if_icmpne 6
            aload 5 /* rootReference */
            invokevirtual org.h2.mvstore.RootReference.getAppendCounter:()I
            goto 7
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page int top top org.h2.mvstore.RootReference
      StackMap stack: new 2 new 2 org.h2.mvstore.RootReference org.h2.mvstore.Page
         6: iload 2 /* appendCounter */
         7: .line 1852
      StackMap locals: org.h2.mvstore.MVMap org.h2.mvstore.Page int top top org.h2.mvstore.RootReference
      StackMap stack: new 2 new 2 org.h2.mvstore.RootReference org.h2.mvstore.Page int
            iconst_0
         8: .line 1849
            invokespecial org.h2.mvstore.RootReference.<init>:(Lorg/h2/mvstore/RootReference;Lorg/h2/mvstore/Page;IZ)V
            astore 3 /* updatedRootReference */
        start local 3 // org.h2.mvstore.RootReference updatedRootReference
         9: .line 1853
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.root:Ljava/util/concurrent/atomic/AtomicReference;
            aload 5 /* rootReference */
            aload 3 /* updatedRootReference */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            istore 4 /* success */
        end local 5 // org.h2.mvstore.RootReference rootReference
        start local 4 // boolean success
        10: .line 1854
            iload 4 /* success */
            ifeq 0
        11: .line 1856
            aload 0 /* this */
            invokevirtual org.h2.mvstore.MVMap.notifyWaiters:()V
        12: .line 1857
            aload 3 /* updatedRootReference */
            areturn
        end local 4 // boolean success
        end local 3 // org.h2.mvstore.RootReference updatedRootReference
        end local 2 // int appendCounter
        end local 1 // org.h2.mvstore.Page newRootPage
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   13     0                  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
            0   13     1           newRootPage  Lorg/h2/mvstore/Page;
            0   13     2         appendCounter  I
            9   13     3  updatedRootReference  Lorg/h2/mvstore/RootReference;
           10   13     4               success  Z
            1   10     5         rootReference  Lorg/h2/mvstore/RootReference;
    MethodParameters:
               Name  Flags
      newRootPage    
      appendCounter  

  private void notifyWaiters();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.mvstore.MVMap this
         0: .line 1861
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.notificationRequested:Z
            ifeq 8
         1: .line 1862
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         2: .line 1863
            aload 0 /* this */
            iconst_0
            putfield org.h2.mvstore.MVMap.notificationRequested:Z
         3: .line 1864
            aload 0 /* this */
            getfield org.h2.mvstore.MVMap.lock:Ljava/lang/Object;
            invokevirtual java.lang.Object.notify:()V
         4: .line 1862
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: org.h2.mvstore.MVMap java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 1867
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.mvstore.MVMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/h2/mvstore/MVMap<TK;TV;>;
      Exception table:
        from    to  target  type
           2     5       6  any
           6     7       6  any

  private static org.h2.mvstore.CursorPos traverseDown(org.h2.mvstore.Page, java.lang.Object);
    descriptor: (Lorg/h2/mvstore/Page;Ljava/lang/Object;)Lorg/h2/mvstore/CursorPos;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.h2.mvstore.Page p
        start local 1 // java.lang.Object key
         0: .line 1870
            aconst_null
            astore 2 /* pos */
        start local 2 // org.h2.mvstore.CursorPos pos
         1: .line 1871
            goto 7
         2: .line 1872
      StackMap locals: org.h2.mvstore.CursorPos
      StackMap stack:
            aload 0 /* p */
            aload 1 /* key */
            invokevirtual org.h2.mvstore.Page.binarySearch:(Ljava/lang/Object;)I
            iconst_1
            iadd
            istore 3 /* index */
        start local 3 // int index
         3: .line 1873
            iload 3 /* index */
            ifge 5
         4: .line 1874
            iload 3 /* index */
            ineg
            istore 3 /* index */
         5: .line 1876
      StackMap locals: int
      StackMap stack:
            new org.h2.mvstore.CursorPos
            dup
            aload 0 /* p */
            iload 3 /* index */
            aload 2 /* pos */
            invokespecial org.h2.mvstore.CursorPos.<init>:(Lorg/h2/mvstore/Page;ILorg/h2/mvstore/CursorPos;)V
            astore 2 /* pos */
         6: .line 1877
            aload 0 /* p */
            iload 3 /* index */
            invokevirtual org.h2.mvstore.Page.getChildPage:(I)Lorg/h2/mvstore/Page;
            astore 0 /* p */
        end local 3 // int index
         7: .line 1871
      StackMap locals:
      StackMap stack:
            aload 0 /* p */
            invokevirtual org.h2.mvstore.Page.isLeaf:()Z
            ifeq 2
         8: .line 1879
            new org.h2.mvstore.CursorPos
            dup
            aload 0 /* p */
            aload 0 /* p */
            aload 1 /* key */
            invokevirtual org.h2.mvstore.Page.binarySearch:(Ljava/lang/Object;)I
            aload 2 /* pos */
            invokespecial org.h2.mvstore.CursorPos.<init>:(Lorg/h2/mvstore/Page;ILorg/h2/mvstore/CursorPos;)V
            areturn
        end local 2 // org.h2.mvstore.CursorPos pos
        end local 1 // java.lang.Object key
        end local 0 // org.h2.mvstore.Page p
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0      p  Lorg/h2/mvstore/Page;
            0    9     1    key  Ljava/lang/Object;
            1    9     2    pos  Lorg/h2/mvstore/CursorPos;
            3    7     3  index  I
    MethodParameters:
      Name  Flags
      p     
      key   

  static int[] $SWITCH_TABLE$org$h2$mvstore$MVMap$Decision();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 31
            getstatic org.h2.mvstore.MVMap.$SWITCH_TABLE$org$h2$mvstore$MVMap$Decision:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.h2.mvstore.MVMap$Decision.values:()[Lorg/h2/mvstore/MVMap$Decision;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.h2.mvstore.MVMap$Decision.ABORT:Lorg/h2/mvstore/MVMap$Decision;
            invokevirtual org.h2.mvstore.MVMap$Decision.ordinal:()I
            iconst_1
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.h2.mvstore.MVMap$Decision.PUT:Lorg/h2/mvstore/MVMap$Decision;
            invokevirtual org.h2.mvstore.MVMap$Decision.ordinal:()I
            iconst_3
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.h2.mvstore.MVMap$Decision.REMOVE:Lorg/h2/mvstore/MVMap$Decision;
            invokevirtual org.h2.mvstore.MVMap$Decision.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic org.h2.mvstore.MVMap$Decision.REPEAT:Lorg/h2/mvstore/MVMap$Decision;
            invokevirtual org.h2.mvstore.MVMap$Decision.ordinal:()I
            iconst_4
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            dup
            putstatic org.h2.mvstore.MVMap.$SWITCH_TABLE$org$h2$mvstore$MVMap$Decision:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/AbstractMap<TK;TV;>;Ljava/util/concurrent/ConcurrentMap<TK;TV;>;
SourceFile: "MVMap.java"
NestMembers:
  org.h2.mvstore.MVMap$1  org.h2.mvstore.MVMap$2  org.h2.mvstore.MVMap$2$1  org.h2.mvstore.MVMap$3  org.h2.mvstore.MVMap$BasicBuilder  org.h2.mvstore.MVMap$Builder  org.h2.mvstore.MVMap$Decision  org.h2.mvstore.MVMap$DecisionMaker  org.h2.mvstore.MVMap$DecisionMaker$1  org.h2.mvstore.MVMap$DecisionMaker$2  org.h2.mvstore.MVMap$DecisionMaker$3  org.h2.mvstore.MVMap$DecisionMaker$4  org.h2.mvstore.MVMap$DecisionMaker$5  org.h2.mvstore.MVMap$EqualsDecisionMaker  org.h2.mvstore.MVMap$IntValueHolder  org.h2.mvstore.MVMap$MapBuilder
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  org.h2.mvstore.MVMap$1
  org.h2.mvstore.MVMap$2
  org.h2.mvstore.MVMap$3
  public abstract BasicBuilder = org.h2.mvstore.MVMap$BasicBuilder of org.h2.mvstore.MVMap
  public Builder = org.h2.mvstore.MVMap$Builder of org.h2.mvstore.MVMap
  public final Decision = org.h2.mvstore.MVMap$Decision of org.h2.mvstore.MVMap
  public abstract DecisionMaker = org.h2.mvstore.MVMap$DecisionMaker of org.h2.mvstore.MVMap
  private final EqualsDecisionMaker = org.h2.mvstore.MVMap$EqualsDecisionMaker of org.h2.mvstore.MVMap
  private final IntValueHolder = org.h2.mvstore.MVMap$IntValueHolder of org.h2.mvstore.MVMap
  public abstract MapBuilder = org.h2.mvstore.MVMap$MapBuilder of org.h2.mvstore.MVMap
  public final TxCounter = org.h2.mvstore.MVStore$TxCounter of org.h2.mvstore.MVStore
  public final PageReference = org.h2.mvstore.Page$PageReference of org.h2.mvstore.Page