public final class com.google.common.math.PairedStatsAccumulator
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.math.PairedStatsAccumulator
  super_class: java.lang.Object
{
  private final com.google.common.math.StatsAccumulator xStats;
    descriptor: Lcom/google/common/math/StatsAccumulator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.google.common.math.StatsAccumulator yStats;
    descriptor: Lcom/google/common/math/StatsAccumulator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private double sumOfProductsOfDeltas;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            new com.google.common.math.StatsAccumulator
            dup
            invokespecial com.google.common.math.StatsAccumulator.<init>:()V
            putfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
         2: .line 39
            aload 0 /* this */
            new com.google.common.math.StatsAccumulator
            dup
            invokespecial com.google.common.math.StatsAccumulator.<init>:()V
            putfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
         3: .line 40
            aload 0 /* this */
            dconst_0
            putfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
         4: .line 34
            return
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public void add(double, double);
    descriptor: (DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=3
        start local 0 // com.google.common.math.PairedStatsAccumulator this
        start local 1 // double x
        start local 3 // double y
         0: .line 55
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            dload 1 /* x */
            invokevirtual com.google.common.math.StatsAccumulator.add:(D)V
         1: .line 56
            dload 1 /* x */
            invokestatic com.google.common.primitives.Doubles.isFinite:(D)Z
            ifeq 5
            dload 3 /* y */
            invokestatic com.google.common.primitives.Doubles.isFinite:(D)Z
            ifeq 5
         2: .line 57
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.count:()J
            lconst_1
            lcmp
            ifle 6
         3: .line 58
            aload 0 /* this */
            dup
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            dload 1 /* x */
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            dsub
            dload 3 /* y */
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            dsub
            dmul
            dadd
            putfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
         4: .line 60
            goto 6
         5: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc NaN
            putfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
         6: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            dload 3 /* y */
            invokevirtual com.google.common.math.StatsAccumulator.add:(D)V
         7: .line 64
            return
        end local 3 // double y
        end local 1 // double x
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/google/common/math/PairedStatsAccumulator;
            0    8     1     x  D
            0    8     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public void addAll(com.google.common.math.PairedStats);
    descriptor: (Lcom/google/common/math/PairedStats;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=2, args_size=2
        start local 0 // com.google.common.math.PairedStatsAccumulator this
        start local 1 // com.google.common.math.PairedStats values
         0: .line 71
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.count:()J
            lconst_0
            lcmp
            ifne 2
         1: .line 72
            return
         2: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.xStats:()Lcom/google/common/math/Stats;
            invokevirtual com.google.common.math.StatsAccumulator.addAll:(Lcom/google/common/math/Stats;)V
         3: .line 76
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.count:()J
            lconst_0
            lcmp
            ifne 6
         4: .line 77
            aload 0 /* this */
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.sumOfProductsOfDeltas:()D
            putfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
         5: .line 78
            goto 15
         6: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
         7: .line 83
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.sumOfProductsOfDeltas:()D
         8: .line 84
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.xStats:()Lcom/google/common/math/Stats;
            invokevirtual com.google.common.math.Stats.mean:()D
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            dsub
         9: .line 85
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.yStats:()Lcom/google/common/math/Stats;
            invokevirtual com.google.common.math.Stats.mean:()D
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            dsub
        10: .line 84
            dmul
        11: .line 86
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.count:()J
            l2d
        12: .line 84
            dmul
        13: .line 83
            dadd
            dadd
        14: .line 82
            putfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
        15: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            aload 1 /* values */
            invokevirtual com.google.common.math.PairedStats.yStats:()Lcom/google/common/math/Stats;
            invokevirtual com.google.common.math.StatsAccumulator.addAll:(Lcom/google/common/math/Stats;)V
        16: .line 89
            return
        end local 1 // com.google.common.math.PairedStats values
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lcom/google/common/math/PairedStatsAccumulator;
            0   17     1  values  Lcom/google/common/math/PairedStats;
    MethodParameters:
        Name  Flags
      values  

  public com.google.common.math.PairedStats snapshot();
    descriptor: ()Lcom/google/common/math/PairedStats;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 93
            new com.google.common.math.PairedStats
            dup
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.snapshot:()Lcom/google/common/math/Stats;
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.snapshot:()Lcom/google/common/math/Stats;
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            invokespecial com.google.common.math.PairedStats.<init>:(Lcom/google/common/math/Stats;Lcom/google/common/math/Stats;D)V
            areturn
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public long count();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 98
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.count:()J
            lreturn
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public com.google.common.math.Stats xStats();
    descriptor: ()Lcom/google/common/math/Stats;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 103
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.snapshot:()Lcom/google/common/math/Stats;
            areturn
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public com.google.common.math.Stats yStats();
    descriptor: ()Lcom/google/common/math/Stats;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 108
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.snapshot:()Lcom/google/common/math/Stats;
            areturn
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public double populationCovariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 126
            aload 0 /* this */
            invokevirtual com.google.common.math.PairedStatsAccumulator.count:()J
            lconst_0
            lcmp
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
         3: .line 127
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            aload 0 /* this */
            invokevirtual com.google.common.math.PairedStatsAccumulator.count:()J
            l2d
            ddiv
            dreturn
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public final double sampleCovariance();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 144
            aload 0 /* this */
            invokevirtual com.google.common.math.PairedStatsAccumulator.count:()J
            lconst_1
            lcmp
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
         3: .line 145
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            aload 0 /* this */
            invokevirtual com.google.common.math.PairedStatsAccumulator.count:()J
            lconst_1
            lsub
            l2d
            ddiv
            dreturn
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/google/common/math/PairedStatsAccumulator;

  public final double pearsonsCorrelationCoefficient();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 165
            aload 0 /* this */
            invokevirtual com.google.common.math.PairedStatsAccumulator.count:()J
            lconst_1
            lcmp
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
         3: .line 166
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 5
         4: .line 167
            ldc NaN
            dreturn
         5: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.sumOfSquaresOfDeltas:()D
            dstore 1 /* xSumOfSquaresOfDeltas */
        start local 1 // double xSumOfSquaresOfDeltas
         6: .line 170
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.sumOfSquaresOfDeltas:()D
            dstore 3 /* ySumOfSquaresOfDeltas */
        start local 3 // double ySumOfSquaresOfDeltas
         7: .line 171
            dload 1 /* xSumOfSquaresOfDeltas */
            dconst_0
            dcmpl
            ifle 8
            iconst_1
            goto 9
      StackMap locals: double double
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
        10: .line 172
            dload 3 /* ySumOfSquaresOfDeltas */
            dconst_0
            dcmpl
            ifle 11
            iconst_1
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
        13: .line 176
            aload 0 /* this */
            dload 1 /* xSumOfSquaresOfDeltas */
            dload 3 /* ySumOfSquaresOfDeltas */
            dmul
            invokevirtual com.google.common.math.PairedStatsAccumulator.ensurePositive:(D)D
        14: .line 175
            dstore 5 /* productOfSumsOfSquaresOfDeltas */
        start local 5 // double productOfSumsOfSquaresOfDeltas
        15: .line 177
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            dload 5 /* productOfSumsOfSquaresOfDeltas */
            invokestatic java.lang.Math.sqrt:(D)D
            ddiv
            invokestatic com.google.common.math.PairedStatsAccumulator.ensureInUnitRange:(D)D
            dreturn
        end local 5 // double productOfSumsOfSquaresOfDeltas
        end local 3 // double ySumOfSquaresOfDeltas
        end local 1 // double xSumOfSquaresOfDeltas
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0   16     0                            this  Lcom/google/common/math/PairedStatsAccumulator;
            6   16     1           xSumOfSquaresOfDeltas  D
            7   16     3           ySumOfSquaresOfDeltas  D
           15   16     5  productOfSumsOfSquaresOfDeltas  D

  public final com.google.common.math.LinearTransformation leastSquaresFit();
    descriptor: ()Lcom/google/common/math/LinearTransformation;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.google.common.math.PairedStatsAccumulator this
         0: .line 212
            aload 0 /* this */
            invokevirtual com.google.common.math.PairedStatsAccumulator.count:()J
            lconst_1
            lcmp
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
         3: .line 213
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 5
         4: .line 214
            invokestatic com.google.common.math.LinearTransformation.forNaN:()Lcom/google/common/math/LinearTransformation;
            areturn
         5: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.sumOfSquaresOfDeltas:()D
            dstore 1 /* xSumOfSquaresOfDeltas */
        start local 1 // double xSumOfSquaresOfDeltas
         6: .line 217
            dload 1 /* xSumOfSquaresOfDeltas */
            dconst_0
            dcmpl
            ifle 12
         7: .line 218
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.sumOfSquaresOfDeltas:()D
            dconst_0
            dcmpl
            ifle 11
         8: .line 219
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            invokestatic com.google.common.math.LinearTransformation.mapping:(DD)Lcom/google/common/math/LinearTransformation$LinearTransformationBuilder;
         9: .line 220
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.sumOfProductsOfDeltas:D
            dload 1 /* xSumOfSquaresOfDeltas */
            ddiv
            invokevirtual com.google.common.math.LinearTransformation$LinearTransformationBuilder.withSlope:(D)Lcom/google/common/math/LinearTransformation;
        10: .line 219
            areturn
        11: .line 222
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            invokestatic com.google.common.math.LinearTransformation.horizontal:(D)Lcom/google/common/math/LinearTransformation;
            areturn
        12: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.yStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.sumOfSquaresOfDeltas:()D
            dconst_0
            dcmpl
            ifle 13
            iconst_1
            goto 14
      StackMap locals:
      StackMap stack:
        13: iconst_0
      StackMap locals:
      StackMap stack: int
        14: invokestatic com.google.common.base.Preconditions.checkState:(Z)V
        15: .line 226
            aload 0 /* this */
            getfield com.google.common.math.PairedStatsAccumulator.xStats:Lcom/google/common/math/StatsAccumulator;
            invokevirtual com.google.common.math.StatsAccumulator.mean:()D
            invokestatic com.google.common.math.LinearTransformation.vertical:(D)Lcom/google/common/math/LinearTransformation;
            areturn
        end local 1 // double xSumOfSquaresOfDeltas
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   16     0                   this  Lcom/google/common/math/PairedStatsAccumulator;
            6   16     1  xSumOfSquaresOfDeltas  D

  private double ensurePositive(double);
    descriptor: (D)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.google.common.math.PairedStatsAccumulator this
        start local 1 // double value
         0: .line 231
            dload 1 /* value */
            dconst_0
            dcmpl
            ifle 2
         1: .line 232
            dload 1 /* value */
            dreturn
         2: .line 234
      StackMap locals:
      StackMap stack:
            ldc 4.9E-324
            dreturn
        end local 1 // double value
        end local 0 // com.google.common.math.PairedStatsAccumulator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/google/common/math/PairedStatsAccumulator;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  private static double ensureInUnitRange(double);
    descriptor: (D)D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double value
         0: .line 239
            dload 0 /* value */
            dconst_1
            dcmpl
            iflt 2
         1: .line 240
            dconst_1
            dreturn
         2: .line 242
      StackMap locals:
      StackMap stack:
            dload 0 /* value */
            ldc -1.0
            dcmpg
            ifgt 4
         3: .line 243
            ldc -1.0
            dreturn
         4: .line 245
      StackMap locals:
      StackMap stack:
            dload 0 /* value */
            dreturn
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0  value  D
    MethodParameters:
       Name  Flags
      value  
}
SourceFile: "PairedStatsAccumulator.java"
InnerClasses:
  public final LinearTransformationBuilder = com.google.common.math.LinearTransformation$LinearTransformationBuilder of com.google.common.math.LinearTransformation
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()