github.com/frodejac/aoc-2022@v0.0.0-20221213081734-037c741b1c89/assets/day10/input.txt (about)

     1  Monkey 0:
     2    Starting items: 56, 56, 92, 65, 71, 61, 79
     3    Operation: new = old * 7
     4    Test: divisible by 3
     5      If true: throw to monkey 3
     6      If false: throw to monkey 7
     7  
     8  Monkey 1:
     9    Starting items: 61, 85
    10    Operation: new = old + 5
    11    Test: divisible by 11
    12      If true: throw to monkey 6
    13      If false: throw to monkey 4
    14  
    15  Monkey 2:
    16    Starting items: 54, 96, 82, 78, 69
    17    Operation: new = old * old
    18    Test: divisible by 7
    19      If true: throw to monkey 0
    20      If false: throw to monkey 7
    21  
    22  Monkey 3:
    23    Starting items: 57, 59, 65, 95
    24    Operation: new = old + 4
    25    Test: divisible by 2
    26      If true: throw to monkey 5
    27      If false: throw to monkey 1
    28  
    29  Monkey 4:
    30    Starting items: 62, 67, 80
    31    Operation: new = old * 17
    32    Test: divisible by 19
    33      If true: throw to monkey 2
    34      If false: throw to monkey 6
    35  
    36  Monkey 5:
    37    Starting items: 91
    38    Operation: new = old + 7
    39    Test: divisible by 5
    40      If true: throw to monkey 1
    41      If false: throw to monkey 4
    42  
    43  Monkey 6:
    44    Starting items: 79, 83, 64, 52, 77, 56, 63, 92
    45    Operation: new = old + 6
    46    Test: divisible by 17
    47      If true: throw to monkey 2
    48      If false: throw to monkey 0
    49  
    50  Monkey 7:
    51    Starting items: 50, 97, 76, 96, 80, 56
    52    Operation: new = old + 3
    53    Test: divisible by 13
    54      If true: throw to monkey 3
    55      If false: throw to monkey 5