public final class io.reactivex.internal.operators.flowable.FlowableCache<T> extends io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream<T, T> implements io.reactivex.FlowableSubscriber<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableCache
  super_class: io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream
{
  final java.util.concurrent.atomic.AtomicBoolean once;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0010) ACC_FINAL

  final int capacityHint;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.atomic.AtomicReference<io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription<T>[]> subscribers;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;>;

  static final io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] EMPTY;
    descriptor: [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] TERMINATED;
    descriptor: [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  volatile long size;
    descriptor: J
    flags: (0x0040) ACC_VOLATILE

  final io.reactivex.internal.operators.flowable.FlowableCache$Node<T> head;
    descriptor: Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/operators/flowable/FlowableCache$Node<TT;>;

  io.reactivex.internal.operators.flowable.FlowableCache$Node<T> tail;
    descriptor: Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
    flags: (0x0000) 
    Signature: Lio/reactivex/internal/operators/flowable/FlowableCache$Node<TT;>;

  int tailOffset;
    descriptor: I
    flags: (0x0000) 

  java.lang.Throwable error;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0000) 

  volatile boolean done;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            iconst_0
            anewarray io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription
            putstatic io.reactivex.internal.operators.flowable.FlowableCache.EMPTY:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
         1: .line 60
            iconst_0
            anewarray io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription
            putstatic io.reactivex.internal.operators.flowable.FlowableCache.TERMINATED:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.reactivex.Flowable<T>, );
    descriptor: (Lio/reactivex/Flowable;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // io.reactivex.Flowable source
        start local 2 // int capacityHint
         0: .line 99
            aload 0 /* this */
            aload 1 /* source */
            invokespecial io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream.<init>:(Lio/reactivex/Flowable;)V
         1: .line 100
            aload 0 /* this */
            iload 2 /* capacityHint */
            putfield io.reactivex.internal.operators.flowable.FlowableCache.capacityHint:I
         2: .line 101
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableCache.once:Ljava/util/concurrent/atomic/AtomicBoolean;
         3: .line 102
            new io.reactivex.internal.operators.flowable.FlowableCache$Node
            dup
            iload 2 /* capacityHint */
            invokespecial io.reactivex.internal.operators.flowable.FlowableCache$Node.<init>:(I)V
            astore 3 /* n */
        start local 3 // io.reactivex.internal.operators.flowable.FlowableCache$Node n
         4: .line 103
            aload 0 /* this */
            aload 3 /* n */
            putfield io.reactivex.internal.operators.flowable.FlowableCache.head:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
         5: .line 104
            aload 0 /* this */
            aload 3 /* n */
            putfield io.reactivex.internal.operators.flowable.FlowableCache.tail:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
         6: .line 105
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            getstatic io.reactivex.internal.operators.flowable.FlowableCache.EMPTY:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            putfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
         7: .line 106
            return
        end local 3 // io.reactivex.internal.operators.flowable.FlowableCache$Node n
        end local 2 // int capacityHint
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0    8     1        source  Lio/reactivex/Flowable<TT;>;
            0    8     2  capacityHint  I
            4    8     3             n  Lio/reactivex/internal/operators/flowable/FlowableCache$Node<TT;>;
    Signature: (Lio/reactivex/Flowable<TT;>;I)V
    MethodParameters:
              Name  Flags
      source        
      capacityHint  

  protected void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // org.reactivestreams.Subscriber t
         0: .line 110
            new io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription
            dup
            aload 1 /* t */
            aload 0 /* this */
            invokespecial io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.<init>:(Lorg/reactivestreams/Subscriber;Lio/reactivex/internal/operators/flowable/FlowableCache;)V
            astore 2 /* consumer */
        start local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         1: .line 111
            aload 1 /* t */
            aload 2 /* consumer */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         2: .line 112
            aload 0 /* this */
            aload 2 /* consumer */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.add:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
         3: .line 114
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 6
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 6
         4: .line 115
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.source:Lio/reactivex/Flowable;
            aload 0 /* this */
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         5: .line 116
            goto 7
         6: .line 117
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription
      StackMap stack:
            aload 0 /* this */
            aload 2 /* consumer */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.replay:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
         7: .line 119
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
        end local 1 // org.reactivestreams.Subscriber t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0    8     1         t  Lorg/reactivestreams/Subscriber<-TT;>;
            1    8     2  consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      t     

  boolean isConnected();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
         0: .line 126
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ireturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;

  boolean hasSubscribers();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
         0: .line 134
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
            arraylength
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;

  long cachedEventCount();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
         0: .line 142
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.size:J
            lreturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;

  void add(io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription<T>);
    descriptor: (Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         0: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
            astore 2 /* current */
        start local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] current
         1: .line 153
            aload 2 /* current */
            getstatic io.reactivex.internal.operators.flowable.FlowableCache.TERMINATED:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            if_acmpne 3
         2: .line 154
            return
         3: .line 156
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
      StackMap stack:
            aload 2 /* current */
            arraylength
            istore 3 /* n */
        start local 3 // int n
         4: .line 159
            iload 3 /* n */
            iconst_1
            iadd
            anewarray io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription
            astore 4 /* next */
        start local 4 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] next
         5: .line 160
            aload 2 /* current */
            iconst_0
            aload 4 /* next */
            iconst_0
            iload 3 /* n */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 161
            aload 4 /* next */
            iload 3 /* n */
            aload 1 /* consumer */
            aastore
         7: .line 163
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            aload 2 /* current */
            aload 4 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 0
         8: .line 164
            return
        end local 4 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] next
        end local 3 // int n
        end local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] current
        end local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0    9     1  consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
            1    9     2   current  [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            4    9     3         n  I
            5    9     4      next  [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
    Signature: (Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;)V
    MethodParameters:
          Name  Flags
      consumer  

  void remove(io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription<T>);
    descriptor: (Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         0: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
            astore 2 /* current */
        start local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] current
         1: .line 177
            aload 2 /* current */
            arraylength
            istore 3 /* n */
        start local 3 // int n
         2: .line 178
            iload 3 /* n */
            ifne 4
         3: .line 179
            return
         4: .line 182
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] int
      StackMap stack:
            iconst_m1
            istore 4 /* j */
        start local 4 // int j
         5: .line 183
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 11
         7: .line 184
      StackMap locals: int int
      StackMap stack:
            aload 2 /* current */
            iload 5 /* i */
            aaload
            aload 1 /* consumer */
            if_acmpne 10
         8: .line 185
            iload 5 /* i */
            istore 4 /* j */
         9: .line 186
            goto 12
        10: .line 183
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 3 /* n */
            if_icmplt 7
        end local 5 // int i
        12: .line 190
      StackMap locals:
      StackMap stack:
            iload 4 /* j */
            ifge 14
        13: .line 191
            return
        14: .line 195
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
            iconst_1
            if_icmpne 17
        15: .line 196
            getstatic io.reactivex.internal.operators.flowable.FlowableCache.EMPTY:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            astore 5 /* next */
        start local 5 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] next
        16: .line 197
            goto 20
        end local 5 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] next
        17: .line 198
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
            iconst_1
            isub
            anewarray io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription
            astore 5 /* next */
        start local 5 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] next
        18: .line 199
            aload 2 /* current */
            iconst_0
            aload 5 /* next */
            iconst_0
            iload 4 /* j */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 200
            aload 2 /* current */
            iload 4 /* j */
            iconst_1
            iadd
            aload 5 /* next */
            iload 4 /* j */
            iload 3 /* n */
            iload 4 /* j */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        20: .line 203
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            aload 2 /* current */
            aload 5 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 0
        21: .line 204
            return
        end local 5 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] next
        end local 4 // int j
        end local 3 // int n
        end local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[] current
        end local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0   22     1  consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
            1   22     2   current  [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            2   22     3         n  I
            5   22     4         j  I
            6   12     5         i  I
           16   17     5      next  [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
           18   22     5      next  [Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
    Signature: (Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;)V
    MethodParameters:
          Name  Flags
      consumer  

  void replay(io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription<T>);
    descriptor: (Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=14, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         0: .line 216
            aload 1 /* consumer */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.getAndIncrement:()I
            ifeq 2
         1: .line 217
            return
         2: .line 221
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         3: .line 223
            aload 1 /* consumer */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.index:J
            lstore 3 /* index */
        start local 3 // long index
         4: .line 224
            aload 1 /* consumer */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.offset:I
            istore 5 /* offset */
        start local 5 // int offset
         5: .line 225
            aload 1 /* consumer */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.node:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
            astore 6 /* node */
        start local 6 // io.reactivex.internal.operators.flowable.FlowableCache$Node node
         6: .line 226
            aload 1 /* consumer */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
            astore 7 /* requested */
        start local 7 // java.util.concurrent.atomic.AtomicLong requested
         7: .line 227
            aload 1 /* consumer */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.downstream:Lorg/reactivestreams/Subscriber;
            astore 8 /* downstream */
        start local 8 // org.reactivestreams.Subscriber downstream
         8: .line 228
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.capacityHint:I
            istore 9 /* capacity */
        start local 9 // int capacity
         9: .line 232
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription int long int io.reactivex.internal.operators.flowable.FlowableCache$Node java.util.concurrent.atomic.AtomicLong org.reactivestreams.Subscriber int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.done:Z
            istore 10 /* sourceDone */
        start local 10 // boolean sourceDone
        10: .line 234
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.size:J
            lload 3 /* index */
            lcmp
            ifne 11
            iconst_1
            goto 12
      StackMap locals: int
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 11 /* empty */
        start local 11 // boolean empty
        13: .line 237
            iload 10 /* sourceDone */
            ifeq 21
            iload 11 /* empty */
            ifeq 21
        14: .line 239
            aload 1 /* consumer */
            aconst_null
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.node:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
        15: .line 241
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.error:Ljava/lang/Throwable;
            astore 12 /* ex */
        start local 12 // java.lang.Throwable ex
        16: .line 242
            aload 12 /* ex */
            ifnull 19
        17: .line 243
            aload 8 /* downstream */
            aload 12 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        18: .line 244
            goto 20
        19: .line 245
      StackMap locals: int java.lang.Throwable
      StackMap stack:
            aload 8 /* downstream */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        20: .line 247
      StackMap locals:
      StackMap stack:
            return
        end local 12 // java.lang.Throwable ex
        21: .line 251
      StackMap locals:
      StackMap stack:
            iload 11 /* empty */
            ifne 34
        22: .line 253
            aload 7 /* requested */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 12 /* consumerRequested */
        start local 12 // long consumerRequested
        23: .line 255
            lload 12 /* consumerRequested */
            ldc -9223372036854775808
            lcmp
            ifne 26
        24: .line 257
            aload 1 /* consumer */
            aconst_null
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.node:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
        25: .line 258
            return
        26: .line 261
      StackMap locals: long
      StackMap stack:
            lload 12 /* consumerRequested */
            lload 3 /* index */
            lcmp
            ifeq 34
        27: .line 264
            iload 5 /* offset */
            iload 9 /* capacity */
            if_icmpne 30
        28: .line 266
            aload 6 /* node */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$Node.next:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
            astore 6 /* node */
        29: .line 268
            iconst_0
            istore 5 /* offset */
        30: .line 272
      StackMap locals:
      StackMap stack:
            aload 8 /* downstream */
            aload 6 /* node */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$Node.values:[Ljava/lang/Object;
            iload 5 /* offset */
            aaload
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        31: .line 275
            iinc 5 /* offset */ 1
        32: .line 277
            lload 3 /* index */
            lconst_1
            ladd
            lstore 3 /* index */
        33: .line 280
            goto 9
        end local 12 // long consumerRequested
        34: .line 285
      StackMap locals:
      StackMap stack:
            aload 1 /* consumer */
            lload 3 /* index */
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.index:J
        35: .line 286
            aload 1 /* consumer */
            iload 5 /* offset */
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.offset:I
        36: .line 287
            aload 1 /* consumer */
            aload 6 /* node */
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.node:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
        37: .line 289
            aload 1 /* consumer */
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.addAndGet:(I)I
            istore 2 /* missed */
        38: .line 290
            iload 2 /* missed */
            ifne 9
        end local 11 // boolean empty
        end local 10 // boolean sourceDone
        39: .line 294
            return
        end local 9 // int capacity
        end local 8 // org.reactivestreams.Subscriber downstream
        end local 7 // java.util.concurrent.atomic.AtomicLong requested
        end local 6 // io.reactivex.internal.operators.flowable.FlowableCache$Node node
        end local 5 // int offset
        end local 3 // long index
        end local 2 // int missed
        end local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   40     0               this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0   40     1           consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
            3   40     2             missed  I
            4   40     3              index  J
            5   40     5             offset  I
            6   40     6               node  Lio/reactivex/internal/operators/flowable/FlowableCache$Node<TT;>;
            7   40     7          requested  Ljava/util/concurrent/atomic/AtomicLong;
            8   40     8         downstream  Lorg/reactivestreams/Subscriber<-TT;>;
            9   40     9           capacity  I
           10   39    10         sourceDone  Z
           13   39    11              empty  Z
           16   21    12                 ex  Ljava/lang/Throwable;
           23   34    12  consumerRequested  J
    Signature: (Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;)V
    MethodParameters:
          Name  Flags
      consumer  

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 298
            aload 1 /* s */
            ldc 9223372036854775807
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         1: .line 299
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0    2     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // java.lang.Object t
         0: .line 303
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.tailOffset:I
            istore 2 /* tailOffset */
        start local 2 // int tailOffset
         1: .line 305
            iload 2 /* tailOffset */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.capacityHint:I
            if_icmpne 8
         2: .line 306
            new io.reactivex.internal.operators.flowable.FlowableCache$Node
            dup
            iload 2 /* tailOffset */
            invokespecial io.reactivex.internal.operators.flowable.FlowableCache$Node.<init>:(I)V
            astore 3 /* n */
        start local 3 // io.reactivex.internal.operators.flowable.FlowableCache$Node n
         3: .line 307
            aload 3 /* n */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$Node.values:[Ljava/lang/Object;
            iconst_0
            aload 1 /* t */
            aastore
         4: .line 308
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCache.tailOffset:I
         5: .line 309
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.tail:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
            aload 3 /* n */
            putfield io.reactivex.internal.operators.flowable.FlowableCache$Node.next:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
         6: .line 310
            aload 0 /* this */
            aload 3 /* n */
            putfield io.reactivex.internal.operators.flowable.FlowableCache.tail:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
        end local 3 // io.reactivex.internal.operators.flowable.FlowableCache$Node n
         7: .line 311
            goto 10
         8: .line 312
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.tail:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
            getfield io.reactivex.internal.operators.flowable.FlowableCache$Node.values:[Ljava/lang/Object;
            iload 2 /* tailOffset */
            aload 1 /* t */
            aastore
         9: .line 313
            aload 0 /* this */
            iload 2 /* tailOffset */
            iconst_1
            iadd
            putfield io.reactivex.internal.operators.flowable.FlowableCache.tailOffset:I
        10: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.reactivex.internal.operators.flowable.FlowableCache.size:J
            lconst_1
            ladd
            putfield io.reactivex.internal.operators.flowable.FlowableCache.size:J
        11: .line 316
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 15
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache java.lang.Object int top int int io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
      StackMap stack:
        12: aload 6
            iload 4
            aaload
            astore 3 /* consumer */
        start local 3 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
        13: .line 317
            aload 0 /* this */
            aload 3 /* consumer */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.replay:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
        end local 3 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
        14: .line 316
            iinc 4 1
      StackMap locals:
      StackMap stack:
        15: iload 4
            iload 5
            if_icmplt 12
        16: .line 319
            return
        end local 2 // int tailOffset
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0   17     1           t  TT;
            1   17     2  tailOffset  I
            3    7     3           n  Lio/reactivex/internal/operators/flowable/FlowableCache$Node<TT;>;
           13   14     3    consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
        start local 1 // java.lang.Throwable t
         0: .line 324
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.done:Z
            ifeq 3
         1: .line 325
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 326
            return
         3: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* t */
            putfield io.reactivex.internal.operators.flowable.FlowableCache.error:Ljava/lang/Throwable;
         4: .line 329
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCache.done:Z
         5: .line 330
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            getstatic io.reactivex.internal.operators.flowable.FlowableCache.TERMINATED:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 9
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache java.lang.Throwable top int int io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
      StackMap stack:
         6: aload 5
            iload 3
            aaload
            astore 2 /* consumer */
        start local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         7: .line 331
            aload 0 /* this */
            aload 2 /* consumer */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.replay:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
        end local 2 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         8: .line 330
            iinc 3 1
      StackMap locals:
      StackMap stack:
         9: iload 3
            iload 4
            if_icmplt 6
        10: .line 333
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            0   11     1         t  Ljava/lang/Throwable;
            7    8     2  consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
         0: .line 338
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCache.done:Z
         1: .line 339
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.subscribers:Ljava/util/concurrent/atomic/AtomicReference;
            getstatic io.reactivex.internal.operators.flowable.FlowableCache.TERMINATED:[Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 5
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCache top int int io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription[]
      StackMap stack:
         2: aload 4
            iload 2
            aaload
            astore 1 /* consumer */
        start local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         3: .line 340
            aload 0 /* this */
            aload 1 /* consumer */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.replay:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
        end local 1 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription consumer
         4: .line 339
            iinc 2 1
      StackMap locals:
      StackMap stack:
         5: iload 2
            iload 3
            if_icmplt 2
         6: .line 342
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
            3    4     1  consumer  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/internal/operators/flowable/AbstractFlowableWithUpstream<TT;TT;>;Lio/reactivex/FlowableSubscriber<TT;>;
SourceFile: "FlowableCache.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription  io.reactivex.internal.operators.flowable.FlowableCache$Node
InnerClasses:
  final CacheSubscription = io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription of io.reactivex.internal.operators.flowable.FlowableCache
  final Node = io.reactivex.internal.operators.flowable.FlowableCache$Node of io.reactivex.internal.operators.flowable.FlowableCache