final class io.netty.buffer.FixedCompositeByteBuf extends io.netty.buffer.AbstractReferenceCountedByteBuf
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.netty.buffer.FixedCompositeByteBuf
  super_class: io.netty.buffer.AbstractReferenceCountedByteBuf
{
  private static final io.netty.buffer.ByteBuf[] EMPTY;
    descriptor: [Lio/netty/buffer/ByteBuf;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

  private final io.netty.buffer.ByteBufAllocator allocator;
    descriptor: Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.ByteOrder order;
    descriptor: Ljava/nio/ByteOrder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 37
            iconst_1
            anewarray io.netty.buffer.ByteBuf
            dup
            iconst_0
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            aastore
            putstatic io.netty.buffer.FixedCompositeByteBuf.EMPTY:[Lio/netty/buffer/ByteBuf;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(io.netty.buffer.ByteBufAllocator, io.netty.buffer.ByteBuf[]);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;[Lio/netty/buffer/ByteBuf;)V
    flags: (0x0080) ACC_VARARGS
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // io.netty.buffer.ByteBufAllocator allocator
        start local 2 // io.netty.buffer.ByteBuf[] buffers
         0: .line 46
            aload 0 /* this */
            ldc 2147483647
            invokespecial io.netty.buffer.AbstractReferenceCountedByteBuf.<init>:(I)V
         1: .line 47
            aload 2 /* buffers */
            arraylength
            ifne 8
         2: .line 48
            aload 0 /* this */
            getstatic io.netty.buffer.FixedCompositeByteBuf.EMPTY:[Lio/netty/buffer/ByteBuf;
            putfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
         3: .line 49
            aload 0 /* this */
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            putfield io.netty.buffer.FixedCompositeByteBuf.order:Ljava/nio/ByteOrder;
         4: .line 50
            aload 0 /* this */
            iconst_1
            putfield io.netty.buffer.FixedCompositeByteBuf.nioBufferCount:I
         5: .line 51
            aload 0 /* this */
            iconst_0
            putfield io.netty.buffer.FixedCompositeByteBuf.capacity:I
         6: .line 52
            aload 0 /* this */
            iconst_0
            putfield io.netty.buffer.FixedCompositeByteBuf.direct:Z
         7: .line 53
            goto 30
         8: .line 54
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf io.netty.buffer.ByteBufAllocator io.netty.buffer.ByteBuf[]
      StackMap stack:
            aload 2 /* buffers */
            iconst_0
            aaload
            astore 3 /* b */
        start local 3 // io.netty.buffer.ByteBuf b
         9: .line 55
            aload 0 /* this */
            aload 2 /* buffers */
            arraylength
            anewarray java.lang.Object
            putfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
        10: .line 56
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            iconst_0
            aload 3 /* b */
            aastore
        11: .line 57
            iconst_1
            istore 4 /* direct */
        start local 4 // boolean direct
        12: .line 58
            aload 3 /* b */
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            istore 5 /* nioBufferCount */
        start local 5 // int nioBufferCount
        13: .line 59
            aload 3 /* b */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            istore 6 /* capacity */
        start local 6 // int capacity
        14: .line 60
            aload 0 /* this */
            aload 3 /* b */
            invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
            putfield io.netty.buffer.FixedCompositeByteBuf.order:Ljava/nio/ByteOrder;
        15: .line 61
            iconst_1
            istore 7 /* i */
        start local 7 // int i
        16: goto 26
        17: .line 62
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf io.netty.buffer.ByteBufAllocator io.netty.buffer.ByteBuf[] io.netty.buffer.ByteBuf int int int int
      StackMap stack:
            aload 2 /* buffers */
            iload 7 /* i */
            aaload
            astore 3 /* b */
        18: .line 63
            aload 2 /* buffers */
            iload 7 /* i */
            aaload
            invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.order:Ljava/nio/ByteOrder;
            if_acmpeq 20
        19: .line 64
            new java.lang.IllegalArgumentException
            dup
            ldc "All ByteBufs need to have same ByteOrder"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 66
      StackMap locals:
      StackMap stack:
            iload 5 /* nioBufferCount */
            aload 3 /* b */
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            iadd
            istore 5 /* nioBufferCount */
        21: .line 67
            iload 6 /* capacity */
            aload 3 /* b */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 6 /* capacity */
        22: .line 68
            aload 3 /* b */
            invokevirtual io.netty.buffer.ByteBuf.isDirect:()Z
            ifne 24
        23: .line 69
            iconst_0
            istore 4 /* direct */
        24: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            iload 7 /* i */
            aload 3 /* b */
            aastore
        25: .line 61
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 7 /* i */
            aload 2 /* buffers */
            arraylength
            if_icmplt 17
        end local 7 // int i
        27: .line 73
            aload 0 /* this */
            iload 5 /* nioBufferCount */
            putfield io.netty.buffer.FixedCompositeByteBuf.nioBufferCount:I
        28: .line 74
            aload 0 /* this */
            iload 6 /* capacity */
            putfield io.netty.buffer.FixedCompositeByteBuf.capacity:I
        29: .line 75
            aload 0 /* this */
            iload 4 /* direct */
            putfield io.netty.buffer.FixedCompositeByteBuf.direct:Z
        end local 6 // int capacity
        end local 5 // int nioBufferCount
        end local 4 // boolean direct
        end local 3 // io.netty.buffer.ByteBuf b
        30: .line 77
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf io.netty.buffer.ByteBufAllocator io.netty.buffer.ByteBuf[]
      StackMap stack:
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.capacity:()I
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.setIndex:(II)Lio/netty/buffer/ByteBuf;
            pop
        31: .line 78
            aload 0 /* this */
            aload 1 /* allocator */
            putfield io.netty.buffer.FixedCompositeByteBuf.allocator:Lio/netty/buffer/ByteBufAllocator;
        32: .line 79
            return
        end local 2 // io.netty.buffer.ByteBuf[] buffers
        end local 1 // io.netty.buffer.ByteBufAllocator allocator
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   33     0            this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   33     1       allocator  Lio/netty/buffer/ByteBufAllocator;
            0   33     2         buffers  [Lio/netty/buffer/ByteBuf;
            9   30     3               b  Lio/netty/buffer/ByteBuf;
           12   30     4          direct  Z
           13   30     5  nioBufferCount  I
           14   30     6        capacity  I
           16   27     7               i  I
    MethodParameters:
           Name  Flags
      allocator  
      buffers    

  public boolean isWritable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 83
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public boolean isWritable(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int size
         0: .line 88
            iconst_0
            ireturn
        end local 1 // int size
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public io.netty.buffer.ByteBuf discardReadBytes();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 93
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 98
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // io.netty.buffer.ByteBuf src
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1     index  I
            0    1     2       src  Lio/netty/buffer/ByteBuf;
            0    1     3  srcIndex  I
            0    1     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // byte[] src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 103
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // byte[] src
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1     index  I
            0    1     2       src  [B
            0    1     3  srcIndex  I
            0    1     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer src
         0: .line 108
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // java.nio.ByteBuffer src
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2    src  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      src    

  public io.netty.buffer.ByteBuf setByte(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 113
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setByte(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 118
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShort(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 123
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShort(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 128
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShortLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 133
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMedium(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 138
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMedium(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 143
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMediumLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 148
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setInt(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 153
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 158
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setIntLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 163
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLong(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 168
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 173
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLongLE(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 178
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public int setBytes(int, java.io.InputStream, int);
    descriptor: (ILjava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.io.InputStream in
        start local 3 // int length
         0: .line 183
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 3 // int length
        end local 2 // java.io.InputStream in
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/io/InputStream;
            0    1     3  length  I
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.ScatteringByteChannel, int);
    descriptor: (ILjava/nio/channels/ScatteringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.ScatteringByteChannel in
        start local 3 // int length
         0: .line 188
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 3 // int length
        end local 2 // java.nio.channels.ScatteringByteChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/nio/channels/ScatteringByteChannel;
            0    1     3  length  I
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=5
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel in
        start local 3 // long position
        start local 5 // int length
         0: .line 193
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1     index  I
            0    1     2        in  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    MethodParameters:
          Name  Flags
      index     
      in        
      position  
      length    

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 198
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.capacity:I
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public int maxCapacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 203
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.capacity:I
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public io.netty.buffer.ByteBuf capacity(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int newCapacity
         0: .line 208
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 1 // int newCapacity
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  public io.netty.buffer.ByteBufAllocator alloc();
    descriptor: ()Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 213
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.allocator:Lio/netty/buffer/ByteBufAllocator;
            areturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 218
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.order:Ljava/nio/ByteOrder;
            areturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public io.netty.buffer.ByteBuf unwrap();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 223
            aconst_null
            areturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public boolean isDirect();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 228
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.direct:Z
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  private io.netty.buffer.FixedCompositeByteBuf$Component findComponent(int);
    descriptor: (I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 232
            iconst_0
            istore 2 /* readable */
        start local 2 // int readable
         1: .line 233
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 19
         3: .line 234
      StackMap locals: int int
      StackMap stack:
            aconst_null
            astore 4 /* comp */
        start local 4 // io.netty.buffer.FixedCompositeByteBuf$Component comp
         4: .line 236
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            astore 6 /* obj */
        start local 6 // java.lang.Object obj
         5: .line 238
            aload 6 /* obj */
            instanceof io.netty.buffer.ByteBuf
            ifeq 9
         6: .line 239
            aload 6 /* obj */
            checkcast io.netty.buffer.ByteBuf
            astore 5 /* b */
        start local 5 // io.netty.buffer.ByteBuf b
         7: .line 240
            iconst_1
            istore 7 /* isBuffer */
        start local 7 // boolean isBuffer
         8: .line 241
            goto 12
        end local 7 // boolean isBuffer
        end local 5 // io.netty.buffer.ByteBuf b
         9: .line 242
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int int io.netty.buffer.FixedCompositeByteBuf$Component top java.lang.Object
      StackMap stack:
            aload 6 /* obj */
            checkcast io.netty.buffer.FixedCompositeByteBuf$Component
            astore 4 /* comp */
        10: .line 243
            aload 4 /* comp */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            astore 5 /* b */
        start local 5 // io.netty.buffer.ByteBuf b
        11: .line 244
            iconst_0
            istore 7 /* isBuffer */
        start local 7 // boolean isBuffer
        12: .line 246
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int int io.netty.buffer.FixedCompositeByteBuf$Component io.netty.buffer.ByteBuf java.lang.Object int
      StackMap stack:
            iload 2 /* readable */
            aload 5 /* b */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 2 /* readable */
        13: .line 247
            iload 1 /* index */
            iload 2 /* readable */
            if_icmpge 18
        14: .line 248
            iload 7 /* isBuffer */
            ifeq 17
        15: .line 251
            new io.netty.buffer.FixedCompositeByteBuf$Component
            dup
            iload 3 /* i */
            iload 2 /* readable */
            aload 5 /* b */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            isub
            aload 5 /* b */
            invokespecial io.netty.buffer.FixedCompositeByteBuf$Component.<init>:(IILio/netty/buffer/ByteBuf;)V
            astore 4 /* comp */
        16: .line 252
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            iload 3 /* i */
            aload 4 /* comp */
            aastore
        17: .line 254
      StackMap locals:
      StackMap stack:
            aload 4 /* comp */
            areturn
        end local 7 // boolean isBuffer
        end local 6 // java.lang.Object obj
        end local 5 // io.netty.buffer.ByteBuf b
        end local 4 // io.netty.buffer.FixedCompositeByteBuf$Component comp
        18: .line 233
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int int
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 3 /* i */
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            if_icmplt 3
        end local 3 // int i
        20: .line 257
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
        end local 2 // int readable
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   21     1     index  I
            1   21     2  readable  I
            2   20     3         i  I
            4   18     4      comp  Lio/netty/buffer/FixedCompositeByteBuf$Component;
            7    9     5         b  Lio/netty/buffer/ByteBuf;
           11   18     5         b  Lio/netty/buffer/ByteBuf;
            5   18     6       obj  Ljava/lang/Object;
            8    9     7  isBuffer  Z
           12   18     7  isBuffer  Z
    MethodParameters:
       Name  Flags
      index  

  private io.netty.buffer.ByteBuf buffer(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int i
         0: .line 264
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            iload 1 /* i */
            aaload
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         1: .line 265
            aload 2 /* obj */
            instanceof io.netty.buffer.ByteBuf
            ifeq 3
         2: .line 266
            aload 2 /* obj */
            checkcast io.netty.buffer.ByteBuf
            areturn
         3: .line 268
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* obj */
            checkcast io.netty.buffer.FixedCompositeByteBuf$Component
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // int i
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    4     1     i  I
            1    4     2   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      i     

  public byte getByte(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 273
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected byte _getByte(int);
    descriptor: (I)B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 278
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 279
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    2     1  index  I
            1    2     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected short _getShort(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 284
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 285
            iload 1 /* index */
            iconst_2
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 286
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            ireturn
         3: .line 287
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 288
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            bipush 8
            ishl
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            ior
            i2s
            ireturn
         5: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            bipush 8
            ishl
            ior
            i2s
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected short _getShortLE(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 296
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 297
            iload 1 /* index */
            iconst_2
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 298
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getShortLE:(I)S
            ireturn
         3: .line 299
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 300
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            bipush 8
            ishl
            ior
            i2s
            ireturn
         5: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            bipush 8
            ishl
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            ior
            i2s
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 308
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 309
            iload 1 /* index */
            iconst_3
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 310
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMedium:(I)I
            ireturn
         3: .line 311
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 312
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShort:(I)S
            ldc 65535
            iand
            bipush 8
            ishl
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            ior
            ireturn
         5: .line 314
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShort:(I)S
            ldc 65535
            iand
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            bipush 16
            ishl
            ior
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 320
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 321
            iload 1 /* index */
            iconst_3
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 322
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMediumLE:(I)I
            ireturn
         3: .line 323
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 324
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShortLE:(I)S
            ldc 65535
            iand
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            bipush 16
            ishl
            ior
            ireturn
         5: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShortLE:(I)S
            ldc 65535
            iand
            bipush 8
            ishl
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getByte:(I)B
            sipush 255
            iand
            ior
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected int _getInt(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 332
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 333
            iload 1 /* index */
            iconst_4
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 334
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getInt:(I)I
            ireturn
         3: .line 335
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 336
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShort:(I)S
            ldc 65535
            iand
            bipush 16
            ishl
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShort:(I)S
            ldc 65535
            iand
            ior
            ireturn
         5: .line 338
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShort:(I)S
            ldc 65535
            iand
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShort:(I)S
            ldc 65535
            iand
            bipush 16
            ishl
            ior
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected int _getIntLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 344
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 345
            iload 1 /* index */
            iconst_4
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 346
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getIntLE:(I)I
            ireturn
         3: .line 347
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 348
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShortLE:(I)S
            ldc 65535
            iand
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShortLE:(I)S
            ldc 65535
            iand
            bipush 16
            ishl
            ior
            ireturn
         5: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShortLE:(I)S
            ldc 65535
            iand
            bipush 16
            ishl
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getShortLE:(I)S
            ldc 65535
            iand
            ior
            ireturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected long _getLong(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 356
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 357
            iload 1 /* index */
            bipush 8
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 358
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getLong:(I)J
            lreturn
         3: .line 359
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 360
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getInt:(I)I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getInt:(I)I
            i2l
            ldc 4294967295
            land
            lor
            lreturn
         5: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getInt:(I)I
            i2l
            ldc 4294967295
            land
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getInt:(I)I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lor
            lreturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  protected long _getLongLE(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
         0: .line 368
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 2 /* c */
        start local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
         1: .line 369
            iload 1 /* index */
            bipush 8
            iadd
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.endOffset:I
            if_icmpgt 3
         2: .line 370
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            isub
            invokevirtual io.netty.buffer.ByteBuf.getLongLE:(I)J
            lreturn
         3: .line 371
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf$Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
         4: .line 372
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getIntLE:(I)I
            i2l
            ldc 4294967295
            land
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getIntLE:(I)I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lor
            lreturn
         5: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getIntLE:(I)I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            iadd
            invokevirtual io.netty.buffer.FixedCompositeByteBuf._getIntLE:(I)I
            i2l
            ldc 4294967295
            land
            lor
            lreturn
        end local 2 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    6     1  index  I
            1    6     2      c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
    MethodParameters:
       Name  Flags
      index  

  public io.netty.buffer.ByteBuf getBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // byte[] dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 380
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* dstIndex */
            aload 2 /* dst */
            arraylength
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkDstIndex:(IIII)V
         1: .line 381
            iload 4 /* length */
            ifne 3
         2: .line 382
            aload 0 /* this */
            areturn
         3: .line 385
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 5 /* c */
        start local 5 // io.netty.buffer.FixedCompositeByteBuf$Component c
         4: .line 386
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.index:I
            istore 6 /* i */
        start local 6 // int i
         5: .line 387
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            istore 7 /* adjustment */
        start local 7 // int adjustment
         6: .line 388
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            astore 8 /* s */
        start local 8 // io.netty.buffer.ByteBuf s
         7: .line 390
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int byte[] int int io.netty.buffer.FixedCompositeByteBuf$Component int int io.netty.buffer.ByteBuf
      StackMap stack:
            iload 4 /* length */
            aload 8 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iload 1 /* index */
            iload 7 /* adjustment */
            isub
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 9 /* localLength */
        start local 9 // int localLength
         8: .line 391
            aload 8 /* s */
            iload 1 /* index */
            iload 7 /* adjustment */
            isub
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 9 /* localLength */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         9: .line 392
            iload 1 /* index */
            iload 9 /* localLength */
            iadd
            istore 1 /* index */
        10: .line 393
            iload 3 /* dstIndex */
            iload 9 /* localLength */
            iadd
            istore 3 /* dstIndex */
        11: .line 394
            iload 4 /* length */
            iload 9 /* localLength */
            isub
            istore 4 /* length */
        12: .line 395
            iload 7 /* adjustment */
            aload 8 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 7 /* adjustment */
        13: .line 396
            iload 4 /* length */
            ifgt 15
        14: .line 397
            goto 17
        15: .line 399
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iinc 6 /* i */ 1
            iload 6 /* i */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 8 /* s */
        end local 9 // int localLength
        16: .line 389
            goto 7
        17: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 8 // io.netty.buffer.ByteBuf s
        end local 7 // int adjustment
        end local 6 // int i
        end local 5 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // byte[] dst
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   18     1        index  I
            0   18     2          dst  [B
            0   18     3     dstIndex  I
            0   18     4       length  I
            4   18     5            c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
            5   18     6            i  I
            6   18     7   adjustment  I
            7   18     8            s  Lio/netty/buffer/ByteBuf;
            8   16     9  localLength  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer dst
         0: .line 406
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 3 /* limit */
        start local 3 // int limit
         1: .line 407
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* length */
        start local 4 // int length
         2: .line 409
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkIndex:(II)V
         3: .line 410
            iload 4 /* length */
            ifne 5
         4: .line 411
            aload 0 /* this */
            areturn
         5: .line 415
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 5 /* c */
        start local 5 // io.netty.buffer.FixedCompositeByteBuf$Component c
         6: .line 416
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.index:I
            istore 6 /* i */
        start local 6 // int i
         7: .line 417
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            istore 7 /* adjustment */
        start local 7 // int adjustment
         8: .line 418
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            astore 8 /* s */
        start local 8 // io.netty.buffer.ByteBuf s
         9: .line 420
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int java.nio.ByteBuffer int int io.netty.buffer.FixedCompositeByteBuf$Component int int io.netty.buffer.ByteBuf
      StackMap stack:
            iload 4 /* length */
            aload 8 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iload 1 /* index */
            iload 7 /* adjustment */
            isub
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 9 /* localLength */
        start local 9 // int localLength
        10: .line 421
            aload 2 /* dst */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 9 /* localLength */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        11: .line 422
            aload 8 /* s */
            iload 1 /* index */
            iload 7 /* adjustment */
            isub
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
        12: .line 423
            iload 1 /* index */
            iload 9 /* localLength */
            iadd
            istore 1 /* index */
        13: .line 424
            iload 4 /* length */
            iload 9 /* localLength */
            isub
            istore 4 /* length */
        14: .line 425
            iload 7 /* adjustment */
            aload 8 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 7 /* adjustment */
        15: .line 426
            iload 4 /* length */
            ifgt 17
        16: .line 427
            goto 22
        17: .line 429
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iinc 6 /* i */ 1
            iload 6 /* i */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 8 /* s */
        end local 9 // int localLength
        18: .line 419
            goto 9
        end local 8 // io.netty.buffer.ByteBuf s
        end local 7 // int adjustment
        end local 6 // int i
        end local 5 // io.netty.buffer.FixedCompositeByteBuf$Component c
        19: .line 431
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int java.nio.ByteBuffer int int
      StackMap stack: java.lang.Throwable
            astore 10
        20: .line 432
            aload 2 /* dst */
            iload 3 /* limit */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        21: .line 433
            aload 10
            athrow
        22: .line 432
      StackMap locals:
      StackMap stack:
            aload 2 /* dst */
            iload 3 /* limit */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        23: .line 434
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int limit
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   24     0         this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   24     1        index  I
            0   24     2          dst  Ljava/nio/ByteBuffer;
            1   24     3        limit  I
            2   24     4       length  I
            6   19     5            c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
            7   19     6            i  I
            8   19     7   adjustment  I
            9   19     8            s  Lio/netty/buffer/ByteBuf;
           10   18     9  localLength  I
      Exception table:
        from    to  target  type
           5    19      19  any
    MethodParameters:
       Name  Flags
      index  
      dst    

  public io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 439
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* dstIndex */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkDstIndex:(IIII)V
         1: .line 440
            iload 4 /* length */
            ifne 3
         2: .line 441
            aload 0 /* this */
            areturn
         3: .line 444
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 5 /* c */
        start local 5 // io.netty.buffer.FixedCompositeByteBuf$Component c
         4: .line 445
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.index:I
            istore 6 /* i */
        start local 6 // int i
         5: .line 446
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            istore 7 /* adjustment */
        start local 7 // int adjustment
         6: .line 447
            aload 5 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            astore 8 /* s */
        start local 8 // io.netty.buffer.ByteBuf s
         7: .line 449
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int io.netty.buffer.ByteBuf int int io.netty.buffer.FixedCompositeByteBuf$Component int int io.netty.buffer.ByteBuf
      StackMap stack:
            iload 4 /* length */
            aload 8 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iload 1 /* index */
            iload 7 /* adjustment */
            isub
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 9 /* localLength */
        start local 9 // int localLength
         8: .line 450
            aload 8 /* s */
            iload 1 /* index */
            iload 7 /* adjustment */
            isub
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 9 /* localLength */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         9: .line 451
            iload 1 /* index */
            iload 9 /* localLength */
            iadd
            istore 1 /* index */
        10: .line 452
            iload 3 /* dstIndex */
            iload 9 /* localLength */
            iadd
            istore 3 /* dstIndex */
        11: .line 453
            iload 4 /* length */
            iload 9 /* localLength */
            isub
            istore 4 /* length */
        12: .line 454
            iload 7 /* adjustment */
            aload 8 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 7 /* adjustment */
        13: .line 455
            iload 4 /* length */
            ifgt 15
        14: .line 456
            goto 17
        15: .line 458
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iinc 6 /* i */ 1
            iload 6 /* i */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 8 /* s */
        end local 9 // int localLength
        16: .line 448
            goto 7
        17: .line 460
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 8 // io.netty.buffer.ByteBuf s
        end local 7 // int adjustment
        end local 6 // int i
        end local 5 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // io.netty.buffer.ByteBuf dst
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   18     1        index  I
            0   18     2          dst  Lio/netty/buffer/ByteBuf;
            0   18     3     dstIndex  I
            0   18     4       length  I
            4   18     5            c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
            5   18     6            i  I
            6   18     7   adjustment  I
            7   18     8            s  Lio/netty/buffer/ByteBuf;
            8   16     9  localLength  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public int getBytes(int, java.nio.channels.GatheringByteChannel, int);
    descriptor: (ILjava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
         0: .line 466
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.nioBufferCount:()I
            istore 4 /* count */
        start local 4 // int count
         1: .line 467
            iload 4 /* count */
            iconst_1
            if_icmpne 3
         2: .line 468
            aload 2 /* out */
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.internalNioBuffer:(II)Ljava/nio/ByteBuffer;
            invokeinterface java.nio.channels.GatheringByteChannel.write:(Ljava/nio/ByteBuffer;)I
            ireturn
         3: .line 470
      StackMap locals: int
      StackMap stack:
            aload 2 /* out */
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            invokeinterface java.nio.channels.GatheringByteChannel.write:([Ljava/nio/ByteBuffer;)J
            lstore 5 /* writtenBytes */
        start local 5 // long writtenBytes
         4: .line 471
            lload 5 /* writtenBytes */
            ldc 2147483647
            lcmp
            ifle 6
         5: .line 472
            ldc 2147483647
            ireturn
         6: .line 474
      StackMap locals: long
      StackMap stack:
            lload 5 /* writtenBytes */
            l2i
            ireturn
        end local 5 // long writtenBytes
        end local 4 // int count
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    7     1         index  I
            0    7     2           out  Ljava/nio/channels/GatheringByteChannel;
            0    7     3        length  I
            1    7     4         count  I
            4    7     5  writtenBytes  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public int getBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=13, args_size=5
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel out
        start local 3 // long position
        start local 5 // int length
         0: .line 482
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.nioBufferCount:()I
            istore 6 /* count */
        start local 6 // int count
         1: .line 483
            iload 6 /* count */
            iconst_1
            if_icmpne 3
         2: .line 484
            aload 2 /* out */
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.internalNioBuffer:(II)Ljava/nio/ByteBuffer;
            lload 3 /* position */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            ireturn
         3: .line 486
      StackMap locals: int
      StackMap stack:
            lconst_0
            lstore 7 /* writtenBytes */
        start local 7 // long writtenBytes
         4: .line 487
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            dup
            astore 12
            arraylength
            istore 11
            iconst_0
            istore 10
            goto 8
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int java.nio.channels.FileChannel long int int long top int int java.nio.ByteBuffer[]
      StackMap stack:
         5: aload 12
            iload 10
            aaload
            astore 9 /* buf */
        start local 9 // java.nio.ByteBuffer buf
         6: .line 488
            lload 7 /* writtenBytes */
            aload 2 /* out */
            aload 9 /* buf */
            lload 3 /* position */
            lload 7 /* writtenBytes */
            ladd
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            i2l
            ladd
            lstore 7 /* writtenBytes */
        end local 9 // java.nio.ByteBuffer buf
         7: .line 487
            iinc 10 1
      StackMap locals:
      StackMap stack:
         8: iload 10
            iload 11
            if_icmplt 5
         9: .line 490
            lload 7 /* writtenBytes */
            ldc 2147483647
            lcmp
            ifle 11
        10: .line 491
            ldc 2147483647
            ireturn
        11: .line 493
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int java.nio.channels.FileChannel long int int long
      StackMap stack:
            lload 7 /* writtenBytes */
            l2i
            ireturn
        end local 7 // long writtenBytes
        end local 6 // int count
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   12     1         index  I
            0   12     2           out  Ljava/nio/channels/FileChannel;
            0   12     3      position  J
            0   12     5        length  I
            1   12     6         count  I
            4   12     7  writtenBytes  J
            6    7     9           buf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, java.io.OutputStream, int);
    descriptor: (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // java.io.OutputStream out
        start local 3 // int length
         0: .line 500
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkIndex:(II)V
         1: .line 501
            iload 3 /* length */
            ifne 3
         2: .line 502
            aload 0 /* this */
            areturn
         3: .line 505
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 4 /* c */
        start local 4 // io.netty.buffer.FixedCompositeByteBuf$Component c
         4: .line 506
            aload 4 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.index:I
            istore 5 /* i */
        start local 5 // int i
         5: .line 507
            aload 4 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            istore 6 /* adjustment */
        start local 6 // int adjustment
         6: .line 508
            aload 4 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            astore 7 /* s */
        start local 7 // io.netty.buffer.ByteBuf s
         7: .line 510
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int java.io.OutputStream int io.netty.buffer.FixedCompositeByteBuf$Component int int io.netty.buffer.ByteBuf
      StackMap stack:
            iload 3 /* length */
            aload 7 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iload 1 /* index */
            iload 6 /* adjustment */
            isub
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 8 /* localLength */
        start local 8 // int localLength
         8: .line 511
            aload 7 /* s */
            iload 1 /* index */
            iload 6 /* adjustment */
            isub
            aload 2 /* out */
            iload 8 /* localLength */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
            pop
         9: .line 512
            iload 1 /* index */
            iload 8 /* localLength */
            iadd
            istore 1 /* index */
        10: .line 513
            iload 3 /* length */
            iload 8 /* localLength */
            isub
            istore 3 /* length */
        11: .line 514
            iload 6 /* adjustment */
            aload 7 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 6 /* adjustment */
        12: .line 515
            iload 3 /* length */
            ifgt 14
        13: .line 516
            goto 16
        14: .line 518
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iinc 5 /* i */ 1
            iload 5 /* i */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 7 /* s */
        end local 8 // int localLength
        15: .line 509
            goto 7
        16: .line 520
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 7 // io.netty.buffer.ByteBuf s
        end local 6 // int adjustment
        end local 5 // int i
        end local 4 // io.netty.buffer.FixedCompositeByteBuf$Component c
        end local 3 // int length
        end local 2 // java.io.OutputStream out
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   17     1        index  I
            0   17     2          out  Ljava/io/OutputStream;
            0   17     3       length  I
            4   17     4            c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
            5   17     5            i  I
            6   17     6   adjustment  I
            7   17     7            s  Lio/netty/buffer/ByteBuf;
            8   15     8  localLength  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public io.netty.buffer.ByteBuf copy(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 525
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkIndex:(II)V
         1: .line 526
            iconst_1
            istore 3 /* release */
        start local 3 // boolean release
         2: .line 527
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            iload 2 /* length */
            invokeinterface io.netty.buffer.ByteBufAllocator.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 4 /* buf */
        start local 4 // io.netty.buffer.ByteBuf buf
         3: .line 529
            aload 4 /* buf */
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         4: .line 530
            iconst_0
            istore 3 /* release */
         5: .line 531
            aload 4 /* buf */
            astore 6
         6: .line 533
            iload 3 /* release */
            ifeq 8
         7: .line 534
            aload 4 /* buf */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
         8: .line 531
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int int io.netty.buffer.ByteBuf top io.netty.buffer.ByteBuf
      StackMap stack:
            aload 6
            areturn
         9: .line 532
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int int io.netty.buffer.ByteBuf
      StackMap stack: java.lang.Throwable
            astore 5
        10: .line 533
            iload 3 /* release */
            ifeq 12
        11: .line 534
            aload 4 /* buf */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        12: .line 536
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 5
            athrow
        end local 4 // io.netty.buffer.ByteBuf buf
        end local 3 // boolean release
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   13     1    index  I
            0   13     2   length  I
            2   13     3  release  Z
            3   13     4      buf  Lio/netty/buffer/ByteBuf;
      Exception table:
        from    to  target  type
           3     6       9  any
    MethodParameters:
        Name  Flags
      index   
      length  

  public int nioBufferCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 541
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.nioBufferCount:I
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public java.nio.ByteBuffer nioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 546
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkIndex:(II)V
         1: .line 547
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            iconst_1
            if_icmpne 5
         2: .line 548
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 3 /* buf */
        start local 3 // io.netty.buffer.ByteBuf buf
         3: .line 549
            aload 3 /* buf */
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            iconst_1
            if_icmpne 5
         4: .line 550
            aload 3 /* buf */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            areturn
        end local 3 // io.netty.buffer.ByteBuf buf
         5: .line 553
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.order:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            astore 3 /* merged */
        start local 3 // java.nio.ByteBuffer merged
         6: .line 554
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            astore 4 /* buffers */
        start local 4 // java.nio.ByteBuffer[] buffers
         7: .line 557
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 11
         9: .line 558
      StackMap locals: java.nio.ByteBuffer java.nio.ByteBuffer[] int
      StackMap stack:
            aload 3 /* merged */
            aload 4 /* buffers */
            iload 5 /* i */
            aaload
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
        10: .line 557
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            aload 4 /* buffers */
            arraylength
            if_icmplt 9
        end local 5 // int i
        12: .line 561
            aload 3 /* merged */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/Buffer;
            pop
        13: .line 562
            aload 3 /* merged */
            areturn
        end local 4 // java.nio.ByteBuffer[] buffers
        end local 3 // java.nio.ByteBuffer merged
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   14     1    index  I
            0   14     2   length  I
            3    5     3      buf  Lio/netty/buffer/ByteBuf;
            6   14     3   merged  Ljava/nio/ByteBuffer;
            7   14     4  buffers  [Ljava/nio/ByteBuffer;
            8   12     5        i  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public java.nio.ByteBuffer internalNioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 567
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            iconst_1
            if_icmpne 2
         1: .line 568
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.internalNioBuffer:(II)Ljava/nio/ByteBuffer;
            areturn
         2: .line 570
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/buffer/FixedCompositeByteBuf;
            0    3     1   index  I
            0    3     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public java.nio.ByteBuffer[] nioBuffers(int, int);
    descriptor: (II)[Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 575
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.checkIndex:(II)V
         1: .line 576
            iload 2 /* length */
            ifne 3
         2: .line 577
            getstatic io.netty.util.internal.EmptyArrays.EMPTY_BYTE_BUFFERS:[Ljava/nio/ByteBuffer;
            areturn
         3: .line 580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            invokestatic io.netty.util.internal.RecyclableArrayList.newInstance:(I)Lio/netty/util/internal/RecyclableArrayList;
            astore 3 /* array */
        start local 3 // io.netty.util.internal.RecyclableArrayList array
         4: .line 582
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.findComponent:(I)Lio/netty/buffer/FixedCompositeByteBuf$Component;
            astore 4 /* c */
        start local 4 // io.netty.buffer.FixedCompositeByteBuf$Component c
         5: .line 583
            aload 4 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.index:I
            istore 5 /* i */
        start local 5 // int i
         6: .line 584
            aload 4 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.offset:I
            istore 6 /* adjustment */
        start local 6 // int adjustment
         7: .line 585
            aload 4 /* c */
            getfield io.netty.buffer.FixedCompositeByteBuf$Component.buf:Lio/netty/buffer/ByteBuf;
            astore 7 /* s */
        start local 7 // io.netty.buffer.ByteBuf s
         8: .line 587
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int io.netty.util.internal.RecyclableArrayList io.netty.buffer.FixedCompositeByteBuf$Component int int io.netty.buffer.ByteBuf
      StackMap stack:
            iload 2 /* length */
            aload 7 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iload 1 /* index */
            iload 6 /* adjustment */
            isub
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 8 /* localLength */
        start local 8 // int localLength
         9: .line 588
            aload 7 /* s */
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            tableswitch { // 0 - 1
                    0: 10
                    1: 11
              default: 13
          }
        10: .line 590
      StackMap locals: int
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        11: .line 592
      StackMap locals:
      StackMap stack:
            aload 3 /* array */
            aload 7 /* s */
            iload 1 /* index */
            iload 6 /* adjustment */
            isub
            iload 8 /* localLength */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            invokevirtual io.netty.util.internal.RecyclableArrayList.add:(Ljava/lang/Object;)Z
            pop
        12: .line 593
            goto 14
        13: .line 595
      StackMap locals:
      StackMap stack:
            aload 3 /* array */
            aload 7 /* s */
            iload 1 /* index */
            iload 6 /* adjustment */
            isub
            iload 8 /* localLength */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        14: .line 598
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iload 8 /* localLength */
            iadd
            istore 1 /* index */
        15: .line 599
            iload 2 /* length */
            iload 8 /* localLength */
            isub
            istore 2 /* length */
        16: .line 600
            iload 6 /* adjustment */
            aload 7 /* s */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iadd
            istore 6 /* adjustment */
        17: .line 601
            iload 2 /* length */
            ifgt 19
        18: .line 602
            goto 21
        19: .line 604
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iinc 5 /* i */ 1
            iload 5 /* i */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            astore 7 /* s */
        end local 8 // int localLength
        20: .line 586
            goto 8
        21: .line 607
      StackMap locals:
      StackMap stack:
            aload 3 /* array */
            aload 3 /* array */
            invokevirtual io.netty.util.internal.RecyclableArrayList.size:()I
            anewarray java.nio.ByteBuffer
            invokevirtual io.netty.util.internal.RecyclableArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.nio.ByteBuffer[]
            astore 10
        22: .line 609
            aload 3 /* array */
            invokevirtual io.netty.util.internal.RecyclableArrayList.recycle:()Z
            pop
        23: .line 607
            aload 10
            areturn
        end local 7 // io.netty.buffer.ByteBuf s
        end local 6 // int adjustment
        end local 5 // int i
        end local 4 // io.netty.buffer.FixedCompositeByteBuf$Component c
        24: .line 608
      StackMap locals: io.netty.buffer.FixedCompositeByteBuf int int io.netty.util.internal.RecyclableArrayList
      StackMap stack: java.lang.Throwable
            astore 9
        25: .line 609
            aload 3 /* array */
            invokevirtual io.netty.util.internal.RecyclableArrayList.recycle:()Z
            pop
        26: .line 610
            aload 9
            athrow
        end local 3 // io.netty.util.internal.RecyclableArrayList array
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0         this  Lio/netty/buffer/FixedCompositeByteBuf;
            0   27     1        index  I
            0   27     2       length  I
            4   27     3        array  Lio/netty/util/internal/RecyclableArrayList;
            5   24     4            c  Lio/netty/buffer/FixedCompositeByteBuf$Component;
            6   24     5            i  I
            7   24     6   adjustment  I
            8   24     7            s  Lio/netty/buffer/ByteBuf;
            9   20     8  localLength  I
      Exception table:
        from    to  target  type
           4    22      24  any
    MethodParameters:
        Name  Flags
      index   
      length  

  public boolean hasArray();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 615
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            tableswitch { // 0 - 1
                    0: 1
                    1: 2
              default: 3
          }
         1: .line 617
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         2: .line 619
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasArray:()Z
            ireturn
         3: .line 621
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 627
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            tableswitch { // 0 - 1
                    0: 1
                    1: 2
              default: 3
          }
         1: .line 629
      StackMap locals:
      StackMap stack:
            getstatic io.netty.util.internal.EmptyArrays.EMPTY_BYTES:[B
            areturn
         2: .line 631
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.array:()[B
            areturn
         3: .line 633
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public int arrayOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 639
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            tableswitch { // 0 - 1
                    0: 1
                    1: 2
              default: 3
          }
         1: .line 641
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 643
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.arrayOffset:()I
            ireturn
         3: .line 645
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public boolean hasMemoryAddress();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 651
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            tableswitch { // 0 - 1
                    0: 1
                    1: 2
              default: 3
          }
         1: .line 653
      StackMap locals:
      StackMap stack:
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ireturn
         2: .line 655
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ireturn
         3: .line 657
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  public long memoryAddress();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 663
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            tableswitch { // 0 - 1
                    0: 1
                    1: 2
              default: 3
          }
         1: .line 665
      StackMap locals:
      StackMap stack:
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            lreturn
         2: .line 667
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            lreturn
         3: .line 669
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/buffer/FixedCompositeByteBuf;

  protected void deallocate();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 675
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 676
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual io.netty.buffer.FixedCompositeByteBuf.buffer:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
         3: .line 675
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            if_icmplt 2
        end local 1 // int i
         5: .line 678
            return
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/netty/buffer/FixedCompositeByteBuf;
            1    5     1     i  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.netty.buffer.FixedCompositeByteBuf this
         0: .line 682
            aload 0 /* this */
            invokespecial io.netty.buffer.AbstractReferenceCountedByteBuf.toString:()Ljava/lang/String;
            astore 1 /* result */
        start local 1 // java.lang.String result
         1: .line 683
            aload 1 /* result */
            iconst_0
            aload 1 /* result */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 1 /* result */
         2: .line 684
            new java.lang.StringBuilder
            dup
            aload 1 /* result */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ", components="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.buffer.FixedCompositeByteBuf.buffers:[Ljava/lang/Object;
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.String result
        end local 0 // io.netty.buffer.FixedCompositeByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/buffer/FixedCompositeByteBuf;
            1    3     1  result  Ljava/lang/String;
}
SourceFile: "FixedCompositeByteBuf.java"
NestMembers:
  io.netty.buffer.FixedCompositeByteBuf$Component
InnerClasses:
  private final Component = io.netty.buffer.FixedCompositeByteBuf$Component of io.netty.buffer.FixedCompositeByteBuf