class org.apache.lucene.util.fst.BytesStore extends org.apache.lucene.store.DataOutput implements org.apache.lucene.util.Accountable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.util.fst.BytesStore
  super_class: org.apache.lucene.store.DataOutput
{
  private static final long BASE_RAM_BYTES_USED;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.List<byte[]> blocks;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<[B>;

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

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

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 32
            ldc Lorg/apache/lucene/util/fst/BytesStore;
            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.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
         3: .line 35
            ldc Lorg/apache/lucene/util/fst/BytesStore;
            invokestatic org.apache.lucene.util.RamUsageEstimator.shallowSizeOfInstance:(Ljava/lang/Class;)J
         4: .line 36
            ldc Ljava/util/ArrayList;
            invokestatic org.apache.lucene.util.RamUsageEstimator.shallowSizeOfInstance:(Ljava/lang/Class;)J
         5: .line 35
            ladd
         6: .line 34
            putstatic org.apache.lucene.util.fst.BytesStore.BASE_RAM_BYTES_USED:J
         7: .line 36
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // int blockBits
         0: .line 47
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataOutput.<init>:()V
         1: .line 38
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
         2: .line 48
            aload 0 /* this */
            iload 1 /* blockBits */
            putfield org.apache.lucene.util.fst.BytesStore.blockBits:I
         3: .line 49
            aload 0 /* this */
            iconst_1
            iload 1 /* blockBits */
            ishl
            putfield org.apache.lucene.util.fst.BytesStore.blockSize:I
         4: .line 50
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            iconst_1
            isub
            putfield org.apache.lucene.util.fst.BytesStore.blockMask:I
         5: .line 51
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
         6: .line 52
            return
        end local 1 // int blockBits
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/apache/lucene/util/fst/BytesStore;
            0    7     1  blockBits  I
    MethodParameters:
           Name  Flags
      blockBits  

  public void <init>(org.apache.lucene.store.DataInput, long, int);
    descriptor: (Lorg/apache/lucene/store/DataInput;JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=4
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // org.apache.lucene.store.DataInput in
        start local 2 // long numBytes
        start local 4 // int maxBlockSize
         0: .line 55
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataOutput.<init>:()V
         1: .line 38
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
         2: .line 56
            iconst_2
            istore 5 /* blockSize */
        start local 5 // int blockSize
         3: .line 57
            iconst_1
            istore 6 /* blockBits */
        start local 6 // int blockBits
         4: .line 58
            goto 7
         5: .line 59
      StackMap locals: org.apache.lucene.util.fst.BytesStore org.apache.lucene.store.DataInput long int int int
      StackMap stack:
            iload 5 /* blockSize */
            iconst_2
            imul
            istore 5 /* blockSize */
         6: .line 60
            iinc 6 /* blockBits */ 1
         7: .line 58
      StackMap locals:
      StackMap stack:
            iload 5 /* blockSize */
            i2l
            lload 2 /* numBytes */
            lcmp
            ifge 8
            iload 5 /* blockSize */
            iload 4 /* maxBlockSize */
            if_icmplt 5
         8: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* blockBits */
            putfield org.apache.lucene.util.fst.BytesStore.blockBits:I
         9: .line 63
            aload 0 /* this */
            iload 5 /* blockSize */
            putfield org.apache.lucene.util.fst.BytesStore.blockSize:I
        10: .line 64
            aload 0 /* this */
            iload 5 /* blockSize */
            iconst_1
            isub
            putfield org.apache.lucene.util.fst.BytesStore.blockMask:I
        11: .line 65
            lload 2 /* numBytes */
            lstore 7 /* left */
        start local 7 // long left
        12: .line 66
            goto 18
        13: .line 67
      StackMap locals: long
      StackMap stack:
            iload 5 /* blockSize */
            i2l
            lload 7 /* left */
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 9 /* chunk */
        start local 9 // int chunk
        14: .line 68
            iload 9 /* chunk */
            newarray 8
            astore 10 /* block */
        start local 10 // byte[] block
        15: .line 69
            aload 1 /* in */
            aload 10 /* block */
            iconst_0
            aload 10 /* block */
            arraylength
            invokevirtual org.apache.lucene.store.DataInput.readBytes:([BII)V
        16: .line 70
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            aload 10 /* block */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        17: .line 71
            lload 7 /* left */
            iload 9 /* chunk */
            i2l
            lsub
            lstore 7 /* left */
        end local 10 // byte[] block
        end local 9 // int chunk
        18: .line 66
      StackMap locals:
      StackMap stack:
            lload 7 /* left */
            lconst_0
            lcmp
            ifgt 13
        19: .line 75
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            arraylength
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
        20: .line 76
            return
        end local 7 // long left
        end local 6 // int blockBits
        end local 5 // int blockSize
        end local 4 // int maxBlockSize
        end local 2 // long numBytes
        end local 1 // org.apache.lucene.store.DataInput in
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   21     0          this  Lorg/apache/lucene/util/fst/BytesStore;
            0   21     1            in  Lorg/apache/lucene/store/DataInput;
            0   21     2      numBytes  J
            0   21     4  maxBlockSize  I
            3   21     5     blockSize  I
            4   21     6     blockBits  I
           12   21     7          left  J
           14   18     9         chunk  I
           15   18    10         block  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      in            
      numBytes      
      maxBlockSize  

  public void writeByte(long, byte);
    descriptor: (JB)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // long dest
        start local 3 // byte b
         0: .line 81
            lload 1 /* dest */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 4 /* blockIndex */
        start local 4 // int blockIndex
         1: .line 82
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 4 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 5 /* block */
        start local 5 // byte[] block
         2: .line 83
            aload 5 /* block */
            lload 1 /* dest */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            iload 3 /* b */
            bastore
         3: .line 84
            return
        end local 5 // byte[] block
        end local 4 // int blockIndex
        end local 3 // byte b
        end local 1 // long dest
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/apache/lucene/util/fst/BytesStore;
            0    4     1        dest  J
            0    4     3           b  B
            1    4     4  blockIndex  I
            2    4     5       block  [B
    MethodParameters:
      Name  Flags
      dest  
      b     

  public void writeByte(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // byte b
         0: .line 88
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            if_icmpne 4
         1: .line 89
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            newarray 8
            putfield org.apache.lucene.util.fst.BytesStore.current:[B
         2: .line 90
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 91
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
         4: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            iload 1 /* b */
            bastore
         5: .line 94
            return
        end local 1 // byte b
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/util/fst/BytesStore;
            0    6     1     b  B
    MethodParameters:
      Name  Flags
      b     

  public void writeBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 98
            goto 15
         1: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            isub
            istore 4 /* chunk */
        start local 4 // int chunk
         2: .line 100
            iload 3 /* len */
            iload 4 /* chunk */
            if_icmpgt 8
         3: .line 101
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 4
            aload 1 /* b */
            ifnonnull 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 102
      StackMap locals: int
      StackMap stack:
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            ifnonnull 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* offset */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 104
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            iload 3 /* len */
            iadd
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
         7: .line 105
            goto 16
         8: .line 107
      StackMap locals:
      StackMap stack:
            iload 4 /* chunk */
            ifle 12
         9: .line 108
            aload 1 /* b */
            iload 2 /* offset */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            iload 4 /* chunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 109
            iload 2 /* offset */
            iload 4 /* chunk */
            iadd
            istore 2 /* offset */
        11: .line 110
            iload 3 /* len */
            iload 4 /* chunk */
            isub
            istore 3 /* len */
        12: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            newarray 8
            putfield org.apache.lucene.util.fst.BytesStore.current:[B
        13: .line 113
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        14: .line 114
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
        end local 4 // int chunk
        15: .line 98
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifgt 1
        16: .line 117
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lorg/apache/lucene/util/fst/BytesStore;
            0   17     1       b  [B
            0   17     2  offset  I
            0   17     3     len  I
            2   15     4   chunk  I
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  int getBlockBits();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 120
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            ireturn
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/fst/BytesStore;

  void writeBytes(long, byte[], int, int);
    descriptor: (J[BII)V
    flags: (0x0000) 
    Code:
      stack=5, locals=11, args_size=5
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // long dest
        start local 3 // byte[] b
        start local 4 // int offset
        start local 5 // int len
         0: .line 128
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 1
            lload 1 /* dest */
            iload 5 /* len */
            i2l
            ladd
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.fst.BytesStore.getPosition:()J
            lcmp
            ifle 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "dest="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 1 /* dest */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " pos="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.fst.BytesStore.getPosition:()J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " len="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 5 /* len */
            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
         1: .line 156
      StackMap locals:
      StackMap stack:
            lload 1 /* dest */
            iload 5 /* len */
            i2l
            ladd
            lstore 6 /* end */
        start local 6 // long end
         2: .line 157
            lload 6 /* end */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 8 /* blockIndex */
        start local 8 // int blockIndex
         3: .line 158
            lload 6 /* end */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            istore 9 /* downTo */
        start local 9 // int downTo
         4: .line 159
            iload 9 /* downTo */
            ifne 7
         5: .line 160
            iinc 8 /* blockIndex */ -1
         6: .line 161
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            istore 9 /* downTo */
         7: .line 163
      StackMap locals: long int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 8 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* block */
        start local 10 // byte[] block
         8: .line 165
            goto 17
         9: .line 167
      StackMap locals: byte[]
      StackMap stack:
            iload 5 /* len */
            iload 9 /* downTo */
            if_icmpgt 12
        10: .line 169
            aload 3 /* b */
            iload 4 /* offset */
            aload 10 /* block */
            iload 9 /* downTo */
            iload 5 /* len */
            isub
            iload 5 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 170
            goto 18
        12: .line 172
      StackMap locals:
      StackMap stack:
            iload 5 /* len */
            iload 9 /* downTo */
            isub
            istore 5 /* len */
        13: .line 174
            aload 3 /* b */
            iload 4 /* offset */
            iload 5 /* len */
            iadd
            aload 10 /* block */
            iconst_0
            iload 9 /* downTo */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 175
            iinc 8 /* blockIndex */ -1
        15: .line 176
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 8 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* block */
        16: .line 177
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            istore 9 /* downTo */
        17: .line 165
      StackMap locals:
      StackMap stack:
            iload 5 /* len */
            ifgt 9
        18: .line 180
      StackMap locals:
      StackMap stack:
            return
        end local 10 // byte[] block
        end local 9 // int downTo
        end local 8 // int blockIndex
        end local 6 // long end
        end local 5 // int len
        end local 4 // int offset
        end local 3 // byte[] b
        end local 1 // long dest
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/apache/lucene/util/fst/BytesStore;
            0   19     1        dest  J
            0   19     3           b  [B
            0   19     4      offset  I
            0   19     5         len  I
            2   19     6         end  J
            3   19     8  blockIndex  I
            4   19     9      downTo  I
            8   19    10       block  [B
    MethodParameters:
        Name  Flags
      dest    
      b       
      offset  
      len     

  public void copyBytes(long, long, int);
    descriptor: (JJI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=11, args_size=4
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // long src
        start local 3 // long dest
        start local 5 // int len
         0: .line 187
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 1
            lload 1 /* src */
            lload 3 /* dest */
            lcmp
            iflt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 215
      StackMap locals:
      StackMap stack:
            lload 1 /* src */
            iload 5 /* len */
            i2l
            ladd
            lstore 6 /* end */
        start local 6 // long end
         2: .line 217
            lload 6 /* end */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 8 /* blockIndex */
        start local 8 // int blockIndex
         3: .line 218
            lload 6 /* end */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            istore 9 /* downTo */
        start local 9 // int downTo
         4: .line 219
            iload 9 /* downTo */
            ifne 7
         5: .line 220
            iinc 8 /* blockIndex */ -1
         6: .line 221
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            istore 9 /* downTo */
         7: .line 223
      StackMap locals: long int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 8 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* block */
        start local 10 // byte[] block
         8: .line 225
            goto 17
         9: .line 227
      StackMap locals: byte[]
      StackMap stack:
            iload 5 /* len */
            iload 9 /* downTo */
            if_icmpgt 12
        10: .line 229
            aload 0 /* this */
            lload 3 /* dest */
            aload 10 /* block */
            iload 9 /* downTo */
            iload 5 /* len */
            isub
            iload 5 /* len */
            invokevirtual org.apache.lucene.util.fst.BytesStore.writeBytes:(J[BII)V
        11: .line 230
            goto 18
        12: .line 233
      StackMap locals:
      StackMap stack:
            iload 5 /* len */
            iload 9 /* downTo */
            isub
            istore 5 /* len */
        13: .line 234
            aload 0 /* this */
            lload 3 /* dest */
            iload 5 /* len */
            i2l
            ladd
            aload 10 /* block */
            iconst_0
            iload 9 /* downTo */
            invokevirtual org.apache.lucene.util.fst.BytesStore.writeBytes:(J[BII)V
        14: .line 235
            iinc 8 /* blockIndex */ -1
        15: .line 236
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 8 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* block */
        16: .line 237
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            istore 9 /* downTo */
        17: .line 225
      StackMap locals:
      StackMap stack:
            iload 5 /* len */
            ifgt 9
        18: .line 240
      StackMap locals:
      StackMap stack:
            return
        end local 10 // byte[] block
        end local 9 // int downTo
        end local 8 // int blockIndex
        end local 6 // long end
        end local 5 // int len
        end local 3 // long dest
        end local 1 // long src
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/apache/lucene/util/fst/BytesStore;
            0   19     1         src  J
            0   19     3        dest  J
            0   19     5         len  I
            2   19     6         end  J
            3   19     8  blockIndex  I
            4   19     9      downTo  I
            8   19    10       block  [B
    MethodParameters:
      Name  Flags
      src   
      dest  
      len   

  public void writeInt(long, int);
    descriptor: (JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // long pos
        start local 3 // int value
         0: .line 245
            lload 1 /* pos */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 4 /* blockIndex */
        start local 4 // int blockIndex
         1: .line 246
            lload 1 /* pos */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            istore 5 /* upto */
        start local 5 // int upto
         2: .line 247
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 4 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 6 /* block */
        start local 6 // byte[] block
         3: .line 248
            bipush 24
            istore 7 /* shift */
        start local 7 // int shift
         4: .line 249
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         5: goto 13
         6: .line 250
      StackMap locals: org.apache.lucene.util.fst.BytesStore long int int int byte[] int int
      StackMap stack:
            aload 6 /* block */
            iload 5 /* upto */
            iinc 5 /* upto */ 1
            iload 3 /* value */
            iload 7 /* shift */
            ishr
            i2b
            bastore
         7: .line 251
            iinc 7 /* shift */ -8
         8: .line 252
            iload 5 /* upto */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            if_icmpne 12
         9: .line 253
            iconst_0
            istore 5 /* upto */
        10: .line 254
            iinc 4 /* blockIndex */ 1
        11: .line 255
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 4 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 6 /* block */
        12: .line 249
      StackMap locals:
      StackMap stack:
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 8 /* i */
            iconst_4
            if_icmplt 6
        end local 8 // int i
        14: .line 258
            return
        end local 7 // int shift
        end local 6 // byte[] block
        end local 5 // int upto
        end local 4 // int blockIndex
        end local 3 // int value
        end local 1 // long pos
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lorg/apache/lucene/util/fst/BytesStore;
            0   15     1         pos  J
            0   15     3       value  I
            1   15     4  blockIndex  I
            2   15     5        upto  I
            3   15     6       block  [B
            4   15     7       shift  I
            5   14     8           i  I
    MethodParameters:
       Name  Flags
      pos    
      value  

  public void reverse(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=14, args_size=3
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // long srcPos
        start local 3 // long destPos
         0: .line 262
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 1
            lload 1 /* srcPos */
            lload 3 /* destPos */
            lcmp
            iflt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 263
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 2
            lload 3 /* destPos */
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.fst.BytesStore.getPosition:()J
            lcmp
            iflt 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 266
      StackMap locals:
      StackMap stack:
            lload 1 /* srcPos */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 5 /* srcBlockIndex */
        start local 5 // int srcBlockIndex
         3: .line 267
            lload 1 /* srcPos */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            istore 6 /* src */
        start local 6 // int src
         4: .line 268
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 5 /* srcBlockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 7 /* srcBlock */
        start local 7 // byte[] srcBlock
         5: .line 270
            lload 3 /* destPos */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 8 /* destBlockIndex */
        start local 8 // int destBlockIndex
         6: .line 271
            lload 3 /* destPos */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            istore 9 /* dest */
        start local 9 // int dest
         7: .line 272
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 8 /* destBlockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* destBlock */
        start local 10 // byte[] destBlock
         8: .line 275
            lload 3 /* destPos */
            lload 1 /* srcPos */
            lsub
            lconst_1
            ladd
            l2i
            iconst_2
            idiv
            istore 11 /* limit */
        start local 11 // int limit
         9: .line 276
            iconst_0
            istore 12 /* i */
        start local 12 // int i
        10: goto 25
        11: .line 278
      StackMap locals: org.apache.lucene.util.fst.BytesStore long long int int byte[] int int byte[] int int
      StackMap stack:
            aload 7 /* srcBlock */
            iload 6 /* src */
            baload
            istore 13 /* b */
        start local 13 // byte b
        12: .line 279
            aload 7 /* srcBlock */
            iload 6 /* src */
            aload 10 /* destBlock */
            iload 9 /* dest */
            baload
            bastore
        13: .line 280
            aload 10 /* destBlock */
            iload 9 /* dest */
            iload 13 /* b */
            bastore
        14: .line 281
            iinc 6 /* src */ 1
        15: .line 282
            iload 6 /* src */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            if_icmpne 19
        16: .line 283
            iinc 5 /* srcBlockIndex */ 1
        17: .line 284
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 5 /* srcBlockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 7 /* srcBlock */
        18: .line 286
            iconst_0
            istore 6 /* src */
        19: .line 289
      StackMap locals: int
      StackMap stack:
            iinc 9 /* dest */ -1
        20: .line 290
            iload 9 /* dest */
            iconst_m1
            if_icmpne 24
        21: .line 291
            iinc 8 /* destBlockIndex */ -1
        22: .line 292
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 8 /* destBlockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 10 /* destBlock */
        23: .line 294
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            iconst_1
            isub
            istore 9 /* dest */
        end local 13 // byte b
        24: .line 276
      StackMap locals:
      StackMap stack:
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        25: iload 12 /* i */
            iload 11 /* limit */
            if_icmplt 11
        end local 12 // int i
        26: .line 297
            return
        end local 11 // int limit
        end local 10 // byte[] destBlock
        end local 9 // int dest
        end local 8 // int destBlockIndex
        end local 7 // byte[] srcBlock
        end local 6 // int src
        end local 5 // int srcBlockIndex
        end local 3 // long destPos
        end local 1 // long srcPos
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   27     0            this  Lorg/apache/lucene/util/fst/BytesStore;
            0   27     1          srcPos  J
            0   27     3         destPos  J
            3   27     5   srcBlockIndex  I
            4   27     6             src  I
            5   27     7        srcBlock  [B
            6   27     8  destBlockIndex  I
            7   27     9            dest  I
            8   27    10       destBlock  [B
            9   27    11           limit  I
           10   26    12               i  I
           12   24    13               b  B
    MethodParameters:
         Name  Flags
      srcPos   
      destPos  

  public void skipBytes(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // int len
         0: .line 300
            goto 9
         1: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            isub
            istore 2 /* chunk */
        start local 2 // int chunk
         2: .line 302
            iload 1 /* len */
            iload 2 /* chunk */
            if_icmpgt 5
         3: .line 303
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            iload 1 /* len */
            iadd
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
         4: .line 304
            goto 10
         5: .line 306
      StackMap locals: int
      StackMap stack:
            iload 1 /* len */
            iload 2 /* chunk */
            isub
            istore 1 /* len */
         6: .line 307
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            newarray 8
            putfield org.apache.lucene.util.fst.BytesStore.current:[B
         7: .line 308
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 309
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
        end local 2 // int chunk
         9: .line 300
      StackMap locals:
      StackMap stack:
            iload 1 /* len */
            ifgt 1
        10: .line 312
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int len
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/apache/lucene/util/fst/BytesStore;
            0   11     1    len  I
            2    9     2  chunk  I
    MethodParameters:
      Name  Flags
      len   

  public long getPosition();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 315
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            lconst_1
            lsub
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            i2l
            lmul
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            i2l
            ladd
            lreturn
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/fst/BytesStore;

  public void truncate(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // long newLen
         0: .line 321
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 1
            lload 1 /* newLen */
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.fst.BytesStore.getPosition:()J
            lcmp
            ifle 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 322
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 2
            lload 1 /* newLen */
            lconst_0
            lcmp
            ifge 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 323
      StackMap locals:
      StackMap stack:
            lload 1 /* newLen */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockBits:I
            lshr
            l2i
            istore 3 /* blockIndex */
        start local 3 // int blockIndex
         3: .line 324
            aload 0 /* this */
            lload 1 /* newLen */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockMask:I
            i2l
            land
            l2i
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
         4: .line 325
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            ifne 7
         5: .line 326
            iinc 3 /* blockIndex */ -1
         6: .line 327
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blockSize:I
            putfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
         7: .line 329
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 3 /* blockIndex */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         8: .line 330
            lload 1 /* newLen */
            lconst_0
            lcmp
            ifne 11
         9: .line 331
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.util.fst.BytesStore.current:[B
        10: .line 332
            goto 12
        11: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iload 3 /* blockIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            putfield org.apache.lucene.util.fst.BytesStore.current:[B
        12: .line 335
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.fst.BytesStore.$assertionsDisabled:Z
            ifne 13
            lload 1 /* newLen */
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.fst.BytesStore.getPosition:()J
            lcmp
            ifeq 13
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        13: .line 336
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int blockIndex
        end local 1 // long newLen
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/apache/lucene/util/fst/BytesStore;
            0   14     1      newLen  J
            3   14     3  blockIndex  I
    MethodParameters:
        Name  Flags
      newLen  

  public void finish();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 339
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            ifnull 5
         1: .line 340
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            newarray 8
            astore 1 /* lastBuffer */
        start local 1 // byte[] lastBuffer
         2: .line 341
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.current:[B
            iconst_0
            aload 1 /* lastBuffer */
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.nextWrite:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 342
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            aload 1 /* lastBuffer */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 343
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.util.fst.BytesStore.current:[B
        end local 1 // byte[] lastBuffer
         5: .line 345
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/lucene/util/fst/BytesStore;
            2    5     1  lastBuffer  [B

  public void writeTo(org.apache.lucene.store.DataOutput);
    descriptor: (Lorg/apache/lucene/store/DataOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // org.apache.lucene.store.DataOutput out
         0: .line 349
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: org.apache.lucene.util.fst.BytesStore org.apache.lucene.store.DataOutput top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast byte[]
            astore 2 /* block */
        start local 2 // byte[] block
         2: .line 350
            aload 1 /* out */
            aload 2 /* block */
            iconst_0
            aload 2 /* block */
            arraylength
            invokevirtual org.apache.lucene.store.DataOutput.writeBytes:([BII)V
        end local 2 // byte[] block
         3: .line 349
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 352
            return
        end local 1 // org.apache.lucene.store.DataOutput out
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/util/fst/BytesStore;
            0    5     1    out  Lorg/apache/lucene/store/DataOutput;
            2    3     2  block  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public org.apache.lucene.util.fst.FST$BytesReader getForwardReader();
    descriptor: ()Lorg/apache/lucene/util/fst/FST$BytesReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 355
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 2
         1: .line 356
            new org.apache.lucene.util.fst.ForwardBytesReader
            dup
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            invokespecial org.apache.lucene.util.fst.ForwardBytesReader.<init>:([B)V
            areturn
         2: .line 358
      StackMap locals:
      StackMap stack:
            new org.apache.lucene.util.fst.BytesStore$1
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.util.fst.BytesStore$1.<init>:(Lorg/apache/lucene/util/fst/BytesStore;)V
            areturn
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/fst/BytesStore;

  public org.apache.lucene.util.fst.FST$BytesReader getReverseReader();
    descriptor: ()Lorg/apache/lucene/util/fst/FST$BytesReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 419
            aload 0 /* this */
            iconst_1
            invokevirtual org.apache.lucene.util.fst.BytesStore.getReverseReader:(Z)Lorg/apache/lucene/util/fst/FST$BytesReader;
            areturn
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/fst/BytesStore;

  org.apache.lucene.util.fst.FST$BytesReader getReverseReader(boolean);
    descriptor: (Z)Lorg/apache/lucene/util/fst/FST$BytesReader;
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.fst.BytesStore this
        start local 1 // boolean allowSingle
         0: .line 423
            iload 1 /* allowSingle */
            ifeq 2
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 2
         1: .line 424
            new org.apache.lucene.util.fst.ReverseBytesReader
            dup
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast byte[]
            invokespecial org.apache.lucene.util.fst.ReverseBytesReader.<init>:([B)V
            areturn
         2: .line 426
      StackMap locals:
      StackMap stack:
            new org.apache.lucene.util.fst.BytesStore$2
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.util.fst.BytesStore$2.<init>:(Lorg/apache/lucene/util/fst/BytesStore;)V
            areturn
        end local 1 // boolean allowSingle
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/apache/lucene/util/fst/BytesStore;
            0    3     1  allowSingle  Z
    MethodParameters:
             Name  Flags
      allowSingle  

  public long ramBytesUsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 479
            getstatic org.apache.lucene.util.fst.BytesStore.BASE_RAM_BYTES_USED:J
            lstore 1 /* size */
        start local 1 // long size
         1: .line 480
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.lucene.util.fst.BytesStore long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast byte[]
            astore 3 /* block */
        start local 3 // byte[] block
         3: .line 481
            lload 1 /* size */
            aload 3 /* block */
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOf:([B)J
            ladd
            lstore 1 /* size */
        end local 3 // byte[] block
         4: .line 480
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 483
            lload 1 /* size */
            lreturn
        end local 1 // long size
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/lucene/util/fst/BytesStore;
            1    6     1   size  J
            3    4     3  block  [B

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.BytesStore this
         0: .line 488
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "(numBlocks="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.BytesStore.blocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.util.fst.BytesStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/fst/BytesStore;
}
SourceFile: "BytesStore.java"
NestMembers:
  org.apache.lucene.util.fst.BytesStore$1  org.apache.lucene.util.fst.BytesStore$2
InnerClasses:
  org.apache.lucene.util.fst.BytesStore$1
  org.apache.lucene.util.fst.BytesStore$2
  public abstract BytesReader = org.apache.lucene.util.fst.FST$BytesReader of org.apache.lucene.util.fst.FST