public final class java.time.Period implements java.time.chrono.ChronoPeriod, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: java.time.Period
  super_class: java.lang.Object
{
  public static final java.time.Period ZERO;
    descriptor: Ljava/time/Period;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -3587258372562876

  private static final java.util.regex.Pattern PATTERN;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.util.List<java.time.temporal.TemporalUnit> SUPPORTED_UNITS;
    descriptor: Ljava/util/List;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/List<Ljava/time/temporal/TemporalUnit;>;

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 141
            new java.time.Period
            dup
            iconst_0
            iconst_0
            iconst_0
            invokespecial java.time.Period.<init>:(III)V
            putstatic java.time.Period.ZERO:Ljava/time/Period;
         1: .line 150
            ldc "([-+]?)P(?:([-+]?[0-9]+)Y)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)W)?(?:([-+]?[0-9]+)D)?"
            iconst_2
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;I)Ljava/util/regex/Pattern;
         2: .line 149
            putstatic java.time.Period.PATTERN:Ljava/util/regex/Pattern;
         3: .line 155
            iconst_3
            anewarray java.time.temporal.TemporalUnit
            dup
            iconst_0
         4: .line 156
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            aastore
            dup
            iconst_1
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            aastore
            dup
            iconst_2
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            putstatic java.time.Period.SUPPORTED_UNITS:Ljava/util/List;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static java.time.Period ofYears(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int years
         0: .line 182
            iload 0 /* years */
            iconst_0
            iconst_0
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 0 // int years
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  years  I
    MethodParameters:
       Name  Flags
      years  

  public static java.time.Period ofMonths(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int months
         0: .line 195
            iconst_0
            iload 0 /* months */
            iconst_0
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 0 // int months
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  months  I
    MethodParameters:
        Name  Flags
      months  

  public static java.time.Period ofWeeks(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int weeks
         0: .line 209
            iconst_0
            iconst_0
            iload 0 /* weeks */
            bipush 7
            invokestatic java.lang.Math.multiplyExact:(II)I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 0 // int weeks
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  weeks  I
    MethodParameters:
       Name  Flags
      weeks  

  public static java.time.Period ofDays(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int days
         0: .line 222
            iconst_0
            iconst_0
            iload 0 /* days */
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 0 // int days
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  days  I
    MethodParameters:
      Name  Flags
      days  

  public static java.time.Period of(int, int, int);
    descriptor: (III)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // int years
        start local 1 // int months
        start local 2 // int days
         0: .line 237
            iload 0 /* years */
            iload 1 /* months */
            iload 2 /* days */
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 2 // int days
        end local 1 // int months
        end local 0 // int years
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0   years  I
            0    1     1  months  I
            0    1     2    days  I
    MethodParameters:
        Name  Flags
      years   
      months  
      days    

  public static java.time.Period from(java.time.temporal.TemporalAmount);
    descriptor: (Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // java.time.temporal.TemporalAmount amount
         0: .line 261
            aload 0 /* amount */
            instanceof java.time.Period
            ifeq 2
         1: .line 262
            aload 0 /* amount */
            checkcast java.time.Period
            areturn
         2: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* amount */
            instanceof java.time.chrono.ChronoPeriod
            ifeq 5
         3: .line 265
            getstatic java.time.chrono.IsoChronology.INSTANCE:Ljava/time/chrono/IsoChronology;
            aload 0 /* amount */
            checkcast java.time.chrono.ChronoPeriod
            invokeinterface java.time.chrono.ChronoPeriod.getChronology:()Ljava/time/chrono/Chronology;
            invokevirtual java.time.chrono.IsoChronology.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 266
            new java.time.DateTimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Period requires ISO chronology: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* amount */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.time.DateTimeException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* amount */
            ldc "amount"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         6: .line 270
            iconst_0
            istore 1 /* years */
        start local 1 // int years
         7: .line 271
            iconst_0
            istore 2 /* months */
        start local 2 // int months
         8: .line 272
            iconst_0
            istore 3 /* days */
        start local 3 // int days
         9: .line 273
            aload 0 /* amount */
            invokeinterface java.time.temporal.TemporalAmount.getUnits:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 22
      StackMap locals: java.time.temporal.TemporalAmount int int int top java.util.Iterator
      StackMap stack:
        10: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.time.temporal.TemporalUnit
            astore 4 /* unit */
        start local 4 // java.time.temporal.TemporalUnit unit
        11: .line 274
            aload 0 /* amount */
            aload 4 /* unit */
            invokeinterface java.time.temporal.TemporalAmount.get:(Ljava/time/temporal/TemporalUnit;)J
            lstore 6 /* unitAmount */
        start local 6 // long unitAmount
        12: .line 275
            aload 4 /* unit */
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 15
        13: .line 276
            lload 6 /* unitAmount */
            invokestatic java.lang.Math.toIntExact:(J)I
            istore 1 /* years */
        14: .line 277
            goto 22
      StackMap locals: java.time.temporal.TemporalAmount int int int java.time.temporal.TemporalUnit java.util.Iterator long
      StackMap stack:
        15: aload 4 /* unit */
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 18
        16: .line 278
            lload 6 /* unitAmount */
            invokestatic java.lang.Math.toIntExact:(J)I
            istore 2 /* months */
        17: .line 279
            goto 22
      StackMap locals:
      StackMap stack:
        18: aload 4 /* unit */
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 21
        19: .line 280
            lload 6 /* unitAmount */
            invokestatic java.lang.Math.toIntExact:(J)I
            istore 3 /* days */
        20: .line 281
            goto 22
        21: .line 282
      StackMap locals:
      StackMap stack:
            new java.time.DateTimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unit must be Years, Months or Days, but was "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* unit */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.time.DateTimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // long unitAmount
        end local 4 // java.time.temporal.TemporalUnit unit
        22: .line 273
      StackMap locals: java.time.temporal.TemporalAmount int int int top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        23: .line 285
            iload 1 /* years */
            iload 2 /* months */
            iload 3 /* days */
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 3 // int days
        end local 2 // int months
        end local 1 // int years
        end local 0 // java.time.temporal.TemporalAmount amount
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0      amount  Ljava/time/temporal/TemporalAmount;
            7   24     1       years  I
            8   24     2      months  I
            9   24     3        days  I
           11   22     4        unit  Ljava/time/temporal/TemporalUnit;
           12   22     6  unitAmount  J
    MethodParameters:
        Name  Flags
      amount  

  public static java.time.Period parse(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=11, args_size=1
        start local 0 // java.lang.CharSequence text
         0: .line 329
            aload 0 /* text */
            ldc "text"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 330
            getstatic java.time.Period.PATTERN:Ljava/util/regex/Pattern;
            aload 0 /* text */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            astore 1 /* matcher */
        start local 1 // java.util.regex.Matcher matcher
         2: .line 331
            aload 1 /* matcher */
            invokevirtual java.util.regex.Matcher.matches:()Z
            ifeq 20
         3: .line 332
            ldc "-"
            aload 1 /* matcher */
            iconst_1
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_m1
            goto 5
      StackMap locals: java.util.regex.Matcher
      StackMap stack:
         4: iconst_1
      StackMap locals:
      StackMap stack: int
         5: istore 2 /* negate */
        start local 2 // int negate
         6: .line 333
            aload 1 /* matcher */
            iconst_2
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 3 /* yearMatch */
        start local 3 // java.lang.String yearMatch
         7: .line 334
            aload 1 /* matcher */
            iconst_3
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 4 /* monthMatch */
        start local 4 // java.lang.String monthMatch
         8: .line 335
            aload 1 /* matcher */
            iconst_4
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 5 /* weekMatch */
        start local 5 // java.lang.String weekMatch
         9: .line 336
            aload 1 /* matcher */
            iconst_5
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 6 /* dayMatch */
        start local 6 // java.lang.String dayMatch
        10: .line 337
            aload 3 /* yearMatch */
            ifnonnull 11
            aload 4 /* monthMatch */
            ifnonnull 11
            aload 6 /* dayMatch */
            ifnonnull 11
            aload 5 /* weekMatch */
            ifnull 20
        11: .line 339
      StackMap locals: java.lang.CharSequence java.util.regex.Matcher int java.lang.String java.lang.String java.lang.String java.lang.String
      StackMap stack:
            aload 0 /* text */
            aload 3 /* yearMatch */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;Ljava/lang/String;I)I
            istore 7 /* years */
        start local 7 // int years
        12: .line 340
            aload 0 /* text */
            aload 4 /* monthMatch */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;Ljava/lang/String;I)I
            istore 8 /* months */
        start local 8 // int months
        13: .line 341
            aload 0 /* text */
            aload 5 /* weekMatch */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;Ljava/lang/String;I)I
            istore 9 /* weeks */
        start local 9 // int weeks
        14: .line 342
            aload 0 /* text */
            aload 6 /* dayMatch */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;Ljava/lang/String;I)I
            istore 10 /* days */
        start local 10 // int days
        15: .line 343
            iload 10 /* days */
            iload 9 /* weeks */
            bipush 7
            invokestatic java.lang.Math.multiplyExact:(II)I
            invokestatic java.lang.Math.addExact:(II)I
            istore 10 /* days */
        16: .line 344
            iload 7 /* years */
            iload 8 /* months */
            iload 10 /* days */
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
        17: areturn
        end local 10 // int days
        end local 9 // int weeks
        end local 8 // int months
        end local 7 // int years
        18: .line 345
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            astore 7 /* ex */
        start local 7 // java.lang.NumberFormatException ex
        19: .line 346
            new java.time.format.DateTimeParseException
            dup
            ldc "Text cannot be parsed to a Period"
            aload 0 /* text */
            iconst_0
            aload 7 /* ex */
            invokespecial java.time.format.DateTimeParseException.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;ILjava/lang/Throwable;)V
            athrow
        end local 7 // java.lang.NumberFormatException ex
        end local 6 // java.lang.String dayMatch
        end local 5 // java.lang.String weekMatch
        end local 4 // java.lang.String monthMatch
        end local 3 // java.lang.String yearMatch
        end local 2 // int negate
        20: .line 350
      StackMap locals: java.lang.CharSequence java.util.regex.Matcher
      StackMap stack:
            new java.time.format.DateTimeParseException
            dup
            ldc "Text cannot be parsed to a Period"
            aload 0 /* text */
            iconst_0
            invokespecial java.time.format.DateTimeParseException.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;I)V
            athrow
        end local 1 // java.util.regex.Matcher matcher
        end local 0 // java.lang.CharSequence text
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   21     0        text  Ljava/lang/CharSequence;
            2   21     1     matcher  Ljava/util/regex/Matcher;
            6   20     2      negate  I
            7   20     3   yearMatch  Ljava/lang/String;
            8   20     4  monthMatch  Ljava/lang/String;
            9   20     5   weekMatch  Ljava/lang/String;
           10   20     6    dayMatch  Ljava/lang/String;
           12   18     7       years  I
           13   18     8      months  I
           14   18     9       weeks  I
           15   18    10        days  I
           19   20     7          ex  Ljava/lang/NumberFormatException;
      Exception table:
        from    to  target  type
          11    17      18  Class java.lang.NumberFormatException
    MethodParameters:
      Name  Flags
      text  

  private static int parseNumber(java.lang.CharSequence, java.lang.String, int);
    descriptor: (Ljava/lang/CharSequence;Ljava/lang/String;I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // java.lang.CharSequence text
        start local 1 // java.lang.String str
        start local 2 // int negate
         0: .line 354
            aload 1 /* str */
            ifnonnull 2
         1: .line 355
            iconst_0
            ireturn
         2: .line 357
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 3 /* val */
        start local 3 // int val
         3: .line 359
            iload 3 /* val */
            iload 2 /* negate */
            invokestatic java.lang.Math.multiplyExact:(II)I
         4: ireturn
         5: .line 360
      StackMap locals: java.lang.CharSequence java.lang.String int int
      StackMap stack: java.lang.ArithmeticException
            astore 4 /* ex */
        start local 4 // java.lang.ArithmeticException ex
         6: .line 361
            new java.time.format.DateTimeParseException
            dup
            ldc "Text cannot be parsed to a Period"
            aload 0 /* text */
            iconst_0
            aload 4 /* ex */
            invokespecial java.time.format.DateTimeParseException.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;ILjava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.ArithmeticException ex
        end local 3 // int val
        end local 2 // int negate
        end local 1 // java.lang.String str
        end local 0 // java.lang.CharSequence text
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    text  Ljava/lang/CharSequence;
            0    7     1     str  Ljava/lang/String;
            0    7     2  negate  I
            3    7     3     val  I
            6    7     4      ex  Ljava/lang/ArithmeticException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.ArithmeticException
    MethodParameters:
        Name  Flags
      text    
      str     
      negate  

  public static java.time.Period between(java.time.LocalDate, java.time.LocalDate);
    descriptor: (Ljava/time/LocalDate;Ljava/time/LocalDate;)Ljava/time/Period;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.time.LocalDate startDateInclusive
        start local 1 // java.time.LocalDate endDateExclusive
         0: .line 386
            aload 0 /* startDateInclusive */
            aload 1 /* endDateExclusive */
            invokevirtual java.time.LocalDate.until:(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/Period;
            areturn
        end local 1 // java.time.LocalDate endDateExclusive
        end local 0 // java.time.LocalDate startDateInclusive
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    1     0  startDateInclusive  Ljava/time/LocalDate;
            0    1     1    endDateExclusive  Ljava/time/LocalDate;
    MethodParameters:
                    Name  Flags
      startDateInclusive  
      endDateExclusive    

  private static java.time.Period create(int, int, int);
    descriptor: (III)Ljava/time/Period;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // int years
        start local 1 // int months
        start local 2 // int days
         0: .line 398
            iload 0 /* years */
            iload 1 /* months */
            ior
            iload 2 /* days */
            ior
            ifne 2
         1: .line 399
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            areturn
         2: .line 401
      StackMap locals:
      StackMap stack:
            new java.time.Period
            dup
            iload 0 /* years */
            iload 1 /* months */
            iload 2 /* days */
            invokespecial java.time.Period.<init>:(III)V
            areturn
        end local 2 // int days
        end local 1 // int months
        end local 0 // int years
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0   years  I
            0    3     1  months  I
            0    3     2    days  I
    MethodParameters:
        Name  Flags
      years   
      months  
      days    

  private void <init>(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // java.time.Period this
        start local 1 // int years
        start local 2 // int months
        start local 3 // int days
         0: .line 411
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 412
            aload 0 /* this */
            iload 1 /* years */
            putfield java.time.Period.years:I
         2: .line 413
            aload 0 /* this */
            iload 2 /* months */
            putfield java.time.Period.months:I
         3: .line 414
            aload 0 /* this */
            iload 3 /* days */
            putfield java.time.Period.days:I
         4: .line 415
            return
        end local 3 // int days
        end local 2 // int months
        end local 1 // int years
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Ljava/time/Period;
            0    5     1   years  I
            0    5     2  months  I
            0    5     3    days  I
    MethodParameters:
        Name  Flags
      years   
      months  
      days    

  public long get(java.time.temporal.TemporalUnit);
    descriptor: (Ljava/time/temporal/TemporalUnit;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.time.temporal.TemporalUnit unit
         0: .line 433
            aload 1 /* unit */
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 2
         1: .line 434
            aload 0 /* this */
            invokevirtual java.time.Period.getYears:()I
            i2l
            lreturn
         2: .line 435
      StackMap locals:
      StackMap stack:
            aload 1 /* unit */
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 4
         3: .line 436
            aload 0 /* this */
            invokevirtual java.time.Period.getMonths:()I
            i2l
            lreturn
         4: .line 437
      StackMap locals:
      StackMap stack:
            aload 1 /* unit */
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 6
         5: .line 438
            aload 0 /* this */
            invokevirtual java.time.Period.getDays:()I
            i2l
            lreturn
         6: .line 440
      StackMap locals:
      StackMap stack:
            new java.time.temporal.UnsupportedTemporalTypeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported unit: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* unit */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.time.temporal.UnsupportedTemporalTypeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.time.temporal.TemporalUnit unit
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/time/Period;
            0    7     1  unit  Ljava/time/temporal/TemporalUnit;
    MethodParameters:
      Name  Flags
      unit  

  public java.util.List<java.time.temporal.TemporalUnit> getUnits();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 458
            getstatic java.time.Period.SUPPORTED_UNITS:Ljava/util/List;
            areturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;
    Signature: ()Ljava/util/List<Ljava/time/temporal/TemporalUnit;>;

  public java.time.chrono.IsoChronology getChronology();
    descriptor: ()Ljava/time/chrono/IsoChronology;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 473
            getstatic java.time.chrono.IsoChronology.INSTANCE:Ljava/time/chrono/IsoChronology;
            areturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public boolean isZero();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 485
            aload 0 /* this */
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/time/Period;

  public boolean isNegative();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 496
            aload 0 /* this */
            getfield java.time.Period.years:I
            iflt 1
            aload 0 /* this */
            getfield java.time.Period.months:I
            iflt 1
            aload 0 /* this */
            getfield java.time.Period.days:I
            iflt 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/time/Period;

  public int getYears();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 512
            aload 0 /* this */
            getfield java.time.Period.years:I
            ireturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public int getMonths();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 527
            aload 0 /* this */
            getfield java.time.Period.months:I
            ireturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public int getDays();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 538
            aload 0 /* this */
            getfield java.time.Period.days:I
            ireturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public java.time.Period withYears(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // int years
         0: .line 558
            iload 1 /* years */
            aload 0 /* this */
            getfield java.time.Period.years:I
            if_icmpne 2
         1: .line 559
            aload 0 /* this */
            areturn
         2: .line 561
      StackMap locals:
      StackMap stack:
            iload 1 /* years */
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // int years
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljava/time/Period;
            0    3     1  years  I
    MethodParameters:
       Name  Flags
      years  

  public java.time.Period withMonths(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // int months
         0: .line 580
            iload 1 /* months */
            aload 0 /* this */
            getfield java.time.Period.months:I
            if_icmpne 2
         1: .line 581
            aload 0 /* this */
            areturn
         2: .line 583
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.years:I
            iload 1 /* months */
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // int months
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljava/time/Period;
            0    3     1  months  I
    MethodParameters:
        Name  Flags
      months  

  public java.time.Period withDays(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // int days
         0: .line 598
            iload 1 /* days */
            aload 0 /* this */
            getfield java.time.Period.days:I
            if_icmpne 2
         1: .line 599
            aload 0 /* this */
            areturn
         2: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 0 /* this */
            getfield java.time.Period.months:I
            iload 1 /* days */
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // int days
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/time/Period;
            0    3     1  days  I
    MethodParameters:
      Name  Flags
      days  

  public java.time.Period plus(java.time.temporal.TemporalAmount);
    descriptor: (Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.time.temporal.TemporalAmount amountToAdd
         0: .line 626
            aload 1 /* amountToAdd */
            invokestatic java.time.Period.from:(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
            astore 2 /* isoAmount */
        start local 2 // java.time.Period isoAmount
         1: .line 628
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 2 /* isoAmount */
            getfield java.time.Period.years:I
            invokestatic java.lang.Math.addExact:(II)I
         2: .line 629
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 2 /* isoAmount */
            getfield java.time.Period.months:I
            invokestatic java.lang.Math.addExact:(II)I
         3: .line 630
            aload 0 /* this */
            getfield java.time.Period.days:I
            aload 2 /* isoAmount */
            getfield java.time.Period.days:I
            invokestatic java.lang.Math.addExact:(II)I
         4: .line 627
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 2 // java.time.Period isoAmount
        end local 1 // java.time.temporal.TemporalAmount amountToAdd
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Ljava/time/Period;
            0    5     1  amountToAdd  Ljava/time/temporal/TemporalAmount;
            1    5     2    isoAmount  Ljava/time/Period;
    MethodParameters:
             Name  Flags
      amountToAdd  

  public java.time.Period plusYears(long);
    descriptor: (J)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // long yearsToAdd
         0: .line 647
            lload 1 /* yearsToAdd */
            lconst_0
            lcmp
            ifne 2
         1: .line 648
            aload 0 /* this */
            areturn
         2: .line 650
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.years:I
            i2l
            lload 1 /* yearsToAdd */
            invokestatic java.lang.Math.addExact:(JJ)J
            invokestatic java.lang.Math.toIntExact:(J)I
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // long yearsToAdd
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Ljava/time/Period;
            0    3     1  yearsToAdd  J
    MethodParameters:
            Name  Flags
      yearsToAdd  

  public java.time.Period plusMonths(long);
    descriptor: (J)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // long monthsToAdd
         0: .line 667
            lload 1 /* monthsToAdd */
            lconst_0
            lcmp
            ifne 2
         1: .line 668
            aload 0 /* this */
            areturn
         2: .line 670
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 0 /* this */
            getfield java.time.Period.months:I
            i2l
            lload 1 /* monthsToAdd */
            invokestatic java.lang.Math.addExact:(JJ)J
            invokestatic java.lang.Math.toIntExact:(J)I
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // long monthsToAdd
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Ljava/time/Period;
            0    3     1  monthsToAdd  J
    MethodParameters:
             Name  Flags
      monthsToAdd  

  public java.time.Period plusDays(long);
    descriptor: (J)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // long daysToAdd
         0: .line 687
            lload 1 /* daysToAdd */
            lconst_0
            lcmp
            ifne 2
         1: .line 688
            aload 0 /* this */
            areturn
         2: .line 690
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 0 /* this */
            getfield java.time.Period.days:I
            i2l
            lload 1 /* daysToAdd */
            invokestatic java.lang.Math.addExact:(JJ)J
            invokestatic java.lang.Math.toIntExact:(J)I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // long daysToAdd
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Ljava/time/Period;
            0    3     1  daysToAdd  J
    MethodParameters:
           Name  Flags
      daysToAdd  

  public java.time.Period minus(java.time.temporal.TemporalAmount);
    descriptor: (Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.time.temporal.TemporalAmount amountToSubtract
         0: .line 715
            aload 1 /* amountToSubtract */
            invokestatic java.time.Period.from:(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
            astore 2 /* isoAmount */
        start local 2 // java.time.Period isoAmount
         1: .line 717
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 2 /* isoAmount */
            getfield java.time.Period.years:I
            invokestatic java.lang.Math.subtractExact:(II)I
         2: .line 718
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 2 /* isoAmount */
            getfield java.time.Period.months:I
            invokestatic java.lang.Math.subtractExact:(II)I
         3: .line 719
            aload 0 /* this */
            getfield java.time.Period.days:I
            aload 2 /* isoAmount */
            getfield java.time.Period.days:I
            invokestatic java.lang.Math.subtractExact:(II)I
         4: .line 716
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 2 // java.time.Period isoAmount
        end local 1 // java.time.temporal.TemporalAmount amountToSubtract
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Ljava/time/Period;
            0    5     1  amountToSubtract  Ljava/time/temporal/TemporalAmount;
            1    5     2         isoAmount  Ljava/time/Period;
    MethodParameters:
                  Name  Flags
      amountToSubtract  

  public java.time.Period minusYears(long);
    descriptor: (J)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // long yearsToSubtract
         0: .line 736
            lload 1 /* yearsToSubtract */
            ldc -9223372036854775808
            lcmp
            ifne 1
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual java.time.Period.plusYears:(J)Ljava/time/Period;
            lconst_1
            invokevirtual java.time.Period.plusYears:(J)Ljava/time/Period;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            lload 1 /* yearsToSubtract */
            lneg
            invokevirtual java.time.Period.plusYears:(J)Ljava/time/Period;
      StackMap locals:
      StackMap stack: java.time.Period
         2: areturn
        end local 1 // long yearsToSubtract
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Ljava/time/Period;
            0    3     1  yearsToSubtract  J
    MethodParameters:
                 Name  Flags
      yearsToSubtract  

  public java.time.Period minusMonths(long);
    descriptor: (J)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // long monthsToSubtract
         0: .line 753
            lload 1 /* monthsToSubtract */
            ldc -9223372036854775808
            lcmp
            ifne 1
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual java.time.Period.plusMonths:(J)Ljava/time/Period;
            lconst_1
            invokevirtual java.time.Period.plusMonths:(J)Ljava/time/Period;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            lload 1 /* monthsToSubtract */
            lneg
            invokevirtual java.time.Period.plusMonths:(J)Ljava/time/Period;
      StackMap locals:
      StackMap stack: java.time.Period
         2: areturn
        end local 1 // long monthsToSubtract
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Ljava/time/Period;
            0    3     1  monthsToSubtract  J
    MethodParameters:
                  Name  Flags
      monthsToSubtract  

  public java.time.Period minusDays(long);
    descriptor: (J)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // long daysToSubtract
         0: .line 770
            lload 1 /* daysToSubtract */
            ldc -9223372036854775808
            lcmp
            ifne 1
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual java.time.Period.plusDays:(J)Ljava/time/Period;
            lconst_1
            invokevirtual java.time.Period.plusDays:(J)Ljava/time/Period;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            lload 1 /* daysToSubtract */
            lneg
            invokevirtual java.time.Period.plusDays:(J)Ljava/time/Period;
      StackMap locals:
      StackMap stack: java.time.Period
         2: areturn
        end local 1 // long daysToSubtract
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Ljava/time/Period;
            0    3     1  daysToSubtract  J
    MethodParameters:
                Name  Flags
      daysToSubtract  

  public java.time.Period multipliedBy(int);
    descriptor: (I)Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // int scalar
         0: .line 789
            aload 0 /* this */
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            if_acmpeq 1
            iload 1 /* scalar */
            iconst_1
            if_icmpne 2
         1: .line 790
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
         2: .line 793
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.years:I
            iload 1 /* scalar */
            invokestatic java.lang.Math.multiplyExact:(II)I
         3: .line 794
            aload 0 /* this */
            getfield java.time.Period.months:I
            iload 1 /* scalar */
            invokestatic java.lang.Math.multiplyExact:(II)I
         4: .line 795
            aload 0 /* this */
            getfield java.time.Period.days:I
            iload 1 /* scalar */
            invokestatic java.lang.Math.multiplyExact:(II)I
         5: .line 792
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 1 // int scalar
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljava/time/Period;
            0    6     1  scalar  I
    MethodParameters:
        Name  Flags
      scalar  

  public java.time.Period negated();
    descriptor: ()Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 812
            aload 0 /* this */
            iconst_m1
            invokevirtual java.time.Period.multipliedBy:(I)Ljava/time/Period;
            areturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public java.time.Period normalized();
    descriptor: ()Ljava/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // java.time.Period this
         0: .line 834
            aload 0 /* this */
            invokevirtual java.time.Period.toTotalMonths:()J
            lstore 1 /* totalMonths */
        start local 1 // long totalMonths
         1: .line 835
            lload 1 /* totalMonths */
            ldc 12
            ldiv
            lstore 3 /* splitYears */
        start local 3 // long splitYears
         2: .line 836
            lload 1 /* totalMonths */
            ldc 12
            lrem
            l2i
            istore 5 /* splitMonths */
        start local 5 // int splitMonths
         3: .line 837
            lload 3 /* splitYears */
            aload 0 /* this */
            getfield java.time.Period.years:I
            i2l
            lcmp
            ifne 5
            iload 5 /* splitMonths */
            aload 0 /* this */
            getfield java.time.Period.months:I
            if_icmpne 5
         4: .line 838
            aload 0 /* this */
            areturn
         5: .line 840
      StackMap locals: long long int
      StackMap stack:
            lload 3 /* splitYears */
            invokestatic java.lang.Math.toIntExact:(J)I
            iload 5 /* splitMonths */
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
            areturn
        end local 5 // int splitMonths
        end local 3 // long splitYears
        end local 1 // long totalMonths
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Ljava/time/Period;
            1    6     1  totalMonths  J
            2    6     3   splitYears  J
            3    6     5  splitMonths  I

  public long toTotalMonths();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 854
            aload 0 /* this */
            getfield java.time.Period.years:I
            i2l
            ldc 12
            lmul
            aload 0 /* this */
            getfield java.time.Period.months:I
            i2l
            ladd
            lreturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public java.time.temporal.Temporal addTo(java.time.temporal.Temporal);
    descriptor: (Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.time.temporal.Temporal temporal
         0: .line 894
            aload 0 /* this */
            aload 1 /* temporal */
            invokevirtual java.time.Period.validateChrono:(Ljava/time/temporal/TemporalAccessor;)V
         1: .line 895
            aload 0 /* this */
            getfield java.time.Period.months:I
            ifne 5
         2: .line 896
            aload 0 /* this */
            getfield java.time.Period.years:I
            ifeq 8
         3: .line 897
            aload 1 /* temporal */
            aload 0 /* this */
            getfield java.time.Period.years:I
            i2l
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            invokeinterface java.time.temporal.Temporal.plus:(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;
            astore 1 /* temporal */
         4: .line 899
            goto 8
         5: .line 900
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.time.Period.toTotalMonths:()J
            lstore 2 /* totalMonths */
        start local 2 // long totalMonths
         6: .line 901
            lload 2 /* totalMonths */
            lconst_0
            lcmp
            ifeq 8
         7: .line 902
            aload 1 /* temporal */
            lload 2 /* totalMonths */
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            invokeinterface java.time.temporal.Temporal.plus:(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;
            astore 1 /* temporal */
        end local 2 // long totalMonths
         8: .line 905
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.days:I
            ifeq 10
         9: .line 906
            aload 1 /* temporal */
            aload 0 /* this */
            getfield java.time.Period.days:I
            i2l
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            invokeinterface java.time.temporal.Temporal.plus:(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;
            astore 1 /* temporal */
        10: .line 908
      StackMap locals:
      StackMap stack:
            aload 1 /* temporal */
            areturn
        end local 1 // java.time.temporal.Temporal temporal
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Ljava/time/Period;
            0   11     1     temporal  Ljava/time/temporal/Temporal;
            6    8     2  totalMonths  J
    MethodParameters:
          Name  Flags
      temporal  

  public java.time.temporal.Temporal subtractFrom(java.time.temporal.Temporal);
    descriptor: (Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.time.temporal.Temporal temporal
         0: .line 947
            aload 0 /* this */
            aload 1 /* temporal */
            invokevirtual java.time.Period.validateChrono:(Ljava/time/temporal/TemporalAccessor;)V
         1: .line 948
            aload 0 /* this */
            getfield java.time.Period.months:I
            ifne 5
         2: .line 949
            aload 0 /* this */
            getfield java.time.Period.years:I
            ifeq 8
         3: .line 950
            aload 1 /* temporal */
            aload 0 /* this */
            getfield java.time.Period.years:I
            i2l
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            invokeinterface java.time.temporal.Temporal.minus:(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;
            astore 1 /* temporal */
         4: .line 952
            goto 8
         5: .line 953
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.time.Period.toTotalMonths:()J
            lstore 2 /* totalMonths */
        start local 2 // long totalMonths
         6: .line 954
            lload 2 /* totalMonths */
            lconst_0
            lcmp
            ifeq 8
         7: .line 955
            aload 1 /* temporal */
            lload 2 /* totalMonths */
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            invokeinterface java.time.temporal.Temporal.minus:(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;
            astore 1 /* temporal */
        end local 2 // long totalMonths
         8: .line 958
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.days:I
            ifeq 10
         9: .line 959
            aload 1 /* temporal */
            aload 0 /* this */
            getfield java.time.Period.days:I
            i2l
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            invokeinterface java.time.temporal.Temporal.minus:(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;
            astore 1 /* temporal */
        10: .line 961
      StackMap locals:
      StackMap stack:
            aload 1 /* temporal */
            areturn
        end local 1 // java.time.temporal.Temporal temporal
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Ljava/time/Period;
            0   11     1     temporal  Ljava/time/temporal/Temporal;
            6    8     2  totalMonths  J
    MethodParameters:
          Name  Flags
      temporal  

  private void validateChrono(java.time.temporal.TemporalAccessor);
    descriptor: (Ljava/time/temporal/TemporalAccessor;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.time.temporal.TemporalAccessor temporal
         0: .line 968
            aload 1 /* temporal */
            ldc "temporal"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 969
            aload 1 /* temporal */
            invokestatic java.time.temporal.TemporalQueries.chronology:()Ljava/time/temporal/TemporalQuery;
            invokeinterface java.time.temporal.TemporalAccessor.query:(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;
            checkcast java.time.chrono.Chronology
            astore 2 /* temporalChrono */
        start local 2 // java.time.chrono.Chronology temporalChrono
         2: .line 970
            aload 2 /* temporalChrono */
            ifnull 4
            getstatic java.time.chrono.IsoChronology.INSTANCE:Ljava/time/chrono/IsoChronology;
            aload 2 /* temporalChrono */
            invokevirtual java.time.chrono.IsoChronology.equals:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 971
            new java.time.DateTimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Chronology mismatch, expected: ISO, actual: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* temporalChrono */
            invokeinterface java.time.chrono.Chronology.getId:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.time.DateTimeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 973
      StackMap locals: java.time.chrono.Chronology
      StackMap stack:
            return
        end local 2 // java.time.chrono.Chronology temporalChrono
        end local 1 // java.time.temporal.TemporalAccessor temporal
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Ljava/time/Period;
            0    5     1        temporal  Ljava/time/temporal/TemporalAccessor;
            2    5     2  temporalChrono  Ljava/time/chrono/Chronology;
    MethodParameters:
          Name  Flags
      temporal  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.lang.Object obj
         0: .line 989
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 990
            iconst_1
            ireturn
         2: .line 992
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof java.time.Period
            ifeq 9
         3: .line 993
            aload 1 /* obj */
            checkcast java.time.Period
            astore 2 /* other */
        start local 2 // java.time.Period other
         4: .line 994
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 2 /* other */
            getfield java.time.Period.years:I
            if_icmpne 8
         5: .line 995
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 2 /* other */
            getfield java.time.Period.months:I
            if_icmpne 8
         6: .line 996
            aload 0 /* this */
            getfield java.time.Period.days:I
            aload 2 /* other */
            getfield java.time.Period.days:I
            if_icmpne 8
         7: .line 994
            iconst_1
            ireturn
      StackMap locals: java.time.Period
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // java.time.Period other
         9: .line 998
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Ljava/time/Period;
            0   10     1    obj  Ljava/lang/Object;
            4    9     2  other  Ljava/time/Period;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 1008
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 0 /* this */
            getfield java.time.Period.months:I
            bipush 8
            invokestatic java.lang.Integer.rotateLeft:(II)I
            iadd
            aload 0 /* this */
            getfield java.time.Period.days:I
            bipush 16
            invokestatic java.lang.Integer.rotateLeft:(II)I
            iadd
            ireturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.time.Period this
         0: .line 1022
            aload 0 /* this */
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            if_acmpne 2
         1: .line 1023
            ldc "P0D"
            areturn
         2: .line 1025
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuilder buf
         3: .line 1026
            aload 1 /* buf */
            bipush 80
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 1027
            aload 0 /* this */
            getfield java.time.Period.years:I
            ifeq 6
         5: .line 1028
            aload 1 /* buf */
            aload 0 /* this */
            getfield java.time.Period.years:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 89
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         6: .line 1030
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.months:I
            ifeq 8
         7: .line 1031
            aload 1 /* buf */
            aload 0 /* this */
            getfield java.time.Period.months:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 77
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         8: .line 1033
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.days:I
            ifeq 10
         9: .line 1034
            aload 1 /* buf */
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 68
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        10: .line 1036
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder buf
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/time/Period;
            3   11     1   buf  Ljava/lang/StringBuilder;

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.time.Period this
         0: .line 1055
            new java.time.Ser
            dup
            bipush 14
            aload 0 /* this */
            invokespecial java.time.Ser.<init>:(BLjava/lang/Object;)V
            areturn
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.io.ObjectInputStream s
         0: .line 1065
            new java.io.InvalidObjectException
            dup
            ldc "Deserialization via serialization delegate"
            invokespecial java.io.InvalidObjectException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.io.ObjectInputStream s
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/time/Period;
            0    1     1     s  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.InvalidObjectException
    MethodParameters:
      Name  Flags
      s     

  void writeExternal(java.io.DataOutput);
    descriptor: (Ljava/io/DataOutput;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.time.Period this
        start local 1 // java.io.DataOutput out
         0: .line 1069
            aload 1 /* out */
            aload 0 /* this */
            getfield java.time.Period.years:I
            invokeinterface java.io.DataOutput.writeInt:(I)V
         1: .line 1070
            aload 1 /* out */
            aload 0 /* this */
            getfield java.time.Period.months:I
            invokeinterface java.io.DataOutput.writeInt:(I)V
         2: .line 1071
            aload 1 /* out */
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokeinterface java.io.DataOutput.writeInt:(I)V
         3: .line 1072
            return
        end local 1 // java.io.DataOutput out
        end local 0 // java.time.Period this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/time/Period;
            0    4     1   out  Ljava/io/DataOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  static java.time.Period readExternal(java.io.DataInput);
    descriptor: (Ljava/io/DataInput;)Ljava/time/Period;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.io.DataInput in
         0: .line 1075
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 1 /* years */
        start local 1 // int years
         1: .line 1076
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 2 /* months */
        start local 2 // int months
         2: .line 1077
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 3 /* days */
        start local 3 // int days
         3: .line 1078
            iload 1 /* years */
            iload 2 /* months */
            iload 3 /* days */
            invokestatic java.time.Period.of:(III)Ljava/time/Period;
            areturn
        end local 3 // int days
        end local 2 // int months
        end local 1 // int years
        end local 0 // java.io.DataInput in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0      in  Ljava/io/DataInput;
            1    4     1   years  I
            2    4     2  months  I
            3    4     3    days  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public java.time.chrono.Chronology getChronology();
    descriptor: ()Ljava/time/chrono/Chronology;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.time.Period.getChronology:()Ljava/time/chrono/IsoChronology;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.time.chrono.ChronoPeriod normalized();
    descriptor: ()Ljava/time/chrono/ChronoPeriod;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.time.Period.normalized:()Ljava/time/Period;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.time.chrono.ChronoPeriod plus(java.time.temporal.TemporalAmount);
    descriptor: (Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual java.time.Period.plus:(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.time.chrono.ChronoPeriod multipliedBy(int);
    descriptor: (I)Ljava/time/chrono/ChronoPeriod;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual java.time.Period.multipliedBy:(I)Ljava/time/Period;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.time.chrono.ChronoPeriod minus(java.time.temporal.TemporalAmount);
    descriptor: (Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual java.time.Period.minus:(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.time.chrono.ChronoPeriod negated();
    descriptor: ()Ljava/time/chrono/ChronoPeriod;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.time.Period.negated:()Ljava/time/Period;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "Period.java"