final class io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription<T> extends java.util.concurrent.atomic.AtomicInteger implements org.reactivestreams.Subscription
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription
  super_class: java.util.concurrent.atomic.AtomicInteger
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3481980673745556697

  final org.reactivestreams.Subscriber<? super T> downstream;
    descriptor: Lorg/reactivestreams/Subscriber;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Subscriber<-TT;>;

  final io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber<T>[] subscribers;
    descriptor: [Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinInnerSubscriber;
    flags: (0x0010) ACC_FINAL
    Signature: [Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinInnerSubscriber<TT;>;

  final java.util.List<T>[] lists;
    descriptor: [Ljava/util/List;
    flags: (0x0010) ACC_FINAL
    Signature: [Ljava/util/List<TT;>;

  final int[] indexes;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  final java.util.Comparator<? super T> comparator;
    descriptor: Ljava/util/Comparator;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Comparator<-TT;>;

  final java.util.concurrent.atomic.AtomicLong requested;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

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

  final java.util.concurrent.atomic.AtomicInteger remaining;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.atomic.AtomicReference<java.lang.Throwable> error;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Throwable;>;

  void <init>(org.reactivestreams.Subscriber<? super T>, int, java.util.Comparator<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;ILjava/util/Comparator;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // int n
        start local 3 // java.util.Comparator comparator
         0: .line 80
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 71
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
         2: .line 75
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.remaining:Ljava/util/concurrent/atomic/AtomicInteger;
         3: .line 77
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
         4: .line 81
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.downstream:Lorg/reactivestreams/Subscriber;
         5: .line 82
            aload 0 /* this */
            aload 3 /* comparator */
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.comparator:Ljava/util/Comparator;
         6: .line 84
            iload 2 /* n */
            anewarray io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber
            astore 4 /* s */
        start local 4 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber[] s
         7: .line 86
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 11
         9: .line 87
      StackMap locals: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription org.reactivestreams.Subscriber int java.util.Comparator io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber[] int
      StackMap stack:
            aload 4 /* s */
            iload 5 /* i */
            new io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber
            dup
            aload 0 /* this */
            iload 5 /* i */
            invokespecial io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber.<init>:(Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription;I)V
            aastore
        10: .line 86
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 2 /* n */
            if_icmplt 9
        end local 5 // int i
        12: .line 89
            aload 0 /* this */
            aload 4 /* s */
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.subscribers:[Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinInnerSubscriber;
        13: .line 90
            aload 0 /* this */
            iload 2 /* n */
            anewarray java.util.List
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.lists:[Ljava/util/List;
        14: .line 91
            aload 0 /* this */
            iload 2 /* n */
            newarray 10
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.indexes:[I
        15: .line 92
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.remaining:Ljava/util/concurrent/atomic/AtomicInteger;
            iload 2 /* n */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.lazySet:(I)V
        16: .line 93
            return
        end local 4 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber[] s
        end local 3 // java.util.Comparator comparator
        end local 2 // int n
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;
            0   17     1      actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0   17     2           n  I
            0   17     3  comparator  Ljava/util/Comparator<-TT;>;
            7   17     4           s  [Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinInnerSubscriber;
            8   12     5           i  I
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;ILjava/util/Comparator<-TT;>;)V
    MethodParameters:
            Name  Flags
      actual      
      n           
      comparator  

  public void request(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
        start local 1 // long n
         0: .line 97
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 4
         1: .line 98
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.add:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         2: .line 99
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.remaining:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            ifne 4
         3: .line 100
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.drain:()V
         4: .line 103
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;
            0    5     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
         0: .line 107
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelled:Z
            ifne 5
         1: .line 108
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelled:Z
         2: .line 109
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelAll:()V
         3: .line 110
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.getAndIncrement:()I
            ifne 5
         4: .line 111
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.lists:[Ljava/util/List;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         5: .line 114
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;

  void cancelAll();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
         0: .line 117
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.subscribers:[Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinInnerSubscriber;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 4
      StackMap locals: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription top int int io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* s */
        start local 1 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber s
         2: .line 118
            aload 1 /* s */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber.cancel:()V
        end local 1 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber s
         3: .line 117
            iinc 2 1
      StackMap locals:
      StackMap stack:
         4: iload 2
            iload 3
            if_icmplt 1
         5: .line 120
            return
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;
            2    3     1     s  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinInnerSubscriber<TT;>;

  void innerNext(java.util.List<T>, );
    descriptor: (Ljava/util/List;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
        start local 1 // java.util.List value
        start local 2 // int index
         0: .line 123
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.lists:[Ljava/util/List;
            iload 2 /* index */
            aload 1 /* value */
            aastore
         1: .line 124
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.remaining:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.decrementAndGet:()I
            ifne 3
         2: .line 125
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.drain:()V
         3: .line 127
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int index
        end local 1 // java.util.List value
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;
            0    4     1  value  Ljava/util/List<TT;>;
            0    4     2  index  I
    Signature: (Ljava/util/List<TT;>;I)V
    MethodParameters:
       Name  Flags
      value  
      index  

  void innerError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
        start local 1 // java.lang.Throwable e
         0: .line 130
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            aload 1 /* e */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         1: .line 131
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.drain:()V
         2: .line 132
            goto 5
         3: .line 133
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            if_acmpeq 5
         4: .line 134
            aload 1 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         5: .line 137
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable e
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;
            0    6     1     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      e     

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=19, args_size=1
        start local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
         0: .line 140
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.getAndIncrement:()I
            ifeq 2
         1: .line 141
            return
         2: .line 144
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         3: .line 145
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.downstream:Lorg/reactivestreams/Subscriber;
            astore 2 /* a */
        start local 2 // org.reactivestreams.Subscriber a
         4: .line 146
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.lists:[Ljava/util/List;
            astore 3 /* lists */
        start local 3 // java.util.List[] lists
         5: .line 147
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.indexes:[I
            astore 4 /* indexes */
        start local 4 // int[] indexes
         6: .line 148
            aload 4 /* indexes */
            arraylength
            istore 5 /* n */
        start local 5 // int n
         7: .line 152
      StackMap locals: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription int org.reactivestreams.Subscriber java.util.List[] int[] int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 6 /* r */
        start local 6 // long r
         8: .line 153
            lconst_0
            lstore 8 /* e */
        start local 8 // long e
         9: .line 155
            goto 55
        10: .line 156
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelled:Z
            ifeq 13
        11: .line 157
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        12: .line 158
            return
        13: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.lang.Throwable
            astore 10 /* ex */
        start local 10 // java.lang.Throwable ex
        14: .line 162
            aload 10 /* ex */
            ifnull 19
        15: .line 163
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelAll:()V
        16: .line 164
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        17: .line 165
            aload 2 /* a */
            aload 10 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        18: .line 166
            return
        19: .line 169
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aconst_null
            astore 11 /* min */
        start local 11 // java.lang.Object min
        20: .line 170
            iconst_m1
            istore 12 /* minIndex */
        start local 12 // int minIndex
        21: .line 172
            iconst_0
            istore 13 /* i */
        start local 13 // int i
        22: goto 47
        23: .line 173
      StackMap locals: java.lang.Object int int
      StackMap stack:
            aload 3 /* lists */
            iload 13 /* i */
            aaload
            astore 14 /* list */
        start local 14 // java.util.List list
        24: .line 174
            aload 4 /* indexes */
            iload 13 /* i */
            iaload
            istore 15 /* index */
        start local 15 // int index
        25: .line 176
            aload 14 /* list */
            invokeinterface java.util.List.size:()I
            iload 15 /* index */
            if_icmpeq 46
        26: .line 177
            aload 11 /* min */
            ifnonnull 30
        27: .line 178
            aload 14 /* list */
            iload 15 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 11 /* min */
        28: .line 179
            iload 13 /* i */
            istore 12 /* minIndex */
        29: .line 180
            goto 46
        30: .line 181
      StackMap locals: java.util.List int
      StackMap stack:
            aload 14 /* list */
            iload 15 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 16 /* b */
        start local 16 // java.lang.Object b
        31: .line 186
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.comparator:Ljava/util/Comparator;
            aload 11 /* min */
            aload 16 /* b */
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifle 32
            iconst_1
            goto 33
      StackMap locals: java.lang.Object
      StackMap stack:
        32: iconst_0
      StackMap locals:
      StackMap stack: int
        33: istore 17 /* smaller */
        start local 17 // boolean smaller
        34: .line 187
            goto 43
        end local 17 // boolean smaller
      StackMap locals:
      StackMap stack: java.lang.Throwable
        35: astore 18 /* exc */
        start local 18 // java.lang.Throwable exc
        36: .line 188
            aload 18 /* exc */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        37: .line 189
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelAll:()V
        38: .line 190
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        39: .line 191
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            aload 18 /* exc */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 41
        40: .line 192
            aload 18 /* exc */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        41: .line 194
      StackMap locals: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription int org.reactivestreams.Subscriber java.util.List[] int[] int long long java.lang.Throwable java.lang.Object int int java.util.List int java.lang.Object top java.lang.Throwable
      StackMap stack:
            aload 2 /* a */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.lang.Throwable
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        42: .line 195
            return
        end local 18 // java.lang.Throwable exc
        start local 17 // boolean smaller
        43: .line 197
      StackMap locals: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription int org.reactivestreams.Subscriber java.util.List[] int[] int long long java.lang.Throwable java.lang.Object int int java.util.List int java.lang.Object int
      StackMap stack:
            iload 17 /* smaller */
            ifeq 46
        44: .line 198
            aload 16 /* b */
            astore 11 /* min */
        45: .line 199
            iload 13 /* i */
            istore 12 /* minIndex */
        end local 17 // boolean smaller
        end local 16 // java.lang.Object b
        end local 15 // int index
        end local 14 // java.util.List list
        46: .line 172
      StackMap locals: io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription int org.reactivestreams.Subscriber java.util.List[] int[] int long long java.lang.Throwable java.lang.Object int int
      StackMap stack:
            iinc 13 /* i */ 1
      StackMap locals:
      StackMap stack:
        47: iload 13 /* i */
            iload 5 /* n */
            if_icmplt 23
        end local 13 // int i
        48: .line 205
            aload 11 /* min */
            ifnonnull 52
        49: .line 206
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        50: .line 207
            aload 2 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        51: .line 208
            return
        52: .line 211
      StackMap locals:
      StackMap stack:
            aload 2 /* a */
            aload 11 /* min */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        53: .line 213
            aload 4 /* indexes */
            iload 12 /* minIndex */
            dup2
            iaload
            iconst_1
            iadd
            iastore
        54: .line 215
            lload 8 /* e */
            lconst_1
            ladd
            lstore 8 /* e */
        end local 12 // int minIndex
        end local 11 // java.lang.Object min
        end local 10 // java.lang.Throwable ex
        55: .line 155
      StackMap locals:
      StackMap stack:
            lload 8 /* e */
            lload 6 /* r */
            lcmp
            ifne 10
        56: .line 218
            lload 8 /* e */
            lload 6 /* r */
            lcmp
            ifne 78
        57: .line 219
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelled:Z
            ifeq 60
        58: .line 220
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        59: .line 221
            return
        60: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.lang.Throwable
            astore 10 /* ex */
        start local 10 // java.lang.Throwable ex
        61: .line 225
            aload 10 /* ex */
            ifnull 66
        62: .line 226
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.cancelAll:()V
        63: .line 227
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        64: .line 228
            aload 2 /* a */
            aload 10 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        65: .line 229
            return
        66: .line 232
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iconst_1
            istore 11 /* empty */
        start local 11 // boolean empty
        67: .line 234
            iconst_0
            istore 12 /* i */
        start local 12 // int i
        68: goto 73
        69: .line 235
      StackMap locals: int int
      StackMap stack:
            aload 4 /* indexes */
            iload 12 /* i */
            iaload
            aload 3 /* lists */
            iload 12 /* i */
            aaload
            invokeinterface java.util.List.size:()I
            if_icmpeq 72
        70: .line 236
            iconst_0
            istore 11 /* empty */
        71: .line 237
            goto 74
        72: .line 234
      StackMap locals:
      StackMap stack:
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        73: iload 12 /* i */
            iload 5 /* n */
            if_icmplt 69
        end local 12 // int i
        74: .line 241
      StackMap locals:
      StackMap stack:
            iload 11 /* empty */
            ifeq 78
        75: .line 242
            aload 3 /* lists */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        76: .line 243
            aload 2 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        77: .line 244
            return
        end local 11 // boolean empty
        end local 10 // java.lang.Throwable ex
        78: .line 248
      StackMap locals:
      StackMap stack:
            lload 8 /* e */
            lconst_0
            lcmp
            ifeq 80
            lload 6 /* r */
            ldc 9223372036854775807
            lcmp
            ifeq 80
        79: .line 249
            aload 0 /* this */
            getfield io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 8 /* e */
            lneg
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            pop2
        80: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.get:()I
            istore 10 /* w */
        start local 10 // int w
        81: .line 253
            iload 10 /* w */
            iload 1 /* missed */
            if_icmpne 85
        82: .line 254
            aload 0 /* this */
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription.addAndGet:(I)I
            istore 1 /* missed */
        83: .line 255
            iload 1 /* missed */
            ifne 7
        84: .line 256
            goto 87
        85: .line 259
      StackMap locals: int
      StackMap stack:
            iload 10 /* w */
            istore 1 /* missed */
        end local 10 // int w
        end local 8 // long e
        end local 6 // long r
        86: .line 150
            goto 7
        87: .line 262
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int n
        end local 4 // int[] indexes
        end local 3 // java.util.List[] lists
        end local 2 // org.reactivestreams.Subscriber a
        end local 1 // int missed
        end local 0 // io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   88     0      this  Lio/reactivex/internal/operators/parallel/ParallelSortedJoin$SortedJoinSubscription<TT;>;
            3   88     1    missed  I
            4   88     2         a  Lorg/reactivestreams/Subscriber<-TT;>;
            5   88     3     lists  [Ljava/util/List;
            6   88     4   indexes  [I
            7   88     5         n  I
            8   86     6         r  J
            9   86     8         e  J
           14   55    10        ex  Ljava/lang/Throwable;
           20   55    11       min  TT;
           21   55    12  minIndex  I
           22   48    13         i  I
           24   46    14      list  Ljava/util/List<TT;>;
           25   46    15     index  I
           31   46    16         b  TT;
           34   35    17   smaller  Z
           43   46    17   smaller  Z
           36   43    18       exc  Ljava/lang/Throwable;
           61   78    10        ex  Ljava/lang/Throwable;
           67   78    11     empty  Z
           68   74    12         i  I
           81   86    10         w  I
      Exception table:
        from    to  target  type
          31    34      35  Class java.lang.Throwable
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lorg/reactivestreams/Subscription;
SourceFile: "ParallelSortedJoin.java"
NestHost: io.reactivex.internal.operators.parallel.ParallelSortedJoin
InnerClasses:
  final SortedJoinInnerSubscriber = io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinInnerSubscriber of io.reactivex.internal.operators.parallel.ParallelSortedJoin
  final SortedJoinSubscription = io.reactivex.internal.operators.parallel.ParallelSortedJoin$SortedJoinSubscription of io.reactivex.internal.operators.parallel.ParallelSortedJoin