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 139
            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 148
            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 147
            putstatic java.time.Period.PATTERN:Ljava/util/regex/Pattern;
         3: .line 153
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            invokestatic java.util.List.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)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 179
            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 192
            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 206
            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 219
            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 234
            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 258
            aload 0 /* amount */
            instanceof java.time.Period
            ifeq 2
         1: .line 259
            aload 0 /* amount */
            checkcast java.time.Period
            areturn
         2: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* amount */
            instanceof java.time.chrono.ChronoPeriod
            ifeq 5
         3: .line 262
            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 263
            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 266
      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 267
            iconst_0
            istore 1 /* years */
        start local 1 // int years
         7: .line 268
            iconst_0
            istore 2 /* months */
        start local 2 // int months
         8: .line 269
            iconst_0
            istore 3 /* days */
        start local 3 // int days
         9: .line 270
            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 271
            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 272
            aload 4 /* unit */
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 15
        13: .line 273
            lload 6 /* unitAmount */
            invokestatic java.lang.Math.toIntExact:(J)I
            istore 1 /* years */
        14: .line 274
            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 275
            lload 6 /* unitAmount */
            invokestatic java.lang.Math.toIntExact:(J)I
            istore 2 /* months */
        17: .line 276
            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 277
            lload 6 /* unitAmount */
            invokestatic java.lang.Math.toIntExact:(J)I
            istore 3 /* days */
        20: .line 278
            goto 22
        21: .line 279
      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 270
      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 282
            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=15, args_size=1
        start local 0 // java.lang.CharSequence text
         0: .line 326
            aload 0 /* text */
            ldc "text"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 327
            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 328
            aload 1 /* matcher */
            invokevirtual java.util.regex.Matcher.matches:()Z
            ifeq 24
         3: .line 329
            aload 0 /* text */
            aload 1 /* matcher */
            iconst_1
            invokevirtual java.util.regex.Matcher.start:(I)I
            aload 1 /* matcher */
            iconst_1
            invokevirtual java.util.regex.Matcher.end:(I)I
            bipush 45
            invokestatic java.time.Period.charMatch:(Ljava/lang/CharSequence;IIC)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 330
            aload 1 /* matcher */
            iconst_2
            invokevirtual java.util.regex.Matcher.start:(I)I
            istore 3 /* yearStart */
        start local 3 // int yearStart
         7: aload 1 /* matcher */
            iconst_2
            invokevirtual java.util.regex.Matcher.end:(I)I
            istore 4 /* yearEnd */
        start local 4 // int yearEnd
         8: .line 331
            aload 1 /* matcher */
            iconst_3
            invokevirtual java.util.regex.Matcher.start:(I)I
            istore 5 /* monthStart */
        start local 5 // int monthStart
         9: aload 1 /* matcher */
            iconst_3
            invokevirtual java.util.regex.Matcher.end:(I)I
            istore 6 /* monthEnd */
        start local 6 // int monthEnd
        10: .line 332
            aload 1 /* matcher */
            iconst_4
            invokevirtual java.util.regex.Matcher.start:(I)I
            istore 7 /* weekStart */
        start local 7 // int weekStart
        11: aload 1 /* matcher */
            iconst_4
            invokevirtual java.util.regex.Matcher.end:(I)I
            istore 8 /* weekEnd */
        start local 8 // int weekEnd
        12: .line 333
            aload 1 /* matcher */
            iconst_5
            invokevirtual java.util.regex.Matcher.start:(I)I
            istore 9 /* dayStart */
        start local 9 // int dayStart
        13: aload 1 /* matcher */
            iconst_5
            invokevirtual java.util.regex.Matcher.end:(I)I
            istore 10 /* dayEnd */
        start local 10 // int dayEnd
        14: .line 334
            iload 3 /* yearStart */
            ifge 15
            iload 5 /* monthStart */
            ifge 15
            iload 7 /* weekStart */
            ifge 15
            iload 9 /* dayStart */
            iflt 24
        15: .line 336
      StackMap locals: java.lang.CharSequence java.util.regex.Matcher int int int int int int int int int
      StackMap stack:
            aload 0 /* text */
            iload 3 /* yearStart */
            iload 4 /* yearEnd */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;III)I
            istore 11 /* years */
        start local 11 // int years
        16: .line 337
            aload 0 /* text */
            iload 5 /* monthStart */
            iload 6 /* monthEnd */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;III)I
            istore 12 /* months */
        start local 12 // int months
        17: .line 338
            aload 0 /* text */
            iload 7 /* weekStart */
            iload 8 /* weekEnd */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;III)I
            istore 13 /* weeks */
        start local 13 // int weeks
        18: .line 339
            aload 0 /* text */
            iload 9 /* dayStart */
            iload 10 /* dayEnd */
            iload 2 /* negate */
            invokestatic java.time.Period.parseNumber:(Ljava/lang/CharSequence;III)I
            istore 14 /* days */
        start local 14 // int days
        19: .line 340
            iload 14 /* days */
            iload 13 /* weeks */
            bipush 7
            invokestatic java.lang.Math.multiplyExact:(II)I
            invokestatic java.lang.Math.addExact:(II)I
            istore 14 /* days */
        20: .line 341
            iload 11 /* years */
            iload 12 /* months */
            iload 14 /* days */
            invokestatic java.time.Period.create:(III)Ljava/time/Period;
        21: areturn
        end local 14 // int days
        end local 13 // int weeks
        end local 12 // int months
        end local 11 // int years
        22: .line 342
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            astore 11 /* ex */
        start local 11 // java.lang.NumberFormatException ex
        23: .line 343
            new java.time.format.DateTimeParseException
            dup
            ldc "Text cannot be parsed to a Period"
            aload 0 /* text */
            iconst_0
            aload 11 /* ex */
            invokespecial java.time.format.DateTimeParseException.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;ILjava/lang/Throwable;)V
            athrow
        end local 11 // java.lang.NumberFormatException ex
        end local 10 // int dayEnd
        end local 9 // int dayStart
        end local 8 // int weekEnd
        end local 7 // int weekStart
        end local 6 // int monthEnd
        end local 5 // int monthStart
        end local 4 // int yearEnd
        end local 3 // int yearStart
        end local 2 // int negate
        24: .line 347
      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   25     0        text  Ljava/lang/CharSequence;
            2   25     1     matcher  Ljava/util/regex/Matcher;
            6   24     2      negate  I
            7   24     3   yearStart  I
            8   24     4     yearEnd  I
            9   24     5  monthStart  I
           10   24     6    monthEnd  I
           11   24     7   weekStart  I
           12   24     8     weekEnd  I
           13   24     9    dayStart  I
           14   24    10      dayEnd  I
           16   22    11       years  I
           17   22    12      months  I
           18   22    13       weeks  I
           19   22    14        days  I
           23   24    11          ex  Ljava/lang/NumberFormatException;
      Exception table:
        from    to  target  type
          15    21      22  Class java.lang.NumberFormatException
    MethodParameters:
      Name  Flags
      text  

  private static boolean charMatch(java.lang.CharSequence, int, int, char);
    descriptor: (Ljava/lang/CharSequence;IIC)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // java.lang.CharSequence text
        start local 1 // int start
        start local 2 // int end
        start local 3 // char c
         0: .line 351
            iload 1 /* start */
            iflt 1
            iload 2 /* end */
            iload 1 /* start */
            iconst_1
            iadd
            if_icmpne 1
            aload 0 /* text */
            iload 1 /* start */
            invokeinterface java.lang.CharSequence.charAt:(I)C
            iload 3 /* c */
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 3 // char c
        end local 2 // int end
        end local 1 // int start
        end local 0 // java.lang.CharSequence text
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   text  Ljava/lang/CharSequence;
            0    2     1  start  I
            0    2     2    end  I
            0    2     3      c  C
    MethodParameters:
       Name  Flags
      text   
      start  
      end    
      c      

  private static int parseNumber(java.lang.CharSequence, int, int, int);
    descriptor: (Ljava/lang/CharSequence;III)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // java.lang.CharSequence text
        start local 1 // int start
        start local 2 // int end
        start local 3 // int negate
         0: .line 355
            iload 1 /* start */
            iflt 1
            iload 2 /* end */
            ifge 2
         1: .line 356
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 358
      StackMap locals:
      StackMap stack:
            aload 0 /* text */
            iload 1 /* start */
            iload 2 /* end */
            bipush 10
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/CharSequence;III)I
            istore 4 /* val */
        start local 4 // int val
         3: .line 360
            iload 4 /* val */
            iload 3 /* negate */
            invokestatic java.lang.Math.multiplyExact:(II)I
         4: ireturn
         5: .line 361
      StackMap locals: java.lang.CharSequence int int int int
      StackMap stack: java.lang.ArithmeticException
            astore 5 /* ex */
        start local 5 // java.lang.ArithmeticException ex
         6: .line 362
            new java.time.format.DateTimeParseException
            dup
            ldc "Text cannot be parsed to a Period"
            aload 0 /* text */
            iconst_0
            aload 5 /* ex */
            invokespecial java.time.format.DateTimeParseException.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;ILjava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.ArithmeticException ex
        end local 4 // int val
        end local 3 // int negate
        end local 2 // int end
        end local 1 // int start
        end local 0 // java.lang.CharSequence text
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    text  Ljava/lang/CharSequence;
            0    7     1   start  I
            0    7     2     end  I
            0    7     3  negate  I
            3    7     4     val  I
            6    7     5      ex  Ljava/lang/ArithmeticException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.ArithmeticException
    MethodParameters:
        Name  Flags
      text    
      start   
      end     
      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 387
            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 399
            iload 0 /* years */
            iload 1 /* months */
            ior
            iload 2 /* days */
            ior
            ifne 2
         1: .line 400
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            areturn
         2: .line 402
      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 412
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 413
            aload 0 /* this */
            iload 1 /* years */
            putfield java.time.Period.years:I
         2: .line 414
            aload 0 /* this */
            iload 2 /* months */
            putfield java.time.Period.months:I
         3: .line 415
            aload 0 /* this */
            iload 3 /* days */
            putfield java.time.Period.days:I
         4: .line 416
            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 434
            aload 1 /* unit */
            getstatic java.time.temporal.ChronoUnit.YEARS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 2
         1: .line 435
            aload 0 /* this */
            invokevirtual java.time.Period.getYears:()I
            i2l
            lreturn
         2: .line 436
      StackMap locals:
      StackMap stack:
            aload 1 /* unit */
            getstatic java.time.temporal.ChronoUnit.MONTHS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 4
         3: .line 437
            aload 0 /* this */
            invokevirtual java.time.Period.getMonths:()I
            i2l
            lreturn
         4: .line 438
      StackMap locals:
      StackMap stack:
            aload 1 /* unit */
            getstatic java.time.temporal.ChronoUnit.DAYS:Ljava/time/temporal/ChronoUnit;
            if_acmpne 6
         5: .line 439
            aload 0 /* this */
            invokevirtual java.time.Period.getDays:()I
            i2l
            lreturn
         6: .line 441
      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 459
            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 474
            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 486
            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 497
            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 513
            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 528
            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 539
            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 559
            iload 1 /* years */
            aload 0 /* this */
            getfield java.time.Period.years:I
            if_icmpne 2
         1: .line 560
            aload 0 /* this */
            areturn
         2: .line 562
      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 581
            iload 1 /* months */
            aload 0 /* this */
            getfield java.time.Period.months:I
            if_icmpne 2
         1: .line 582
            aload 0 /* this */
            areturn
         2: .line 584
      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 599
            iload 1 /* days */
            aload 0 /* this */
            getfield java.time.Period.days:I
            if_icmpne 2
         1: .line 600
            aload 0 /* this */
            areturn
         2: .line 602
      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 627
            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 629
            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 630
            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 631
            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 628
            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 648
            lload 1 /* yearsToAdd */
            lconst_0
            lcmp
            ifne 2
         1: .line 649
            aload 0 /* this */
            areturn
         2: .line 651
      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 668
            lload 1 /* monthsToAdd */
            lconst_0
            lcmp
            ifne 2
         1: .line 669
            aload 0 /* this */
            areturn
         2: .line 671
      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 688
            lload 1 /* daysToAdd */
            lconst_0
            lcmp
            ifne 2
         1: .line 689
            aload 0 /* this */
            areturn
         2: .line 691
      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 716
            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 718
            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 719
            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 720
            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 717
            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 737
            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 754
            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 771
            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 790
            aload 0 /* this */
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            if_acmpeq 1
            iload 1 /* scalar */
            iconst_1
            if_icmpne 2
         1: .line 791
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
         2: .line 794
      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 795
            aload 0 /* this */
            getfield java.time.Period.months:I
            iload 1 /* scalar */
            invokestatic java.lang.Math.multiplyExact:(II)I
         4: .line 796
            aload 0 /* this */
            getfield java.time.Period.days:I
            iload 1 /* scalar */
            invokestatic java.lang.Math.multiplyExact:(II)I
         5: .line 793
            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 813
            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 835
            aload 0 /* this */
            invokevirtual java.time.Period.toTotalMonths:()J
            lstore 1 /* totalMonths */
        start local 1 // long totalMonths
         1: .line 836
            lload 1 /* totalMonths */
            ldc 12
            ldiv
            lstore 3 /* splitYears */
        start local 3 // long splitYears
         2: .line 837
            lload 1 /* totalMonths */
            ldc 12
            lrem
            l2i
            istore 5 /* splitMonths */
        start local 5 // int splitMonths
         3: .line 838
            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 839
            aload 0 /* this */
            areturn
         5: .line 841
      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 855
            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 895
            aload 0 /* this */
            aload 1 /* temporal */
            invokevirtual java.time.Period.validateChrono:(Ljava/time/temporal/TemporalAccessor;)V
         1: .line 896
            aload 0 /* this */
            getfield java.time.Period.months:I
            ifne 5
         2: .line 897
            aload 0 /* this */
            getfield java.time.Period.years:I
            ifeq 8
         3: .line 898
            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 900
            goto 8
         5: .line 901
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.time.Period.toTotalMonths:()J
            lstore 2 /* totalMonths */
        start local 2 // long totalMonths
         6: .line 902
            lload 2 /* totalMonths */
            lconst_0
            lcmp
            ifeq 8
         7: .line 903
            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 906
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.days:I
            ifeq 10
         9: .line 907
            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 909
      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 948
            aload 0 /* this */
            aload 1 /* temporal */
            invokevirtual java.time.Period.validateChrono:(Ljava/time/temporal/TemporalAccessor;)V
         1: .line 949
            aload 0 /* this */
            getfield java.time.Period.months:I
            ifne 5
         2: .line 950
            aload 0 /* this */
            getfield java.time.Period.years:I
            ifeq 8
         3: .line 951
            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 953
            goto 8
         5: .line 954
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.time.Period.toTotalMonths:()J
            lstore 2 /* totalMonths */
        start local 2 // long totalMonths
         6: .line 955
            lload 2 /* totalMonths */
            lconst_0
            lcmp
            ifeq 8
         7: .line 956
            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 959
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.days:I
            ifeq 10
         9: .line 960
            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 962
      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 969
            aload 1 /* temporal */
            ldc "temporal"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 970
            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 971
            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 972
            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 974
      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 990
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 991
            iconst_1
            ireturn
         2: .line 993
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof java.time.Period
            ifeq 9
         3: .line 994
            aload 1 /* obj */
            checkcast java.time.Period
            astore 2 /* other */
        start local 2 // java.time.Period other
         4: .line 995
            aload 0 /* this */
            getfield java.time.Period.years:I
            aload 2 /* other */
            getfield java.time.Period.years:I
            if_icmpne 8
         5: .line 996
            aload 0 /* this */
            getfield java.time.Period.months:I
            aload 2 /* other */
            getfield java.time.Period.months:I
            if_icmpne 8
         6: .line 997
            aload 0 /* this */
            getfield java.time.Period.days:I
            aload 2 /* other */
            getfield java.time.Period.days:I
            if_icmpne 8
         7: .line 995
            iconst_1
            ireturn
      StackMap locals: java.time.Period
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // java.time.Period other
         9: .line 999
      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 1009
            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 1023
            aload 0 /* this */
            getstatic java.time.Period.ZERO:Ljava/time/Period;
            if_acmpne 2
         1: .line 1024
            ldc "P0D"
            areturn
         2: .line 1026
      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 1027
            aload 1 /* buf */
            bipush 80
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 1028
            aload 0 /* this */
            getfield java.time.Period.years:I
            ifeq 6
         5: .line 1029
            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 1031
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.months:I
            ifeq 8
         7: .line 1032
            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 1034
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.time.Period.days:I
            ifeq 10
         9: .line 1035
            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 1037
      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 1056
            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 1066
            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 1070
            aload 1 /* out */
            aload 0 /* this */
            getfield java.time.Period.years:I
            invokeinterface java.io.DataOutput.writeInt:(I)V
         1: .line 1071
            aload 1 /* out */
            aload 0 /* this */
            getfield java.time.Period.months:I
            invokeinterface java.io.DataOutput.writeInt:(I)V
         2: .line 1072
            aload 1 /* out */
            aload 0 /* this */
            getfield java.time.Period.days:I
            invokeinterface java.io.DataOutput.writeInt:(I)V
         3: .line 1073
            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 1076
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 1 /* years */
        start local 1 // int years
         1: .line 1077
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 2 /* months */
        start local 2 // int months
         2: .line 1078
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 3 /* days */
        start local 3 // int days
         3: .line 1079
            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"