Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b7ba2d10a7 | |||
| 34259208d5 | |||
| 67c9cf0391 | |||
| 9aa3c1cace | |||
| 3399bd8c43 | |||
| 77dd1e2cc5 | |||
| 1923e54548 | |||
| ee2dfbd40b | |||
| 7d8db7b493 | |||
| f2280bc2b5 | |||
| b38cdcde07 | |||
| d394c8697f | |||
| 23e3b517e9 | |||
| e65fbe9f63 | |||
| 4008858df8 | |||
| 0454187323 | |||
| 9fa97a1d25 | |||
| 3e839308ff | |||
| da3628c9a7 | |||
| 6ab2fbce00 | |||
| 5c401d8ae0 | |||
| ea41ce0e24 |
@@ -9,10 +9,7 @@ object Libs {
|
||||
const val fx = "io.arrow-kt:arrow-fx:$version"
|
||||
}
|
||||
|
||||
object EclipseCollection {
|
||||
const val api = "org.eclipse.collections:eclipse-collections-api:10.4.0"
|
||||
const val core = "org.eclipse.collections:eclipse-collections:10.4.0"
|
||||
}
|
||||
const val eclipseCollections = "org.eclipse.collections:eclipse-collections:10.4.0"
|
||||
|
||||
object Jmh {
|
||||
const val core = "org.openjdk.jmh:jmh-core:1.26"
|
||||
@@ -29,7 +26,7 @@ object Libs {
|
||||
|
||||
object Slf4J {
|
||||
const val api = "org.slf4j:slf4j-api:1.7.25"
|
||||
const val logback = "ch.qos.logback:logback-classic:1.2.3"
|
||||
const val simple = "org.slf4j:slf4j-simple:1.7.30"
|
||||
const val kotlin = "io.github.microutils:kotlin-logging-jvm:2.0.3"
|
||||
}
|
||||
|
||||
|
||||
@@ -10,4 +10,15 @@ dependencies {
|
||||
implementation(Libs.Micronaut.inject)
|
||||
implementation(Libs.Micronaut.kotlin)
|
||||
kapt(Libs.Micronaut.processor)
|
||||
|
||||
implementation(Libs.eclipseCollections) {
|
||||
because("Primitive collections mostly")
|
||||
}
|
||||
|
||||
implementation(Libs.Arrow.core) {
|
||||
because("Just in case")
|
||||
}
|
||||
|
||||
testImplementation(Libs.Jmh.core)
|
||||
testImplementation(Libs.Jmh.processor)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
|
||||
data class PasswordEntry(val range: IntRange, val letter: Char, val password: String)
|
||||
|
||||
@Day(2)
|
||||
class Day02(@Lines input: Input<List<String>>) {
|
||||
private val regex = "^(\\d+)-(\\d+) ([a-z]): (.*)$".toRegex()
|
||||
|
||||
private val passwords = input.value.map {
|
||||
val (_, min, max, letter, password) = regex.find(it)!!.groupValues
|
||||
PasswordEntry(min.toInt()..max.toInt(), letter[0], password)
|
||||
}
|
||||
|
||||
fun part1() = passwords.count { it.password.count { char -> char == it.letter } in it.range }
|
||||
|
||||
fun part2() = passwords.count { (range, letter, pwd) ->
|
||||
(pwd[range.first - 1] == letter) xor (pwd[range.last - 1] == letter)
|
||||
}
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day02>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
|
||||
data class Slope(val x: Int, val y: Int)
|
||||
|
||||
@Day(3)
|
||||
class Day03(@Lines val input: Input<List<String>>) {
|
||||
|
||||
fun part1(slope: Slope = Slope(x = 3, y = 1)): Int {
|
||||
val grid = input.value
|
||||
var trees = 0
|
||||
var x = 0
|
||||
var y = 0
|
||||
|
||||
val width = grid.first().length
|
||||
|
||||
while (y < grid.size - 1) {
|
||||
x += slope.x
|
||||
y += slope.y
|
||||
|
||||
if (grid[y][x % width] == '#') trees++
|
||||
}
|
||||
|
||||
return trees
|
||||
}
|
||||
|
||||
fun part2(): Long = listOf(
|
||||
Slope(x = 1, y = 1),
|
||||
Slope(x = 3, y = 1),
|
||||
Slope(x = 5, y = 1),
|
||||
Slope(x = 7, y = 1),
|
||||
Slope(x = 1, y = 2),
|
||||
)
|
||||
.map { part1(it).toLong() }
|
||||
.reduce { acc, trees -> acc * trees }
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day03>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Text
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
|
||||
typealias Entry = Pair<String, String>
|
||||
typealias Entries = List<Entry>
|
||||
|
||||
@Day(4)
|
||||
class Day04(@Text val input: Input<String>) {
|
||||
|
||||
val entries = input.value.split("\n\n").map {
|
||||
it.split(" ", "\n").map { it.split(":").let { (k, v) -> k to v } }
|
||||
}
|
||||
|
||||
private fun Entries.hasRequiredKeys() = map { it.first }
|
||||
.containsAll(listOf("byr", "iyr", "eyr", "hgt", "hcl", "ecl", "pid"))
|
||||
|
||||
fun part1() = entries.count { it.hasRequiredKeys() }
|
||||
|
||||
private val hclRegex = Regex("#[0-9a-f]{6}")
|
||||
private val pidRegex = Regex("[0-9]{9}")
|
||||
|
||||
private fun Entry.isValid() = let { (k, v) ->
|
||||
when (k) {
|
||||
"byr" -> v.toInt() in 1920..2002
|
||||
"iyr" -> v.toInt() in 2010..2020
|
||||
"eyr" -> v.toInt() in 2020..2030
|
||||
"hgt" -> when {
|
||||
v.endsWith("cm") -> v.removeSuffix("cm").toInt() in 150..193
|
||||
v.endsWith("in") -> v.removeSuffix("in").toInt() in 59..76
|
||||
else -> false
|
||||
}
|
||||
"hcl" -> v.matches(hclRegex)
|
||||
"ecl" -> v in arrayOf("amb", "blu", "brn", "gry", "grn", "hzl", "oth")
|
||||
"pid" -> v.matches(pidRegex)
|
||||
else -> true
|
||||
}
|
||||
}
|
||||
|
||||
fun part2() = entries.count { it.hasRequiredKeys() && it.all { it.isValid() } }
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day04>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
|
||||
@Day(5)
|
||||
class Day05(@Lines val input: Input<List<String>>) {
|
||||
|
||||
private val ids = input.value.map {
|
||||
it.replace("F", "0")
|
||||
.replace("B", "1")
|
||||
.replace("L", "0")
|
||||
.replace("R", "1")
|
||||
.toInt(2)
|
||||
}.sorted()
|
||||
|
||||
fun part1() = ids.last()
|
||||
|
||||
fun part2() = ids.windowed(size = 2, step = 1)
|
||||
.find { (a, b) -> b - a > 1 }!!
|
||||
.first() + 1
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day05>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Text
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.eclipse.collections.impl.factory.primitive.CharBags
|
||||
|
||||
@Day(6)
|
||||
class Day06(@Text val input: Input<String>) {
|
||||
|
||||
private val groups = input.value.split("\n\n")
|
||||
|
||||
fun part1() = groups.sumBy { it.replace("\n", "").toCharArray().toSet().size }
|
||||
|
||||
fun part2() = groups.sumBy {
|
||||
val group = it.split("\n")
|
||||
val bag = CharBags.mutable.empty()
|
||||
|
||||
group.forEach { chars: String -> chars.forEach { bag.add(it) } }
|
||||
|
||||
bag.selectByOccurrences { group.size == it }.toSet().size()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day06>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.eclipse.collections.api.factory.Stacks
|
||||
import org.eclipse.collections.api.multimap.list.ImmutableListMultimap
|
||||
import org.eclipse.collections.api.stack.MutableStack
|
||||
import org.eclipse.collections.impl.factory.Multimaps
|
||||
|
||||
data class Bag(val count: Int, val color: String)
|
||||
|
||||
@Day(7)
|
||||
class Day07(@Lines val input: Input<List<String>>) {
|
||||
|
||||
private val map: ImmutableListMultimap<String, Bag>
|
||||
|
||||
init {
|
||||
val mutableMap = Multimaps.mutable.list.empty<String, Bag>()
|
||||
|
||||
val colorRegex = "^(\\w+ \\w+)".toRegex()
|
||||
val requirementRegex = "(\\d+) (\\w+ \\w+) bag".toRegex()
|
||||
|
||||
for (line in input.value) {
|
||||
val outerColor = colorRegex.find(line)!!.groupValues[1]
|
||||
for (match in requirementRegex.findAll(line)) {
|
||||
val (_, count, color) = match.groupValues
|
||||
mutableMap.put(outerColor, Bag(count.toInt(), color))
|
||||
}
|
||||
}
|
||||
|
||||
map = mutableMap.toImmutable()
|
||||
}
|
||||
|
||||
private fun bagSequence(rootColor: String): Sequence<Bag> = sequence {
|
||||
val stack: MutableStack<Bag> = Stacks.mutable.ofAll(map.get(rootColor))
|
||||
while (stack.notEmpty()) {
|
||||
val current = stack.pop().also { yield(it) }
|
||||
map[current.color]?.let {
|
||||
it.forEach { (count, color) ->
|
||||
stack.push(Bag(current.count * count, color))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun part1() = map.keySet().count { bagSequence(it).any { it.color == "shiny gold" } }
|
||||
|
||||
fun part2() = bagSequence("shiny gold").sumBy { it.count }
|
||||
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day07>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.eclipse.collections.impl.factory.primitive.IntLists
|
||||
import org.eclipse.collections.impl.factory.primitive.IntSets
|
||||
|
||||
@Day(8)
|
||||
class Day08(@Lines val input: Input<List<String>>) {
|
||||
|
||||
private val instructions = input.value.map {
|
||||
val words = it.split(" ")
|
||||
Instruction(Operation.valueOf(words[0].capitalize()), words[1].toInt())
|
||||
}.toTypedArray()
|
||||
|
||||
fun part1() = run(instructions)
|
||||
|
||||
private fun run(instructions: Array<Instruction>): VmResult {
|
||||
var acc = 0
|
||||
var ptr = 0
|
||||
|
||||
val visited = IntSets.mutable.empty()
|
||||
|
||||
while (visited.add(ptr)) {
|
||||
val instruction = instructions[ptr]
|
||||
when (instruction.operation) {
|
||||
Operation.Acc -> {
|
||||
acc += instruction.argument
|
||||
ptr++
|
||||
}
|
||||
Operation.Jmp -> ptr += instruction.argument
|
||||
Operation.Nop -> ptr++
|
||||
}
|
||||
if (ptr !in instructions.indices) {
|
||||
return VmResult.Terminated(acc)
|
||||
}
|
||||
}
|
||||
|
||||
return VmResult.Looped(acc)
|
||||
}
|
||||
|
||||
fun part2(): VmResult {
|
||||
val possibleMutations = IntLists.mutable.empty()
|
||||
instructions.forEachIndexed { i, e ->
|
||||
if (e.operation == Operation.Jmp || e.operation == Operation.Nop) possibleMutations.add(i)
|
||||
}
|
||||
|
||||
for (index in possibleMutations.toArray()) {
|
||||
val copy = instructions.copyOf().also {
|
||||
val modifiedOperation = if (it[index].operation == Operation.Nop) Operation.Jmp else Operation.Nop
|
||||
it[index] = it[index].copy(operation = modifiedOperation)
|
||||
}
|
||||
|
||||
val res = run(copy)
|
||||
if (res is VmResult.Terminated) return res
|
||||
}
|
||||
|
||||
error("No result found")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
enum class Operation { Acc, Jmp, Nop }
|
||||
|
||||
data class Instruction(val operation: Operation, val argument: Int)
|
||||
|
||||
sealed class VmResult {
|
||||
data class Looped(val acc: Int) : VmResult()
|
||||
data class Terminated(val acc: Int) : VmResult()
|
||||
}
|
||||
|
||||
fun main() {
|
||||
val day = createDay<Day08>()
|
||||
println(day.part1())
|
||||
println(day.part2())
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
|
||||
@Day(9)
|
||||
class Day09(@Lines val input: Input<LongArray>) {
|
||||
|
||||
private var part1Result = 0L
|
||||
|
||||
fun part1(): Long? {
|
||||
val longs = input.value
|
||||
|
||||
for (windowStart in 0 until longs.size - 26) {
|
||||
val last = longs[windowStart + 25]
|
||||
if (!isValid(windowStart, last)) {
|
||||
part1Result = last
|
||||
return last
|
||||
}
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
private fun isValid(windowStart: Int, last: Long): Boolean {
|
||||
for (i in windowStart until windowStart + 25) {
|
||||
for (j in windowStart + 1 until windowStart + 25) {
|
||||
val f = input.value[i]
|
||||
val s = input.value[j]
|
||||
if (f + s == last && f != s) return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
fun part2(): Long {
|
||||
var size = 2
|
||||
while (true) {
|
||||
for (startIndex in input.value.indices) {
|
||||
val lastIndex = input.value.size - 1 - size
|
||||
if (startIndex + size > lastIndex) break
|
||||
val slice = input.value.sliceArray(startIndex..startIndex + size)
|
||||
if (slice.sum() == part1Result) return slice.minOrNull()!! + slice.maxOrNull()!!
|
||||
}
|
||||
size++
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day09>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.eclipse.collections.api.list.primitive.MutableIntList
|
||||
import org.eclipse.collections.impl.factory.primitive.IntLists
|
||||
import org.eclipse.collections.impl.factory.primitive.IntLongMaps
|
||||
|
||||
@Day(10)
|
||||
class Day10(@Lines val input: Input<IntArray>) {
|
||||
|
||||
fun part1(): Int {
|
||||
val sorted = IntLists.mutable.of(0, *input.value).apply {
|
||||
sortThis()
|
||||
add(last + 3)
|
||||
}.toArray().toList()
|
||||
|
||||
var ones = 0
|
||||
var threes = 0
|
||||
|
||||
sorted.zipWithNext().forEach { (a, b) ->
|
||||
if (a + 1 == b) ones++
|
||||
else if (a + 3 == b) threes++
|
||||
}
|
||||
|
||||
return ones * threes
|
||||
}
|
||||
|
||||
fun part2(): Long {
|
||||
val sorted: MutableIntList = IntLists.mutable.of(*input.value).apply { sortThis() }
|
||||
|
||||
val map = IntLongMaps.mutable.empty().apply {
|
||||
put(0, 1L)
|
||||
}
|
||||
|
||||
sorted.forEach { i ->
|
||||
map.put(i, map.get(i - 1) + map.get(i - 2) + map.get(i - 3))
|
||||
}
|
||||
|
||||
return map.get(sorted.last)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day10>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Day
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.Lines
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
|
||||
typealias Seats = Array<CharArray>
|
||||
|
||||
fun Seats.deepClone(): Seats = map { it.clone() }.toTypedArray()
|
||||
|
||||
operator fun Seats.get(x: Int, y: Int): Char = this[y][x]
|
||||
operator fun Seats.set(x: Int, y: Int, value: Char) {
|
||||
this[y][x] = value
|
||||
}
|
||||
|
||||
operator fun Seats.contains(xy: Pair<Int, Int>): Boolean {
|
||||
val (x, y) = xy
|
||||
return x in 0 until width && y in 0 until height
|
||||
}
|
||||
|
||||
val Seats.width get() = first().size
|
||||
val Seats.height get() = size
|
||||
|
||||
fun Seats.asGridString() = joinToString("\n") { it.joinToString("") }
|
||||
fun Seats.countOccupied() = sumBy { it.count { it == '#' } }
|
||||
|
||||
@Day(11)
|
||||
class Day11(@Lines val input: Input<List<String>>) {
|
||||
|
||||
private val seats: Seats = input.value.map { it.toCharArray() }.toTypedArray()
|
||||
|
||||
private val directions = listOf(
|
||||
-1 to -1,
|
||||
+0 to -1,
|
||||
+1 to -1,
|
||||
+1 to +0,
|
||||
+1 to +1,
|
||||
+0 to +1,
|
||||
-1 to +1,
|
||||
-1 to +0,
|
||||
)
|
||||
|
||||
private fun countAdjacentOccupiedSeats(x: Int, y: Int, seats: Array<CharArray>): Int =
|
||||
directions.mapNotNull { (dx, dy) ->
|
||||
val xx = x + dx
|
||||
val yy = y + dy
|
||||
|
||||
if (xx to yy in seats) seats[xx, yy]
|
||||
else null
|
||||
}.count { it == '#' }
|
||||
|
||||
private fun countVisibleOccupiedSeats(x: Int, y: Int, seats: Seats): Int {
|
||||
var occupied = 0
|
||||
|
||||
for ((dx, dy) in directions) {
|
||||
var xx = x
|
||||
var yy = y
|
||||
while (true) {
|
||||
xx += dx
|
||||
yy += dy
|
||||
if (xx to yy !in seats) break
|
||||
if (seats[xx, yy] == 'L') break
|
||||
if (seats[xx, yy] == '#') {
|
||||
occupied++
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return occupied
|
||||
}
|
||||
|
||||
private fun findLastRepeating(seats: Seats, next: (Seats) -> Seats): Seats {
|
||||
var previous = seats
|
||||
val set = HashSet<String>() // use strings because Arrays don't implement equals ??
|
||||
|
||||
while (true) {
|
||||
val res = next(previous)
|
||||
if (!set.add(res.asGridString())) return res
|
||||
previous = res
|
||||
}
|
||||
}
|
||||
|
||||
private fun progress1(previous: Array<CharArray>): Array<CharArray> {
|
||||
val next = previous.deepClone()
|
||||
|
||||
for (x in 0 until seats.width) {
|
||||
for (y in 0 until seats.height) {
|
||||
when (previous[x, y]) {
|
||||
'L' -> if (countAdjacentOccupiedSeats(x, y, previous) == 0) next[x, y] = '#'
|
||||
'#' -> if (countAdjacentOccupiedSeats(x, y, previous) >= 4) next[x, y] = 'L'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return next
|
||||
}
|
||||
|
||||
fun part1() = findLastRepeating(seats, ::progress1).countOccupied()
|
||||
|
||||
private fun progress2(previous: Seats): Array<CharArray> {
|
||||
val next = previous.deepClone()
|
||||
|
||||
for (x in 0 until previous.width) {
|
||||
for (y in 0 until previous.height) {
|
||||
when (previous[x, y]) {
|
||||
'L' -> if (countVisibleOccupiedSeats(x, y, previous) == 0) next[x, y] = '#'
|
||||
'#' -> if (countVisibleOccupiedSeats(x, y, previous) >= 5) next[x, y] = 'L'
|
||||
}
|
||||
}
|
||||
}
|
||||
return next
|
||||
}
|
||||
|
||||
fun part2() = findLastRepeating(seats, ::progress2).countOccupied()
|
||||
|
||||
}
|
||||
|
||||
fun main() = with(createDay<Day11>()) {
|
||||
println(part1())
|
||||
println(part2())
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,323 @@
|
||||
.#.....#..#..#....##.........#.
|
||||
...#...#.........#..#.#..#.....
|
||||
#.#...#.#....#.....#..#..##..##
|
||||
..#..#.#.#.....#..#..#..##.....
|
||||
.#..........#....####..##.#..#.
|
||||
....##.......#.#.....#.........
|
||||
....#......#....####.#.##......
|
||||
........##..........##......#..
|
||||
.........#........##..#.#.....#
|
||||
.#..##..........#..#...#..##.#.
|
||||
........#........#.....#....#.#
|
||||
..#.......#.###...#.......##...
|
||||
.##..##.#...#........#.........
|
||||
...#....#..#..#..##.......#..#.
|
||||
.#.#.##.##..##..#.#.....#.....#
|
||||
....#.........#........#....##.
|
||||
........#........#....###.#..#.
|
||||
........#....#......##.........
|
||||
.###.##.#.............##.......
|
||||
....#.........#...#.#.##..#....
|
||||
#.............#.#.#.#..#..#..##
|
||||
###...###.###..#........#......
|
||||
##..#.....#....##..##..........
|
||||
.......#...#....#...#...#.....#
|
||||
...#......###...##.###...#...#.
|
||||
#.......#...##..#.......#..#...
|
||||
.....##....#....#..#..#.#.##..#
|
||||
.........#....##.#.#..##.#.....
|
||||
.....#......#.#.#.....#.....#..
|
||||
..#..#...#.#...#.........##.#..
|
||||
.....#..#.................#.#..
|
||||
##.#....##........#......#.....
|
||||
#..#...##...#.#.#..#...........
|
||||
.#..####.....#......#.###......
|
||||
.#.......##............#....#..
|
||||
.#.........##..#.##...#.....###
|
||||
....##.........#.#...####...##.
|
||||
..#.......#......##.....#.#..#.
|
||||
...##....#..#..##....##...#.#.#
|
||||
.................#.............
|
||||
...#.##..#.##..............#...
|
||||
...#......#.........##........#
|
||||
..#.#..##...#.......#.#........
|
||||
.###.#.....#.##.##.#...#...#...
|
||||
.....#.##.....#..#......#..#...
|
||||
.....#.#...#........#..#..#..#.
|
||||
#...#.##.#....#................
|
||||
..#...#.#..#.....#.#.#.........
|
||||
#.#.###...#.....##........##...
|
||||
#..##.##....#..........##.#...#
|
||||
...#..#.#.###...##......#.#....
|
||||
.#..#........##...#......#.#.#.
|
||||
##........###....#.#....#......
|
||||
....#...........#.........#....
|
||||
#.#....#..#.....#.#....#.....#.
|
||||
........###.......#..#.#.#.#.#.
|
||||
..#....#.....#...............##
|
||||
.....#..##....#.#...####.......
|
||||
.#..#.....#..#.....#....#....#.
|
||||
..##....#...........#.#....#...
|
||||
..#.#......#..#.#..#.....###.#.
|
||||
...........................##..
|
||||
##.....#....#......###.#...#..#
|
||||
...#...#.........#..#..#....#..
|
||||
....#####.#.#.#....#..#........
|
||||
.##.#..#.#............###......
|
||||
##.#...##...##....#...#...##...
|
||||
..#.#.....#.......#..##..###.##
|
||||
#..##...........#.##.....#.##..
|
||||
#...#....#...#..##...#.#...#.#.
|
||||
.#..#...........###...#.#...#..
|
||||
.#.....#......#.#......#...#..#
|
||||
.#...##.##...............#....#
|
||||
..#.........#....#.............
|
||||
.#..##..#.#................#...
|
||||
..#.#.#.#.................#.#.#
|
||||
...#..#.#..#.#......#........#.
|
||||
##....#......###.#......#......
|
||||
..#....##.....#..#........#....
|
||||
.#.#....#...#.#.....###..#...#.
|
||||
.#..#...##.....#.#...#.....#.#.
|
||||
...#....#....##....##.....#....
|
||||
.......#...#...##..#.#.......#.
|
||||
.###..#..###.#.#.#.#.#.....##..
|
||||
....#.#......###.#....#....#..#
|
||||
##.....#.....##.#.....#....#...
|
||||
......#...##...#..#.#.....#....
|
||||
...#.........###.....#..##.....
|
||||
....#...#..#....#..#.........##
|
||||
.#........#..#.....#.##.#....#.
|
||||
.......#......#.##...##.#..#...
|
||||
#......#.......##..##..#.#.....
|
||||
..#.##..........#.#..#......#..
|
||||
#.....#.......#......#.........
|
||||
...##......##...........#.#....
|
||||
.#....#........#...#.#..#.....#
|
||||
.#...#...##......##...##...##.#
|
||||
.#.#.##.....##....#.#.#..#.....
|
||||
...#..#........#.....#.#.#####.
|
||||
#..#..#......#....##....##.....
|
||||
.#.............#....###.##.#...
|
||||
.#....#.......#.#.....#......##
|
||||
#..#.#.#........#...#..#...#...
|
||||
#.#.#.....#.......#.##..#.....#
|
||||
..#....#.....#...##.#...##.....
|
||||
......#..#.............###...#.
|
||||
..#...#.#....###...#...........
|
||||
.........#..#..#....#..#.......
|
||||
#....#.....#..#....#.#..##.....
|
||||
.#..#.#.....#...##.....##......
|
||||
.....####..#..#......#....##..#
|
||||
#.#....#....#.##.......#.#.....
|
||||
....#.#.............##..#.#...#
|
||||
....#.#.#.....##.....##..#...#.
|
||||
.#..#...#....#...#.#....#...#..
|
||||
.#..#.#.#.......#...#..........
|
||||
...##..#..#...##.....#.......#.
|
||||
..##...##.#..#.......#.........
|
||||
.##.#.......##...#...#......#.#
|
||||
##.#.#..#...#............#.....
|
||||
..#.##...##..#....##..#......#.
|
||||
...#..........#.....#.#........
|
||||
...#..#..#.......#.#.....##....
|
||||
##.............#.....#.##...#..
|
||||
#.#......#........#...#.##..#.#
|
||||
...#..#...##.#.#........#.#....
|
||||
#.....##...........#....#......
|
||||
...##....#..#.#...#........#...
|
||||
..##..####..#..#...............
|
||||
.#.#..#......#.##.........##.#.
|
||||
.##....#...##.#...#..##..#.....
|
||||
........#........#.###.#.#....#
|
||||
......##...#......#..#..#......
|
||||
..#.......#...#..##........#..#
|
||||
.#....###..###....###...##.#.##
|
||||
#.#....#..#.#...#.#...##...#...
|
||||
..#..##......#..#......####....
|
||||
.#....###.......#...##...#.....
|
||||
...#....#..#.....#..#...####.#.
|
||||
............#.####..##...#..##.
|
||||
.#..#.......#....#...#......#.#
|
||||
.......#.......#..#.#..........
|
||||
...#.#............#..#......#..
|
||||
..#...........#...##......#...#
|
||||
...##......#.........#.#...#.##
|
||||
.#..#..#..#......#...........#.
|
||||
....#.....#.###........#.......
|
||||
..##.#.#........#.#...##....#..
|
||||
.#.#........##....#...#......#.
|
||||
.......#.##..###...............
|
||||
#..#...##.....##........##....#
|
||||
...####........#...#.........##
|
||||
...#..............##..#........
|
||||
......#.....#....#.......#....#
|
||||
..###......#..##.....##....##..
|
||||
##...#.....#..#.#.#...#.....#..
|
||||
...#....#............#.........
|
||||
..#..##...#..#.........#.......
|
||||
.#.#.#...##..........#..###....
|
||||
.......##.#.#.#...#.#...#.....#
|
||||
..#..#..#..#...###.....#.##....
|
||||
.#.#.....#.....##.#..#...###..#
|
||||
.........#..##......##...##.#.#
|
||||
#.........##..#......#..#.#.#..
|
||||
.#..##.#.##......##........#...
|
||||
..#...#.....##..#......#.....##
|
||||
.#..#...#......#..#...#.....##.
|
||||
..#..##...#.....#.....#........
|
||||
....##..#....#.#....#......#.#.
|
||||
..#.......##..#..#.##.#..#...##
|
||||
...#..........#...#..##........
|
||||
..#............#.#......#......
|
||||
.#...##.......#...#.#........#.
|
||||
.#...#....#..#....#....#.#...#.
|
||||
......#..#.#..#..............#.
|
||||
.....#.##.#...............##.##
|
||||
.#...............#.....#..#...#
|
||||
.#..##.......#.#...#..#..#....#
|
||||
..#..###.##........##..........
|
||||
.#....#..##...#.#.........#....
|
||||
.......#.....#....###...##.#.#.
|
||||
##..#.#...##.##.##....##.#.###.
|
||||
#.#...........#..#.#...........
|
||||
....#..#..#..#...#....#.......#
|
||||
........##....#..#......##.#...
|
||||
.#.#..##...##...#....#..#.###..
|
||||
#..##....#..#...#.......##.....
|
||||
..###..#.###......#..####....#.
|
||||
.....#..#........##.#..#.......
|
||||
.#......##..............#.#.#..
|
||||
..#.#.......##...#....#.#.###..
|
||||
#..#..#...###..#...............
|
||||
......#..#.....#..#..#...#.....
|
||||
.#...#..........###..#..#.#....
|
||||
.#......##..#......#.....###..#
|
||||
.......#...#..#....###.....#...
|
||||
#....#.......###.##.....##....#
|
||||
..#.....#..##..#.........##....
|
||||
.....##....#.#......#..........
|
||||
....#...#...#......##.....##.#.
|
||||
........#.#.#......#...........
|
||||
.#....#...#...#....#.....#...#.
|
||||
..............#..##.#.....###.#
|
||||
.#......##.....##...#....#.....
|
||||
.............#.##......#.....#.
|
||||
.#....#.#............#.#..##...
|
||||
.#...##.......#..#...##....#...
|
||||
.#.....#..........#............
|
||||
#.#.#........#.....#..#....##..
|
||||
#....#.##......#...#...........
|
||||
........#.##.....#...##.....#..
|
||||
..#.##....#.##.#...#.#.#....#..
|
||||
......#.......####......#.#...#
|
||||
#...#.##.####......#.....##....
|
||||
.#..#....#.......#...##.....#..
|
||||
................#......#.##....
|
||||
###...##..#.#..........#....#.#
|
||||
#.#..#.....#..##.##.##...#...##
|
||||
..#.......#.......#..##..#..##.
|
||||
......#.##.......#..#.....#...#
|
||||
.##..##..#.#.......#..#......#.
|
||||
....##.#....#...##.#..#.....#.#
|
||||
..#..#.........###.#...........
|
||||
....#.......#....##......#....#
|
||||
..........#...#......#....#...#
|
||||
..#.#....###.....#..#.#.#..#...
|
||||
.....#...##..#.##........####..
|
||||
##.............#....##........#
|
||||
..#..........#..##.#...........
|
||||
##.#.......#.#....#......#.#...
|
||||
........####.....##.#.........#
|
||||
.....#...#.#.....#.##..##.#....
|
||||
........#...#.#.#.#...#......#.
|
||||
.#..#.#....#.#...##.....#..#...
|
||||
.....#.#............#.#.#......
|
||||
....##.#...#...#.##...##.......
|
||||
.........#.##.....#.......#...#
|
||||
...........###....#.#....#...#.
|
||||
.#..#.###......#..#............
|
||||
#...#..#......#.#...#......#...
|
||||
..##.#.#........#........##..##
|
||||
..#.#.##..##....#........#.#.#.
|
||||
...#........###......#.#.....#.
|
||||
#.#.#.##........#.#...#..#.....
|
||||
#..#...............#...#.#...#.
|
||||
.....##......#...#.....#..#....
|
||||
............#...#...#.##.#....#
|
||||
...#..#..#...##.#....#.#..#.#..
|
||||
##.#..#..............##........
|
||||
.#.#..#.#..#....##..#.#.##.##..
|
||||
......######....##.....#.......
|
||||
.#.......#..........#.#..#.#..#
|
||||
..........#.#......#...##......
|
||||
#..........#.#..#.............#
|
||||
...#...#..#....................
|
||||
....#...#.....#.....##.....#...
|
||||
..#....##.....#..#......#......
|
||||
.#.#.....#..##.##..........###.
|
||||
.#.##....#....#....#....#...#..
|
||||
..##.....................##.#..
|
||||
.....#..##....#.#.....##..#....
|
||||
.####...#...##..#.##...#..#....
|
||||
.........#.#...#.......###.....
|
||||
...#..#........#..#..##.....#..
|
||||
..#....#....#....###.....#.....
|
||||
......#....#..#.........#......
|
||||
#.#...#..#..#.#...#..#.#......#
|
||||
..........#..........#.#.##....
|
||||
.#..###..##..#....#.#.....#..#.
|
||||
.##......#..#.##...#.........#.
|
||||
...##...#....#.........#..#....
|
||||
....#..##........#.........#...
|
||||
.........##....#...#.#.....#..#
|
||||
.#..........##...#..#.#..##....
|
||||
#.......#...#...#............#.
|
||||
.....##.#.##.......#.......#...
|
||||
...........#...#.....###.....#.
|
||||
#..................#.##..##...#
|
||||
.........##.............#...#.#
|
||||
#.#.....##...#........###....##
|
||||
...##..#.##.....###.....#......
|
||||
..#...#.#..#......##.#.......#.
|
||||
.........##.#...........###..#.
|
||||
..#...#.....#...#.#.....#..#...
|
||||
.....##..#...#.#.#....#.....###
|
||||
..#.#....#..#..#..#....#.#...#.
|
||||
........##....#......#....#..#.
|
||||
.##..#.....#.#....#..#.###.....
|
||||
..............##.........#.#.#.
|
||||
.##....#.#..#..#...#..........#
|
||||
.....##.......#....#..#......#.
|
||||
...#.#....................#..##
|
||||
#.##..#.#...#...#....#.#....##.
|
||||
...#.#..#.###................#.
|
||||
.....##..#.##.#.#.........#.#..
|
||||
.................##..........#.
|
||||
..#......#........#.#....#.....
|
||||
#......##......#......###....#.
|
||||
....##....#..#..####......#...#
|
||||
.##.##.........#...#..#....#.#.
|
||||
.#..#....##...##..#...........#
|
||||
#...#......#...#...........#...
|
||||
...#...####.............##..#..
|
||||
.....#....##............##....#
|
||||
......##.#...##...........#.#..
|
||||
..#......##.....###.......#.###
|
||||
...#...#......#...##.#........#
|
||||
.#.........##.##......##.......
|
||||
....................#....#....#
|
||||
.#.#.#........##.#....#.....#..
|
||||
#.#.....####..#.........#.#.#..
|
||||
...####..#..............#.#....
|
||||
....#.#....#..........#....#...
|
||||
.#..#..#.#...#..#.#............
|
||||
.#.#.......##........##.....#..
|
||||
#.#.##..#.....##......##....#.#
|
||||
......#...#...#...#......#.....
|
||||
.........##..#.....#.####.#.#..
|
||||
.....#....#.###...#.###.#..#..#
|
||||
..#.#..#..#.......#.......##...
|
||||
.....#.........#......##.#....#
|
||||
..#.#.##....#.#...............#
|
||||
.....#..#....##......##..###...
|
||||
@@ -0,0 +1,959 @@
|
||||
byr:1971
|
||||
ecl:hzl pid:112040163
|
||||
eyr:2023 iyr:2019
|
||||
hcl:#b6652a hgt:167cm
|
||||
|
||||
pid:108667812 eyr:2023 hcl:#623a2f hgt:171cm iyr:2018 ecl:amb byr:1993
|
||||
|
||||
hcl:#cfa07d iyr:2014 ecl:blu eyr:2023 cid:304 hgt:70in byr:1961
|
||||
|
||||
byr:1977
|
||||
hcl:#b6652a
|
||||
iyr:2017 ecl:oth pid:703877876 hgt:185cm
|
||||
|
||||
byr:1972
|
||||
cid:271
|
||||
iyr:2016 pid:876104259 hgt:173cm eyr:2028 ecl:brn hcl:#733820
|
||||
|
||||
hgt:174cm ecl:gry iyr:2014 eyr:2029 hcl:#c0946f
|
||||
byr:1967 pid:406306240
|
||||
|
||||
hcl:#6b5442
|
||||
iyr:2011
|
||||
pid:040592028 eyr:2026
|
||||
ecl:amb
|
||||
byr:1923
|
||||
|
||||
pid:293598838 byr:1960 cid:87
|
||||
iyr:2018
|
||||
ecl:blu eyr:2029
|
||||
hcl:#7d3b0c
|
||||
hgt:62in
|
||||
|
||||
iyr:2018 cid:137
|
||||
hcl:1c7db1 ecl:#38812e byr:2006 eyr:2038 pid:1239811353 hgt:84
|
||||
|
||||
hcl:#888785 pid:308480529
|
||||
iyr:2010 byr:1988
|
||||
eyr:2025 hgt:176cm ecl:amb
|
||||
|
||||
cid:79 ecl:lzr
|
||||
iyr:2013 byr:1991 hcl:2f49ef
|
||||
hgt:191cm
|
||||
pid:378428551
|
||||
|
||||
iyr:2005
|
||||
hgt:64in hcl:89c369
|
||||
ecl:gry byr:1932
|
||||
eyr:2029 pid:753055776
|
||||
|
||||
ecl:amb iyr:2017
|
||||
byr:1969 hcl:#fffffd
|
||||
pid:305746470
|
||||
hgt:173cm
|
||||
|
||||
pid:081972188 iyr:2011
|
||||
hcl:9bb154
|
||||
eyr:2024 byr:1966 ecl:oth cid:185 hgt:171cm
|
||||
|
||||
pid:522553186 hgt:171cm ecl:grn hcl:#7d3b0c
|
||||
byr:1955
|
||||
eyr:2025 iyr:1999
|
||||
|
||||
iyr:2015
|
||||
byr:1941 pid:140123640 ecl:amb hgt:153cm hcl:#ceb3a1 eyr:2020
|
||||
|
||||
ecl:grn
|
||||
cid:202 hcl:#602927
|
||||
eyr:2029
|
||||
hgt:180cm byr:1974
|
||||
pid:658341964
|
||||
iyr:2017
|
||||
|
||||
pid:2037156813 eyr:1978 ecl:grn hcl:519b45 iyr:2011 byr:2017
|
||||
|
||||
hcl:#fffffd ecl:hzl
|
||||
pid:658716289 byr:2001 hgt:154cm cid:234 eyr:2031 iyr:2010
|
||||
|
||||
byr:2013 pid:#eb519e eyr:2026
|
||||
hgt:157cm iyr:2030 hcl:7e9d5a ecl:oth
|
||||
|
||||
byr:2002
|
||||
ecl:brn iyr:1998 hgt:60cm
|
||||
hcl:#7d3b0c pid:#90286d
|
||||
eyr:1938
|
||||
|
||||
byr:1956 hcl:#efcc98
|
||||
hgt:190cm
|
||||
iyr:2010 eyr:2023
|
||||
ecl:amb
|
||||
cid:342 pid:278521396
|
||||
|
||||
hgt:67cm
|
||||
cid:98 eyr:2036 byr:2028 ecl:grt hcl:08b5ad iyr:2029 pid:187cm
|
||||
|
||||
ecl:dne hcl:fca461 hgt:129 iyr:2020 eyr:2027 byr:2022 pid:5014208295
|
||||
|
||||
hgt:169cm ecl:gry iyr:2015 eyr:2025 hcl:#733820 pid:240085824 byr:1920
|
||||
|
||||
iyr:2020 eyr:2033
|
||||
pid:#3f8e9d hgt:190in ecl:brn hcl:#efcc98 byr:2004
|
||||
|
||||
iyr:2018 hcl:#18171d ecl:brn byr:1933
|
||||
pid:514517439 hgt:171cm eyr:2028
|
||||
|
||||
eyr:2030 pid:053251865
|
||||
byr:2028 hgt:174cm iyr:2015 hcl:5a0da9 ecl:hzl
|
||||
|
||||
hgt:169cm iyr:2014 ecl:oth eyr:2029 pid:348737413 hcl:#b6652a byr:1997
|
||||
|
||||
hgt:181cm cid:315
|
||||
eyr:2021 iyr:2016 byr:1966 ecl:oth pid:779435812 hcl:#733820
|
||||
|
||||
pid:5052579 cid:268 hgt:193in
|
||||
hcl:z
|
||||
iyr:1942 eyr:1977
|
||||
|
||||
eyr:2039 hgt:69cm cid:337
|
||||
iyr:2023 pid:568948965
|
||||
byr:2018 hcl:z ecl:amb
|
||||
|
||||
byr:2014 eyr:2028
|
||||
cid:311
|
||||
pid:158cm ecl:#946399 hgt:99
|
||||
hcl:z
|
||||
iyr:1978
|
||||
|
||||
pid:474742310 iyr:2015 eyr:2021 hcl:#14f5da
|
||||
hgt:163cm ecl:oth
|
||||
|
||||
hcl:#efcc98
|
||||
ecl:blu
|
||||
hgt:178cm pid:815309025 byr:2024
|
||||
iyr:2008 eyr:1922
|
||||
|
||||
byr:1946 eyr:2028 pid:364439229 iyr:2011 hgt:186cm cid:79 ecl:blu
|
||||
|
||||
eyr:2028 hgt:157cm
|
||||
cid:59 iyr:2010 byr:1927
|
||||
ecl:brn
|
||||
pid:893074368
|
||||
|
||||
hcl:#18171d ecl:#2defe4 hgt:128 byr:1940
|
||||
pid:181904523 iyr:2022 eyr:1937
|
||||
|
||||
eyr:2023 hgt:172cm iyr:2012 hcl:#a97842 ecl:hzl byr:1982 pid:638759541
|
||||
|
||||
cid:91 hcl:#623a2f
|
||||
byr:1996 eyr:2028 pid:181384347 hgt:175cm
|
||||
iyr:2020
|
||||
|
||||
iyr:2017 eyr:2021 ecl:gry
|
||||
byr:1979 hgt:168cm hcl:#6b5442 pid:950995084
|
||||
|
||||
ecl:blu iyr:2012 byr:1972
|
||||
hcl:#888785 eyr:2022 hgt:179cm pid:293827532
|
||||
|
||||
hgt:179cm
|
||||
ecl:hzl iyr:2011
|
||||
byr:1982 eyr:2020 hcl:#efcc98 cid:209 pid:626732917
|
||||
|
||||
byr:1989
|
||||
hcl:#6b5442 pid:679850983 iyr:2020
|
||||
hgt:192cm ecl:blu
|
||||
|
||||
pid:333485773 hgt:167in ecl:zzz iyr:1945
|
||||
eyr:2035 cid:319 hcl:#341e13
|
||||
|
||||
hgt:64in
|
||||
cid:202 eyr:2023 ecl:gry hcl:#c0946f pid:212611149 byr:1928 iyr:2010
|
||||
|
||||
hgt:183cm hcl:#e8fa30 ecl:oth eyr:2021
|
||||
byr:1943 pid:667658434
|
||||
iyr:2010
|
||||
|
||||
cid:117
|
||||
byr:2022 hcl:z ecl:#c6ae1f iyr:2028
|
||||
hgt:188cm
|
||||
pid:0883366415
|
||||
eyr:2030
|
||||
|
||||
hcl:z
|
||||
pid:99347800 iyr:2030 eyr:2032 ecl:#cd1fd7 hgt:192cm byr:2019
|
||||
|
||||
hgt:178cm byr:2013
|
||||
iyr:2026 hcl:ad3da1
|
||||
eyr:2020 pid:1626818790
|
||||
|
||||
hgt:63cm
|
||||
iyr:1964
|
||||
eyr:2032
|
||||
cid:135 byr:2017 hcl:#a97842 pid:#1b83f5 ecl:gmt
|
||||
|
||||
hcl:c352d2 byr:1927 ecl:gmt hgt:187cm
|
||||
eyr:2031 pid:170cm
|
||||
|
||||
byr:2022 eyr:1958 ecl:zzz pid:3692521800 hcl:8b2b50 iyr:1946 hgt:155in
|
||||
|
||||
ecl:#43f305 hcl:z byr:2028
|
||||
pid:63518738 cid:243 eyr:2037
|
||||
hgt:67cm iyr:1929
|
||||
|
||||
ecl:brn hcl:#888785
|
||||
pid:495215177 byr:1962 eyr:2021
|
||||
cid:192
|
||||
hgt:151cm iyr:2012
|
||||
|
||||
ecl:#dcca8e cid:64 eyr:2030 pid:380057616
|
||||
hcl:z iyr:2026 byr:1962
|
||||
|
||||
hcl:z
|
||||
ecl:hzl eyr:2027 byr:2015 pid:302526406 hgt:175cm iyr:2017
|
||||
|
||||
byr:1966
|
||||
cid:133 pid:9953651821 ecl:gry iyr:2020 hgt:152cm
|
||||
hcl:#fffffd eyr:2026
|
||||
|
||||
hgt:191cm byr:1960 pid:752655640 hcl:#888785
|
||||
cid:249 ecl:blu
|
||||
iyr:2012 eyr:2028
|
||||
|
||||
pid:#c8c988 eyr:2027 hgt:157in hcl:z iyr:2025 byr:2019 ecl:zzz cid:195
|
||||
|
||||
hgt:96 pid:95381813 iyr:1950
|
||||
hcl:#fffffd eyr:2026
|
||||
byr:2010 cid:318
|
||||
ecl:#48a819
|
||||
|
||||
eyr:2020
|
||||
ecl:oth byr:1951 pid:080392492
|
||||
iyr:2015 hcl:#6b5442 hgt:176cm
|
||||
|
||||
hgt:162cm pid:897792747 byr:1968
|
||||
hcl:#ceb3a1 ecl:grn eyr:2026 iyr:2014
|
||||
|
||||
eyr:2038 hcl:cc324a byr:1983 ecl:brn
|
||||
hgt:161 pid:#adf47f cid:208
|
||||
|
||||
iyr:2013 ecl:blu hcl:#866857 byr:1981 hgt:157cm eyr:2025 pid:216910202
|
||||
|
||||
hgt:152in byr:1990
|
||||
iyr:2027 hcl:a4a3ae
|
||||
ecl:#058ae2 eyr:2037 pid:646420120
|
||||
|
||||
ecl:oth byr:1982 eyr:2027 hgt:65in iyr:2019
|
||||
hcl:#efcc98 cid:224
|
||||
pid:854228141
|
||||
|
||||
pid:772612093
|
||||
iyr:2027
|
||||
hgt:175in byr:1981 hcl:c0b5a9 ecl:utc
|
||||
|
||||
hcl:#888785 iyr:2014 byr:1975
|
||||
ecl:blu
|
||||
pid:461319017 cid:229 eyr:2030 hgt:154cm
|
||||
|
||||
hgt:179cm eyr:2024
|
||||
pid:192cm
|
||||
iyr:2017 ecl:grt byr:1934 hcl:z cid:92
|
||||
|
||||
hcl:9c9409 iyr:2020 eyr:2030 hgt:156in
|
||||
cid:189 pid:732321495
|
||||
byr:1937 ecl:xry
|
||||
|
||||
eyr:2026 pid:092259220 byr:1943
|
||||
iyr:2010 hgt:153cm hcl:#602927
|
||||
|
||||
byr:1925 hgt:180cm hcl:#888785 iyr:2014
|
||||
pid:402548656 eyr:2023 ecl:hzl
|
||||
cid:188
|
||||
|
||||
eyr:2020 pid:874307939 hcl:#3f85a4
|
||||
ecl:gry hgt:167cm byr:1959 iyr:2014
|
||||
|
||||
eyr:2026 hgt:183cm iyr:2011 byr:1940 ecl:blu pid:810026000
|
||||
cid:226 hcl:#866857
|
||||
|
||||
cid:292 ecl:grt hgt:72cm
|
||||
byr:2009
|
||||
iyr:2000 eyr:1946 hcl:7be409 pid:996363336
|
||||
|
||||
eyr:2027
|
||||
iyr:2021
|
||||
pid:632405666
|
||||
byr:2027
|
||||
ecl:#d83a36 hcl:z hgt:190in
|
||||
|
||||
cid:80
|
||||
hgt:173cm
|
||||
pid:735853952 ecl:gry hcl:#fffffd eyr:2025 iyr:2020 byr:1923
|
||||
|
||||
byr:1977
|
||||
hcl:#733820
|
||||
iyr:2020 ecl:#698d72 hgt:186cm pid:678869986 cid:67
|
||||
eyr:2021
|
||||
|
||||
hgt:61cm iyr:2022 eyr:1972 hcl:979bcf byr:2023 pid:44037388 ecl:xry
|
||||
|
||||
eyr:2032 pid:193cm hcl:z
|
||||
hgt:68cm byr:2016
|
||||
|
||||
byr:2008 cid:239
|
||||
hcl:ddc745 eyr:2033 ecl:#6858b5 hgt:64cm iyr:2023
|
||||
pid:89867524
|
||||
|
||||
iyr:2016 hgt:74in hcl:#18171d
|
||||
byr:1959
|
||||
ecl:blu
|
||||
pid:848487392
|
||||
eyr:2027
|
||||
|
||||
hgt:165in ecl:grn
|
||||
byr:1960 eyr:2029
|
||||
iyr:2017
|
||||
hcl:#b6652a pid:096349067
|
||||
|
||||
eyr:2025 ecl:brn
|
||||
pid:634481064 iyr:2015
|
||||
hcl:#7d3b0c
|
||||
byr:1943
|
||||
|
||||
ecl:grn eyr:2021
|
||||
pid:34753212 cid:51 hgt:184 iyr:1970 byr:2012
|
||||
|
||||
eyr:1973 iyr:2014 cid:225
|
||||
byr:2028 ecl:gmt
|
||||
hgt:158cm
|
||||
pid:#74f9b8 hcl:f6932a
|
||||
|
||||
hgt:168cm
|
||||
hcl:#602927
|
||||
pid:622067991 ecl:amb eyr:2025 iyr:2018
|
||||
|
||||
pid:791399958 byr:1956 eyr:2027 hcl:#602927
|
||||
ecl:brn
|
||||
iyr:2016 hgt:192cm
|
||||
|
||||
hgt:168cm iyr:2015 cid:115 ecl:#3fa48b eyr:2037 hcl:#1bf77b byr:1980 pid:947370470
|
||||
|
||||
iyr:2008
|
||||
byr:2021 ecl:zzz
|
||||
hcl:z hgt:109 pid:#fc2a91 cid:268 eyr:1957
|
||||
|
||||
byr:2018 hcl:fef19c iyr:2014 ecl:blu eyr:2023 cid:259 pid:193cm hgt:156
|
||||
|
||||
hcl:#b6652a
|
||||
iyr:2023 byr:2021 hgt:153cm pid:934391984 eyr:2021 ecl:brn
|
||||
|
||||
pid:168cm hcl:b13f1e eyr:2038 iyr:2020 ecl:#7c0a6d hgt:169in
|
||||
|
||||
ecl:amb cid:170
|
||||
pid:300188824 eyr:2024 byr:1954 hcl:#b6652a hgt:166cm
|
||||
iyr:2013
|
||||
|
||||
ecl:brn
|
||||
eyr:2023
|
||||
hcl:#b6652a byr:1948 hgt:71in iyr:2015
|
||||
pid:575973478
|
||||
|
||||
eyr:2026 hgt:180cm hcl:#866857 ecl:grn iyr:2013
|
||||
byr:1997 pid:864648034
|
||||
|
||||
ecl:hzl
|
||||
iyr:2013 eyr:2024 hcl:#02e17f byr:1960
|
||||
hgt:163cm cid:338 pid:972201795
|
||||
|
||||
iyr:1994 eyr:2035 ecl:xry
|
||||
hcl:z hgt:167in pid:159cm
|
||||
|
||||
ecl:hzl
|
||||
byr:1952
|
||||
eyr:2024 hgt:191cm pid:229400637 iyr:2011 hcl:#122db6
|
||||
|
||||
eyr:2022
|
||||
pid:467667316 iyr:2019 hcl:#623a2f
|
||||
hgt:161cm
|
||||
ecl:oth
|
||||
|
||||
ecl:hzl eyr:2030 hcl:#733820 byr:1944
|
||||
hgt:193cm pid:819137596
|
||||
|
||||
cid:321 hgt:184in ecl:hzl iyr:2018 byr:2010 eyr:2020 pid:171cm
|
||||
|
||||
ecl:amb eyr:2025 hcl:#c0946f pid:360891963 byr:1925
|
||||
iyr:2017
|
||||
hgt:180cm
|
||||
|
||||
hcl:#cfa07d byr:1949
|
||||
eyr:1931 cid:350
|
||||
ecl:#ff9943
|
||||
pid:7550350393 hgt:75
|
||||
|
||||
eyr:2026 ecl:amb hcl:z pid:746919391 iyr:2014 hgt:179cm byr:1997
|
||||
|
||||
pid:157cm iyr:2030
|
||||
hgt:152cm
|
||||
hcl:ce8aa7 eyr:1976 ecl:grt cid:160 byr:2011
|
||||
|
||||
eyr:2022
|
||||
hgt:183cm
|
||||
byr:2000 iyr:2016 hcl:#a97842 ecl:blu pid:500935725
|
||||
|
||||
cid:245 eyr:2026 iyr:2015 ecl:gry hcl:#cfa07d
|
||||
byr:1946
|
||||
|
||||
eyr:2022 hgt:168cm
|
||||
pid:786361311 iyr:2013 hcl:#c0946f byr:1988 cid:244 ecl:hzl
|
||||
|
||||
byr:2014 hgt:176in iyr:2021
|
||||
hcl:z pid:6361650130
|
||||
eyr:2039 cid:300
|
||||
ecl:#76310d
|
||||
|
||||
ecl:amb hgt:170in byr:2013
|
||||
iyr:2024 eyr:2033 hcl:#888785
|
||||
|
||||
eyr:2025
|
||||
iyr:1957 cid:182
|
||||
ecl:blu pid:253552114
|
||||
hgt:188cm hcl:z
|
||||
|
||||
cid:83 ecl:amb
|
||||
eyr:2022 byr:1947
|
||||
iyr:2013 hcl:#cfa07d
|
||||
hgt:188cm pid:447734900
|
||||
|
||||
iyr:2013 hcl:#602927 byr:1979 hgt:167cm cid:321 pid:978238277 eyr:2020
|
||||
ecl:grn
|
||||
|
||||
hgt:73cm
|
||||
cid:199 ecl:amb iyr:2019
|
||||
hcl:#733820 eyr:2021
|
||||
byr:1939 pid:364966395
|
||||
|
||||
hgt:168in ecl:lzr eyr:2031
|
||||
pid:#ff10ac byr:2014 iyr:2006
|
||||
|
||||
hgt:164cm eyr:1994 iyr:2010
|
||||
ecl:amb hcl:#7d3b0c cid:240 pid:191cm
|
||||
byr:2025
|
||||
|
||||
ecl:grn
|
||||
eyr:2029
|
||||
hcl:#7d3b0c hgt:158cm
|
||||
byr:1939 iyr:2012 pid:855145518
|
||||
|
||||
iyr:2013 hcl:#ceb3a1
|
||||
hgt:163cm eyr:2023 pid:761215570
|
||||
|
||||
hgt:154cm ecl:grn
|
||||
iyr:2019 byr:1981 eyr:2021 hcl:#602927
|
||||
cid:80 pid:427938374
|
||||
|
||||
eyr:2026 hgt:154cm cid:102 iyr:2012 pid:6632346648 ecl:amb
|
||||
byr:2010 hcl:z
|
||||
|
||||
cid:302 iyr:2014
|
||||
pid:161cm eyr:2037 byr:2026 ecl:gry hgt:60 hcl:9fb9e0
|
||||
|
||||
ecl:brn iyr:2015 pid:041582949 cid:180 byr:1938
|
||||
hgt:158cm
|
||||
hcl:#602927 eyr:2026
|
||||
|
||||
ecl:xry pid:#546891 hcl:#18171d hgt:71cm byr:1974
|
||||
iyr:2018 eyr:2026
|
||||
|
||||
iyr:2015 eyr:2025 ecl:brn hgt:180cm hcl:#b6652a
|
||||
byr:1938
|
||||
pid:752379523
|
||||
|
||||
iyr:2020 ecl:grn hgt:179cm byr:1929
|
||||
cid:103 hcl:#602927
|
||||
pid:212212232
|
||||
|
||||
pid:262917603 ecl:gry iyr:2012 hcl:#fffffd hgt:165cm eyr:2022 byr:1965
|
||||
|
||||
byr:1960
|
||||
eyr:2031 hgt:184in
|
||||
pid:#ac1606 iyr:2013 hcl:#888785
|
||||
cid:260 ecl:#7b2c3b
|
||||
|
||||
byr:1987
|
||||
eyr:2025 cid:102
|
||||
hgt:74in ecl:brn hcl:#4a6c75 pid:20220733 iyr:2028
|
||||
|
||||
eyr:2031 pid:823539963
|
||||
iyr:1957
|
||||
hgt:159cm byr:1953 ecl:oth cid:186 hcl:26d85f
|
||||
|
||||
ecl:gry iyr:2011
|
||||
hgt:167cm hcl:#fffffd pid:001642707 eyr:2030 byr:1952
|
||||
|
||||
iyr:2029 ecl:grt
|
||||
hcl:z byr:2011 hgt:64cm pid:37027672
|
||||
eyr:1923
|
||||
|
||||
pid:021102096
|
||||
eyr:2024 hgt:66 hcl:#a97842 byr:1922 ecl:gry iyr:2013
|
||||
|
||||
pid:166477382 ecl:oth byr:1982 iyr:2010 eyr:2020
|
||||
hcl:#866857 hgt:60in
|
||||
|
||||
hcl:#7d3b0c
|
||||
iyr:2018 pid:065652921 byr:1939
|
||||
ecl:blu
|
||||
hgt:180cm eyr:2028
|
||||
|
||||
ecl:amb iyr:2020 byr:1967 hcl:#fffffd eyr:2028 hgt:157cm
|
||||
|
||||
eyr:2029 hgt:185cm cid:85 hcl:z iyr:2014 pid:#1f4787 ecl:grn byr:2010
|
||||
|
||||
byr:1987 hcl:d397d9 iyr:2028
|
||||
hgt:158cm pid:686994921 ecl:hzl
|
||||
|
||||
ecl:oth
|
||||
byr:2008
|
||||
pid:#db73d9 hgt:174cm hcl:#6b5442 iyr:1955 eyr:2028
|
||||
|
||||
eyr:2020 ecl:amb pid:490866828 hcl:#cfa07d cid:113
|
||||
hgt:165cm
|
||||
|
||||
iyr:2011
|
||||
pid:320518492
|
||||
eyr:2028 byr:1940 hgt:164cm cid:84
|
||||
hcl:#341e13 ecl:grn
|
||||
|
||||
hgt:142
|
||||
hcl:z pid:152cm iyr:1953 eyr:2040 ecl:#e44f11 byr:2024
|
||||
|
||||
ecl:gmt hcl:be7483 eyr:2027
|
||||
iyr:2026
|
||||
pid:396722617 hgt:153cm
|
||||
|
||||
ecl:dne byr:2015
|
||||
pid:330208482
|
||||
hcl:#7d3b0c iyr:2014 eyr:2022 hgt:95
|
||||
|
||||
byr:1925 hcl:#7d3b0c
|
||||
ecl:gry
|
||||
eyr:2024
|
||||
pid:694714722 hgt:158cm iyr:2015 cid:283
|
||||
|
||||
eyr:2023
|
||||
hgt:183cm cid:345
|
||||
hcl:#6b5442 ecl:hzl iyr:2019 byr:1971 pid:458416257
|
||||
|
||||
ecl:#dcae8b
|
||||
iyr:2027 eyr:1940 byr:2009 hcl:f024de pid:20713584
|
||||
hgt:169in
|
||||
|
||||
hcl:#888785 eyr:2026
|
||||
byr:1984 iyr:2013 pid:935837461
|
||||
hgt:193cm
|
||||
ecl:gry
|
||||
|
||||
pid:7343429 byr:2002
|
||||
hgt:191cm
|
||||
ecl:lzr iyr:1983
|
||||
eyr:1966 hcl:#623a2f
|
||||
cid:302
|
||||
|
||||
hcl:#888785 iyr:2014 hgt:173cm
|
||||
byr:2002 pid:005350165 eyr:2022
|
||||
|
||||
byr:2013 iyr:2028
|
||||
ecl:lzr pid:5426915565 eyr:2018 hcl:z hgt:70cm cid:142
|
||||
|
||||
eyr:2021 hgt:157cm ecl:utc iyr:2014
|
||||
byr:1934 cid:348 hcl:#623a2f pid:607329117
|
||||
|
||||
iyr:2015 hgt:167cm ecl:hzl
|
||||
pid:088516395 hcl:#efcc98 byr:1968 eyr:2029
|
||||
|
||||
eyr:2028
|
||||
iyr:2019
|
||||
cid:199
|
||||
ecl:amb
|
||||
hgt:152cm byr:1928 pid:547112666 hcl:#623a2f
|
||||
|
||||
pid:406202463
|
||||
byr:1950 cid:214
|
||||
eyr:2021 hcl:#fffffd hgt:177cm
|
||||
ecl:brn
|
||||
|
||||
eyr:2029
|
||||
cid:210 byr:1982 pid:578085789 ecl:brn
|
||||
hgt:187cm iyr:2010 hcl:#c0946f
|
||||
|
||||
byr:1980 hcl:#c0946f hgt:159cm pid:177650318 eyr:2024 ecl:amb iyr:2019
|
||||
|
||||
pid:923359071 byr:1997 ecl:#faa530
|
||||
eyr:2028 iyr:2013 hcl:e6c902 hgt:177cm
|
||||
|
||||
eyr:2040
|
||||
cid:98 hgt:156in
|
||||
ecl:oth
|
||||
iyr:1996 pid:81500971
|
||||
hcl:#6b5442
|
||||
byr:2017
|
||||
|
||||
byr:2004 iyr:1941
|
||||
hcl:e1e4bb hgt:67cm pid:1143915351 ecl:#0d3e5d eyr:1972
|
||||
|
||||
hgt:184cm hcl:#623a2f
|
||||
eyr:2028 pid:680951513 ecl:grn iyr:2014 byr:2001
|
||||
|
||||
hcl:#866857 hgt:156cm
|
||||
eyr:2020
|
||||
ecl:grn iyr:2010 pid:589945116
|
||||
|
||||
pid:599795227 iyr:2016 ecl:grn
|
||||
hcl:#cfa07d hgt:157cm byr:1967 eyr:2029
|
||||
|
||||
hcl:#b6652a
|
||||
byr:1966 iyr:2017 pid:117232314 ecl:oth hgt:186cm eyr:2029
|
||||
|
||||
pid:605019880
|
||||
iyr:2020
|
||||
hgt:169cm byr:1980 hcl:#623a2f
|
||||
ecl:hzl eyr:2030
|
||||
|
||||
eyr:2019 hcl:#ceb3a1 pid:988269284
|
||||
iyr:2015 byr:1989 hgt:171cm ecl:oth
|
||||
|
||||
cid:311 byr:1998 ecl:hzl
|
||||
eyr:2027 hgt:152cm pid:734870801 hcl:#7d3b0c
|
||||
iyr:2013
|
||||
|
||||
hcl:#efcc98
|
||||
hgt:180cm iyr:2020
|
||||
pid:202682423 byr:2027 ecl:grn eyr:2030
|
||||
|
||||
hcl:f0701f pid:161cm cid:291 hgt:160in iyr:2030
|
||||
ecl:#e12345
|
||||
|
||||
cid:248 byr:1943 eyr:2024 hgt:181cm ecl:brn iyr:2010 hcl:#bf813e
|
||||
|
||||
byr:2005 hgt:187in eyr:2034 iyr:2025 hcl:z ecl:gmt
|
||||
pid:78691465
|
||||
|
||||
byr:2000
|
||||
hcl:#574f4e eyr:2024 iyr:2017 pid:#fec795 hgt:185cm ecl:gry
|
||||
|
||||
hcl:#a97842 byr:1959
|
||||
iyr:2019 pid:690444949
|
||||
hgt:160in eyr:1978
|
||||
|
||||
cid:236
|
||||
iyr:2010 eyr:2025 byr:1976 pid:398376853
|
||||
hcl:#341e13
|
||||
hgt:150cm
|
||||
|
||||
hgt:182cm iyr:2019 hcl:#866857
|
||||
ecl:grn
|
||||
byr:1926 eyr:2029 pid:307880154 cid:94
|
||||
|
||||
ecl:blu
|
||||
hgt:182cm pid:178cm byr:2019 eyr:2025
|
||||
iyr:2022 hcl:#a2117d
|
||||
|
||||
eyr:2020 hcl:#c0946f ecl:amb pid:135511825 byr:1954 hgt:68in iyr:2017
|
||||
|
||||
hgt:188cm ecl:amb iyr:2011
|
||||
pid:949021029 eyr:2028 hcl:#fffffd byr:1986
|
||||
|
||||
iyr:1949 pid:#8a8d94 ecl:#922a92 byr:1925 hcl:#63c4a5
|
||||
|
||||
hcl:#c0946f
|
||||
ecl:grn iyr:2013 eyr:2024 pid:420295283 hgt:181cm
|
||||
byr:1977
|
||||
|
||||
byr:1941 pid:299186098 hcl:#f1fa72
|
||||
iyr:2013 ecl:amb eyr:2022 hgt:152cm
|
||||
cid:150
|
||||
|
||||
ecl:blu eyr:2021 hgt:60in hcl:#623a2f
|
||||
byr:1930 iyr:2018
|
||||
|
||||
eyr:2028 pid:663108638
|
||||
hgt:75in cid:217
|
||||
byr:1962 ecl:brn hcl:#733820
|
||||
|
||||
hcl:#341e13 hgt:188cm ecl:blu
|
||||
pid:868930517
|
||||
eyr:2029
|
||||
iyr:2010 byr:1938
|
||||
|
||||
pid:194376910 byr:1956
|
||||
hcl:#cd4ab4
|
||||
eyr:1940 iyr:2012 ecl:#396cc3
|
||||
|
||||
pid:#c5da2a hgt:162cm
|
||||
hcl:#866857
|
||||
cid:95 ecl:#fa1f85
|
||||
iyr:1965 byr:1963 eyr:2039
|
||||
|
||||
pid:44063430 hcl:289b20
|
||||
ecl:#77ddd9 eyr:1953
|
||||
iyr:1924 byr:2026 cid:267 hgt:180in
|
||||
|
||||
ecl:brn pid:990171473
|
||||
eyr:2028 byr:1937
|
||||
hgt:165cm iyr:2015
|
||||
hcl:#fffffd cid:68
|
||||
|
||||
iyr:1968 ecl:lzr pid:#05a4ab eyr:1944 hcl:z
|
||||
|
||||
hgt:185cm hcl:#7d3b0c eyr:2029 ecl:oth
|
||||
iyr:2016 byr:1997 pid:349316183
|
||||
|
||||
hcl:z
|
||||
ecl:gry
|
||||
hgt:192in pid:542996841 iyr:2019 cid:144 eyr:2028
|
||||
byr:2026
|
||||
|
||||
eyr:2024
|
||||
hcl:#18171d
|
||||
ecl:grn hgt:160cm pid:399767457 byr:1979 iyr:2015
|
||||
|
||||
ecl:#924147 pid:665314 cid:216 iyr:2026 hcl:z
|
||||
byr:2023 hgt:157
|
||||
eyr:1987
|
||||
|
||||
eyr:1989 hcl:4f8779 ecl:#05ff52 iyr:1943 pid:3693010880 hgt:72cm
|
||||
byr:2009
|
||||
|
||||
hcl:#c0946f eyr:2022
|
||||
iyr:2015 hgt:157cm byr:1928 ecl:grn pid:243566446
|
||||
|
||||
eyr:2030
|
||||
hcl:#733820 byr:1988 iyr:2017 cid:125 hgt:193cm ecl:amb pid:939550667
|
||||
|
||||
cid:161 hgt:157in
|
||||
hcl:#cfa07d eyr:2036 ecl:#4efa35
|
||||
iyr:2012 pid:3943280550 byr:1979
|
||||
|
||||
ecl:lzr hcl:#341e13 hgt:69cm eyr:2026 cid:322 byr:2006 pid:827964469
|
||||
|
||||
ecl:amb iyr:2012
|
||||
eyr:2020 hgt:178cm pid:590705772 cid:218
|
||||
hcl:#c0946f byr:1922
|
||||
|
||||
hcl:632b01 cid:252 byr:1933 ecl:hzl
|
||||
iyr:2025 eyr:2040 hgt:191cm
|
||||
pid:406010613
|
||||
|
||||
pid:711656819 ecl:blu eyr:2030 hgt:151cm
|
||||
byr:1999 cid:319
|
||||
hcl:#efcc98
|
||||
|
||||
pid:294223216 iyr:2012
|
||||
hgt:171cm
|
||||
eyr:2027
|
||||
hcl:#ceb3a1 ecl:oth
|
||||
byr:1952 cid:58
|
||||
|
||||
hcl:#888785 pid:457433756 eyr:2022 hgt:186cm
|
||||
cid:336
|
||||
byr:1923 iyr:2013 ecl:oth
|
||||
|
||||
byr:2014 hcl:6ce7d6 eyr:2030 pid:190cm iyr:2018 hgt:63cm ecl:#5063b9
|
||||
|
||||
cid:267 hgt:189cm
|
||||
eyr:2020 hcl:#ffeffd iyr:2014 byr:1989
|
||||
ecl:grn
|
||||
pid:571696542
|
||||
|
||||
iyr:1953 hgt:160in
|
||||
ecl:grt cid:188 eyr:2034
|
||||
pid:179cm byr:2007
|
||||
hcl:6895eb
|
||||
|
||||
hgt:165cm ecl:oth
|
||||
iyr:2020
|
||||
eyr:2028
|
||||
hcl:#18171d pid:111506895
|
||||
|
||||
eyr:1957 cid:133 ecl:hzl pid:#e56ca2 byr:2003 hcl:8a9d65
|
||||
|
||||
hcl:6c4ecd byr:1930 hgt:179cm
|
||||
eyr:2007 iyr:2028 ecl:#3d8705
|
||||
pid:#dbfeec
|
||||
|
||||
eyr:2036
|
||||
byr:1991 ecl:#2202d0 hcl:#341e13 pid:85636989 hgt:61cm
|
||||
iyr:1930
|
||||
|
||||
byr:1996 iyr:2027 hcl:z
|
||||
pid:780164868 ecl:zzz eyr:2026 hgt:73cm
|
||||
|
||||
byr:1940
|
||||
iyr:1992 pid:132016954 eyr:2021
|
||||
cid:147 hcl:#d78bfd ecl:xry
|
||||
|
||||
hgt:174cm
|
||||
byr:1970
|
||||
eyr:2021 hcl:#341e13 pid:086579106 iyr:2017 ecl:oth
|
||||
|
||||
ecl:oth cid:207 byr:1998 pid:479696359
|
||||
hgt:174cm iyr:2017 eyr:2020 hcl:#6b5442
|
||||
|
||||
ecl:hzl iyr:2014
|
||||
hcl:#cfa07d hgt:163cm eyr:2025
|
||||
byr:1951 pid:563337128
|
||||
|
||||
ecl:gry hgt:172cm iyr:2013 hcl:#efcc98
|
||||
byr:1970
|
||||
pid:848996674
|
||||
eyr:2027
|
||||
|
||||
hgt:163cm pid:583600660 iyr:2015 hcl:#18171d byr:1959 ecl:brn
|
||||
|
||||
hcl:#efcc98 pid:353178375 cid:145
|
||||
iyr:2018 byr:1988 ecl:oth eyr:2029
|
||||
|
||||
hgt:62in
|
||||
byr:1921 pid:125944934 hcl:#b6652a
|
||||
eyr:2025 cid:71 iyr:2018 ecl:blu
|
||||
|
||||
iyr:2017 ecl:brn hcl:#602927 hgt:172cm pid:932690969 byr:1957 eyr:2026
|
||||
|
||||
hcl:#efcc98 pid:709772213 cid:146 ecl:oth byr:1998 iyr:2010 hgt:74in
|
||||
eyr:2029
|
||||
|
||||
byr:1965
|
||||
iyr:2011 hcl:#6b5442 cid:325 hgt:68in eyr:2028 pid:813272708 ecl:hzl
|
||||
|
||||
pid:57223084 hcl:#602927 ecl:grn
|
||||
hgt:156cm eyr:1972 iyr:2017
|
||||
|
||||
pid:21573000 byr:2030 cid:168
|
||||
hcl:baee61 eyr:2021 hgt:150cm
|
||||
iyr:1950 ecl:#acdd7e
|
||||
|
||||
ecl:gry hgt:150cm hcl:#6b5442
|
||||
byr:1927
|
||||
iyr:2018 pid:161cm eyr:2021
|
||||
|
||||
hgt:153cm
|
||||
iyr:2030 ecl:grn pid:575037626 byr:1921 eyr:2021 hcl:#866857
|
||||
|
||||
hgt:175cm iyr:2014
|
||||
byr:1946 eyr:2025
|
||||
cid:159 hcl:#18171d
|
||||
ecl:oth pid:129913905
|
||||
|
||||
pid:566885568
|
||||
hgt:157cm eyr:2021 ecl:gry byr:1933
|
||||
hcl:#623a2f cid:223
|
||||
|
||||
ecl:blu byr:1981 cid:160
|
||||
iyr:2014
|
||||
hcl:#a97842 eyr:2021 hgt:172cm pid:714902414
|
||||
|
||||
hcl:#b6652a eyr:2021
|
||||
hgt:168cm byr:1921 iyr:2018 ecl:oth pid:021318713
|
||||
|
||||
hgt:168 pid:222439573
|
||||
cid:209
|
||||
hcl:z byr:2016 ecl:#26a0fb
|
||||
eyr:2031
|
||||
|
||||
hgt:181cm
|
||||
byr:1970 eyr:2024
|
||||
pid:476171876 ecl:hzl
|
||||
hcl:#efcc98
|
||||
iyr:2019
|
||||
|
||||
hcl:#18171d ecl:oth iyr:2018 byr:1949 hgt:165cm
|
||||
eyr:2029 pid:078204562
|
||||
|
||||
byr:2021 ecl:blu iyr:1963
|
||||
pid:2911597977 hcl:#ceb3a1 eyr:2020
|
||||
hgt:154cm
|
||||
|
||||
pid:159642237
|
||||
hcl:#81e94d ecl:gry eyr:2028 byr:1958
|
||||
|
||||
hgt:90 hcl:#a97842 pid:#db1158
|
||||
iyr:1928 ecl:#c82a43 byr:1971 eyr:2036
|
||||
|
||||
eyr:2020
|
||||
hgt:177cm iyr:2013
|
||||
cid:347 ecl:grn
|
||||
byr:1998 pid:455369144
|
||||
|
||||
byr:1936
|
||||
pid:444305229 iyr:2013 eyr:2025 hcl:#733820
|
||||
ecl:gry
|
||||
hgt:175cm
|
||||
|
||||
byr:2027 hcl:z
|
||||
hgt:61cm ecl:brn pid:836686228 eyr:2023 iyr:2030
|
||||
|
||||
byr:1931
|
||||
ecl:hzl hgt:168cm eyr:2023 pid:956562488 hcl:#fffffd
|
||||
|
||||
ecl:#4126e5 pid:182cm iyr:2021
|
||||
hgt:144 eyr:2039 hcl:z
|
||||
|
||||
pid:321400085 hcl:#733820 hgt:189cm
|
||||
ecl:hzl byr:1923 eyr:2023 iyr:2016
|
||||
|
||||
iyr:2011 hgt:192cm hcl:#b6652a byr:1988 pid:998875769
|
||||
ecl:#e612d9 eyr:2015
|
||||
|
||||
eyr:2021 iyr:2011 pid:265966660
|
||||
byr:1934 hgt:180cm
|
||||
hcl:#7d3b0c
|
||||
ecl:gry cid:225
|
||||
|
||||
pid:550612542 ecl:oth byr:1931
|
||||
iyr:2014 cid:99
|
||||
hcl:#cfa07d hgt:163cm eyr:2026
|
||||
|
||||
ecl:gry hgt:156cm iyr:2018 hcl:#5d9d64 pid:295386055 byr:1996
|
||||
eyr:2025
|
||||
|
||||
ecl:gry iyr:2013 pid:855457285 cid:309 eyr:2030
|
||||
hcl:#733820 byr:1973
|
||||
|
||||
eyr:2030 pid:86472746 ecl:blu
|
||||
hgt:192cm
|
||||
iyr:2013 byr:1939 hcl:#b6652a
|
||||
|
||||
hcl:#888785
|
||||
byr:1935
|
||||
iyr:2018
|
||||
hgt:155cm ecl:grn
|
||||
pid:612879095 cid:108 eyr:2027
|
||||
|
||||
eyr:2016 hcl:z pid:025915371 iyr:2010 hgt:183cm ecl:gry
|
||||
byr:2010
|
||||
cid:228
|
||||
|
||||
hcl:#38dbf4
|
||||
byr:1925 ecl:amb eyr:2020 pid:065102805 iyr:2018
|
||||
|
||||
cid:244 hgt:171cm
|
||||
hcl:#cfa07d pid:466737179 eyr:2025
|
||||
byr:1937 iyr:2020 ecl:oth
|
||||
|
||||
ecl:brn byr:1993 hgt:179cm hcl:#341e13 pid:855375268 eyr:2028
|
||||
iyr:2018
|
||||
|
||||
pid:809135189 iyr:2020 hgt:162cm eyr:2027
|
||||
hcl:#888785 byr:1988 ecl:grn
|
||||
|
||||
byr:2003 pid:4446708453
|
||||
hgt:188cm iyr:2013 hcl:#888785 ecl:blu eyr:2008
|
||||
|
||||
hgt:165in ecl:#db642f iyr:2014
|
||||
eyr:2020
|
||||
byr:1955 hcl:371f72 pid:756089060
|
||||
|
||||
ecl:lzr
|
||||
hgt:177in eyr:2037 pid:175cm
|
||||
byr:2023 hcl:03b398 iyr:2026
|
||||
|
||||
iyr:2017 ecl:blu byr:1942 hcl:#733820 eyr:2023 hgt:151cm pid:289923625
|
||||
@@ -0,0 +1,807 @@
|
||||
FBFFFFFLLL
|
||||
FFBFFFFRRR
|
||||
FFFBBBBLRL
|
||||
FBFFBBFLLL
|
||||
FFFBFBBLLL
|
||||
FBFFFFBRLR
|
||||
BFFBBFBLLL
|
||||
FBFBFFBLLL
|
||||
BFFFBBBRLL
|
||||
FBFBBFBRLR
|
||||
BFBFFFBRLR
|
||||
FFFBBFFRLR
|
||||
FFFFFBFRRR
|
||||
FBFBBBFRRL
|
||||
FBFBBFBRRR
|
||||
FBFBBBFLRR
|
||||
BBFFFBBRLL
|
||||
FBBBBBFRLL
|
||||
FBFFFFBLLR
|
||||
FBFFFFFLRR
|
||||
FBFBFFBLRR
|
||||
FBFBFBBRRL
|
||||
FFFFBFFRRL
|
||||
FFFFBBFLRR
|
||||
BFFBBFBRLR
|
||||
BBFFFFFRLR
|
||||
FFBFBBBRLL
|
||||
FFBFBBBLRL
|
||||
FBFFFBBLLL
|
||||
FFFFBBFRLR
|
||||
FBFBBFFLLR
|
||||
FBBFFBFRLL
|
||||
BFFFBFBLLR
|
||||
FBFFBBBLLL
|
||||
FFFFBBBLRR
|
||||
FFBFFBFLLL
|
||||
BFBFBFBRRL
|
||||
BFBFFFBRRL
|
||||
FBFBFBFLLL
|
||||
FBBBBFFRRR
|
||||
FBFFBFBRRR
|
||||
BBFFFFFRRL
|
||||
BFFFFFFLRL
|
||||
FFFFFBBLLR
|
||||
FBBFBFBRRL
|
||||
BFBFFBFLLL
|
||||
FFFFBBBRLL
|
||||
BFFFBFBRLL
|
||||
FFFBBFFLLL
|
||||
BFFFFFBRLR
|
||||
FBFBBFFRLR
|
||||
BFFBBBFRLR
|
||||
BBFFBFFRRR
|
||||
BFFBFFFRLL
|
||||
FFFBBBFLLR
|
||||
FBFBFFFRRL
|
||||
FBBFFFBLLR
|
||||
BFBFFBFLRR
|
||||
BFFBBFBRRR
|
||||
FFFBBBBRLR
|
||||
BBFFBFFRLR
|
||||
FBBBBBFRRR
|
||||
FBFBBBFRLR
|
||||
FBFFFBBLRL
|
||||
FFBFBFFLRR
|
||||
BFFFBFFRLL
|
||||
FBFFBFBLRL
|
||||
BFBBFBFLLR
|
||||
BFFFBBFRLL
|
||||
BFBFBFBLRR
|
||||
BFFFFBBRLR
|
||||
BFBBFFBRRL
|
||||
BFFBFFBRRR
|
||||
FBFFFBFRLL
|
||||
FFFFBFFLLR
|
||||
FBFFFBFLLR
|
||||
FBFFFFFRRL
|
||||
FBBBFBBLLR
|
||||
BFBFFFBLLR
|
||||
BFFBFFBLLR
|
||||
FFFBBBFRLL
|
||||
FBBBBFFRRL
|
||||
FBBFBBFRRR
|
||||
BFBFBFFLLR
|
||||
BFFFBBBRRL
|
||||
FBBFBBBRRL
|
||||
FFBFBBFRLL
|
||||
FBBFBFFLLL
|
||||
FBBBBBFRLR
|
||||
BFBFBFFRRL
|
||||
BFFBBFFRRR
|
||||
BFBFBFBRLL
|
||||
BFFBFFBRLR
|
||||
BBFFBFBLRL
|
||||
FFBFBFBLLL
|
||||
FFBBBFBRRR
|
||||
BBFFFFBLRR
|
||||
BFBBBBBRLR
|
||||
BFFFFFBLLR
|
||||
FBFBBBBRRR
|
||||
FBBBFBFLRR
|
||||
FBBFBBFLLL
|
||||
BBFFFFBLRL
|
||||
FFBBFBFLLL
|
||||
FBBBBFBLLR
|
||||
FFFBBBBRRL
|
||||
FFBFFBFRLL
|
||||
BFFBBBFLLR
|
||||
FFFBFBBLRR
|
||||
FFBBFFBLLR
|
||||
FFBFFBFLRR
|
||||
FBBBBFBLRL
|
||||
FBBBFBFRLL
|
||||
FBFBFFFRLL
|
||||
FBBFBBFRLR
|
||||
BFFFFBBLLL
|
||||
FBFBFBFLRL
|
||||
FBBBFFBRRR
|
||||
FFFFBFFLLL
|
||||
BFBBBFFRLL
|
||||
FBBBFBFLLR
|
||||
FBBFBBFLRR
|
||||
FBFFBBBLRL
|
||||
FBFFBBFLRR
|
||||
FBBBFFBRRL
|
||||
FBFBBFBRRL
|
||||
FBFBBFBLRL
|
||||
BFBFFBBLLL
|
||||
FBFFFBFLRR
|
||||
FBFFBBFRLL
|
||||
FFBBFFFRLR
|
||||
FBFBBBBRLL
|
||||
FBBBBFFRLR
|
||||
BFBFBFBRLR
|
||||
BFFBFBFRLR
|
||||
FFFBFFBLLL
|
||||
FFFFBBFLLR
|
||||
FFBFBBFRRL
|
||||
FBBFBFBRLR
|
||||
FBFBBFBLRR
|
||||
BFBBBBFLRL
|
||||
BFFFFBBRRR
|
||||
FBBFBFBLLL
|
||||
BFFFFBFLLR
|
||||
FFFFFBBLRR
|
||||
FFFBFBBRRL
|
||||
BFBFFFFRRR
|
||||
FBFBBFFLRL
|
||||
FBFFBBBRLL
|
||||
FFBBBBFLLR
|
||||
FFFBFFBLLR
|
||||
FBFFFFFRLL
|
||||
BFBFFFBLLL
|
||||
FBBBBFBRLL
|
||||
FFFFFFBRRL
|
||||
FFBFBFBLLR
|
||||
FBFBFBFRLR
|
||||
FBBBBBBLLL
|
||||
BFFBFFBLRL
|
||||
FFBBBFBLRL
|
||||
FBBFFFFRLL
|
||||
BBFFBFBLRR
|
||||
BFBFFBFLLR
|
||||
FFBBFBBRLR
|
||||
FBBFFFFRRL
|
||||
FBFFBFBRLR
|
||||
BFBFBFFLLL
|
||||
FFFBFFFLLL
|
||||
BFBFBFFLRL
|
||||
BFBFBBFLLL
|
||||
FFFBBBBLRR
|
||||
BFFBFBFLLL
|
||||
BFBBFBFRRR
|
||||
BFBBFFFLLL
|
||||
BFFFBBBLRL
|
||||
FFBBFBFLRL
|
||||
FFFFBFBLLR
|
||||
FBFBFFFLLL
|
||||
BFBFFFBLRR
|
||||
FFBBFBBLLR
|
||||
FFFFBBFLRL
|
||||
BFBBFBBLLR
|
||||
BFFBBFBLLR
|
||||
BFFBFFBRLL
|
||||
BFFFBBFLLR
|
||||
FFBBFBFLLR
|
||||
FBBBFFBRLR
|
||||
FFBFBFFLLR
|
||||
FBFFFBBRLR
|
||||
FBBFFFBRLL
|
||||
FBBFFBBLRL
|
||||
BBFFFFBRRL
|
||||
FFBFFFBRLL
|
||||
BFFFBFFLRL
|
||||
FFFFFBBRRR
|
||||
FBFFBBFRRL
|
||||
FBFBFBFLRR
|
||||
FBBFFBFLRR
|
||||
BFBBFBBLLL
|
||||
FFFBFBFLRL
|
||||
BBFFFFBLLR
|
||||
BBFFBFBLLL
|
||||
BFBBFBFRRL
|
||||
FBBFFFBRRL
|
||||
BFFBBBFLRR
|
||||
FFBBBBFRRL
|
||||
FBBBBBBRLR
|
||||
FFFBFFBRRL
|
||||
FFFBBFBLRL
|
||||
FBBBBBBRRL
|
||||
FFFFBFFRRR
|
||||
FFFBBBBRLL
|
||||
FFBBFFBLLL
|
||||
BFBFBBFRLR
|
||||
FFBFFBBRLL
|
||||
BFBBBBFLRR
|
||||
FBFFBFFLLR
|
||||
FBBBFFBLLR
|
||||
BFFBBBBRRR
|
||||
FFBFFFFLRL
|
||||
BFFBBFBRLL
|
||||
FFBFBBBRRL
|
||||
FFBBBFFRLL
|
||||
FBBFFBFLLR
|
||||
FBFFBFFLRR
|
||||
BBFFFFFLRL
|
||||
FFBBBBFRLR
|
||||
BBFFFBBLRR
|
||||
FFFFFFBRRR
|
||||
FBBBFBBLRL
|
||||
BFFBBFBRRL
|
||||
BFBFBBFRRL
|
||||
BFBBFBBRLL
|
||||
BFBFFFBRLL
|
||||
BFFBFFFLRL
|
||||
BFFBBBBRLL
|
||||
FFBBBBBRRL
|
||||
FBBFFBFRRR
|
||||
BFBBBBBLRL
|
||||
BFFFFFBLRL
|
||||
BBFFFFBRLR
|
||||
FFBBBBBLRL
|
||||
BFFBFBFLRL
|
||||
BFBBFFFLRR
|
||||
BFFBBBFLRL
|
||||
BFFBFFFLRR
|
||||
BFBBFBFLRR
|
||||
BBFFFFFLLR
|
||||
FFBFFBBLRL
|
||||
BFFBBBBLLR
|
||||
FBFFBBBRLR
|
||||
BFFFFBBLRR
|
||||
BFFFBFFRRR
|
||||
FBBFFBBRLL
|
||||
FBFBFBFRRL
|
||||
FFFFBFBRRR
|
||||
FFBBBFBRLL
|
||||
FBFFBFBRRL
|
||||
FFBFBFBLRR
|
||||
BFFFFFFRLL
|
||||
BFFBFFBRRL
|
||||
FBFBFFFLLR
|
||||
BFBFFBBRLL
|
||||
FFBFFBBLLR
|
||||
FBFBBFBLLL
|
||||
FFBBFBFLRR
|
||||
FFFBBFBRLL
|
||||
FBBFFBFLRL
|
||||
FFBFBFFRRR
|
||||
FBBBFBBRLL
|
||||
FBFFFFBLRL
|
||||
FFFFFFBLRR
|
||||
BFFBFFFRRL
|
||||
BFFBFBBLRR
|
||||
FBBFFFBLRL
|
||||
FBFFBBFRRR
|
||||
BBFFFBFLRL
|
||||
BBFFBFFLRL
|
||||
FFBBFFFLRR
|
||||
BFBBBFBLLR
|
||||
FBFBFBFRLL
|
||||
BFBFBBFRLL
|
||||
FFBBFBBRLL
|
||||
BFBBBFBRRL
|
||||
BFFFBBFLRR
|
||||
FFFBFFFRLL
|
||||
BBFFBFFLRR
|
||||
BBFFBFFLLR
|
||||
FFFBFFBLRR
|
||||
BFFBFFFRRR
|
||||
FBFBFFFRLR
|
||||
FBFBFFBLLR
|
||||
FBBFBFBLRR
|
||||
FBFBBBBLRL
|
||||
FBFBBFFRRR
|
||||
BFFFFBFLRR
|
||||
FBBFBBBRLL
|
||||
FFBFFBBLRR
|
||||
FFBFBFFRLR
|
||||
FBBBBBBLLR
|
||||
BFBFFFFLRR
|
||||
BFFFBBFRRR
|
||||
FFBFBFFLLL
|
||||
FFBFBBFRRR
|
||||
BFFBBBFRLL
|
||||
BFBBFBFRLL
|
||||
BFBBBFFRRR
|
||||
BFFFBBBLRR
|
||||
FFFBBFBRLR
|
||||
BBFFFBBLLR
|
||||
BFFFBBBLLL
|
||||
FFFBFFBRRR
|
||||
BFBFBBBLRR
|
||||
BFBFBFFLRR
|
||||
FBFBFBBLLL
|
||||
FBBBFBBLRR
|
||||
FBFFBBBRRR
|
||||
FFBFFBBRLR
|
||||
FFFBBFFRRL
|
||||
FBBFFBBRLR
|
||||
BFFBFBBRRL
|
||||
FBBBFFFLRL
|
||||
FBBFFFFLLR
|
||||
FFBBFFBRRR
|
||||
FFFFFBFLRL
|
||||
BBFFFFFRLL
|
||||
BFBBBFFLLL
|
||||
FBFBBFBRLL
|
||||
FBFBBBFRLL
|
||||
FBBBFFFLLR
|
||||
BFBBFBBLRL
|
||||
FFFFBBFLLL
|
||||
BFBBBBBRRR
|
||||
FFFBFBFRLR
|
||||
FBFFBFBLLL
|
||||
BFBBBBBLLR
|
||||
FFBBFFFRLL
|
||||
FFFBFFFLRL
|
||||
FFBBBFFRRL
|
||||
FFBFFFFRLR
|
||||
BFFFBBBLLR
|
||||
BFBFFFFLRL
|
||||
FBBFFBFRLR
|
||||
FBFFFFFRLR
|
||||
BBFFFBBRRL
|
||||
BBFFFBBLRL
|
||||
FBFFFBFLRL
|
||||
FBBFFFFLRR
|
||||
FBFFFFBLRR
|
||||
FBFFBFFLRL
|
||||
BFBFFBFRLL
|
||||
BFBFBBFRRR
|
||||
FBBBFBFLLL
|
||||
BBFFFFFLLL
|
||||
FFFFBFFLRL
|
||||
FBBFBBFLRL
|
||||
FBBFBBBRLR
|
||||
FFBFFFFLLR
|
||||
FFBFBFBRRR
|
||||
FBBBFBBLLL
|
||||
FBFBBBBLLR
|
||||
BFFFFBBLRL
|
||||
BFFBFBFLLR
|
||||
BFFBBBFRRR
|
||||
BBFFFBFLRR
|
||||
FBFFFFFLRL
|
||||
BFFFFFFRRL
|
||||
BFFBFFBLLL
|
||||
BFFFFFFLLL
|
||||
FFFBFFBLRL
|
||||
BFFFFBFRRL
|
||||
FBBBFFFRLR
|
||||
BFBFBBBLRL
|
||||
BBFFFBFRRR
|
||||
BFFFFBBLLR
|
||||
BFBFBBBRRR
|
||||
FBFFFBFLLL
|
||||
FBBBFBFRLR
|
||||
FFFFFFBLRL
|
||||
FBFBBFFRRL
|
||||
BFBBFBFLLL
|
||||
FFBFFBBRRL
|
||||
BFBFFFFLLL
|
||||
FBBFFBFLLL
|
||||
FBFFFBFRRR
|
||||
BFBBBBFRRL
|
||||
BBFFFBFRLL
|
||||
FBBFBFBLRL
|
||||
FFBBFFFLRL
|
||||
FBBFBBFRRL
|
||||
FBBFBBFLLR
|
||||
BFBFBFBLLR
|
||||
FBBFFFFRRR
|
||||
FBBFFBFRRL
|
||||
BFFFFFFRRR
|
||||
BFBBFBBRLR
|
||||
FFFBFBFRLL
|
||||
FBFFBBBLLR
|
||||
BFBBBBBRLL
|
||||
BFFBFFFRLR
|
||||
BFBBBFFLRL
|
||||
BFBBBFFRRL
|
||||
FFBBFBFRRR
|
||||
FFBFBBFRLR
|
||||
FFBFBFFLRL
|
||||
FBFBFFBLRL
|
||||
FBBBFFBLRR
|
||||
BFBBBFFRLR
|
||||
BBFFBFFRRL
|
||||
FBBBBBFRRL
|
||||
FBFBBFFLLL
|
||||
BFBBFBFRLR
|
||||
FFBFBFFRRL
|
||||
BBFFFFFLRR
|
||||
FBBBFBFRRL
|
||||
BFBFBBBRLR
|
||||
FFBFFBFRLR
|
||||
FFBBFBFRLR
|
||||
FBFFBFFLLL
|
||||
BFBFBBBLLL
|
||||
BFFFFFBRLL
|
||||
FFBFBBFLRR
|
||||
BFBBFFFLRL
|
||||
BFFFFBFLRL
|
||||
FFBBFBFRRL
|
||||
FFFFBBFRRR
|
||||
FBFBFFBRLL
|
||||
FBBBBFBLRR
|
||||
BFBBFBBRRL
|
||||
FFFBFBFRRL
|
||||
FBFFBFBLLR
|
||||
FFBFBBBLRR
|
||||
BBFFFBFLLL
|
||||
BFBBBBFRLR
|
||||
FFFFFBFRLL
|
||||
BBFFFBBRRR
|
||||
BFFBBFFRLR
|
||||
FBFBBBFLRL
|
||||
BFBBFFBLRL
|
||||
BFBBBFFLRR
|
||||
FBBBFFFRRR
|
||||
FFFFBFBLRL
|
||||
BFFBBBFLLL
|
||||
FBBBBFBRRL
|
||||
BFFBFBBRRR
|
||||
FBBBBBFLLR
|
||||
BFBFBBBRLL
|
||||
FFFFFBFLRR
|
||||
BFFFBBFRRL
|
||||
FFFBBBFLRL
|
||||
FBBBBFBLLL
|
||||
FBBFBBBLLR
|
||||
FBFBBFBLLR
|
||||
FBFBFFFLRR
|
||||
BFFFFBFRLR
|
||||
FFFBBBBLLL
|
||||
BFBFFFFRRL
|
||||
FBFBBBBLRR
|
||||
FBBBBFFLRL
|
||||
BFBBBFBLLL
|
||||
FBBFFFBRRR
|
||||
FFFBBFFLRL
|
||||
FBBFFFFLLL
|
||||
BFFFFBBRLL
|
||||
FBBBBFBRLR
|
||||
FFBBBFBLLL
|
||||
BFFFBFFLLL
|
||||
BFBBBBBLRR
|
||||
FFBFFFFLRR
|
||||
FBBFBFFRLL
|
||||
BFFBBBFRRL
|
||||
FFFBFBFLLR
|
||||
BFFFBFFRRL
|
||||
FBFBFBBLLR
|
||||
FBFBBBFRRR
|
||||
FBBFBFBRLL
|
||||
BBFFFBBLLL
|
||||
FBFFBFBRLL
|
||||
BFBFFBBLLR
|
||||
FFFBBFFLRR
|
||||
FBBFBBBLRL
|
||||
FFFFBFFRLL
|
||||
FFBBFFFLLL
|
||||
BFFBBBBLRL
|
||||
BFBBBFFLLR
|
||||
FFBBFBFRLL
|
||||
BFBBBFBLRL
|
||||
BFBBBFBRLR
|
||||
BFFBBFFLRL
|
||||
FFBBBBBRLL
|
||||
FBBFBFFLRR
|
||||
FFFBBFBLRR
|
||||
FBBFFBBRRL
|
||||
FFFBBFBLLR
|
||||
FFFBBFBLLL
|
||||
FBFBFFFRRR
|
||||
FFFFFFFRRR
|
||||
BFFFBFFLLR
|
||||
FFBFFBFLRL
|
||||
FFFBFFFLRR
|
||||
FBBFBFFRLR
|
||||
FBFBFBFLLR
|
||||
FBFFFBBRRL
|
||||
FBFFFBBRLL
|
||||
FFBBFFBLRL
|
||||
FFFFBFBRRL
|
||||
FFFFFBFRRL
|
||||
BFBBFFBLLR
|
||||
FBFFFBBLRR
|
||||
FFFFBFFRLR
|
||||
BFFBBFFLRR
|
||||
FBBBBBFLLL
|
||||
BBFFBFFRLL
|
||||
BFFFFFBRRL
|
||||
FFFBBBFLLL
|
||||
FFBBBBBRLR
|
||||
FFBBBBBLRR
|
||||
BFFFFFFLRR
|
||||
FFFBBBFRRR
|
||||
FFBBBFBRRL
|
||||
BFBBBFBLRR
|
||||
FBBFFBBLLR
|
||||
FFFBFBBRRR
|
||||
FBFBFBBRRR
|
||||
FBBFFFBLRR
|
||||
FFBFFFBLRR
|
||||
FFBFBBBRLR
|
||||
FFFBFBFRRR
|
||||
BFFBFBFRLL
|
||||
FFFFFBBLRL
|
||||
FFBBFFFRRL
|
||||
FFBFBBBRRR
|
||||
FFBFFBBRRR
|
||||
FFFFFBBRLL
|
||||
FFFFBBBLLL
|
||||
FBFBFFBRRL
|
||||
FFFBFBFLRR
|
||||
BFBBFBBRRR
|
||||
BFFBFBBLLR
|
||||
BFBFBBBLLR
|
||||
FBBBBBBRLL
|
||||
BFFBFBBRLL
|
||||
FBFFBFFRRR
|
||||
BFFFBFBRLR
|
||||
FFBBFBBLRL
|
||||
BFFFBBFLRL
|
||||
FFFBBFFRRR
|
||||
BFFBFFBLRR
|
||||
FFFFFFBLLR
|
||||
BFFBFBBRLR
|
||||
FBFBBBBRRL
|
||||
BFBBFFFRLL
|
||||
FBFBBFFLRR
|
||||
FBBFBBFRLL
|
||||
FFBBFBBLRR
|
||||
BFBBFFBRRR
|
||||
FBBBFBFRRR
|
||||
FFFFBFBRLR
|
||||
FFFFFBFRLR
|
||||
FBBBFFFRRL
|
||||
FBBFFFFRLR
|
||||
FFFFBBFRLL
|
||||
FBBBFBFLRL
|
||||
BBFFFBFRLR
|
||||
BFBBFFFLLR
|
||||
BFFBFBFRRL
|
||||
FBBBFBBRLR
|
||||
FBBFBFBRRR
|
||||
FBFFBBFRLR
|
||||
FFBBFBBRRL
|
||||
FBFFFFBLLL
|
||||
FBFFBBFLLR
|
||||
BBFFBFBRLR
|
||||
FBFBBBFLLR
|
||||
FFFFFFFRRL
|
||||
FFBFBBBLLL
|
||||
FFFFBFBLRR
|
||||
BFFFBFFLRR
|
||||
FFFFBBBLLR
|
||||
FFBFBFBRLR
|
||||
BFFBBFFLLL
|
||||
BFBBBFBRLL
|
||||
BBFFFBFLLR
|
||||
FFFBFBFLLL
|
||||
FFFFBFFLRR
|
||||
FFBBBBBLLL
|
||||
FFFFFBFLLL
|
||||
FBFBFBBLRR
|
||||
BFFFFFBLLL
|
||||
BFBBFFBRLL
|
||||
FBFBFBBRLR
|
||||
FBFBFBBLRL
|
||||
FBBBBBBLRR
|
||||
FFBFFFBRRL
|
||||
FBBFBFFLLR
|
||||
FBBFFBBRRR
|
||||
BFBBBBFLLR
|
||||
BFFBBBBRRL
|
||||
FFFBFFFRRR
|
||||
BFBFBBFLLR
|
||||
FFBBFFBLRR
|
||||
BFFBFFFLLL
|
||||
FBBFBFBLLR
|
||||
FFBFFFBLLL
|
||||
FFFBFFFRRL
|
||||
FFBFFFFRRL
|
||||
FFFBBBFRLR
|
||||
FBFFBBBLRR
|
||||
FFBBFFBRLR
|
||||
FFFBBFBRRL
|
||||
BFFFFFBLRR
|
||||
BFBFBFFRLR
|
||||
FFBBFBBLLL
|
||||
FFFFFBBLLL
|
||||
FFFFBBBRRL
|
||||
BFFBFBFLRR
|
||||
FFBBFFBRLL
|
||||
FFBFBFBRRL
|
||||
BFBFFFFLLR
|
||||
BFFBBBBLRR
|
||||
FFFBBBBRRR
|
||||
FFBFBFBLRL
|
||||
FBFFFBBRRR
|
||||
FFBFFFFLLL
|
||||
FFBBBFFRLR
|
||||
FBFBBBBRLR
|
||||
FBBBBFFLLR
|
||||
BFFFBFBRRR
|
||||
FBBFBBBRRR
|
||||
FFBFFBFLLR
|
||||
FFBBBFBLRR
|
||||
BFBFFFFRLL
|
||||
BFBBBBBLLL
|
||||
BFBFFBFRRR
|
||||
BFFFBFBRRL
|
||||
FBFBBBFLLL
|
||||
FFBBBBFLLL
|
||||
BFFBBFFLLR
|
||||
BFBFFBFRLR
|
||||
FBBBBFBRRR
|
||||
FBFFFBFRRL
|
||||
FFBBBFBLLR
|
||||
FBFFBBFLRL
|
||||
BFFBFBBLLL
|
||||
FFFFFFBRLR
|
||||
FBBFBBBLLL
|
||||
FFFBFFBRLR
|
||||
BFBBBFBRRR
|
||||
BFFFFFFRLR
|
||||
BFFFBBFRLR
|
||||
FFBBBBFRRR
|
||||
FFFFFBBRLR
|
||||
BFBFFBBRRR
|
||||
FBBFBFFRRR
|
||||
FFBBBBFLRL
|
||||
FBBBFBBRRL
|
||||
FBBBBBBLRL
|
||||
FBBBBBFLRR
|
||||
BFBFFBFRRL
|
||||
FFFFBFBRLL
|
||||
FBBBBFFRLL
|
||||
FBBFFFBLLL
|
||||
BBFFFBFRRL
|
||||
FFBFFFBLRL
|
||||
FFFBFFFLLR
|
||||
FFBFFFBLLR
|
||||
BFFFBFBLLL
|
||||
BFBBBBFRRR
|
||||
BFBBFBBLRR
|
||||
BFBBFFBLLL
|
||||
FBFFBFFRRL
|
||||
FBBFBFFRRL
|
||||
FFFBBBBLLR
|
||||
FFBBBFFLLL
|
||||
BFFBBFBLRR
|
||||
FBFBFFBRLR
|
||||
FFBFFFBRRR
|
||||
FFFFBBBRRR
|
||||
BFBFFFFRLR
|
||||
FFBBBFFLLR
|
||||
FBBBFFFRLL
|
||||
FBBFFBBLRR
|
||||
FFBBBFFLRR
|
||||
FFBFBFBRLL
|
||||
BFBFBBFLRL
|
||||
BFBFFBFLRL
|
||||
FBBBFFFLLL
|
||||
FFBBBFFLRL
|
||||
FBFBBBBLLL
|
||||
FFBBBBFRLL
|
||||
FBBBFFFLRR
|
||||
FBFBBFFRLL
|
||||
BFBFFBBLRL
|
||||
FBBBFFBLLL
|
||||
BBFFBFBLLR
|
||||
FBBBFBBRRR
|
||||
BBFFFFBRLL
|
||||
FFFBFBBLLR
|
||||
BFBFBBBRRL
|
||||
BBFFFFFRRR
|
||||
BFFFFFFLLR
|
||||
FFBFFFFRLL
|
||||
FBBFFFFLRL
|
||||
FFFBBBFLRR
|
||||
FFBFBBFLLR
|
||||
BFBBFBFLRL
|
||||
FFBFBBBLLR
|
||||
BFFFFFBRRR
|
||||
BFBBBBBRRL
|
||||
BFFBFFFLLR
|
||||
BFBBFFFRRL
|
||||
FFFBFBBLRL
|
||||
FBBBBBBRRR
|
||||
FFFFBFBLLL
|
||||
FFBBBFFRRR
|
||||
BFFFFBFRRR
|
||||
FFFFFFBRLL
|
||||
FFFFFBFLLR
|
||||
FFBFBBFLRL
|
||||
BFFFFBBRRL
|
||||
BFBFBBFLRR
|
||||
FBFBFBFRRR
|
||||
FBFFBFFRLL
|
||||
FFFFBBBRLR
|
||||
BFBBFFBRLR
|
||||
BFBFBFFRRR
|
||||
FFBFFFBRLR
|
||||
FBBFBBBLRR
|
||||
FBFFFBBLLR
|
||||
FFFBBFFLLR
|
||||
FBBFBFFLRL
|
||||
BFFFFBFRLL
|
||||
BFFFBBBRRR
|
||||
FBFFFFFLLR
|
||||
FFBBBBBLLR
|
||||
FBFFFFFRRR
|
||||
FBFBFBBRLL
|
||||
BBFFFFBRRR
|
||||
BFFFBFBLRR
|
||||
BFFFBFBLRL
|
||||
BFFFBFFRLR
|
||||
FFFBFBBRLL
|
||||
BFBFFFBRRR
|
||||
FFBFFBFRRR
|
||||
BFBFBFFRLL
|
||||
BFBBBBFLLL
|
||||
FBBFFFBRLR
|
||||
BBFFBFBRLL
|
||||
FFBFFBFRRL
|
||||
BFFBBBBLLL
|
||||
BFBFFFBLRL
|
||||
BFBBFFFRLR
|
||||
FBBBBBFLRL
|
||||
FFFFBBBLRL
|
||||
FFFBBFBRRR
|
||||
BFFBFBFRRR
|
||||
FBFFFFBRLL
|
||||
FBFFBBBRRL
|
||||
FFBFBBFLLL
|
||||
FFFFBBFRRL
|
||||
FBFFBFFRLR
|
||||
BFBFFBBRRL
|
||||
FFFFFFBLLL
|
||||
BFBFFBBRLR
|
||||
FBBBFFBLRL
|
||||
BFFBBBBRLR
|
||||
BBFFFFBLLL
|
||||
FBFFFBFRLR
|
||||
FBBBBFFLLL
|
||||
BBFFFBBRLR
|
||||
FFFBBBFRRL
|
||||
BFBFBFBLRL
|
||||
FFFFFBBRRL
|
||||
BFBFBFBLLL
|
||||
FFFBFBBRLR
|
||||
FBBFFBBLLL
|
||||
FFBBBBBRRR
|
||||
BFFFBBFLLL
|
||||
BFBFBFBRRR
|
||||
BFFBFBBLRL
|
||||
FFBBFFFLLR
|
||||
BFFBBFFRRL
|
||||
BFFBBFBLRL
|
||||
FBFFFFBRRR
|
||||
FBBBFFBRLL
|
||||
FFFBFFFRLR
|
||||
BFBFFBBLRR
|
||||
FFBBFBBRRR
|
||||
FFBBBFBRLR
|
||||
FFBBFFBRRL
|
||||
BFBBFFBLRR
|
||||
FBFBFFBRRR
|
||||
BFBBFFFRRR
|
||||
FBBBBFFLRR
|
||||
BFFFFBFLLL
|
||||
FBFFFFBRRL
|
||||
FFFBFFBRLL
|
||||
BFFFBBBRLR
|
||||
FBFBFFFLRL
|
||||
FFBFBFFRLL
|
||||
FFBBFFFRRR
|
||||
BFBBBBFRLL
|
||||
BBFFBFFLLL
|
||||
FFBBBBFLRR
|
||||
FFBFFBBLLL
|
||||
FBFFBFBLRR
|
||||
FFFBBFFRLL
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,594 @@
|
||||
plaid fuchsia bags contain 5 light violet bags, 1 light yellow bag.
|
||||
striped aqua bags contain 2 striped teal bags.
|
||||
clear coral bags contain 2 plaid green bags, 5 mirrored gold bags.
|
||||
dull tan bags contain 4 faded blue bags, 3 faded olive bags, 5 dull salmon bags.
|
||||
plaid green bags contain 3 faded green bags.
|
||||
light tomato bags contain 1 drab chartreuse bag, 1 dotted tomato bag, 3 striped red bags, 2 vibrant violet bags.
|
||||
dim tomato bags contain 4 striped gold bags, 5 bright lavender bags, 1 pale beige bag, 4 pale tan bags.
|
||||
vibrant green bags contain 4 faded teal bags.
|
||||
shiny crimson bags contain 2 dull green bags.
|
||||
vibrant black bags contain 5 dark beige bags, 3 dark bronze bags.
|
||||
light tan bags contain 1 striped tomato bag.
|
||||
vibrant teal bags contain 1 shiny silver bag.
|
||||
pale chartreuse bags contain 2 dotted plum bags.
|
||||
plaid coral bags contain 2 pale green bags, 2 faded tomato bags, 2 dark salmon bags, 1 vibrant magenta bag.
|
||||
dull gray bags contain 1 dark tan bag, 3 dotted tan bags.
|
||||
muted gray bags contain 5 bright indigo bags, 5 dotted purple bags.
|
||||
vibrant red bags contain 4 bright tomato bags, 4 shiny orange bags.
|
||||
faded tan bags contain 1 dull crimson bag, 5 faded red bags.
|
||||
pale magenta bags contain 3 posh chartreuse bags, 4 vibrant purple bags.
|
||||
shiny gray bags contain 2 wavy purple bags.
|
||||
light crimson bags contain 5 clear teal bags.
|
||||
striped turquoise bags contain 3 pale tomato bags, 2 posh teal bags.
|
||||
striped purple bags contain 4 dark silver bags, 4 vibrant gray bags, 2 dim bronze bags, 2 clear aqua bags.
|
||||
muted magenta bags contain 4 striped tomato bags.
|
||||
light teal bags contain 2 faded brown bags, 2 posh purple bags, 1 faded olive bag.
|
||||
clear cyan bags contain 1 clear coral bag, 5 clear aqua bags.
|
||||
dull cyan bags contain 5 wavy crimson bags, 1 pale orange bag.
|
||||
shiny tan bags contain 2 bright red bags, 4 plaid cyan bags.
|
||||
light brown bags contain 3 dim yellow bags, 4 dull orange bags, 1 vibrant yellow bag.
|
||||
pale tan bags contain 2 striped orange bags, 5 dull plum bags.
|
||||
wavy salmon bags contain 2 dark blue bags, 5 dim plum bags.
|
||||
mirrored cyan bags contain 2 plaid turquoise bags, 5 dull plum bags, 3 muted indigo bags, 2 plaid white bags.
|
||||
dark aqua bags contain 3 bright red bags, 2 wavy purple bags, 2 plaid tan bags.
|
||||
wavy purple bags contain 5 wavy brown bags.
|
||||
clear magenta bags contain 4 muted green bags, 3 dull cyan bags, 4 striped teal bags, 2 faded blue bags.
|
||||
bright red bags contain 5 vibrant tomato bags, 2 dull orange bags.
|
||||
pale purple bags contain 3 plaid turquoise bags, 4 light tan bags, 1 faded black bag, 5 light yellow bags.
|
||||
bright orange bags contain 1 mirrored orange bag, 2 faded bronze bags, 1 wavy turquoise bag, 1 bright yellow bag.
|
||||
faded lavender bags contain 1 plaid brown bag.
|
||||
dark salmon bags contain 3 dotted crimson bags, 1 posh bronze bag.
|
||||
mirrored coral bags contain 3 dark red bags, 1 dull fuchsia bag, 2 drab magenta bags, 4 dull indigo bags.
|
||||
clear black bags contain 5 mirrored salmon bags, 3 drab gold bags, 3 muted fuchsia bags.
|
||||
faded fuchsia bags contain 1 shiny silver bag, 2 posh orange bags, 5 plaid bronze bags.
|
||||
dotted red bags contain 4 faded yellow bags, 5 dull brown bags, 3 clear red bags.
|
||||
light purple bags contain 2 plaid magenta bags, 3 vibrant coral bags, 2 wavy black bags.
|
||||
faded beige bags contain no other bags.
|
||||
dull fuchsia bags contain 3 dim lavender bags, 1 dull aqua bag, 2 pale fuchsia bags.
|
||||
wavy olive bags contain 5 dotted cyan bags, 1 dull lime bag.
|
||||
dim teal bags contain 1 dull green bag.
|
||||
dull orange bags contain 5 striped tomato bags, 5 drab blue bags, 5 faded blue bags, 2 pale brown bags.
|
||||
muted brown bags contain 3 dotted orange bags, 1 bright tan bag.
|
||||
vibrant coral bags contain 2 wavy turquoise bags.
|
||||
clear aqua bags contain 5 posh bronze bags, 5 dim orange bags, 5 posh chartreuse bags.
|
||||
dull plum bags contain 4 drab tan bags.
|
||||
wavy tomato bags contain 4 wavy cyan bags, 1 bright silver bag, 3 dotted gray bags, 1 dark tomato bag.
|
||||
shiny fuchsia bags contain 1 dotted silver bag, 5 dull lime bags, 3 drab teal bags.
|
||||
pale fuchsia bags contain 3 pale beige bags.
|
||||
plaid plum bags contain 4 dotted plum bags, 1 mirrored brown bag, 3 dim yellow bags, 2 vibrant bronze bags.
|
||||
posh green bags contain 5 plaid indigo bags, 1 wavy red bag, 5 dim indigo bags, 4 wavy indigo bags.
|
||||
muted aqua bags contain 3 bright tan bags, 3 dull yellow bags, 1 faded blue bag.
|
||||
mirrored white bags contain 5 dark coral bags, 1 plaid red bag, 4 dull violet bags, 5 clear gray bags.
|
||||
dotted aqua bags contain 4 drab aqua bags, 3 faded tomato bags.
|
||||
bright indigo bags contain 4 faded tan bags, 3 clear turquoise bags, 1 plaid indigo bag, 4 bright gray bags.
|
||||
posh silver bags contain 5 striped red bags, 3 faded blue bags, 3 dim plum bags, 3 vibrant beige bags.
|
||||
bright olive bags contain 3 dull silver bags, 5 drab tomato bags.
|
||||
muted beige bags contain 1 drab crimson bag.
|
||||
shiny beige bags contain 3 clear blue bags.
|
||||
wavy brown bags contain 2 striped coral bags, 2 light purple bags.
|
||||
wavy black bags contain 4 faded beige bags, 2 striped red bags, 2 pale brown bags, 3 dull yellow bags.
|
||||
faded salmon bags contain 1 light indigo bag, 5 plaid cyan bags, 2 pale salmon bags.
|
||||
dark gold bags contain 1 mirrored plum bag, 2 dark tomato bags, 5 dull green bags, 2 light lime bags.
|
||||
mirrored lavender bags contain 5 muted brown bags, 1 shiny blue bag, 5 dull blue bags, 3 wavy indigo bags.
|
||||
wavy beige bags contain 3 mirrored purple bags, 3 posh yellow bags, 4 plaid green bags.
|
||||
striped fuchsia bags contain 5 drab bronze bags, 4 posh tomato bags, 1 drab maroon bag, 1 dim beige bag.
|
||||
faded blue bags contain 1 striped tomato bag, 3 dark olive bags, 2 drab tan bags.
|
||||
drab gray bags contain 1 posh teal bag.
|
||||
dim cyan bags contain 4 dark fuchsia bags, 3 wavy maroon bags, 5 posh silver bags, 4 posh chartreuse bags.
|
||||
dotted purple bags contain 3 wavy white bags.
|
||||
shiny brown bags contain 5 light silver bags, 4 light turquoise bags, 4 posh bronze bags.
|
||||
vibrant tomato bags contain 3 dotted cyan bags, 3 posh teal bags, 1 clear magenta bag, 5 dull lime bags.
|
||||
dark bronze bags contain 2 vibrant maroon bags, 2 mirrored olive bags.
|
||||
wavy silver bags contain 4 striped magenta bags, 3 dim fuchsia bags.
|
||||
striped yellow bags contain 5 faded black bags, 5 light beige bags, 1 vibrant beige bag, 2 mirrored beige bags.
|
||||
faded chartreuse bags contain 4 clear gray bags, 5 dotted gray bags.
|
||||
faded tomato bags contain 5 faded gray bags, 4 faded fuchsia bags, 3 drab teal bags.
|
||||
dull gold bags contain 1 dark plum bag, 4 striped black bags.
|
||||
muted turquoise bags contain 1 mirrored bronze bag, 5 shiny aqua bags, 1 clear plum bag.
|
||||
dotted lime bags contain 1 dark black bag, 5 pale brown bags.
|
||||
vibrant violet bags contain 5 faded lime bags, 1 pale fuchsia bag, 5 dull plum bags.
|
||||
faded black bags contain 2 striped teal bags, 5 faded beige bags, 4 wavy black bags, 1 striped lavender bag.
|
||||
drab teal bags contain 1 clear gold bag, 4 muted crimson bags, 1 light teal bag.
|
||||
dull purple bags contain 1 posh crimson bag, 2 clear blue bags.
|
||||
dotted teal bags contain 2 dark tan bags.
|
||||
dark red bags contain 3 dotted cyan bags, 3 posh red bags, 2 bright red bags, 3 faded magenta bags.
|
||||
light black bags contain 5 dull yellow bags.
|
||||
light salmon bags contain 3 faded beige bags.
|
||||
dull brown bags contain 1 light indigo bag, 4 mirrored yellow bags, 5 faded silver bags.
|
||||
dark black bags contain 5 dull yellow bags, 3 dull lime bags, 5 posh aqua bags.
|
||||
faded crimson bags contain 3 light fuchsia bags, 5 muted chartreuse bags.
|
||||
drab yellow bags contain 5 drab indigo bags, 2 shiny brown bags, 4 muted lime bags.
|
||||
muted tomato bags contain 3 posh salmon bags, 2 plaid indigo bags, 5 striped aqua bags.
|
||||
pale teal bags contain 2 muted red bags, 5 mirrored brown bags, 4 mirrored tan bags.
|
||||
posh violet bags contain 4 posh tomato bags.
|
||||
dim plum bags contain 1 faded magenta bag, 5 drab silver bags, 1 pale brown bag.
|
||||
light fuchsia bags contain 2 dotted silver bags, 3 dotted lavender bags, 3 shiny gold bags, 5 clear magenta bags.
|
||||
vibrant orange bags contain 5 shiny blue bags, 5 dull maroon bags.
|
||||
shiny white bags contain 5 mirrored yellow bags, 2 pale fuchsia bags, 4 shiny turquoise bags.
|
||||
drab green bags contain 1 mirrored lavender bag, 3 posh tan bags.
|
||||
faded silver bags contain 5 vibrant coral bags, 3 striped lavender bags, 4 dotted cyan bags, 5 plaid turquoise bags.
|
||||
faded gold bags contain 4 faded magenta bags.
|
||||
dark coral bags contain 3 light maroon bags, 1 drab silver bag.
|
||||
striped olive bags contain 4 dotted maroon bags, 3 wavy brown bags, 1 wavy crimson bag, 5 shiny silver bags.
|
||||
wavy lavender bags contain 3 mirrored yellow bags, 5 shiny crimson bags, 4 dark indigo bags.
|
||||
bright fuchsia bags contain 2 vibrant green bags, 5 drab blue bags.
|
||||
dotted turquoise bags contain 3 striped red bags.
|
||||
drab black bags contain 1 faded tan bag.
|
||||
pale silver bags contain 1 faded yellow bag, 1 drab tan bag, 5 muted salmon bags, 3 shiny white bags.
|
||||
striped magenta bags contain 4 dark turquoise bags, 4 shiny blue bags, 3 shiny crimson bags.
|
||||
dotted beige bags contain 2 mirrored black bags, 2 faded brown bags, 1 bright red bag, 2 clear coral bags.
|
||||
clear maroon bags contain 5 bright bronze bags.
|
||||
shiny olive bags contain 2 dull blue bags.
|
||||
pale violet bags contain 1 light purple bag, 1 pale tomato bag, 4 plaid aqua bags, 4 light magenta bags.
|
||||
dotted white bags contain 3 bright purple bags, 4 dull orange bags, 2 plaid salmon bags.
|
||||
plaid blue bags contain 5 faded blue bags, 4 muted green bags, 4 bright bronze bags.
|
||||
mirrored lime bags contain 1 faded green bag, 4 striped black bags, 1 mirrored purple bag.
|
||||
wavy violet bags contain 1 muted bronze bag.
|
||||
light silver bags contain 2 dull cyan bags, 1 drab tan bag.
|
||||
dark tomato bags contain 1 vibrant tomato bag, 1 striped tomato bag.
|
||||
wavy teal bags contain 5 wavy red bags, 2 drab brown bags, 1 posh olive bag.
|
||||
dim green bags contain 2 striped teal bags, 1 drab blue bag.
|
||||
wavy crimson bags contain no other bags.
|
||||
mirrored aqua bags contain 3 posh tan bags, 5 muted teal bags, 3 light violet bags.
|
||||
light cyan bags contain 4 vibrant chartreuse bags, 1 faded lime bag, 2 drab purple bags, 2 shiny white bags.
|
||||
shiny gold bags contain 4 drab blue bags, 4 posh purple bags, 2 drab silver bags, 4 wavy turquoise bags.
|
||||
plaid chartreuse bags contain 5 mirrored olive bags, 2 vibrant orange bags, 2 shiny purple bags.
|
||||
dim yellow bags contain 1 faded green bag, 4 wavy fuchsia bags.
|
||||
pale turquoise bags contain 1 drab turquoise bag.
|
||||
clear red bags contain 1 pale bronze bag, 4 drab tan bags.
|
||||
shiny teal bags contain 3 bright aqua bags.
|
||||
dotted tomato bags contain 3 dotted orange bags, 5 light silver bags, 2 dull green bags, 5 wavy chartreuse bags.
|
||||
striped tan bags contain 1 light turquoise bag, 2 dotted salmon bags, 4 shiny orange bags, 2 clear red bags.
|
||||
dim bronze bags contain 1 wavy gold bag.
|
||||
posh crimson bags contain 4 posh aqua bags.
|
||||
plaid salmon bags contain 2 dull tan bags.
|
||||
mirrored salmon bags contain 2 muted aqua bags, 5 muted salmon bags.
|
||||
striped blue bags contain 3 wavy white bags, 4 drab blue bags, 1 drab chartreuse bag, 4 dull orange bags.
|
||||
pale red bags contain 1 striped red bag.
|
||||
muted black bags contain 4 faded gold bags.
|
||||
clear orange bags contain 2 faded red bags.
|
||||
mirrored maroon bags contain 2 plaid tan bags.
|
||||
dull aqua bags contain 4 pale gold bags.
|
||||
posh coral bags contain 3 striped gold bags.
|
||||
posh purple bags contain 4 pale orange bags, 5 dull salmon bags, 2 striped teal bags.
|
||||
muted tan bags contain 3 clear coral bags, 4 pale salmon bags.
|
||||
mirrored orange bags contain 5 pale bronze bags.
|
||||
striped teal bags contain no other bags.
|
||||
dark blue bags contain no other bags.
|
||||
clear bronze bags contain 4 vibrant gray bags.
|
||||
light magenta bags contain 4 dim green bags.
|
||||
drab coral bags contain 5 dotted chartreuse bags, 4 vibrant crimson bags, 2 muted green bags.
|
||||
drab brown bags contain 2 dull tomato bags, 5 vibrant bronze bags.
|
||||
bright coral bags contain 1 posh plum bag, 1 wavy gold bag, 2 drab lavender bags, 2 muted lavender bags.
|
||||
dim white bags contain 4 shiny aqua bags.
|
||||
plaid bronze bags contain 4 drab tan bags, 3 plaid salmon bags, 4 striped coral bags.
|
||||
faded teal bags contain 1 vibrant white bag, 5 wavy purple bags.
|
||||
drab turquoise bags contain 3 pale tomato bags, 1 bright indigo bag.
|
||||
muted white bags contain 3 striped brown bags, 1 light blue bag.
|
||||
clear crimson bags contain 1 dark magenta bag.
|
||||
shiny magenta bags contain 4 wavy tomato bags, 4 shiny bronze bags, 4 vibrant coral bags, 5 bright lime bags.
|
||||
bright magenta bags contain 3 wavy brown bags.
|
||||
bright tomato bags contain 4 vibrant fuchsia bags, 1 clear aqua bag.
|
||||
wavy coral bags contain 4 striped gold bags, 1 light purple bag, 4 vibrant purple bags.
|
||||
muted indigo bags contain 2 posh purple bags, 2 light gold bags, 3 striped lavender bags.
|
||||
clear violet bags contain 2 wavy cyan bags, 5 pale brown bags, 4 faded magenta bags, 2 bright purple bags.
|
||||
dull white bags contain 4 wavy olive bags, 3 mirrored olive bags, 3 faded magenta bags, 4 dull green bags.
|
||||
dull magenta bags contain 4 dim beige bags.
|
||||
dotted blue bags contain 4 posh beige bags, 1 pale purple bag, 4 shiny red bags.
|
||||
dotted lavender bags contain 3 posh purple bags.
|
||||
light white bags contain 4 striped lavender bags.
|
||||
dark turquoise bags contain 5 light teal bags.
|
||||
faded turquoise bags contain 5 striped violet bags, 4 dull crimson bags, 2 dim purple bags, 1 light silver bag.
|
||||
striped chartreuse bags contain 3 pale white bags, 3 dim fuchsia bags.
|
||||
pale gold bags contain 2 clear teal bags, 3 wavy turquoise bags, 5 light gold bags.
|
||||
posh blue bags contain 4 muted yellow bags, 1 dull crimson bag, 3 wavy violet bags, 5 mirrored fuchsia bags.
|
||||
dotted gray bags contain 3 wavy fuchsia bags.
|
||||
plaid magenta bags contain 3 plaid black bags.
|
||||
pale beige bags contain 1 pale white bag, 2 dim salmon bags, 5 mirrored gold bags.
|
||||
striped bronze bags contain 2 dull yellow bags, 2 dark blue bags.
|
||||
dark lime bags contain 2 pale magenta bags, 4 clear cyan bags.
|
||||
bright turquoise bags contain 2 light white bags, 3 plaid salmon bags, 2 clear aqua bags, 5 dull silver bags.
|
||||
posh salmon bags contain 1 drab turquoise bag.
|
||||
muted bronze bags contain 1 pale bronze bag, 3 clear maroon bags.
|
||||
faded coral bags contain 1 clear gray bag, 5 plaid gray bags, 3 bright silver bags, 4 posh yellow bags.
|
||||
mirrored gray bags contain 1 dark coral bag, 2 plaid blue bags, 4 mirrored coral bags, 1 mirrored olive bag.
|
||||
vibrant olive bags contain 5 pale chartreuse bags, 4 plaid green bags, 4 dark coral bags.
|
||||
dotted magenta bags contain 4 light chartreuse bags, 3 plaid indigo bags, 2 dull tan bags.
|
||||
light violet bags contain 2 muted green bags.
|
||||
dim fuchsia bags contain 5 dim tan bags, 5 faded black bags, 1 drab white bag.
|
||||
dotted black bags contain 3 bright gold bags, 2 faded gold bags.
|
||||
striped indigo bags contain 3 posh aqua bags.
|
||||
posh cyan bags contain 5 dull fuchsia bags.
|
||||
vibrant turquoise bags contain 2 muted chartreuse bags, 2 clear magenta bags, 5 drab chartreuse bags.
|
||||
mirrored magenta bags contain 1 dull lime bag.
|
||||
mirrored violet bags contain 2 posh magenta bags, 1 plaid white bag, 4 wavy turquoise bags, 5 dull salmon bags.
|
||||
pale tomato bags contain 4 wavy maroon bags, 3 clear aqua bags, 2 striped lavender bags.
|
||||
clear fuchsia bags contain 5 dark cyan bags, 1 plaid cyan bag.
|
||||
drab orange bags contain 3 mirrored purple bags, 1 striped orange bag.
|
||||
bright blue bags contain 1 bright cyan bag, 4 plaid green bags.
|
||||
muted chartreuse bags contain 4 faded beige bags, 3 faded green bags.
|
||||
plaid teal bags contain 2 mirrored orange bags, 5 plaid plum bags.
|
||||
light blue bags contain 4 faded silver bags, 3 light turquoise bags, 2 dim aqua bags, 5 posh silver bags.
|
||||
bright tan bags contain 4 striped coral bags, 1 dark fuchsia bag.
|
||||
shiny black bags contain 1 light green bag.
|
||||
plaid violet bags contain 1 faded magenta bag, 1 shiny bronze bag, 2 vibrant tomato bags.
|
||||
posh bronze bags contain 4 shiny gold bags, 1 bright yellow bag, 1 dull cyan bag.
|
||||
light red bags contain 3 dotted black bags, 5 pale coral bags.
|
||||
striped red bags contain no other bags.
|
||||
clear tan bags contain 2 faded brown bags, 1 bright brown bag, 2 bright gold bags.
|
||||
dull turquoise bags contain 5 mirrored yellow bags, 3 wavy red bags, 5 faded purple bags, 4 clear green bags.
|
||||
plaid yellow bags contain 4 dark red bags, 3 dull tomato bags, 5 faded violet bags.
|
||||
dotted gold bags contain 2 dotted lime bags, 2 faded gray bags, 3 clear coral bags.
|
||||
dull bronze bags contain 2 pale red bags, 3 dim indigo bags.
|
||||
shiny green bags contain 2 pale red bags, 1 mirrored silver bag, 4 bright lime bags, 5 pale indigo bags.
|
||||
bright black bags contain 2 striped plum bags, 1 clear black bag, 4 clear olive bags.
|
||||
bright gold bags contain 3 wavy cyan bags, 1 dotted magenta bag, 1 muted salmon bag, 4 light maroon bags.
|
||||
muted violet bags contain 5 wavy cyan bags, 4 dim tan bags, 1 posh gray bag, 5 vibrant brown bags.
|
||||
dim turquoise bags contain 1 pale tomato bag, 2 dotted silver bags, 5 mirrored coral bags.
|
||||
drab lime bags contain 5 shiny gold bags.
|
||||
wavy bronze bags contain 1 shiny red bag, 4 dotted cyan bags.
|
||||
vibrant purple bags contain 4 drab chartreuse bags, 4 dotted yellow bags.
|
||||
plaid purple bags contain 2 drab beige bags, 3 pale aqua bags, 3 muted magenta bags.
|
||||
faded brown bags contain 3 faded beige bags, 1 light chartreuse bag, 4 mirrored gold bags.
|
||||
pale lavender bags contain 1 mirrored tomato bag, 5 wavy maroon bags, 4 wavy lime bags.
|
||||
posh fuchsia bags contain 5 posh orange bags.
|
||||
drab fuchsia bags contain 1 dim plum bag, 1 dark coral bag, 3 dark red bags.
|
||||
striped crimson bags contain 5 pale orange bags, 5 faded beige bags, 5 faded brown bags.
|
||||
wavy lime bags contain 5 dull crimson bags.
|
||||
vibrant fuchsia bags contain 2 wavy white bags.
|
||||
vibrant plum bags contain 4 dim salmon bags, 2 plaid tan bags, 3 dull blue bags.
|
||||
muted cyan bags contain 3 striped beige bags.
|
||||
clear teal bags contain 2 wavy aqua bags, 3 dotted plum bags.
|
||||
dark maroon bags contain 1 light violet bag, 3 clear plum bags, 5 dotted fuchsia bags, 2 vibrant tomato bags.
|
||||
dull black bags contain 5 muted olive bags.
|
||||
light yellow bags contain 1 dull white bag, 5 dark aqua bags, 3 light purple bags, 4 dim green bags.
|
||||
pale bronze bags contain 1 wavy aqua bag.
|
||||
plaid red bags contain 5 pale plum bags, 2 muted brown bags, 2 dull bronze bags.
|
||||
dim gray bags contain 2 muted lavender bags.
|
||||
plaid gray bags contain 5 muted aqua bags.
|
||||
vibrant blue bags contain 4 light tomato bags, 1 plaid beige bag.
|
||||
clear blue bags contain 5 clear plum bags, 5 drab chartreuse bags.
|
||||
dotted green bags contain 5 plaid white bags, 5 vibrant turquoise bags, 1 drab silver bag.
|
||||
dull crimson bags contain 3 mirrored yellow bags, 3 posh red bags, 3 faded brown bags.
|
||||
striped maroon bags contain 1 shiny magenta bag, 2 light brown bags, 4 dull green bags.
|
||||
dark yellow bags contain 4 faded silver bags, 5 shiny lavender bags, 4 dim crimson bags, 2 plaid bronze bags.
|
||||
pale indigo bags contain 4 plaid salmon bags, 3 striped purple bags, 5 pale magenta bags, 1 dotted lime bag.
|
||||
faded maroon bags contain 5 light silver bags, 5 dim bronze bags, 4 faded tan bags, 5 striped crimson bags.
|
||||
pale green bags contain 4 vibrant white bags.
|
||||
muted maroon bags contain 2 light black bags, 2 mirrored fuchsia bags.
|
||||
pale yellow bags contain 2 dull bronze bags, 4 bright maroon bags, 5 wavy cyan bags, 4 dotted lavender bags.
|
||||
posh white bags contain 3 mirrored turquoise bags, 3 shiny aqua bags, 2 striped blue bags, 4 faded coral bags.
|
||||
wavy orange bags contain 4 wavy crimson bags, 2 bright brown bags, 3 bright magenta bags, 1 dotted gold bag.
|
||||
dark beige bags contain 3 muted white bags.
|
||||
dotted salmon bags contain 5 dim bronze bags, 5 striped orange bags.
|
||||
dotted fuchsia bags contain 1 striped red bag, 4 bright purple bags.
|
||||
pale cyan bags contain 1 dull blue bag.
|
||||
mirrored purple bags contain 5 light turquoise bags, 2 faded silver bags.
|
||||
drab violet bags contain 1 vibrant turquoise bag, 2 muted chartreuse bags, 5 pale bronze bags.
|
||||
wavy gray bags contain 1 dark purple bag, 4 muted green bags.
|
||||
wavy magenta bags contain 5 dark white bags, 4 vibrant black bags, 4 muted coral bags.
|
||||
pale plum bags contain 5 mirrored brown bags, 2 pale red bags.
|
||||
light plum bags contain 4 dark tomato bags, 4 wavy gold bags.
|
||||
pale aqua bags contain 1 striped red bag, 2 dim crimson bags, 3 mirrored orange bags.
|
||||
muted green bags contain 1 mirrored yellow bag.
|
||||
bright purple bags contain 5 light violet bags, 5 clear magenta bags, 1 faded lime bag.
|
||||
dark green bags contain 2 shiny aqua bags.
|
||||
dark orange bags contain 3 striped coral bags.
|
||||
dotted chartreuse bags contain 1 bright lime bag, 1 light olive bag, 4 muted red bags, 1 posh chartreuse bag.
|
||||
shiny chartreuse bags contain 1 bright salmon bag, 1 plaid indigo bag.
|
||||
clear gold bags contain 5 dull lime bags, 4 shiny brown bags, 1 dull plum bag, 4 dull salmon bags.
|
||||
shiny salmon bags contain 2 muted salmon bags, 2 dotted lavender bags.
|
||||
striped cyan bags contain 3 drab tan bags, 5 dotted cyan bags, 1 posh aqua bag, 1 plaid magenta bag.
|
||||
dark plum bags contain 1 clear orange bag, 2 striped black bags.
|
||||
vibrant magenta bags contain 1 plaid tan bag, 3 muted bronze bags, 3 bright chartreuse bags.
|
||||
clear beige bags contain 4 muted tan bags, 1 clear turquoise bag, 4 mirrored turquoise bags, 2 bright silver bags.
|
||||
drab lavender bags contain 1 dotted cyan bag, 4 clear plum bags.
|
||||
shiny coral bags contain 2 drab beige bags.
|
||||
light bronze bags contain 2 mirrored plum bags, 2 light black bags.
|
||||
vibrant yellow bags contain 4 vibrant coral bags, 5 mirrored olive bags, 1 light lime bag, 2 muted crimson bags.
|
||||
vibrant salmon bags contain 4 faded beige bags, 2 faded olive bags, 1 pale brown bag.
|
||||
dim tan bags contain 3 faded beige bags, 4 light tan bags.
|
||||
vibrant silver bags contain 1 dark tomato bag.
|
||||
striped salmon bags contain 5 faded brown bags.
|
||||
shiny purple bags contain 1 pale lavender bag, 3 plaid black bags, 1 drab indigo bag.
|
||||
light turquoise bags contain 4 dark silver bags.
|
||||
dark chartreuse bags contain 5 dark silver bags.
|
||||
mirrored indigo bags contain 5 mirrored gold bags, 1 dotted white bag.
|
||||
faded olive bags contain 1 pale brown bag, 3 faded beige bags, 2 light chartreuse bags.
|
||||
mirrored black bags contain 5 posh purple bags.
|
||||
clear green bags contain 2 dark magenta bags, 5 faded gold bags, 4 striped teal bags, 4 dark purple bags.
|
||||
bright beige bags contain 3 light olive bags, 3 wavy orange bags, 4 dotted lavender bags.
|
||||
plaid brown bags contain 4 dull lavender bags, 3 drab gold bags.
|
||||
vibrant chartreuse bags contain 1 bright bronze bag, 5 wavy crimson bags.
|
||||
posh aqua bags contain 5 muted green bags, 2 dim green bags, 1 dim crimson bag, 1 posh red bag.
|
||||
vibrant gold bags contain 5 wavy chartreuse bags, 3 drab gold bags, 2 striped blue bags, 3 posh yellow bags.
|
||||
posh tan bags contain 1 shiny chartreuse bag, 2 drab bronze bags.
|
||||
bright violet bags contain 1 pale lavender bag, 5 mirrored olive bags, 1 posh turquoise bag.
|
||||
faded lime bags contain 5 pale brown bags, 4 faded black bags, 1 faded beige bag.
|
||||
vibrant gray bags contain 3 vibrant chartreuse bags, 3 bright purple bags.
|
||||
dull silver bags contain 5 pale tomato bags, 5 shiny turquoise bags, 2 mirrored yellow bags.
|
||||
pale maroon bags contain 3 posh red bags, 1 plaid bronze bag, 5 striped red bags.
|
||||
dull lavender bags contain 4 vibrant violet bags, 1 bright yellow bag, 3 bright aqua bags.
|
||||
light aqua bags contain 5 vibrant turquoise bags.
|
||||
striped violet bags contain 4 drab silver bags, 3 posh magenta bags, 3 wavy turquoise bags.
|
||||
bright green bags contain 3 drab teal bags.
|
||||
light coral bags contain 5 dotted violet bags, 4 pale chartreuse bags.
|
||||
muted salmon bags contain 4 vibrant turquoise bags, 5 clear chartreuse bags, 1 dark fuchsia bag, 5 bright bronze bags.
|
||||
wavy cyan bags contain 4 dim orange bags, 1 dull orange bag, 4 plaid indigo bags, 4 dim salmon bags.
|
||||
shiny red bags contain 1 dim blue bag, 4 clear plum bags.
|
||||
vibrant beige bags contain 3 posh red bags.
|
||||
shiny maroon bags contain 3 striped tomato bags, 2 faded lime bags.
|
||||
shiny aqua bags contain 3 bright yellow bags.
|
||||
bright aqua bags contain 5 wavy lavender bags, 4 striped coral bags, 5 dotted cyan bags, 3 drab cyan bags.
|
||||
dim olive bags contain 2 posh blue bags, 5 vibrant violet bags, 3 drab brown bags, 1 dull purple bag.
|
||||
shiny silver bags contain 5 dim green bags, 4 dull cyan bags.
|
||||
dim brown bags contain 1 wavy brown bag, 3 drab black bags.
|
||||
dotted brown bags contain 3 drab crimson bags, 1 shiny red bag.
|
||||
striped coral bags contain 4 striped red bags, 1 dotted cyan bag.
|
||||
dotted plum bags contain 3 faded lime bags, 2 striped lavender bags, 2 wavy crimson bags, 2 faded brown bags.
|
||||
light gold bags contain 1 light silver bag, 3 posh teal bags, 3 dark orange bags, 4 bright bronze bags.
|
||||
dark tan bags contain 5 drab black bags, 2 plaid cyan bags, 3 faded yellow bags, 1 dim blue bag.
|
||||
posh olive bags contain 4 drab olive bags, 5 dull tan bags, 1 wavy chartreuse bag, 5 muted magenta bags.
|
||||
dull red bags contain 1 vibrant teal bag, 4 dim salmon bags, 1 bright violet bag, 1 dark lavender bag.
|
||||
plaid turquoise bags contain 3 faded green bags, 5 wavy crimson bags.
|
||||
plaid cyan bags contain 2 dull yellow bags, 2 dotted cyan bags, 1 light chartreuse bag, 2 faded green bags.
|
||||
dull indigo bags contain 2 faded silver bags.
|
||||
pale brown bags contain no other bags.
|
||||
striped plum bags contain 5 dull lime bags, 2 muted white bags, 3 striped teal bags.
|
||||
dotted coral bags contain 4 faded silver bags, 2 wavy aqua bags, 2 light chartreuse bags, 5 posh indigo bags.
|
||||
mirrored beige bags contain 1 plaid black bag, 2 plaid tan bags, 2 pale bronze bags.
|
||||
vibrant cyan bags contain 4 wavy beige bags, 1 shiny orange bag.
|
||||
wavy fuchsia bags contain 5 pale maroon bags, 3 drab violet bags, 2 shiny orange bags.
|
||||
drab silver bags contain 2 dark blue bags, 3 light chartreuse bags, 3 mirrored gold bags.
|
||||
wavy turquoise bags contain 5 posh red bags, 4 striped teal bags.
|
||||
bright cyan bags contain 4 bright silver bags, 1 muted gray bag, 5 faded aqua bags, 3 wavy aqua bags.
|
||||
wavy green bags contain 4 clear violet bags, 4 dark olive bags, 2 clear magenta bags, 1 mirrored black bag.
|
||||
mirrored gold bags contain 2 dark olive bags.
|
||||
wavy gold bags contain 4 plaid indigo bags.
|
||||
dotted yellow bags contain 3 dull orange bags, 2 faded green bags.
|
||||
light beige bags contain 4 dull cyan bags.
|
||||
bright crimson bags contain 1 faded tan bag, 1 faded chartreuse bag, 5 vibrant brown bags.
|
||||
dotted bronze bags contain 5 striped white bags.
|
||||
mirrored yellow bags contain 3 wavy crimson bags, 4 dark olive bags, 5 drab tan bags.
|
||||
plaid lavender bags contain 1 light tomato bag, 5 dull blue bags, 2 wavy indigo bags, 3 bright gray bags.
|
||||
drab purple bags contain 3 dotted plum bags, 5 drab olive bags, 1 drab tan bag, 3 dark black bags.
|
||||
shiny lime bags contain 2 plaid bronze bags, 1 shiny gold bag.
|
||||
drab chartreuse bags contain 2 bright bronze bags, 4 light teal bags, 1 mirrored yellow bag.
|
||||
bright plum bags contain 3 drab turquoise bags.
|
||||
light orange bags contain 1 shiny lavender bag, 2 dark fuchsia bags, 1 muted olive bag, 4 wavy olive bags.
|
||||
striped beige bags contain 4 dull crimson bags, 5 dotted fuchsia bags.
|
||||
wavy chartreuse bags contain 2 bright salmon bags, 5 faded green bags, 1 mirrored black bag.
|
||||
striped tomato bags contain no other bags.
|
||||
plaid aqua bags contain 1 light magenta bag, 3 pale white bags, 3 clear blue bags, 4 dull crimson bags.
|
||||
plaid tan bags contain 3 dull green bags, 1 light silver bag, 5 dim orange bags, 1 dark blue bag.
|
||||
dotted cyan bags contain 2 wavy black bags, 3 striped teal bags.
|
||||
dull green bags contain 1 plaid magenta bag, 3 dull plum bags, 4 dim green bags.
|
||||
faded purple bags contain 5 mirrored cyan bags, 1 dull beige bag, 4 vibrant purple bags.
|
||||
dotted maroon bags contain 1 vibrant beige bag, 3 plaid magenta bags.
|
||||
faded aqua bags contain 4 plaid gold bags, 1 plaid yellow bag, 2 bright lime bags.
|
||||
pale lime bags contain 1 light blue bag.
|
||||
dark indigo bags contain 1 light gold bag.
|
||||
shiny orange bags contain 2 plaid black bags, 2 faded brown bags, 4 plaid indigo bags.
|
||||
muted olive bags contain 1 wavy chartreuse bag.
|
||||
muted purple bags contain 4 dotted silver bags.
|
||||
plaid black bags contain 3 drab silver bags.
|
||||
striped lavender bags contain 5 wavy crimson bags.
|
||||
posh chartreuse bags contain 5 drab chartreuse bags.
|
||||
clear purple bags contain 3 faded green bags, 2 bright gold bags.
|
||||
dark crimson bags contain 4 plaid teal bags, 4 muted cyan bags.
|
||||
clear silver bags contain 3 pale beige bags, 2 mirrored tomato bags.
|
||||
dotted indigo bags contain 2 dark plum bags, 2 clear magenta bags, 3 light olive bags.
|
||||
dull chartreuse bags contain 2 light turquoise bags, 3 drab brown bags.
|
||||
bright brown bags contain 4 light purple bags, 1 vibrant coral bag.
|
||||
dim salmon bags contain 2 dull salmon bags.
|
||||
muted lime bags contain 4 muted violet bags, 5 shiny white bags.
|
||||
vibrant lime bags contain 2 mirrored bronze bags, 1 dotted crimson bag, 5 dim yellow bags, 2 mirrored gold bags.
|
||||
muted silver bags contain 1 striped orange bag, 3 drab purple bags.
|
||||
mirrored bronze bags contain 4 dull bronze bags.
|
||||
light olive bags contain 4 mirrored olive bags, 2 dim lime bags, 1 clear magenta bag.
|
||||
vibrant tan bags contain 2 shiny teal bags.
|
||||
posh red bags contain 2 bright bronze bags, 5 striped teal bags, 5 faded beige bags, 4 faded olive bags.
|
||||
faded red bags contain 4 striped lavender bags, 4 posh red bags.
|
||||
mirrored brown bags contain 3 dim salmon bags, 4 drab chartreuse bags, 1 wavy tomato bag.
|
||||
dark gray bags contain 1 muted tan bag, 4 faded blue bags, 2 dim chartreuse bags.
|
||||
dark white bags contain 4 vibrant lime bags, 4 pale olive bags.
|
||||
striped silver bags contain 4 dim cyan bags.
|
||||
clear salmon bags contain 5 pale magenta bags, 1 mirrored salmon bag.
|
||||
pale white bags contain 5 wavy crimson bags, 4 plaid indigo bags, 5 striped crimson bags, 3 drab violet bags.
|
||||
vibrant indigo bags contain 1 mirrored gold bag, 1 striped turquoise bag, 3 posh beige bags.
|
||||
drab aqua bags contain 5 faded crimson bags, 3 wavy gold bags, 3 striped tomato bags.
|
||||
clear brown bags contain 5 bright lavender bags.
|
||||
posh indigo bags contain 5 mirrored red bags, 5 clear coral bags.
|
||||
posh black bags contain 4 dim fuchsia bags, 5 muted olive bags, 3 mirrored red bags.
|
||||
shiny lavender bags contain 2 muted aqua bags, 3 striped black bags, 3 wavy salmon bags, 3 mirrored purple bags.
|
||||
vibrant bronze bags contain 1 bright tan bag, 5 faded beige bags, 5 pale red bags, 1 plaid cyan bag.
|
||||
clear chartreuse bags contain 2 shiny gold bags, 1 wavy turquoise bag, 2 muted crimson bags.
|
||||
drab tan bags contain no other bags.
|
||||
posh gold bags contain 5 dotted beige bags, 1 striped crimson bag, 5 drab purple bags, 1 bright gray bag.
|
||||
clear olive bags contain 3 dark tomato bags.
|
||||
dim aqua bags contain 4 wavy black bags, 5 clear chartreuse bags, 5 clear aqua bags.
|
||||
pale coral bags contain 2 shiny orange bags, 5 dark black bags, 3 vibrant coral bags.
|
||||
drab blue bags contain 5 dull salmon bags.
|
||||
vibrant white bags contain 2 mirrored yellow bags.
|
||||
faded indigo bags contain 5 clear aqua bags.
|
||||
posh turquoise bags contain 1 light purple bag, 4 mirrored salmon bags.
|
||||
dotted orange bags contain 5 dark blue bags, 1 shiny lavender bag, 2 dim plum bags, 3 clear violet bags.
|
||||
muted crimson bags contain 4 wavy crimson bags, 1 light magenta bag, 3 clear plum bags.
|
||||
dim coral bags contain 1 vibrant red bag, 2 vibrant magenta bags.
|
||||
mirrored plum bags contain 5 light olive bags.
|
||||
dull violet bags contain 2 dim aqua bags.
|
||||
faded violet bags contain 5 clear violet bags, 5 muted indigo bags, 3 clear red bags, 1 posh tan bag.
|
||||
vibrant crimson bags contain 1 shiny crimson bag.
|
||||
muted plum bags contain 3 drab beige bags, 4 posh maroon bags.
|
||||
dim orange bags contain 5 bright salmon bags.
|
||||
dim blue bags contain 1 mirrored black bag, 3 faded blue bags.
|
||||
mirrored tan bags contain 5 plaid plum bags.
|
||||
pale crimson bags contain 4 dim green bags, 2 pale fuchsia bags.
|
||||
bright white bags contain 2 drab gold bags, 2 shiny maroon bags, 5 mirrored lime bags.
|
||||
dim indigo bags contain 1 mirrored cyan bag, 1 wavy purple bag, 1 drab brown bag.
|
||||
dotted violet bags contain 4 bright teal bags, 2 vibrant plum bags.
|
||||
wavy indigo bags contain 2 drab silver bags, 1 muted chartreuse bag, 1 drab aqua bag, 3 mirrored teal bags.
|
||||
dark cyan bags contain 1 muted magenta bag, 3 vibrant violet bags, 4 mirrored aqua bags, 5 drab violet bags.
|
||||
posh maroon bags contain 5 muted chartreuse bags, 4 dark olive bags.
|
||||
drab tomato bags contain 2 plaid tan bags, 2 posh purple bags, 2 posh beige bags.
|
||||
wavy tan bags contain 5 light cyan bags, 5 muted brown bags, 5 mirrored coral bags, 5 light chartreuse bags.
|
||||
faded bronze bags contain 4 dotted magenta bags.
|
||||
pale blue bags contain 5 pale purple bags.
|
||||
dim magenta bags contain 5 posh aqua bags, 5 dim crimson bags, 4 wavy gold bags, 2 shiny orange bags.
|
||||
dark fuchsia bags contain 2 drab silver bags.
|
||||
wavy white bags contain 4 vibrant turquoise bags, 2 clear violet bags, 1 dull salmon bag.
|
||||
drab maroon bags contain 3 pale tomato bags, 2 dim chartreuse bags, 5 mirrored orange bags, 4 drab violet bags.
|
||||
muted fuchsia bags contain 4 muted bronze bags, 4 plaid brown bags, 1 faded white bag.
|
||||
plaid gold bags contain 3 vibrant bronze bags, 5 striped chartreuse bags.
|
||||
faded green bags contain 2 dull cyan bags, 5 posh purple bags.
|
||||
light indigo bags contain 5 mirrored tomato bags.
|
||||
striped white bags contain 5 clear plum bags.
|
||||
posh magenta bags contain 5 wavy crimson bags, 3 striped coral bags.
|
||||
drab olive bags contain 4 striped orange bags.
|
||||
plaid indigo bags contain 1 plaid turquoise bag.
|
||||
dark brown bags contain 2 faded tan bags, 5 wavy green bags.
|
||||
faded cyan bags contain 2 bright violet bags, 3 mirrored salmon bags.
|
||||
dim lavender bags contain 2 mirrored fuchsia bags, 3 pale magenta bags, 2 dotted tan bags, 4 posh bronze bags.
|
||||
dull maroon bags contain 3 dark silver bags, 5 dim plum bags.
|
||||
dull teal bags contain 3 pale green bags.
|
||||
shiny yellow bags contain 4 dotted fuchsia bags.
|
||||
mirrored crimson bags contain 5 dotted plum bags.
|
||||
drab beige bags contain 3 faded orange bags, 3 dark orange bags, 4 clear orange bags.
|
||||
dull olive bags contain 2 vibrant bronze bags, 4 shiny chartreuse bags.
|
||||
wavy red bags contain 2 wavy brown bags, 1 wavy olive bag, 3 striped cyan bags.
|
||||
light gray bags contain 1 pale salmon bag, 2 plaid bronze bags, 5 dull yellow bags.
|
||||
faded gray bags contain 4 muted green bags, 5 faded red bags, 3 muted magenta bags, 5 bright magenta bags.
|
||||
drab indigo bags contain 1 posh gold bag, 2 dull lime bags, 1 pale orange bag.
|
||||
bright yellow bags contain 4 posh red bags, 4 shiny gold bags.
|
||||
drab bronze bags contain 4 dark indigo bags.
|
||||
striped gold bags contain 3 faded yellow bags, 2 mirrored tomato bags, 1 bright lime bag.
|
||||
muted gold bags contain 4 dim violet bags.
|
||||
plaid olive bags contain 3 wavy fuchsia bags.
|
||||
bright gray bags contain 4 bright bronze bags, 1 plaid white bag, 1 pale bronze bag.
|
||||
clear turquoise bags contain 2 mirrored purple bags, 2 light gold bags, 4 dim cyan bags, 5 wavy olive bags.
|
||||
wavy plum bags contain 4 bright yellow bags.
|
||||
dull blue bags contain 4 dotted lavender bags.
|
||||
posh gray bags contain 4 faded blue bags, 2 dull brown bags, 1 clear cyan bag.
|
||||
pale black bags contain 5 dim cyan bags, 4 bright white bags.
|
||||
wavy blue bags contain 3 faded olive bags, 5 bright lavender bags, 1 wavy black bag, 2 posh magenta bags.
|
||||
posh beige bags contain 2 light cyan bags, 1 wavy violet bag, 1 muted olive bag.
|
||||
clear plum bags contain 3 dull cyan bags.
|
||||
drab cyan bags contain 5 plaid green bags.
|
||||
vibrant aqua bags contain 5 posh maroon bags.
|
||||
dim silver bags contain 5 shiny gold bags, 5 posh magenta bags, 1 light white bag.
|
||||
posh brown bags contain 4 plaid salmon bags, 2 vibrant blue bags, 2 posh olive bags.
|
||||
dark teal bags contain 1 faded brown bag.
|
||||
clear white bags contain 5 vibrant tan bags, 5 light purple bags, 3 posh tan bags, 4 faded beige bags.
|
||||
dim maroon bags contain 2 plaid chartreuse bags, 1 dim gray bag, 2 drab gold bags, 5 light white bags.
|
||||
dull salmon bags contain 5 striped teal bags, 3 dark blue bags, 3 drab tan bags, 5 wavy crimson bags.
|
||||
dull coral bags contain 1 faded red bag, 2 shiny teal bags, 3 bright gray bags, 1 pale brown bag.
|
||||
dark violet bags contain 1 clear cyan bag, 4 mirrored beige bags, 2 vibrant turquoise bags.
|
||||
vibrant maroon bags contain 1 muted magenta bag, 3 muted olive bags, 2 shiny turquoise bags.
|
||||
posh orange bags contain 5 dark black bags, 3 pale maroon bags, 5 dull plum bags.
|
||||
clear indigo bags contain 4 faded tan bags, 3 clear orange bags, 1 vibrant aqua bag.
|
||||
clear gray bags contain 4 dull salmon bags, 5 dark magenta bags.
|
||||
shiny turquoise bags contain 4 muted green bags, 4 vibrant beige bags, 5 mirrored cyan bags, 4 striped blue bags.
|
||||
pale salmon bags contain 1 dark silver bag, 4 dim green bags.
|
||||
striped gray bags contain 3 dark lavender bags.
|
||||
dull yellow bags contain 2 dark blue bags, 4 striped tomato bags, 2 striped red bags, 3 pale brown bags.
|
||||
posh yellow bags contain 1 dull green bag, 1 dull plum bag.
|
||||
plaid white bags contain 3 plaid turquoise bags, 4 dotted cyan bags, 3 shiny gold bags, 5 clear plum bags.
|
||||
faded orange bags contain 1 dull silver bag, 4 clear gray bags, 1 posh tomato bag, 2 wavy yellow bags.
|
||||
dim violet bags contain 4 drab silver bags, 1 dull yellow bag, 3 faded blue bags.
|
||||
light green bags contain 3 drab gold bags, 4 wavy purple bags.
|
||||
dark magenta bags contain 2 light gold bags, 5 drab violet bags.
|
||||
dark purple bags contain 5 plaid beige bags.
|
||||
mirrored blue bags contain 2 plaid tan bags.
|
||||
dim lime bags contain 1 dotted beige bag, 2 striped white bags, 5 dim blue bags, 5 wavy blue bags.
|
||||
bright chartreuse bags contain 3 clear orange bags.
|
||||
vibrant brown bags contain 3 mirrored violet bags, 5 dull green bags, 2 pale magenta bags.
|
||||
drab salmon bags contain 4 muted magenta bags.
|
||||
muted teal bags contain 5 dark black bags, 5 light gold bags.
|
||||
striped lime bags contain 1 dim orange bag.
|
||||
plaid crimson bags contain 4 dim teal bags, 3 dull salmon bags.
|
||||
posh plum bags contain 5 pale gray bags.
|
||||
light maroon bags contain 4 drab violet bags, 2 faded brown bags, 2 striped black bags, 3 striped coral bags.
|
||||
pale gray bags contain 1 dark aqua bag, 3 mirrored tomato bags.
|
||||
light chartreuse bags contain no other bags.
|
||||
dim crimson bags contain 5 faded blue bags, 1 dark blue bag, 2 striped teal bags.
|
||||
dim beige bags contain 5 wavy silver bags, 1 wavy orange bag, 1 dim lime bag, 2 mirrored lime bags.
|
||||
bright teal bags contain 1 dull violet bag, 1 faded beige bag, 3 faded orange bags.
|
||||
striped green bags contain 2 drab gold bags, 5 posh olive bags, 4 light indigo bags, 1 clear yellow bag.
|
||||
striped black bags contain 4 striped crimson bags, 1 pale red bag.
|
||||
plaid beige bags contain 3 pale tomato bags.
|
||||
drab plum bags contain 4 striped coral bags, 3 dotted crimson bags.
|
||||
plaid orange bags contain 4 bright aqua bags.
|
||||
wavy maroon bags contain 1 dim orange bag, 1 dim violet bag, 4 posh chartreuse bags, 5 plaid tan bags.
|
||||
dim purple bags contain 1 mirrored black bag, 1 plaid plum bag, 4 striped teal bags, 1 posh aqua bag.
|
||||
mirrored red bags contain 2 shiny salmon bags, 3 bright salmon bags, 1 vibrant salmon bag.
|
||||
striped brown bags contain 3 light lime bags, 1 drab black bag, 2 dull white bags, 5 drab lavender bags.
|
||||
dim red bags contain 2 mirrored black bags.
|
||||
clear lavender bags contain 5 pale fuchsia bags.
|
||||
bright bronze bags contain 2 striped teal bags, 4 clear plum bags, 3 dim crimson bags, 5 faded black bags.
|
||||
shiny violet bags contain 2 dark gold bags, 3 posh maroon bags.
|
||||
bright lime bags contain 2 clear magenta bags, 3 dark blue bags, 4 striped lavender bags, 1 dull crimson bag.
|
||||
mirrored silver bags contain 1 vibrant tomato bag, 4 dull salmon bags, 5 plaid green bags, 4 wavy brown bags.
|
||||
dotted olive bags contain 5 faded beige bags.
|
||||
posh tomato bags contain 2 faded purple bags.
|
||||
posh teal bags contain 2 drab tan bags, 3 striped red bags, 3 dull salmon bags, 1 striped lavender bag.
|
||||
shiny tomato bags contain 3 posh indigo bags.
|
||||
dotted crimson bags contain 1 pale gray bag.
|
||||
shiny indigo bags contain 1 pale beige bag.
|
||||
plaid lime bags contain 1 light maroon bag.
|
||||
mirrored turquoise bags contain 5 faded bronze bags.
|
||||
drab crimson bags contain 1 vibrant plum bag.
|
||||
dim black bags contain 3 muted tan bags, 3 drab silver bags, 4 dull white bags.
|
||||
faded yellow bags contain 5 faded black bags.
|
||||
faded white bags contain 2 wavy lavender bags, 1 shiny orange bag.
|
||||
plaid tomato bags contain 2 shiny brown bags, 3 clear red bags.
|
||||
drab white bags contain 5 dark yellow bags.
|
||||
mirrored tomato bags contain 2 light gold bags, 1 mirrored gold bag, 4 dim plum bags.
|
||||
plaid maroon bags contain 2 mirrored lime bags, 3 plaid salmon bags, 2 shiny chartreuse bags.
|
||||
drab gold bags contain 1 dim plum bag, 2 mirrored violet bags.
|
||||
muted orange bags contain 3 mirrored lime bags, 1 muted maroon bag, 5 drab violet bags, 2 posh green bags.
|
||||
mirrored fuchsia bags contain 3 dim plum bags, 2 muted olive bags, 2 wavy white bags, 1 dotted cyan bag.
|
||||
plaid silver bags contain 3 pale violet bags, 5 striped purple bags, 5 dull purple bags.
|
||||
dotted silver bags contain 2 vibrant coral bags.
|
||||
shiny cyan bags contain 4 mirrored teal bags, 4 faded magenta bags, 4 bright lime bags, 1 vibrant teal bag.
|
||||
clear yellow bags contain 1 muted brown bag, 5 wavy lime bags.
|
||||
muted red bags contain 5 muted coral bags, 2 light violet bags, 2 muted indigo bags, 4 dotted tan bags.
|
||||
dull beige bags contain 5 plaid black bags, 2 pale white bags, 2 light violet bags, 1 pale crimson bag.
|
||||
vibrant lavender bags contain 3 dark chartreuse bags, 4 bright lavender bags.
|
||||
posh lime bags contain 1 shiny cyan bag, 4 dotted blue bags, 3 mirrored chartreuse bags.
|
||||
shiny blue bags contain 1 dotted magenta bag.
|
||||
muted yellow bags contain 4 plaid salmon bags, 4 dull tomato bags.
|
||||
muted blue bags contain 5 wavy magenta bags, 3 vibrant gray bags.
|
||||
dotted tan bags contain 1 wavy green bag, 1 dim plum bag.
|
||||
drab red bags contain 2 dark olive bags, 5 mirrored tan bags, 3 dull coral bags, 4 plaid yellow bags.
|
||||
dull tomato bags contain 2 clear aqua bags, 2 dark fuchsia bags, 2 light teal bags.
|
||||
bright salmon bags contain 5 dark blue bags.
|
||||
pale olive bags contain 1 light violet bag, 3 shiny bronze bags, 2 dotted magenta bags, 4 posh silver bags.
|
||||
mirrored teal bags contain 4 posh chartreuse bags, 5 vibrant bronze bags.
|
||||
mirrored chartreuse bags contain 3 striped olive bags, 3 mirrored maroon bags, 5 faded black bags, 3 pale plum bags.
|
||||
pale orange bags contain 4 mirrored gold bags, 3 faded brown bags, 2 dark olive bags.
|
||||
dark olive bags contain no other bags.
|
||||
faded plum bags contain 5 bright green bags, 5 shiny beige bags, 2 vibrant indigo bags, 1 mirrored orange bag.
|
||||
drab magenta bags contain 5 dark fuchsia bags, 5 striped salmon bags.
|
||||
dark lavender bags contain 5 mirrored red bags, 4 vibrant aqua bags, 2 dotted tan bags.
|
||||
shiny bronze bags contain 2 clear aqua bags, 2 dull salmon bags, 1 plaid turquoise bag, 3 plaid bronze bags.
|
||||
faded magenta bags contain 2 mirrored gold bags, 5 dim orange bags.
|
||||
light lavender bags contain 3 striped magenta bags, 5 light yellow bags.
|
||||
clear tomato bags contain 3 dark bronze bags, 5 plaid aqua bags, 2 faded lime bags, 2 bright salmon bags.
|
||||
clear lime bags contain 1 mirrored lavender bag, 3 bright silver bags, 3 pale teal bags.
|
||||
light lime bags contain 4 dim crimson bags, 2 vibrant tomato bags, 4 posh red bags.
|
||||
wavy yellow bags contain 3 muted chartreuse bags, 3 drab teal bags, 4 striped tomato bags.
|
||||
dark silver bags contain 5 posh magenta bags, 1 plaid black bag, 3 faded brown bags.
|
||||
bright maroon bags contain 5 dotted turquoise bags, 3 wavy silver bags, 2 dotted lime bags.
|
||||
striped orange bags contain 5 striped coral bags, 3 posh teal bags.
|
||||
bright silver bags contain 3 mirrored violet bags, 5 striped gold bags, 1 striped white bag, 4 clear chartreuse bags.
|
||||
mirrored olive bags contain 4 light silver bags, 1 muted crimson bag.
|
||||
dim gold bags contain 3 clear magenta bags.
|
||||
shiny plum bags contain 5 muted olive bags, 5 dark turquoise bags, 2 dull green bags, 1 plaid magenta bag.
|
||||
mirrored green bags contain 5 striped magenta bags, 1 light lime bag, 2 dim cyan bags.
|
||||
wavy aqua bags contain 4 dull tan bags, 5 vibrant beige bags.
|
||||
posh lavender bags contain 4 muted black bags.
|
||||
dull lime bags contain 2 plaid black bags.
|
||||
dim chartreuse bags contain 4 bright red bags.
|
||||
muted lavender bags contain 5 faded red bags, 5 drab brown bags, 5 clear bronze bags.
|
||||
muted coral bags contain 4 clear red bags, 3 vibrant maroon bags.
|
||||
bright lavender bags contain 4 striped blue bags.
|
||||
@@ -0,0 +1,649 @@
|
||||
acc +7
|
||||
acc +23
|
||||
acc +41
|
||||
jmp +173
|
||||
acc -17
|
||||
acc +42
|
||||
acc +31
|
||||
jmp +349
|
||||
jmp +1
|
||||
jmp +252
|
||||
nop +574
|
||||
jmp +298
|
||||
acc +45
|
||||
acc +7
|
||||
jmp +338
|
||||
nop +5
|
||||
nop +528
|
||||
jmp +547
|
||||
jmp +313
|
||||
jmp +387
|
||||
acc +43
|
||||
acc +48
|
||||
acc +38
|
||||
jmp +45
|
||||
jmp +438
|
||||
acc +15
|
||||
acc +21
|
||||
acc +25
|
||||
acc +25
|
||||
jmp +168
|
||||
jmp -5
|
||||
acc +49
|
||||
acc +43
|
||||
jmp +99
|
||||
acc -8
|
||||
acc +16
|
||||
acc -7
|
||||
jmp +513
|
||||
jmp +484
|
||||
jmp +270
|
||||
nop +422
|
||||
acc -4
|
||||
nop +242
|
||||
jmp +1
|
||||
jmp +11
|
||||
nop +122
|
||||
nop +263
|
||||
acc +2
|
||||
jmp +474
|
||||
jmp +501
|
||||
nop +38
|
||||
acc -7
|
||||
acc +0
|
||||
nop +85
|
||||
jmp +496
|
||||
acc +11
|
||||
acc -13
|
||||
acc +40
|
||||
acc +29
|
||||
jmp +519
|
||||
jmp +409
|
||||
acc +41
|
||||
jmp +1
|
||||
acc -17
|
||||
jmp +16
|
||||
nop +485
|
||||
acc -7
|
||||
jmp +58
|
||||
acc +16
|
||||
acc +1
|
||||
jmp +123
|
||||
jmp +157
|
||||
acc +43
|
||||
jmp +422
|
||||
jmp +1
|
||||
acc -19
|
||||
acc +48
|
||||
jmp +80
|
||||
jmp +500
|
||||
jmp -59
|
||||
acc +34
|
||||
acc +11
|
||||
jmp +75
|
||||
nop +467
|
||||
acc -16
|
||||
acc +9
|
||||
acc +32
|
||||
jmp -69
|
||||
acc -13
|
||||
jmp +422
|
||||
jmp +96
|
||||
acc -10
|
||||
acc -19
|
||||
jmp -68
|
||||
acc +31
|
||||
nop +102
|
||||
acc +25
|
||||
jmp +140
|
||||
acc +34
|
||||
acc +45
|
||||
acc -9
|
||||
acc -17
|
||||
jmp -34
|
||||
nop +262
|
||||
jmp +236
|
||||
acc +0
|
||||
acc +32
|
||||
jmp +269
|
||||
acc +16
|
||||
jmp +1
|
||||
jmp +382
|
||||
jmp -39
|
||||
acc +45
|
||||
nop +166
|
||||
nop +408
|
||||
acc +10
|
||||
jmp +379
|
||||
jmp +1
|
||||
acc +44
|
||||
jmp +249
|
||||
nop +334
|
||||
acc +36
|
||||
nop +442
|
||||
acc +5
|
||||
jmp +440
|
||||
acc +0
|
||||
acc +44
|
||||
jmp +432
|
||||
acc +48
|
||||
acc +4
|
||||
acc +50
|
||||
jmp +355
|
||||
acc +31
|
||||
jmp +1
|
||||
acc +46
|
||||
nop -74
|
||||
jmp +33
|
||||
jmp +91
|
||||
nop +463
|
||||
acc +41
|
||||
nop -2
|
||||
jmp +132
|
||||
acc +41
|
||||
acc +43
|
||||
acc +28
|
||||
jmp -65
|
||||
acc -17
|
||||
acc +33
|
||||
jmp +183
|
||||
acc +11
|
||||
jmp +181
|
||||
jmp +450
|
||||
acc -18
|
||||
acc -2
|
||||
acc +44
|
||||
nop +416
|
||||
jmp +108
|
||||
acc -18
|
||||
acc +12
|
||||
acc -1
|
||||
acc -19
|
||||
jmp +321
|
||||
acc +50
|
||||
acc -17
|
||||
jmp +1
|
||||
nop +161
|
||||
jmp -41
|
||||
jmp +52
|
||||
jmp +84
|
||||
acc +11
|
||||
acc +19
|
||||
acc +40
|
||||
jmp +293
|
||||
acc +29
|
||||
jmp +1
|
||||
jmp +311
|
||||
nop +91
|
||||
acc +1
|
||||
acc +0
|
||||
acc +16
|
||||
jmp -42
|
||||
acc +0
|
||||
acc -16
|
||||
acc +41
|
||||
nop +348
|
||||
jmp -39
|
||||
nop -114
|
||||
nop +320
|
||||
acc +46
|
||||
acc -1
|
||||
jmp +55
|
||||
nop +278
|
||||
jmp -94
|
||||
acc +47
|
||||
jmp +365
|
||||
acc +44
|
||||
jmp -58
|
||||
jmp +1
|
||||
jmp +114
|
||||
acc -13
|
||||
acc -5
|
||||
acc +12
|
||||
jmp +183
|
||||
nop +237
|
||||
acc +26
|
||||
acc +49
|
||||
acc +1
|
||||
jmp -189
|
||||
acc +7
|
||||
acc +2
|
||||
jmp -190
|
||||
acc -17
|
||||
acc +18
|
||||
acc -1
|
||||
jmp -47
|
||||
nop -39
|
||||
acc -18
|
||||
nop +354
|
||||
jmp +264
|
||||
acc +46
|
||||
jmp +179
|
||||
acc +22
|
||||
acc +24
|
||||
jmp +309
|
||||
acc +45
|
||||
acc -9
|
||||
jmp -206
|
||||
jmp +34
|
||||
nop +254
|
||||
acc +9
|
||||
acc +32
|
||||
jmp +391
|
||||
acc +9
|
||||
acc +20
|
||||
acc +7
|
||||
acc +48
|
||||
jmp -85
|
||||
acc +27
|
||||
acc -3
|
||||
jmp +146
|
||||
acc -12
|
||||
acc +37
|
||||
acc +23
|
||||
jmp +1
|
||||
jmp +48
|
||||
acc +46
|
||||
jmp +99
|
||||
acc -12
|
||||
acc -2
|
||||
acc +49
|
||||
jmp +1
|
||||
jmp +293
|
||||
jmp +1
|
||||
acc +38
|
||||
jmp +13
|
||||
jmp -215
|
||||
jmp -145
|
||||
acc +7
|
||||
nop +73
|
||||
nop +189
|
||||
jmp +167
|
||||
jmp +332
|
||||
acc +29
|
||||
jmp -146
|
||||
jmp +198
|
||||
acc +10
|
||||
jmp +342
|
||||
acc +31
|
||||
jmp -136
|
||||
acc +16
|
||||
acc +33
|
||||
acc +26
|
||||
jmp -48
|
||||
acc +14
|
||||
jmp +91
|
||||
acc -15
|
||||
nop +274
|
||||
acc -2
|
||||
jmp -75
|
||||
acc +14
|
||||
acc +21
|
||||
acc +4
|
||||
jmp +332
|
||||
jmp -243
|
||||
acc +25
|
||||
acc -5
|
||||
jmp +250
|
||||
acc -17
|
||||
acc +32
|
||||
acc +28
|
||||
acc +34
|
||||
jmp -80
|
||||
acc +23
|
||||
acc +30
|
||||
acc +10
|
||||
nop -98
|
||||
jmp -205
|
||||
acc -16
|
||||
acc -15
|
||||
acc +49
|
||||
acc +15
|
||||
jmp +11
|
||||
nop +97
|
||||
acc -2
|
||||
acc +31
|
||||
jmp +1
|
||||
jmp -130
|
||||
acc +25
|
||||
jmp +129
|
||||
nop -231
|
||||
jmp +274
|
||||
jmp -280
|
||||
acc +0
|
||||
acc -14
|
||||
acc +8
|
||||
nop -224
|
||||
jmp +328
|
||||
acc +6
|
||||
acc +29
|
||||
acc +9
|
||||
jmp -229
|
||||
acc +8
|
||||
jmp -284
|
||||
acc +4
|
||||
acc +0
|
||||
jmp -200
|
||||
acc +18
|
||||
acc +33
|
||||
jmp -76
|
||||
acc -2
|
||||
jmp +139
|
||||
nop -70
|
||||
acc -6
|
||||
acc +9
|
||||
jmp -25
|
||||
nop +21
|
||||
acc +37
|
||||
acc +15
|
||||
acc +45
|
||||
jmp +130
|
||||
acc +45
|
||||
acc -5
|
||||
jmp -86
|
||||
acc -15
|
||||
jmp +55
|
||||
nop -305
|
||||
acc +24
|
||||
jmp -275
|
||||
jmp +1
|
||||
acc +31
|
||||
acc -19
|
||||
jmp -148
|
||||
acc +27
|
||||
jmp +279
|
||||
acc +11
|
||||
jmp +253
|
||||
acc +17
|
||||
nop -1
|
||||
acc -15
|
||||
jmp -57
|
||||
acc +12
|
||||
acc +10
|
||||
acc -7
|
||||
acc +18
|
||||
jmp -100
|
||||
acc +39
|
||||
jmp -180
|
||||
jmp +155
|
||||
acc -14
|
||||
acc -10
|
||||
acc -14
|
||||
nop -202
|
||||
jmp -267
|
||||
acc +11
|
||||
acc +0
|
||||
jmp -130
|
||||
acc +19
|
||||
acc -18
|
||||
jmp +166
|
||||
jmp +61
|
||||
jmp +13
|
||||
acc -2
|
||||
jmp +1
|
||||
acc +19
|
||||
jmp -160
|
||||
acc +23
|
||||
jmp +1
|
||||
acc +37
|
||||
acc +40
|
||||
jmp +86
|
||||
acc +17
|
||||
acc -18
|
||||
jmp -195
|
||||
acc +11
|
||||
nop -149
|
||||
acc -13
|
||||
jmp +41
|
||||
acc -16
|
||||
jmp -30
|
||||
acc +34
|
||||
acc +13
|
||||
acc +38
|
||||
jmp +46
|
||||
acc -13
|
||||
acc +34
|
||||
jmp -273
|
||||
acc -9
|
||||
acc -8
|
||||
acc +23
|
||||
acc +8
|
||||
jmp +82
|
||||
acc +3
|
||||
acc +43
|
||||
nop +137
|
||||
jmp -46
|
||||
acc -15
|
||||
acc +41
|
||||
acc +25
|
||||
acc +3
|
||||
jmp -208
|
||||
acc +0
|
||||
jmp -169
|
||||
acc +20
|
||||
acc +12
|
||||
jmp -221
|
||||
acc -14
|
||||
jmp +96
|
||||
acc +47
|
||||
acc +25
|
||||
acc +7
|
||||
jmp +141
|
||||
acc -19
|
||||
jmp -294
|
||||
acc +28
|
||||
jmp -94
|
||||
acc +35
|
||||
jmp +33
|
||||
jmp -349
|
||||
acc -17
|
||||
jmp +193
|
||||
jmp +1
|
||||
acc -16
|
||||
jmp -169
|
||||
jmp +1
|
||||
nop -258
|
||||
acc +44
|
||||
nop -13
|
||||
jmp -330
|
||||
jmp +189
|
||||
acc +20
|
||||
acc +31
|
||||
nop +35
|
||||
acc +42
|
||||
jmp +64
|
||||
acc +9
|
||||
nop -406
|
||||
acc -14
|
||||
jmp +1
|
||||
jmp +74
|
||||
acc +34
|
||||
acc +0
|
||||
jmp -285
|
||||
jmp -422
|
||||
nop -338
|
||||
jmp +47
|
||||
nop -445
|
||||
jmp -145
|
||||
jmp +1
|
||||
jmp -116
|
||||
acc +41
|
||||
acc +44
|
||||
acc +34
|
||||
jmp -146
|
||||
acc +44
|
||||
jmp -434
|
||||
acc +44
|
||||
acc +34
|
||||
jmp -185
|
||||
acc -17
|
||||
nop -187
|
||||
nop -5
|
||||
jmp -96
|
||||
nop -20
|
||||
jmp -199
|
||||
acc +33
|
||||
jmp -229
|
||||
nop +50
|
||||
jmp -263
|
||||
acc -5
|
||||
acc -4
|
||||
acc +16
|
||||
jmp -340
|
||||
jmp -77
|
||||
nop -71
|
||||
jmp -168
|
||||
acc -18
|
||||
nop -447
|
||||
nop -479
|
||||
jmp -118
|
||||
acc +49
|
||||
nop -35
|
||||
jmp -264
|
||||
acc +21
|
||||
jmp -76
|
||||
acc +25
|
||||
acc +46
|
||||
jmp -339
|
||||
jmp -382
|
||||
nop -54
|
||||
nop -169
|
||||
jmp -208
|
||||
acc -8
|
||||
jmp -395
|
||||
acc -8
|
||||
acc +45
|
||||
nop -312
|
||||
jmp +92
|
||||
jmp -31
|
||||
acc +45
|
||||
acc +42
|
||||
nop -259
|
||||
jmp -169
|
||||
nop -255
|
||||
nop -69
|
||||
acc +47
|
||||
acc +35
|
||||
jmp -428
|
||||
acc +15
|
||||
acc +47
|
||||
acc +50
|
||||
acc +13
|
||||
jmp -491
|
||||
jmp -386
|
||||
acc +32
|
||||
acc +36
|
||||
jmp -73
|
||||
acc +22
|
||||
acc +0
|
||||
acc +35
|
||||
jmp -531
|
||||
acc +21
|
||||
nop -365
|
||||
acc +16
|
||||
jmp +89
|
||||
acc +50
|
||||
jmp -467
|
||||
acc +42
|
||||
nop -167
|
||||
acc +39
|
||||
jmp -481
|
||||
acc -13
|
||||
acc +49
|
||||
acc +8
|
||||
acc -11
|
||||
jmp -47
|
||||
acc +22
|
||||
acc +23
|
||||
nop +14
|
||||
jmp +56
|
||||
jmp -57
|
||||
acc +0
|
||||
acc +45
|
||||
acc -12
|
||||
jmp -339
|
||||
acc +41
|
||||
jmp -286
|
||||
acc +24
|
||||
acc -14
|
||||
acc +7
|
||||
nop -481
|
||||
jmp -539
|
||||
acc +14
|
||||
jmp -511
|
||||
acc +1
|
||||
acc -14
|
||||
jmp +1
|
||||
acc -12
|
||||
jmp -123
|
||||
acc -17
|
||||
acc +11
|
||||
jmp -16
|
||||
nop -148
|
||||
acc -14
|
||||
jmp -485
|
||||
nop -258
|
||||
nop -123
|
||||
acc +22
|
||||
jmp -359
|
||||
nop -527
|
||||
nop -443
|
||||
acc +43
|
||||
jmp +1
|
||||
jmp -406
|
||||
acc +39
|
||||
acc +13
|
||||
acc +3
|
||||
acc -5
|
||||
jmp -585
|
||||
acc +41
|
||||
acc +26
|
||||
jmp -83
|
||||
acc +30
|
||||
acc +8
|
||||
acc +36
|
||||
jmp -150
|
||||
acc +36
|
||||
acc +43
|
||||
jmp -305
|
||||
acc +10
|
||||
acc +33
|
||||
jmp -188
|
||||
nop -285
|
||||
acc -4
|
||||
jmp -385
|
||||
acc -1
|
||||
jmp +1
|
||||
nop -23
|
||||
jmp -471
|
||||
acc +24
|
||||
acc +16
|
||||
acc +29
|
||||
jmp -114
|
||||
nop -471
|
||||
acc +4
|
||||
nop -360
|
||||
nop -294
|
||||
jmp -220
|
||||
acc -18
|
||||
acc +21
|
||||
acc +10
|
||||
acc +0
|
||||
jmp -166
|
||||
jmp -192
|
||||
acc +37
|
||||
acc +24
|
||||
nop -198
|
||||
jmp -425
|
||||
acc -19
|
||||
acc +43
|
||||
jmp -608
|
||||
acc +17
|
||||
acc +32
|
||||
acc +0
|
||||
jmp -424
|
||||
acc +50
|
||||
acc +46
|
||||
nop -555
|
||||
acc -16
|
||||
jmp +1
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,93 @@
|
||||
47
|
||||
99
|
||||
115
|
||||
65
|
||||
10
|
||||
55
|
||||
19
|
||||
73
|
||||
80
|
||||
100
|
||||
71
|
||||
110
|
||||
64
|
||||
135
|
||||
49
|
||||
3
|
||||
1
|
||||
98
|
||||
132
|
||||
2
|
||||
38
|
||||
118
|
||||
66
|
||||
116
|
||||
104
|
||||
87
|
||||
79
|
||||
114
|
||||
40
|
||||
37
|
||||
44
|
||||
97
|
||||
4
|
||||
140
|
||||
60
|
||||
86
|
||||
56
|
||||
133
|
||||
7
|
||||
146
|
||||
85
|
||||
111
|
||||
134
|
||||
53
|
||||
121
|
||||
77
|
||||
117
|
||||
21
|
||||
12
|
||||
81
|
||||
145
|
||||
129
|
||||
107
|
||||
93
|
||||
22
|
||||
48
|
||||
11
|
||||
54
|
||||
92
|
||||
78
|
||||
67
|
||||
20
|
||||
138
|
||||
125
|
||||
57
|
||||
96
|
||||
26
|
||||
147
|
||||
124
|
||||
34
|
||||
74
|
||||
143
|
||||
13
|
||||
28
|
||||
126
|
||||
50
|
||||
29
|
||||
70
|
||||
39
|
||||
63
|
||||
41
|
||||
91
|
||||
32
|
||||
84
|
||||
144
|
||||
27
|
||||
139
|
||||
33
|
||||
88
|
||||
72
|
||||
23
|
||||
103
|
||||
16
|
||||
@@ -0,0 +1,93 @@
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLLLLLL.LL.LLLLLLLLLLL.LLLLLL.LL.LLLL.LLLLLL.LLLLLLL
|
||||
LL.LLLLLLL.LLLLLLLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LL.LLLL.LLLLLL.LLLLLLL
|
||||
LLLLLL.LLLLLLLLLLLLLLLL.LLL.L.LLLLLLLL.LLLL.LLLL.LLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLL.LLLL.L.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLL.L.LLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLLLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
L.L....L...L..LLLLLL.L.LLL..L...L.....L.L...L..L.LL.....L..L..LL...L........L..LLLLLLL.L......L..
|
||||
LLLLLLLLLL.LLLLLLLL.LLL.LLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LLLL..LLLLLLLL.LL.LLLLLLL.LLLLLLLLLLLLLL.LL.LLLLLLLLLLLLLL.LLLLLLLLLLLLLL
|
||||
LLL.LLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLL.L.LLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLLLLLLLLLLLL..L.LLLL.LLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLL
|
||||
LLLLLLL.LLLLLLL.LLLLLLL.LLLLL.LLL.LLLLLLLLLLLL.LLLLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLL.LL.LLLLLLLL.LLLLLLLL...LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLL.LLLLLLLLL.LLLLL.LLLLLLL..LLLLLL.LLLLLLLLLLL.LLLLLL.LLLLLLLLL.LL.LLLLLLLLLLLLLLLLLLL
|
||||
..L...L..LL.L....LL.L...LLLL......L...L....L...L.L...L..L..L...L.....L..L...................LLL.L
|
||||
LLLLLLLLLLLL.LLLLLLL.LL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLL..LLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLL.LL.LLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLL.L.LLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLL.LLLLLL.L.LLLLLL.LLLLLLLLLLL.LLLL..LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLL.LLLLLLLLLLLLLLLL.LLLLLLLL.LL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLL
|
||||
LL..LL.....LLL......LL.........L...L..L......L.....LL........LLLL.....L..................LL....L.
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.L.LLLLLLLLLLLLL.LLLLL.LLLLLLLLLL.LLLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLL.LLL.LLL.L.LLLLLLLLLLLLLLLLLL.LL.L.L.LLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLL
|
||||
LL.LLLLLLL.LLLLLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLL.LLL.LL.LLLLLL.
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
.LLLLLLLLLLLL.L.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLL
|
||||
...L..L...L.....L....LL..L.....L.L..L...LLLL..L....LL.L....L.L.L......LL...L...L..LLLL.L..L......
|
||||
LLLLLLLLLL.LLLLLLLLLLLL.LLLLL.LLLLLLLL.LLLL.LLLLLLLLLLL.LLLLLL...LLL.LLLLL.LLL.LLL.LLLLL..LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLL.LLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLLLLLLL.L.LLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLL.LL.LL.LLL.LLLLL..LLLLLLLL.LLLLLLLLL.LLLL.LLLLLLLLLLLLLLLLL
|
||||
L.LLLLLLLLLLL.L..LLLLLL.LLLLL.LLLLLLLL..LLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
.L....LL....L......LLL...L..L..L.L.L.LLL.L.L........L....L..LL......L......L.L..LLLL.L.L..L......
|
||||
LLLLLLLLLL.LLLLLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLLLLLLLLLLL.LLLLLLLL.LLLLLLLL..LLLLLLL..LL.LLLLLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LLLLL.LLLLLLLL.LLLL.LLLL.LLLLLL.LLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLL
|
||||
LLLLLLLLLL..LLL.LLLLL.L.LL.LL.LLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLL.LLLLLLLLL.LLLLLLLLLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLL.L.LLLLLLLLL.LLLLL.L.LLLLLLLLLLLLLL
|
||||
LLLLLL.....L......L.......L..L.LLL...L.L...LLL....L.......L.L..L...LL....LL.L...L...LLL.L...L..LL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLL.L.LLLLL
|
||||
LLLLLLLLLLLLLLL.LL.LLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLL.LL.LLLLLLLLLLLLLLLLLLLLLL
|
||||
....L..L.L.L...L.....L...LLL.....L.......L..LLL.LL...L.....L..L.L...L.L.L...LL...LL.L....LL.....L
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLLLLLL.LLLLLLLLLL.LLL.LLL
|
||||
LLL.LLLLLL.LLLL.LLLLLLL.LLLLLLLLLLLLLLLLLLL.LLLLLLLL.LL.LLLLLLLLLLLLLLL.LLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLL.LLLLLLLLLLLLLL.L.LLLLLLLLLLL.LLLLLL.LLLLLL..LLLLLLLLLLLLLL
|
||||
LL.LLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLL.LLLLLL.LL.LLLL..LLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLL.LL.LLLLLLLLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLL.L.LLLLL
|
||||
LLL.LLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LL.LLLLLL..LLLL.LLLLLLLLL.LLLLLLL.LLLLLLLLL.LL.L
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLL
|
||||
......L......LLL......L.LL...L..L.L.L..L.L.......L.L....L..LL.......L......L.....L.LLLLLL...L...L
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLLLLLLL..L.L.LLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLL.LLLLLLLLL.LLLLLLLLLLLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLL.L.LLL.L.LLLLLLLL.LLLLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LL.LLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLL..LLLLL.LLLLLLL
|
||||
LL.LLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLLLLLLLLLL
|
||||
.LLLLL.LLL.LLLLLLLLLLLL.LLLLL.LLLLLLLL.LLLLLL.LL.LLLLLLLLLLLL.LL.LLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLLLLLL.LLLLLLLL.LLL.LL.L.LLLL.L.LLLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLLLLLLLLLL.LLLL..LLL.LLLL.LLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLL.LL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.L.L.LLLLLLL.L.LLLLL.LLLLLL.LLLLLLL
|
||||
.L....L...L..LL.....L.LL...L.L..LLL...L..L..L..L..L.LLLLL....LLLL.........L..L..L..L..L...LL....L
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLL..LLLLLLLLLLLLLLLLL..L.LLLL.LLLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLL.L.LLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLL.LLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL..LLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLL
|
||||
LL.LLLLLLLLLLLL.LLLLLLL.LLLLL.LLLL.L.L.LLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLL.LLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
..L.L...L.L........L.......L......LLLLL......L.LLL.LL.........L.L....L..L.L.L...L..LL.L......LL..
|
||||
LLLLLLLLLL.LL.L.LLLLLLL.LLLLL.LLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLLLL.LLL.LLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLL.LL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLL.LLLLLLLLL.L.LLLLLLL.LLLLLLLLLLLL.L.LLLLLLLL..LLLLLLLLLLLLLLL.LLLL.LLLLLLLLLL.L.LLLLLLLLLLLLL.
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLLLLLLLLLLLL.LL.LLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLL.LLLLLL.L.LLLLLL.LL.LLLLLL.LLLLLLL.LL.LLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LL.LL.LLLLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLLLLLLLL.L.LLLLL.LLLLLLLL.LLLLLLLLL.LLL.LL.LLLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLLLLLLLL.LLLLLL.LL.LLLLL.LLLLLLLLL.LLLLLLL.LLLLLLLLLLLLLL
|
||||
LLLLLLLL.L.LLLL.LLLLLLL.LLLL..LLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLL.LLLL.LL
|
||||
.....LL.L...L..L.L..LL.L.......L...L...LLL.L.L..L.LL.L...LL..L.LL.LLL......LL.L..L.LL......L.....
|
||||
LLL.LLLLLL.LLLLLLLLLLLL.LLLLLL..LLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLL.LLLLLLLL..L
|
||||
LLLLLLLLLL.LLLL.LLLLL.L.LLLLL.LLLLLLLL.LLLLLLLLLLLLLLLL.LLLLLLLL.L..LLLLLL.LLLLLLL.LLLLL.LLLLLLLL
|
||||
LLLLLLLLLL.LLL..LLLLLLL.LLLLL.LLLLLLLL.LLLLLLL.LLLLLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLLLLLLLLLL.LLLLL.LLLLLLLL.LLLLLLLLLLLLLLL..LLLLLL.LLLLLLLLL.L.LLLLL.LLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLL.LLLL.LLLLLLL.LLLLL.LLL.LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLLLLLLLL.LLLLLLLL.LLLLLLLLL.LLLLLLLLLLLL.LL.LLL.LLLLLLLLL.LLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLL.LLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LL.LLLLLLLLLLLL.LLLLLLL.LLLL..LLLLLLL..LLLLLLLLL.LLLLLLLLLLLLLLL.LLLLLLLLL.LLLLLLLLLLLLLL.LLLLLLL
|
||||
LLLLLLLL.L.LLLLLLLLLLLL.LLLLLLLLLLLLL..LLLLLLLLL.LLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLL.LLLLLLLLLLLLLL.LLLLL.LLLLLLLLLL.LLLLLLL.LLLLLL.LLLLLL.L.LLLLLLLLL.LLLLLLL.LL.LLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLLLLLLLLLLLLLLLL.LLLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLLL.LLLLLLLLLLLLLLLLL.LLLLLL.LLLLLLL
|
||||
LLLLLLLLLLLLLLL.LLLLLLL.LLLLL.LLLLL.LLLLL.LLLLLL.L.LLLL.LLLLLLLL.LLLLLLLLLLLLLLLLL.LLL.LL.LLLLLL.
|
||||
@@ -0,0 +1,56 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.assertj.core.api.Assertions.assertThat
|
||||
import org.junit.jupiter.api.Nested
|
||||
import org.junit.jupiter.api.Test
|
||||
|
||||
class Day03Test {
|
||||
|
||||
@Nested
|
||||
inner class Example {
|
||||
private val example = listOf(
|
||||
"..##.......",
|
||||
"#...#...#..",
|
||||
".#....#..#.",
|
||||
"..#.#...#.#",
|
||||
".#...##..#.",
|
||||
"..#.##.....",
|
||||
".#.#.#....#",
|
||||
".#........#",
|
||||
"#.##...#...",
|
||||
"#...##....#",
|
||||
".#..#...#.#",
|
||||
).let { Input(it) }
|
||||
|
||||
private val day03 = Day03(example)
|
||||
|
||||
@Test
|
||||
fun `part1 result`() {
|
||||
assertThat(day03.part1()).isEqualTo(7)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `part2 result`() {
|
||||
assertThat(day03.part2()).isEqualTo(336)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Nested
|
||||
inner class RealInput {
|
||||
private val day03 = createDay<Day03>()
|
||||
|
||||
@Test
|
||||
fun `part1 result`() {
|
||||
assertThat(day03.part1()).isEqualTo(294)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `part2 result`() {
|
||||
assertThat(day03.part2()).isEqualTo(5774564250)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.assertj.core.api.Assertions.assertThat
|
||||
import org.junit.jupiter.api.Assertions
|
||||
import org.junit.jupiter.api.Nested
|
||||
import org.junit.jupiter.api.Test
|
||||
|
||||
class Day04Test {
|
||||
|
||||
@Nested
|
||||
inner class Example {
|
||||
private val example = """
|
||||
ecl:gry pid:860033327 eyr:2020 hcl:#fffffd
|
||||
byr:1937 iyr:2017 cid:147 hgt:183cm
|
||||
|
||||
iyr:2013 ecl:amb cid:350 eyr:2023 pid:028048884
|
||||
hcl:#cfa07d byr:1929
|
||||
|
||||
hcl:#ae17e1 iyr:2013
|
||||
eyr:2024
|
||||
ecl:brn pid:760753108 byr:1931
|
||||
hgt:179cm
|
||||
|
||||
hcl:#cfa07d eyr:2025 pid:166559648
|
||||
iyr:2011 ecl:brn hgt:59in
|
||||
""".trimIndent()
|
||||
.let { Input(it) }
|
||||
|
||||
private val day04 = Day04(example)
|
||||
|
||||
@Test
|
||||
fun parse() {
|
||||
val str = """
|
||||
[(ecl, gry), (pid, 860033327), (eyr, 2020), (hcl, #fffffd), (byr, 1937), (iyr, 2017), (cid, 147), (hgt, 183cm)]
|
||||
[(iyr, 2013), (ecl, amb), (cid, 350), (eyr, 2023), (pid, 028048884), (hcl, #cfa07d), (byr, 1929)]
|
||||
[(hcl, #ae17e1), (iyr, 2013), (eyr, 2024), (ecl, brn), (pid, 760753108), (byr, 1931), (hgt, 179cm)]
|
||||
[(hcl, #cfa07d), (eyr, 2025), (pid, 166559648), (iyr, 2011), (ecl, brn), (hgt, 59in)]
|
||||
""".trimIndent()
|
||||
|
||||
Assertions.assertEquals(str, day04.entries.joinToString("\n"))
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `part1 result`() {
|
||||
assertThat(day04.part1()).isEqualTo(2)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `part2 invalid`(){
|
||||
val input = """
|
||||
eyr:1972 cid:100
|
||||
hcl:#18171d ecl:amb hgt:170 pid:186cm iyr:2018 byr:1926
|
||||
|
||||
iyr:2019
|
||||
hcl:#602927 eyr:1967 hgt:170cm
|
||||
ecl:grn pid:012533040 byr:1946
|
||||
|
||||
hcl:dab227 iyr:2012
|
||||
ecl:brn hgt:182cm pid:021572410 eyr:2020 byr:1992 cid:277
|
||||
|
||||
hgt:59cm ecl:zzz
|
||||
eyr:2038 hcl:74454a iyr:2023
|
||||
pid:3556412378 byr:2007
|
||||
""".trimIndent().let { Input(it) }
|
||||
|
||||
assertThat(Day04(input).part2()).isEqualTo(0)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `part2 valid`(){
|
||||
val input = """
|
||||
pid:087499704 hgt:74in ecl:grn iyr:2012 eyr:2030 byr:1980
|
||||
hcl:#623a2f
|
||||
|
||||
eyr:2029 ecl:blu cid:129 byr:1989
|
||||
iyr:2014 pid:896056539 hcl:#a97842 hgt:165cm
|
||||
|
||||
hcl:#888785
|
||||
hgt:164cm byr:2001 iyr:2015 cid:88
|
||||
pid:545766238 ecl:hzl
|
||||
eyr:2022
|
||||
|
||||
iyr:2010 hgt:158cm hcl:#b6652a ecl:blu byr:1944 eyr:2021 pid:093154719
|
||||
""".trimIndent().let { Input(it) }
|
||||
|
||||
assertThat(Day04(input).part2()).isEqualTo(4)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Nested
|
||||
inner class RealInput {
|
||||
private val day04 = createDay<Day04>()
|
||||
|
||||
@Test
|
||||
fun `part1 result`() {
|
||||
assertThat(day04.part1()).isEqualTo(192)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `part2 result`() {
|
||||
assertThat(day04.part2())
|
||||
.`as`("Part 2 results")
|
||||
.isEqualTo(101)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import org.assertj.core.api.Assertions.assertThat
|
||||
import org.junit.jupiter.api.Test
|
||||
|
||||
class Day05Test {
|
||||
|
||||
private val day05 = createDay<Day05>()
|
||||
|
||||
@Test
|
||||
fun part1() {
|
||||
assertThat(day05.part1()).isEqualTo(813)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun part2() {
|
||||
assertThat(day05.part2()).isEqualTo(612)
|
||||
}
|
||||
|
||||
}
|
||||
@@ -11,7 +11,7 @@ dependencies {
|
||||
|
||||
implementation(Libs.Slf4J.api)
|
||||
implementation(Libs.Slf4J.kotlin)
|
||||
runtimeOnly(Libs.Slf4J.logback)
|
||||
runtimeOnly(Libs.Slf4J.simple)
|
||||
|
||||
testImplementation(Libs.Tests.jimfs)
|
||||
kaptTest(Libs.Micronaut.processor)
|
||||
|
||||
@@ -15,7 +15,7 @@ class ResourceLoaderImpl : ResourceLoader {
|
||||
append(day.toString().padStart(2, '0'))
|
||||
append(".txt")
|
||||
}
|
||||
val url = javaClass.getResource(resourcePath)
|
||||
val url = javaClass.getResource(resourcePath) ?: error("Couldn't find resource")
|
||||
return Path.of(url.toURI())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
<configuration>
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<withJansi>true</withJansi>
|
||||
<encoder>
|
||||
<pattern>%cyan(%d{YYYY-MM-dd HH:mm:ss.SSS}) [%thread] %highlight(%-5level) %green(%logger{36}) - %msg%n
|
||||
</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
<root level="INFO">
|
||||
<appender-ref ref="STDOUT"/>
|
||||
</root>
|
||||
<logger name="io.micronaut" level="INFO"/>
|
||||
<logger name="io.micronaut.context.lifecycle" level="INFO"/>
|
||||
</configuration>
|
||||
@@ -0,0 +1,6 @@
|
||||
org.slf4j.simpleLogger.logFile=System.out
|
||||
org.slf4j.simpleLogger.showDateTime=true
|
||||
org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
|
||||
org.slf4j.simpleLogger.defaultLogLevel=info
|
||||
org.slf4j.simpleLogger.log.io.micronaut=info
|
||||
org.slf4j.simpleLogger.log.io.micronaut.context.lifecycle=info
|
||||
Reference in New Issue
Block a user