class io.netty.buffer.WrappedByteBuf extends io.netty.buffer.ByteBuf
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.buffer.WrappedByteBuf
  super_class: io.netty.buffer.ByteBuf
{
  protected final io.netty.buffer.ByteBuf buf;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected void <init>(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf buf
         0: .line 43
            aload 0 /* this */
            invokespecial io.netty.buffer.ByteBuf.<init>:()V
         1: .line 44
            aload 1 /* buf */
            ifnonnull 3
         2: .line 45
            new java.lang.NullPointerException
            dup
            ldc "buf"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 47
      StackMap locals: io.netty.buffer.WrappedByteBuf io.netty.buffer.ByteBuf
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buf */
            putfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
         4: .line 48
            return
        end local 1 // io.netty.buffer.ByteBuf buf
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    5     1   buf  Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      buf   

  public final boolean hasMemoryAddress();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 52
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final long memoryAddress();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 57
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            lreturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final int capacity();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 62
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  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.WrappedByteBuf this
        start local 1 // int newCapacity
         0: .line 67
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* newCapacity */
            invokevirtual io.netty.buffer.ByteBuf.capacity:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 68
            aload 0 /* this */
            areturn
        end local 1 // int newCapacity
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  public final int maxCapacity();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 73
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.maxCapacity:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBufAllocator alloc();
    descriptor: ()Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 78
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 83
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf order(java.nio.ByteOrder);
    descriptor: (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.ByteOrder endianness
         0: .line 88
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* endianness */
            invokevirtual io.netty.buffer.ByteBuf.order:(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
            areturn
        end local 1 // java.nio.ByteOrder endianness
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  endianness  Ljava/nio/ByteOrder;
    MethodParameters:
            Name  Flags
      endianness  

  public final io.netty.buffer.ByteBuf unwrap();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 93
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf asReadOnly();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 98
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.asReadOnly:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

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

  public final boolean isDirect();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 108
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.isDirect:()Z
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final int readerIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 113
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf readerIndex(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int readerIndex
         0: .line 118
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* readerIndex */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 119
            aload 0 /* this */
            areturn
        end local 1 // int readerIndex
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  readerIndex  I
    MethodParameters:
             Name  Flags
      readerIndex  

  public final int writerIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 124
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf writerIndex(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int writerIndex
         0: .line 129
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* writerIndex */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 130
            aload 0 /* this */
            areturn
        end local 1 // int writerIndex
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  writerIndex  I
    MethodParameters:
             Name  Flags
      writerIndex  

  public io.netty.buffer.ByteBuf setIndex(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int readerIndex
        start local 2 // int writerIndex
         0: .line 135
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* readerIndex */
            iload 2 /* writerIndex */
            invokevirtual io.netty.buffer.ByteBuf.setIndex:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 136
            aload 0 /* this */
            areturn
        end local 2 // int writerIndex
        end local 1 // int readerIndex
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  readerIndex  I
            0    2     2  writerIndex  I
    MethodParameters:
             Name  Flags
      readerIndex  
      writerIndex  

  public final int readableBytes();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 141
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final int writableBytes();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 146
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writableBytes:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final int maxWritableBytes();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 151
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.maxWritableBytes:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final boolean isReadable();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 156
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.isReadable:()Z
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final boolean isWritable();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 161
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.isWritable:()Z
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf clear();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 166
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.clear:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 167
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf markReaderIndex();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 172
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.markReaderIndex:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 173
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf resetReaderIndex();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 178
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.resetReaderIndex:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 179
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf markWriterIndex();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 184
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.markWriterIndex:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 185
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public final io.netty.buffer.ByteBuf resetWriterIndex();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 190
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.resetWriterIndex:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 191
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf discardReadBytes();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 196
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.discardReadBytes:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 197
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf discardSomeReadBytes();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 202
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.discardSomeReadBytes:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 203
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf ensureWritable(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.WrappedByteBuf this
        start local 1 // int minWritableBytes
         0: .line 208
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* minWritableBytes */
            invokevirtual io.netty.buffer.ByteBuf.ensureWritable:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 209
            aload 0 /* this */
            areturn
        end local 1 // int minWritableBytes
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  minWritableBytes  I
    MethodParameters:
                  Name  Flags
      minWritableBytes  

  public int ensureWritable(int, boolean);
    descriptor: (IZ)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int minWritableBytes
        start local 2 // boolean force
         0: .line 214
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* minWritableBytes */
            iload 2 /* force */
            invokevirtual io.netty.buffer.ByteBuf.ensureWritable:(IZ)I
            ireturn
        end local 2 // boolean force
        end local 1 // int minWritableBytes
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  minWritableBytes  I
            0    1     2             force  Z
    MethodParameters:
                  Name  Flags
      minWritableBytes  
      force             

  public boolean getBoolean(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 219
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getBoolean:(I)Z
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  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.WrappedByteBuf this
        start local 1 // int index
         0: .line 224
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getUnsignedByte(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 229
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShort(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 234
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShortLE(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 239
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedShort(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 244
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedShortLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 249
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShortLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 254
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 259
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 264
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 269
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 274
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getIntLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 279
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getUnsignedInt(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 284
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedInt:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getUnsignedIntLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 289
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedIntLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 294
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLongLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 299
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public char getChar(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 304
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getChar:(I)C
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public float getFloat(int);
    descriptor: (I)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 309
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getFloat:(I)F
            freturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public double getDouble(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
         0: .line 314
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getDouble:(I)D
            dreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf);
    descriptor: (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf dst
         0: .line 319
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 320
            aload 0 /* this */
            areturn
        end local 2 // io.netty.buffer.ByteBuf dst
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2    dst  Lio/netty/buffer/ByteBuf;
    MethodParameters:
       Name  Flags
      index  
      dst    

  public io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf, int);
    descriptor: (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf dst
        start local 3 // int length
         0: .line 325
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 326
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // io.netty.buffer.ByteBuf dst
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   index  I
            0    2     2     dst  Lio/netty/buffer/ByteBuf;
            0    2     3  length  I
    MethodParameters:
        Name  Flags
      index   
      dst     
      length  

  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=5, args_size=5
        start local 0 // io.netty.buffer.WrappedByteBuf 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 331
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 332
            aload 0 /* this */
            areturn
        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.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     index  I
            0    2     2       dst  Lio/netty/buffer/ByteBuf;
            0    2     3  dstIndex  I
            0    2     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, byte[]);
    descriptor: (I[B)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // byte[] dst
         0: .line 337
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[B)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 338
            aload 0 /* this */
            areturn
        end local 2 // byte[] dst
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2    dst  [B
    MethodParameters:
       Name  Flags
      index  
      dst    

  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=5, args_size=5
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // byte[] dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 343
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 344
            aload 0 /* this */
            areturn
        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.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     index  I
            0    2     2       dst  [B
            0    2     3  dstIndex  I
            0    2     4    length  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=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer dst
         0: .line 349
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 350
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2    dst  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      dst    

  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=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.io.OutputStream out
        start local 3 // int length
         0: .line 355
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* out */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 356
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // java.io.OutputStream out
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   index  I
            0    2     2     out  Ljava/io/OutputStream;
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      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=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
         0: .line 361
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* out */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/channels/GatheringByteChannel;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2     out  Ljava/nio/channels/GatheringByteChannel;
            0    1     3  length  I
    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=6, locals=6, args_size=5
        start local 0 // io.netty.buffer.WrappedByteBuf 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 366
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* out */
            lload 3 /* position */
            iload 5 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/channels/FileChannel;JI)I
            ireturn
        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.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1     index  I
            0    1     2       out  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    

  public java.lang.CharSequence getCharSequence(int, int, java.nio.charset.Charset);
    descriptor: (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // java.nio.charset.Charset charset
         0: .line 371
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            aload 3 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.getCharSequence:(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
            areturn
        end local 3 // java.nio.charset.Charset charset
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1    index  I
            0    1     2   length  I
            0    1     3  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      index    
      length   
      charset  

  public io.netty.buffer.ByteBuf setBoolean(int, boolean);
    descriptor: (IZ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // boolean value
         0: .line 376
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setBoolean:(IZ)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 377
            aload 0 /* this */
            areturn
        end local 2 // boolean value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  Z
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setByte(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 382
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setByte:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 383
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     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=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 388
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setShort:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 389
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShortLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 394
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setShortLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 395
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     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=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 400
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setMedium:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 401
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMediumLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 406
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setMediumLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 407
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     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=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 412
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 413
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setIntLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 418
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setIntLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 419
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     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=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 424
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            lload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setLong:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 425
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLongLE(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 430
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            lload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setLongLE:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 431
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setChar(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 436
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setChar:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 437
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setFloat(int, float);
    descriptor: (IF)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // float value
         0: .line 442
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            fload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setFloat:(IF)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 443
            aload 0 /* this */
            areturn
        end local 2 // float value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  F
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setDouble(int, double);
    descriptor: (ID)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // double value
         0: .line 448
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            dload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setDouble:(ID)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 449
            aload 0 /* this */
            areturn
        end local 2 // double value
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2  value  D
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf);
    descriptor: (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf src
         0: .line 454
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 455
            aload 0 /* this */
            areturn
        end local 2 // io.netty.buffer.ByteBuf src
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2    src  Lio/netty/buffer/ByteBuf;
    MethodParameters:
       Name  Flags
      index  
      src    

  public io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf, int);
    descriptor: (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf src
        start local 3 // int length
         0: .line 460
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* src */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 461
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // io.netty.buffer.ByteBuf src
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   index  I
            0    2     2     src  Lio/netty/buffer/ByteBuf;
            0    2     3  length  I
    MethodParameters:
        Name  Flags
      index   
      src     
      length  

  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=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.WrappedByteBuf 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 466
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* src */
            iload 3 /* srcIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 467
            aload 0 /* this */
            areturn
        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.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     index  I
            0    2     2       src  Lio/netty/buffer/ByteBuf;
            0    2     3  srcIndex  I
            0    2     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, byte[]);
    descriptor: (I[B)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // byte[] src
         0: .line 472
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[B)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 473
            aload 0 /* this */
            areturn
        end local 2 // byte[] src
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2    src  [B
    MethodParameters:
       Name  Flags
      index  
      src    

  public io.netty.buffer.ByteBuf setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // byte[] src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 478
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* src */
            iload 3 /* srcIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 479
            aload 0 /* this */
            areturn
        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.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     index  I
            0    2     2       src  [B
            0    2     3  srcIndex  I
            0    2     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=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer src
         0: .line 484
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 485
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer src
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  index  I
            0    2     2    src  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      src    

  public int setBytes(int, java.io.InputStream, int);
    descriptor: (ILjava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.io.InputStream in
        start local 3 // int length
         0: .line 490
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* in */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/io/InputStream;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.io.InputStream in
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/io/InputStream;
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    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=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.ScatteringByteChannel in
        start local 3 // int length
         0: .line 495
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* in */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/channels/ScatteringByteChannel;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.ScatteringByteChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/nio/channels/ScatteringByteChannel;
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    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=6, locals=6, args_size=5
        start local 0 // io.netty.buffer.WrappedByteBuf 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 500
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* in */
            lload 3 /* position */
            iload 5 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/channels/FileChannel;JI)I
            ireturn
        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.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1     index  I
            0    1     2        in  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      in        
      position  
      length    

  public io.netty.buffer.ByteBuf setZero(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 505
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setZero:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 506
            aload 0 /* this */
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   index  I
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public int setCharSequence(int, java.lang.CharSequence, java.nio.charset.Charset);
    descriptor: (ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // java.lang.CharSequence sequence
        start local 3 // java.nio.charset.Charset charset
         0: .line 511
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* sequence */
            aload 3 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.setCharSequence:(ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I
            ireturn
        end local 3 // java.nio.charset.Charset charset
        end local 2 // java.lang.CharSequence sequence
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1     index  I
            0    1     2  sequence  Ljava/lang/CharSequence;
            0    1     3   charset  Ljava/nio/charset/Charset;
    MethodParameters:
          Name  Flags
      index     
      sequence  
      charset   

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

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 521
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readByte:()B
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public short readUnsignedByte();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 526
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readUnsignedByte:()S
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 531
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readShort:()S
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public short readShortLE();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 536
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readShortLE:()S
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

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

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

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

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

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

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

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

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

  public long readUnsignedInt();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 581
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readUnsignedInt:()J
            lreturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public long readUnsignedIntLE();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 586
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readUnsignedIntLE:()J
            lreturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 591
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readLong:()J
            lreturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public long readLongLE();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 596
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readLongLE:()J
            lreturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public char readChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 601
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readChar:()C
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public float readFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 606
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readFloat:()F
            freturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 611
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readDouble:()D
            dreturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf readBytes(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.WrappedByteBuf this
        start local 1 // int length
         0: .line 616
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(I)Lio/netty/buffer/ByteBuf;
            areturn
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public io.netty.buffer.ByteBuf readSlice(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.WrappedByteBuf this
        start local 1 // int length
         0: .line 621
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readSlice:(I)Lio/netty/buffer/ByteBuf;
            areturn
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public io.netty.buffer.ByteBuf readRetainedSlice(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.WrappedByteBuf this
        start local 1 // int length
         0: .line 626
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readRetainedSlice:(I)Lio/netty/buffer/ByteBuf;
            areturn
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public io.netty.buffer.ByteBuf readBytes(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf dst
         0: .line 631
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 632
            aload 0 /* this */
            areturn
        end local 1 // io.netty.buffer.ByteBuf dst
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   dst  Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      dst   

  public io.netty.buffer.ByteBuf readBytes(io.netty.buffer.ByteBuf, int);
    descriptor: (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf dst
        start local 2 // int length
         0: .line 637
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* dst */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 638
            aload 0 /* this */
            areturn
        end local 2 // int length
        end local 1 // io.netty.buffer.ByteBuf dst
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     dst  Lio/netty/buffer/ByteBuf;
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      dst     
      length  

  public io.netty.buffer.ByteBuf readBytes(io.netty.buffer.ByteBuf, int, int);
    descriptor: (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf dst
        start local 2 // int dstIndex
        start local 3 // int length
         0: .line 643
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* dst */
            iload 2 /* dstIndex */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 644
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int dstIndex
        end local 1 // io.netty.buffer.ByteBuf dst
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1       dst  Lio/netty/buffer/ByteBuf;
            0    2     2  dstIndex  I
            0    2     3    length  I
    MethodParameters:
          Name  Flags
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf readBytes(byte[]);
    descriptor: ([B)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // byte[] dst
         0: .line 649
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:([B)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 650
            aload 0 /* this */
            areturn
        end local 1 // byte[] dst
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   dst  [B
    MethodParameters:
      Name  Flags
      dst   

  public io.netty.buffer.ByteBuf readBytes(byte[], int, int);
    descriptor: ([BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // byte[] dst
        start local 2 // int dstIndex
        start local 3 // int length
         0: .line 655
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* dst */
            iload 2 /* dstIndex */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:([BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 656
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int dstIndex
        end local 1 // byte[] dst
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1       dst  [B
            0    2     2  dstIndex  I
            0    2     3    length  I
    MethodParameters:
          Name  Flags
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf readBytes(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 661
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 662
            aload 0 /* this */
            areturn
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   dst  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      dst   

  public io.netty.buffer.ByteBuf readBytes(java.io.OutputStream, int);
    descriptor: (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.io.OutputStream out
        start local 2 // int length
         0: .line 667
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* out */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 668
            aload 0 /* this */
            areturn
        end local 2 // int length
        end local 1 // java.io.OutputStream out
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     out  Ljava/io/OutputStream;
            0    2     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      out     
      length  

  public int readBytes(java.nio.channels.GatheringByteChannel, int);
    descriptor: (Ljava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.channels.GatheringByteChannel out
        start local 2 // int length
         0: .line 673
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* out */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Ljava/nio/channels/GatheringByteChannel;I)I
            ireturn
        end local 2 // int length
        end local 1 // java.nio.channels.GatheringByteChannel out
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1     out  Ljava/nio/channels/GatheringByteChannel;
            0    1     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      out     
      length  

  public int readBytes(java.nio.channels.FileChannel, long, int);
    descriptor: (Ljava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.channels.FileChannel out
        start local 2 // long position
        start local 4 // int length
         0: .line 678
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* out */
            lload 2 /* position */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.readBytes:(Ljava/nio/channels/FileChannel;JI)I
            ireturn
        end local 4 // int length
        end local 2 // long position
        end local 1 // java.nio.channels.FileChannel out
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1       out  Ljava/nio/channels/FileChannel;
            0    1     2  position  J
            0    1     4    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      out       
      position  
      length    

  public java.lang.CharSequence readCharSequence(int, java.nio.charset.Charset);
    descriptor: (ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int length
        start local 2 // java.nio.charset.Charset charset
         0: .line 683
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            aload 2 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.readCharSequence:(ILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
            areturn
        end local 2 // java.nio.charset.Charset charset
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   length  I
            0    1     2  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      length   
      charset  

  public io.netty.buffer.ByteBuf skipBytes(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.WrappedByteBuf this
        start local 1 // int length
         0: .line 688
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 689
            aload 0 /* this */
            areturn
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public io.netty.buffer.ByteBuf writeBoolean(boolean);
    descriptor: (Z)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // boolean value
         0: .line 694
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeBoolean:(Z)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 695
            aload 0 /* this */
            areturn
        end local 1 // boolean value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  Z
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeByte(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 700
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeByte:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 701
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeShort(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 706
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeShort:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 707
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeShortLE(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 712
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeShortLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 713
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeMedium(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 718
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeMedium:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 719
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeMediumLE(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 724
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeMediumLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 725
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeInt(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 730
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeInt:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 731
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeIntLE(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 736
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeIntLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 737
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeLong(long);
    descriptor: (J)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // long value
         0: .line 742
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            lload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeLong:(J)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 743
            aload 0 /* this */
            areturn
        end local 1 // long value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeLongLE(long);
    descriptor: (J)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // long value
         0: .line 748
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            lload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeLongLE:(J)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 749
            aload 0 /* this */
            areturn
        end local 1 // long value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeChar(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.WrappedByteBuf this
        start local 1 // int value
         0: .line 754
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeChar:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 755
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeFloat(float);
    descriptor: (F)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // float value
         0: .line 760
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            fload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeFloat:(F)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 761
            aload 0 /* this */
            areturn
        end local 1 // float value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  F
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeDouble(double);
    descriptor: (D)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // double value
         0: .line 766
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            dload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.writeDouble:(D)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 767
            aload 0 /* this */
            areturn
        end local 1 // double value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public io.netty.buffer.ByteBuf writeBytes(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf src
         0: .line 772
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* src */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 773
            aload 0 /* this */
            areturn
        end local 1 // io.netty.buffer.ByteBuf src
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   src  Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      src   

  public io.netty.buffer.ByteBuf writeBytes(io.netty.buffer.ByteBuf, int);
    descriptor: (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf src
        start local 2 // int length
         0: .line 778
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* src */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 779
            aload 0 /* this */
            areturn
        end local 2 // int length
        end local 1 // io.netty.buffer.ByteBuf src
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1     src  Lio/netty/buffer/ByteBuf;
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      src     
      length  

  public io.netty.buffer.ByteBuf writeBytes(io.netty.buffer.ByteBuf, int, int);
    descriptor: (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf src
        start local 2 // int srcIndex
        start local 3 // int length
         0: .line 784
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* src */
            iload 2 /* srcIndex */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 785
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int srcIndex
        end local 1 // io.netty.buffer.ByteBuf src
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1       src  Lio/netty/buffer/ByteBuf;
            0    2     2  srcIndex  I
            0    2     3    length  I
    MethodParameters:
          Name  Flags
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf writeBytes(byte[]);
    descriptor: ([B)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // byte[] src
         0: .line 790
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* src */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([B)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 791
            aload 0 /* this */
            areturn
        end local 1 // byte[] src
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   src  [B
    MethodParameters:
      Name  Flags
      src   

  public io.netty.buffer.ByteBuf writeBytes(byte[], int, int);
    descriptor: ([BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // byte[] src
        start local 2 // int srcIndex
        start local 3 // int length
         0: .line 796
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* src */
            iload 2 /* srcIndex */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 797
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int srcIndex
        end local 1 // byte[] src
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1       src  [B
            0    2     2  srcIndex  I
            0    2     3    length  I
    MethodParameters:
          Name  Flags
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf writeBytes(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.ByteBuffer src
         0: .line 802
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* src */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 803
            aload 0 /* this */
            areturn
        end local 1 // java.nio.ByteBuffer src
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1   src  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      src   

  public int writeBytes(java.io.InputStream, int);
    descriptor: (Ljava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.io.InputStream in
        start local 2 // int length
         0: .line 808
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* in */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Ljava/io/InputStream;I)I
            ireturn
        end local 2 // int length
        end local 1 // java.io.InputStream in
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1      in  Ljava/io/InputStream;
            0    1     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      length  

  public int writeBytes(java.nio.channels.ScatteringByteChannel, int);
    descriptor: (Ljava/nio/channels/ScatteringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.channels.ScatteringByteChannel in
        start local 2 // int length
         0: .line 813
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* in */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Ljava/nio/channels/ScatteringByteChannel;I)I
            ireturn
        end local 2 // int length
        end local 1 // java.nio.channels.ScatteringByteChannel in
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1      in  Ljava/nio/channels/ScatteringByteChannel;
            0    1     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      length  

  public int writeBytes(java.nio.channels.FileChannel, long, int);
    descriptor: (Ljava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.channels.FileChannel in
        start local 2 // long position
        start local 4 // int length
         0: .line 818
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* in */
            lload 2 /* position */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Ljava/nio/channels/FileChannel;JI)I
            ireturn
        end local 4 // int length
        end local 2 // long position
        end local 1 // java.nio.channels.FileChannel in
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1        in  Ljava/nio/channels/FileChannel;
            0    1     2  position  J
            0    1     4    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      in        
      position  
      length    

  public io.netty.buffer.ByteBuf writeZero(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.WrappedByteBuf this
        start local 1 // int length
         0: .line 823
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeZero:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 824
            aload 0 /* this */
            areturn
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public int writeCharSequence(java.lang.CharSequence, java.nio.charset.Charset);
    descriptor: (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.lang.CharSequence sequence
        start local 2 // java.nio.charset.Charset charset
         0: .line 829
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* sequence */
            aload 2 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.writeCharSequence:(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I
            ireturn
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.lang.CharSequence sequence
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  sequence  Ljava/lang/CharSequence;
            0    1     2   charset  Ljava/nio/charset/Charset;
    MethodParameters:
          Name  Flags
      sequence  
      charset   

  public int indexOf(int, int, byte);
    descriptor: (IIB)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // byte value
         0: .line 834
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            iload 3 /* value */
            invokevirtual io.netty.buffer.ByteBuf.indexOf:(IIB)I
            ireturn
        end local 3 // byte value
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
            0    1     3      value  B
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    
      value      

  public int bytesBefore(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // byte value
         0: .line 839
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* value */
            invokevirtual io.netty.buffer.ByteBuf.bytesBefore:(B)I
            ireturn
        end local 1 // byte value
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  value  B
    MethodParameters:
       Name  Flags
      value  

  public int bytesBefore(int, byte);
    descriptor: (IB)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int length
        start local 2 // byte value
         0: .line 844
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* length */
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.bytesBefore:(IB)I
            ireturn
        end local 2 // byte value
        end local 1 // int length
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  length  I
            0    1     2   value  B
    MethodParameters:
        Name  Flags
      length  
      value   

  public int bytesBefore(int, int, byte);
    descriptor: (IIB)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // byte value
         0: .line 849
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            iload 3 /* value */
            invokevirtual io.netty.buffer.ByteBuf.bytesBefore:(IIB)I
            ireturn
        end local 3 // byte value
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  I
            0    1     3   value  B
    MethodParameters:
        Name  Flags
      index   
      length  
      value   

  public int forEachByte(io.netty.util.ByteProcessor);
    descriptor: (Lio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.util.ByteProcessor processor
         0: .line 854
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByte:(Lio/netty/util/ByteProcessor;)I
            ireturn
        end local 1 // io.netty.util.ByteProcessor processor
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  processor  Lio/netty/util/ByteProcessor;
    MethodParameters:
           Name  Flags
      processor  

  public int forEachByte(int, int, io.netty.util.ByteProcessor);
    descriptor: (IILio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // io.netty.util.ByteProcessor processor
         0: .line 859
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            aload 3 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByte:(IILio/netty/util/ByteProcessor;)I
            ireturn
        end local 3 // io.netty.util.ByteProcessor processor
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1      index  I
            0    1     2     length  I
            0    1     3  processor  Lio/netty/util/ByteProcessor;
    MethodParameters:
           Name  Flags
      index      
      length     
      processor  

  public int forEachByteDesc(io.netty.util.ByteProcessor);
    descriptor: (Lio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.util.ByteProcessor processor
         0: .line 864
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByteDesc:(Lio/netty/util/ByteProcessor;)I
            ireturn
        end local 1 // io.netty.util.ByteProcessor processor
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  processor  Lio/netty/util/ByteProcessor;
    MethodParameters:
           Name  Flags
      processor  

  public int forEachByteDesc(int, int, io.netty.util.ByteProcessor);
    descriptor: (IILio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // io.netty.util.ByteProcessor processor
         0: .line 869
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            aload 3 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByteDesc:(IILio/netty/util/ByteProcessor;)I
            ireturn
        end local 3 // io.netty.util.ByteProcessor processor
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1      index  I
            0    1     2     length  I
            0    1     3  processor  Lio/netty/util/ByteProcessor;
    MethodParameters:
           Name  Flags
      index      
      length     
      processor  

  public io.netty.buffer.ByteBuf copy();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 874
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.copy:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf copy(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 879
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.copy:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf slice();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 884
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.slice:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf retainedSlice();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 889
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.retainedSlice:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf slice(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 894
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.slice:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf retainedSlice(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 899
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.retainedSlice:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf duplicate();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 904
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.duplicate:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf retainedDuplicate();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 909
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.retainedDuplicate:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

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

  public java.nio.ByteBuffer nioBuffer();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 919
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:()Ljava/nio/ByteBuffer;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public java.nio.ByteBuffer nioBuffer(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.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 924
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public java.nio.ByteBuffer[] nioBuffers();
    descriptor: ()[Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 929
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:()[Ljava/nio/ByteBuffer;
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public java.nio.ByteBuffer[] nioBuffers(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.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 934
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  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.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 939
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.internalNioBuffer:(II)Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

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

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 949
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.array:()[B
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

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

  public java.lang.String toString(java.nio.charset.Charset);
    descriptor: (Ljava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.nio.charset.Charset charset
         0: .line 959
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 1 // java.nio.charset.Charset charset
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      charset  

  public java.lang.String toString(int, int, java.nio.charset.Charset);
    descriptor: (IILjava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // java.nio.charset.Charset charset
         0: .line 964
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            aload 3 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.toString:(IILjava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 3 // java.nio.charset.Charset charset
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1    index  I
            0    1     2   length  I
            0    1     3  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      index    
      length   
      charset  

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

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.lang.Object obj
         0: .line 975
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* obj */
            invokevirtual io.netty.buffer.ByteBuf.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int compareTo(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf buffer
         0: .line 980
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.compareTo:(Lio/netty/buffer/ByteBuf;)I
            ireturn
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  buffer  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      buffer  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 985
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokestatic io.netty.util.internal.StringUtil.simpleClassName:(Ljava/lang/Object;)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 40
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)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 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf retain(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.WrappedByteBuf this
        start local 1 // int increment
         0: .line 990
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* increment */
            invokevirtual io.netty.buffer.ByteBuf.retain:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 991
            aload 0 /* this */
            areturn
        end local 1 // int increment
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  increment  I
    MethodParameters:
           Name  Flags
      increment  

  public io.netty.buffer.ByteBuf retain();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 996
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.retain:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 997
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf touch();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 1002
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.touch:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 1003
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;

  public io.netty.buffer.ByteBuf touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // java.lang.Object hint
         0: .line 1008
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            aload 1 /* hint */
            invokevirtual io.netty.buffer.ByteBuf.touch:(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 1009
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object hint
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    2     1  hint  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      hint  

  public final boolean isReadable(int);
    descriptor: (I)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int size
         0: .line 1014
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* size */
            invokevirtual io.netty.buffer.ByteBuf.isReadable:(I)Z
            ireturn
        end local 1 // int size
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public final boolean isWritable(int);
    descriptor: (I)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int size
         0: .line 1019
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* size */
            invokevirtual io.netty.buffer.ByteBuf.isWritable:(I)Z
            ireturn
        end local 1 // int size
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public final int refCnt();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.WrappedByteBuf this
         0: .line 1024
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.refCnt:()I
            ireturn
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/WrappedByteBuf;

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

  public boolean release(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.WrappedByteBuf this
        start local 1 // int decrement
         0: .line 1034
            aload 0 /* this */
            getfield io.netty.buffer.WrappedByteBuf.buf:Lio/netty/buffer/ByteBuf;
            iload 1 /* decrement */
            invokevirtual io.netty.buffer.ByteBuf.release:(I)Z
            ireturn
        end local 1 // int decrement
        end local 0 // io.netty.buffer.WrappedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/WrappedByteBuf;
            0    1     1  decrement  I
    MethodParameters:
           Name  Flags
      decrement  

  public io.netty.util.ReferenceCounted retain();
    descriptor: ()Lio/netty/util/ReferenceCounted;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.buffer.WrappedByteBuf.retain:()Lio/netty/buffer/ByteBuf;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.ReferenceCounted retain(int);
    descriptor: (I)Lio/netty/util/ReferenceCounted;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.buffer.WrappedByteBuf.retain:(I)Lio/netty/buffer/ByteBuf;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.ReferenceCounted touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.buffer.WrappedByteBuf.touch:(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.ReferenceCounted touch();
    descriptor: ()Lio/netty/util/ReferenceCounted;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.buffer.WrappedByteBuf.touch:()Lio/netty/buffer/ByteBuf;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "WrappedByteBuf.java"