diff --git a/day15/src/main b/day15/src/main new file mode 100755 index 0000000..cae35ba Binary files /dev/null and b/day15/src/main differ diff --git a/day15/src/main.rs b/day15/src/main.rs index b5027c9..2c00498 100644 --- a/day15/src/main.rs +++ b/day15/src/main.rs @@ -72,6 +72,7 @@ fn main() { let val = hash(piece); part1 += val; } + println!("part 1 sum is {part1}"); let mut focusing_power = 0; diff --git a/day16/Cargo.lock b/day16/Cargo.lock new file mode 100644 index 0000000..e3ac8f7 --- /dev/null +++ b/day16/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "day16" +version = "0.1.0" diff --git a/day16/src/main b/day16/src/main new file mode 100755 index 0000000..cce858c Binary files /dev/null and b/day16/src/main differ diff --git a/day16/src/main.rs b/day16/src/main.rs index e7a11a9..b42bb37 100644 --- a/day16/src/main.rs +++ b/day16/src/main.rs @@ -1,3 +1,145 @@ +use std::collections::HashSet; +use std::iter::*; +use std::fs; +use std::env; + +type Record = (i32, i32, i32, i32); + fn main() { - println!("Hello, world!"); + println!("Hello, AoC day 16!"); + + let args: Vec = env::args().collect(); + if args.len() != 2 { + println!("wrong number of arguments!"); + std::process::exit(1); + } + + let file_path = &args[1]; + + let contents = fs::read_to_string(file_path) + .expect("Should have been able to read the file"); + + let mut g: Vec> = Vec::new(); + let mut v: Vec> = Vec::new(); + + for line in contents.lines() { + let mut row = Vec::new(); + let mut vrow = Vec::new(); + for c in line.chars() { + row.push(c); + vrow.push('.'); + } + g.push(row); + v.push(vrow); + } + + //print_map(&g); + + let visited = &mut HashSet::::new(); + trace(&g, visited, 0,0, 1,0); + + + let mut sum = 0; + for (x, y, _, _) in visited.iter() { + if v[*y as usize][*x as usize] == '#' { + continue; + } + v[*y as usize][*x as usize] = '#'; + sum += 1 + } + + //print_map(&v); + println!("totally marked off {sum} locations when entering from the upper left going right"); + + let mut maximum = 0; + for x in 0..g[0].len() { + let from_the_top = count(&g, (x as i32, 0, 0, 1)); + if from_the_top > maximum { maximum = from_the_top; } + let from_the_bottom = count(&g, (x as i32, g.len() as i32, 0, -1)); + if from_the_bottom > maximum { maximum = from_the_bottom; } + } + + for y in 0..g.len() { + let from_the_left = count(&g, + (0, y as i32, + 1, 0)); + if from_the_left > maximum { maximum = from_the_left; } + let from_the_right = count(&g, + (g[0].len() as i32, y as i32, + -1, 0)); + if from_the_right > maximum { maximum = from_the_right; } + } + + println!("the highest number of locations we could visit was {maximum}"); } + +fn print_map(mat: &Vec>) { + for row in mat { + for c in row { + print!("{c}"); + } + print!("\n"); + } +} + +fn trace(mat: &Vec>, + visited: &mut HashSet, + start_x: i32, + start_y: i32, + start_dx: i32, + start_dy: i32) -> () { + + let mut cx = start_x; + let mut cy = start_y; + let mut dx = start_dx; + let mut dy = start_dy; + + while cy >= 0 && (cy as usize) < mat.len() && cx >= 0 && (cx as usize) < mat[0].len() { + if visited.contains(&(cx, cy, dx, dy)) { return (); } + visited.insert((cx, cy, dx, dy)); + + match mat[cy as usize][cx as usize] { + '\\' => (dx, dy) = (dy, dx), + '/' => (dx, dy) = (-dy, -dx), + '|' => + if dx != 0 { + trace(mat, visited, cx, cy, 0, 1); + trace(mat, visited, cx, cy, 0, -1); + return; + }, + '-' => + if dy != 0 { + trace(mat, visited, cx, cy, 1, 0); + trace(mat, visited, cx, cy, -1, 0); + return; + }, + _ => () + } + + cx = cx + dx; + cy = cy + dy; + } +} + +fn count(mat: &Vec>, start: Record) -> i32 { + let mut visit_set = HashSet::::new(); + trace(mat, &mut visit_set, start.0, start.1, start.2, start.3); + + let mut v = Vec::>::new(); + for row in mat { + let mut nr = Vec::new(); + for _ in row { nr.push('.'); } + v.push(nr); + } + + let mut sum = 0; + for (x, y, _, _) in visit_set.iter() { + if v[*y as usize][*x as usize] == '#' { + continue; + } + v[*y as usize][*x as usize] = '#'; + sum += 1 + } + + return sum; +} \ No newline at end of file diff --git a/day16/target/.rustc_info.json b/day16/target/.rustc_info.json new file mode 100644 index 0000000..18a1295 --- /dev/null +++ b/day16/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":11672801278650259402,"outputs":{"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"ssse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.69.0 (84c898d65 2023-04-16)\nbinary: rustc\ncommit-hash: 84c898d65adf2f39a5a98507f1fe0ce10a2b8dbc\ncommit-date: 2023-04-16\nhost: x86_64-apple-darwin\nrelease: 1.69.0\nLLVM version: 15.0.7\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/day16/target/CACHEDIR.TAG b/day16/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/day16/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/day16/target/debug/.cargo-lock b/day16/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/dep-test-bin-day16 b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/dep-test-bin-day16 new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/dep-test-bin-day16 differ diff --git a/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/invoked.timestamp b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/output-test-bin-day16 b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/output-test-bin-day16 new file mode 100644 index 0000000..bb30834 --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/output-test-bin-day16 @@ -0,0 +1,2 @@ +{"message":"function `print_map` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":2010,"byte_end":2019,"line_start":76,"line_end":76,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"fn print_map(mat: &Vec>) {","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `print_map` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:76:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m76\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn print_map(mat: &Vec>) {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/test-bin-day16 b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/test-bin-day16 new file mode 100644 index 0000000..76f1be0 --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/test-bin-day16 @@ -0,0 +1 @@ +9a41b0768220741b \ No newline at end of file diff --git a/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/test-bin-day16.json b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/test-bin-day16.json new file mode 100644 index 0000000..0ddd8e5 --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e1bddb71ea6cd219/test-bin-day16.json @@ -0,0 +1 @@ +{"rustc":3659767333214291318,"features":"[]","target":250502024769020866,"profile":11506243869495082934,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/day16-e1bddb71ea6cd219/dep-test-bin-day16"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/bin-day16 b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/bin-day16 new file mode 100644 index 0000000..d695910 --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/bin-day16 @@ -0,0 +1 @@ +23e1d259d4912651 \ No newline at end of file diff --git a/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/bin-day16.json b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/bin-day16.json new file mode 100644 index 0000000..df46b63 --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/bin-day16.json @@ -0,0 +1 @@ +{"rustc":3659767333214291318,"features":"[]","target":250502024769020866,"profile":11736316127369858332,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/day16-e5a07f0ab55d4573/dep-bin-day16"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0} \ No newline at end of file diff --git a/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/dep-bin-day16 b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/dep-bin-day16 new file mode 100644 index 0000000..5fdf103 Binary files /dev/null and b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/dep-bin-day16 differ diff --git a/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/invoked.timestamp b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/output-bin-day16 b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/output-bin-day16 new file mode 100644 index 0000000..bb30834 --- /dev/null +++ b/day16/target/debug/.fingerprint/day16-e5a07f0ab55d4573/output-bin-day16 @@ -0,0 +1,2 @@ +{"message":"function `print_map` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":2010,"byte_end":2019,"line_start":76,"line_end":76,"column_start":4,"column_end":13,"is_primary":true,"text":[{"text":"fn print_map(mat: &Vec>) {","highlight_start":4,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `print_map` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:76:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m76\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn print_map(mat: &Vec>) {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"} +{"message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/day16/target/debug/day16 b/day16/target/debug/day16 new file mode 100755 index 0000000..90679fe Binary files /dev/null and b/day16/target/debug/day16 differ diff --git a/day16/target/debug/day16.d b/day16/target/debug/day16.d new file mode 100644 index 0000000..e3187f8 --- /dev/null +++ b/day16/target/debug/day16.d @@ -0,0 +1 @@ +/Users/shoofle/Projects/aoc_2023/day16/target/debug/day16: /Users/shoofle/Projects/aoc_2023/day16/src/main.rs diff --git a/day16/target/debug/deps/day16-e1bddb71ea6cd219.d b/day16/target/debug/deps/day16-e1bddb71ea6cd219.d new file mode 100644 index 0000000..71c7880 --- /dev/null +++ b/day16/target/debug/deps/day16-e1bddb71ea6cd219.d @@ -0,0 +1,5 @@ +/Users/shoofle/Projects/aoc_2023/day16/target/debug/deps/day16-e1bddb71ea6cd219.rmeta: src/main.rs + +/Users/shoofle/Projects/aoc_2023/day16/target/debug/deps/day16-e1bddb71ea6cd219.d: src/main.rs + +src/main.rs: diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573 b/day16/target/debug/deps/day16-e5a07f0ab55d4573 new file mode 100755 index 0000000..90679fe Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573 differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.10b4zb8cfb7o0g1o.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.10b4zb8cfb7o0g1o.rcgu.o new file mode 100644 index 0000000..5c81ccd Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.10b4zb8cfb7o0g1o.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1dhv4cg68or1lu29.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1dhv4cg68or1lu29.rcgu.o new file mode 100644 index 0000000..6a7dd22 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1dhv4cg68or1lu29.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1e6pfkj1vj221ko8.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1e6pfkj1vj221ko8.rcgu.o new file mode 100644 index 0000000..3350bfc Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1e6pfkj1vj221ko8.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1iycw50aiuohlo2c.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1iycw50aiuohlo2c.rcgu.o new file mode 100644 index 0000000..f631d41 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1iycw50aiuohlo2c.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1ln00g57nerstblb.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1ln00g57nerstblb.rcgu.o new file mode 100644 index 0000000..e5b7476 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1ln00g57nerstblb.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1m7ylauzgsbvnxdy.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1m7ylauzgsbvnxdy.rcgu.o new file mode 100644 index 0000000..7b54317 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1m7ylauzgsbvnxdy.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1qr2ph19pvctvupx.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1qr2ph19pvctvupx.rcgu.o new file mode 100644 index 0000000..20281a5 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1qr2ph19pvctvupx.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1uxd95dbj9b71ywf.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1uxd95dbj9b71ywf.rcgu.o new file mode 100644 index 0000000..6b51d4d Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1uxd95dbj9b71ywf.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1z04jzhfi3fboot3.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1z04jzhfi3fboot3.rcgu.o new file mode 100644 index 0000000..f16ae26 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1z04jzhfi3fboot3.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.1zunpvyv815yr8j9.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1zunpvyv815yr8j9.rcgu.o new file mode 100644 index 0000000..feb1075 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.1zunpvyv815yr8j9.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.20zwih9559vpqlz5.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.20zwih9559vpqlz5.rcgu.o new file mode 100644 index 0000000..390c381 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.20zwih9559vpqlz5.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.24yt5ov2i9i9kwtn.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.24yt5ov2i9i9kwtn.rcgu.o new file mode 100644 index 0000000..bdebc2f Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.24yt5ov2i9i9kwtn.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.280wa8uvva3qcxed.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.280wa8uvva3qcxed.rcgu.o new file mode 100644 index 0000000..14d7a34 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.280wa8uvva3qcxed.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.287ebsfg8odjv0ej.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.287ebsfg8odjv0ej.rcgu.o new file mode 100644 index 0000000..df8fe8a Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.287ebsfg8odjv0ej.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2cv6kqm29cf4a5lv.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2cv6kqm29cf4a5lv.rcgu.o new file mode 100644 index 0000000..9623a95 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2cv6kqm29cf4a5lv.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ftcufo1voxvqbnp.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ftcufo1voxvqbnp.rcgu.o new file mode 100644 index 0000000..dac4d93 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ftcufo1voxvqbnp.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2g5nksa579rlzw9k.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2g5nksa579rlzw9k.rcgu.o new file mode 100644 index 0000000..34aa76d Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2g5nksa579rlzw9k.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2h9zrbsuqqbcsngr.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2h9zrbsuqqbcsngr.rcgu.o new file mode 100644 index 0000000..b93e69c Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2h9zrbsuqqbcsngr.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2hj664180kb07e45.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2hj664180kb07e45.rcgu.o new file mode 100644 index 0000000..d6bde3d Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2hj664180kb07e45.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2i11lrcw98inzgqe.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2i11lrcw98inzgqe.rcgu.o new file mode 100644 index 0000000..f4daa89 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2i11lrcw98inzgqe.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2jhsk8nxc42l2ym0.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2jhsk8nxc42l2ym0.rcgu.o new file mode 100644 index 0000000..6b5dfdc Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2jhsk8nxc42l2ym0.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2k495d4tlr0g7q6c.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2k495d4tlr0g7q6c.rcgu.o new file mode 100644 index 0000000..a39db6b Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2k495d4tlr0g7q6c.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ll0mumamza6wsie.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ll0mumamza6wsie.rcgu.o new file mode 100644 index 0000000..fd4fa35 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ll0mumamza6wsie.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2mx8ku635am2xyop.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2mx8ku635am2xyop.rcgu.o new file mode 100644 index 0000000..fc385e2 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2mx8ku635am2xyop.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2owumyihak3nrv1h.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2owumyihak3nrv1h.rcgu.o new file mode 100644 index 0000000..b1a86d6 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2owumyihak3nrv1h.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2pl1kc41vqgoi05k.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2pl1kc41vqgoi05k.rcgu.o new file mode 100644 index 0000000..19a66d9 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2pl1kc41vqgoi05k.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2rcy96owgp0lwhkp.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2rcy96owgp0lwhkp.rcgu.o new file mode 100644 index 0000000..3be1dd0 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2rcy96owgp0lwhkp.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2rvg591ckjukuxb3.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2rvg591ckjukuxb3.rcgu.o new file mode 100644 index 0000000..da4f2a7 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2rvg591ckjukuxb3.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2seojlpohgwvinz8.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2seojlpohgwvinz8.rcgu.o new file mode 100644 index 0000000..df2b25b Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2seojlpohgwvinz8.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2wxvf48crorrze2t.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2wxvf48crorrze2t.rcgu.o new file mode 100644 index 0000000..f3c742f Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2wxvf48crorrze2t.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ynh7vst0o6momhf.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ynh7vst0o6momhf.rcgu.o new file mode 100644 index 0000000..ed4d6fa Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2ynh7vst0o6momhf.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.2z7zw5wyaw45pizv.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2z7zw5wyaw45pizv.rcgu.o new file mode 100644 index 0000000..d841bc5 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.2z7zw5wyaw45pizv.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.32kmvuaqs89spgtr.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.32kmvuaqs89spgtr.rcgu.o new file mode 100644 index 0000000..3269a3c Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.32kmvuaqs89spgtr.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.33jf0trzp1ucr3r8.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.33jf0trzp1ucr3r8.rcgu.o new file mode 100644 index 0000000..50a68c1 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.33jf0trzp1ucr3r8.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.35wkuntjayqx3c0p.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.35wkuntjayqx3c0p.rcgu.o new file mode 100644 index 0000000..0ae6d7f Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.35wkuntjayqx3c0p.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.37wclap0ma0j5osc.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.37wclap0ma0j5osc.rcgu.o new file mode 100644 index 0000000..9967fe7 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.37wclap0ma0j5osc.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.38xruaia3kl35ecc.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.38xruaia3kl35ecc.rcgu.o new file mode 100644 index 0000000..0bff19b Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.38xruaia3kl35ecc.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3ag8l63xqsbhkubj.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3ag8l63xqsbhkubj.rcgu.o new file mode 100644 index 0000000..cd52209 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3ag8l63xqsbhkubj.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3fub4sn0fcb1f6ke.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3fub4sn0fcb1f6ke.rcgu.o new file mode 100644 index 0000000..109e33a Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3fub4sn0fcb1f6ke.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3g44eaynrrl61zbw.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3g44eaynrrl61zbw.rcgu.o new file mode 100644 index 0000000..bad5c87 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3g44eaynrrl61zbw.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3gxpdy5d1u6twk7c.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3gxpdy5d1u6twk7c.rcgu.o new file mode 100644 index 0000000..cb1dcc3 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3gxpdy5d1u6twk7c.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3k3mot50uhfgxgxe.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3k3mot50uhfgxgxe.rcgu.o new file mode 100644 index 0000000..7b4cfcd Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3k3mot50uhfgxgxe.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3lhfi29odd6jk1xi.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3lhfi29odd6jk1xi.rcgu.o new file mode 100644 index 0000000..4a10a8f Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3lhfi29odd6jk1xi.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3o15szmmbsrzg9bd.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3o15szmmbsrzg9bd.rcgu.o new file mode 100644 index 0000000..2172031 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3o15szmmbsrzg9bd.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3pufrh849g67sl2y.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3pufrh849g67sl2y.rcgu.o new file mode 100644 index 0000000..bc221fe Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3pufrh849g67sl2y.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3tpnw9mjmtfq3qgu.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3tpnw9mjmtfq3qgu.rcgu.o new file mode 100644 index 0000000..2e67331 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3tpnw9mjmtfq3qgu.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.3wxxrjm9p5tyn432.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3wxxrjm9p5tyn432.rcgu.o new file mode 100644 index 0000000..f21493c Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.3wxxrjm9p5tyn432.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.407064rheqodqjws.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.407064rheqodqjws.rcgu.o new file mode 100644 index 0000000..eb8981a Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.407064rheqodqjws.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.40j1rd9tyww7wevh.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.40j1rd9tyww7wevh.rcgu.o new file mode 100644 index 0000000..7f3e6a7 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.40j1rd9tyww7wevh.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.42scclinnhbqbb14.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.42scclinnhbqbb14.rcgu.o new file mode 100644 index 0000000..3db727e Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.42scclinnhbqbb14.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.43552u47n4n3ld2e.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.43552u47n4n3ld2e.rcgu.o new file mode 100644 index 0000000..60d0563 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.43552u47n4n3ld2e.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.44y0z4vjmj21rqi4.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.44y0z4vjmj21rqi4.rcgu.o new file mode 100644 index 0000000..ddd44d2 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.44y0z4vjmj21rqi4.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.49h91vug8c3gnl7o.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.49h91vug8c3gnl7o.rcgu.o new file mode 100644 index 0000000..30c6761 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.49h91vug8c3gnl7o.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4au53redjrt1xrko.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4au53redjrt1xrko.rcgu.o new file mode 100644 index 0000000..67319f7 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4au53redjrt1xrko.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4bwbzlf2qik27yga.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4bwbzlf2qik27yga.rcgu.o new file mode 100644 index 0000000..2d0d009 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4bwbzlf2qik27yga.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4dpksrko8uqbz4r7.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4dpksrko8uqbz4r7.rcgu.o new file mode 100644 index 0000000..879670b Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4dpksrko8uqbz4r7.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4gvz8l7nrizzsu1t.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4gvz8l7nrizzsu1t.rcgu.o new file mode 100644 index 0000000..83c3e90 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4gvz8l7nrizzsu1t.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4kplb7wum7fs9d23.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4kplb7wum7fs9d23.rcgu.o new file mode 100644 index 0000000..b1dac91 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4kplb7wum7fs9d23.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4mmbark0zyxe4yd2.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4mmbark0zyxe4yd2.rcgu.o new file mode 100644 index 0000000..aee9174 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4mmbark0zyxe4yd2.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4nwucykzjf6n35e9.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4nwucykzjf6n35e9.rcgu.o new file mode 100644 index 0000000..fdc6a53 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4nwucykzjf6n35e9.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4ro85k8vn6pq1yad.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4ro85k8vn6pq1yad.rcgu.o new file mode 100644 index 0000000..cabae2d Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4ro85k8vn6pq1yad.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4srekcra2jdygh2o.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4srekcra2jdygh2o.rcgu.o new file mode 100644 index 0000000..114cbbc Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4srekcra2jdygh2o.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4tzeqy7k0ni95saf.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4tzeqy7k0ni95saf.rcgu.o new file mode 100644 index 0000000..2ad94a3 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4tzeqy7k0ni95saf.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4we8aibaiyf0gsaq.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4we8aibaiyf0gsaq.rcgu.o new file mode 100644 index 0000000..1708afc Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4we8aibaiyf0gsaq.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4xo82dd9hfkg4p5u.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4xo82dd9hfkg4p5u.rcgu.o new file mode 100644 index 0000000..43ba0f4 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4xo82dd9hfkg4p5u.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.4zqvec4mpvi58uaa.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4zqvec4mpvi58uaa.rcgu.o new file mode 100644 index 0000000..c491cf7 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.4zqvec4mpvi58uaa.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.51ab4ogxhyieu10o.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.51ab4ogxhyieu10o.rcgu.o new file mode 100644 index 0000000..8af0595 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.51ab4ogxhyieu10o.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.59d854m4vnfj5zd7.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.59d854m4vnfj5zd7.rcgu.o new file mode 100644 index 0000000..eab5a69 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.59d854m4vnfj5zd7.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.5dvylfmbnquieqzw.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.5dvylfmbnquieqzw.rcgu.o new file mode 100644 index 0000000..dfaade3 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.5dvylfmbnquieqzw.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.5et9n8j3xv79odnl.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.5et9n8j3xv79odnl.rcgu.o new file mode 100644 index 0000000..80a9b81 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.5et9n8j3xv79odnl.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.7nmq3zmrldbkk1b.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.7nmq3zmrldbkk1b.rcgu.o new file mode 100644 index 0000000..7f3bbd7 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.7nmq3zmrldbkk1b.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.agpwgyodyelny40.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.agpwgyodyelny40.rcgu.o new file mode 100644 index 0000000..28a52ba Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.agpwgyodyelny40.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.bu0an8d0mroq5mt.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.bu0an8d0mroq5mt.rcgu.o new file mode 100644 index 0000000..85ce86e Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.bu0an8d0mroq5mt.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.d b/day16/target/debug/deps/day16-e5a07f0ab55d4573.d new file mode 100644 index 0000000..3c8b95d --- /dev/null +++ b/day16/target/debug/deps/day16-e5a07f0ab55d4573.d @@ -0,0 +1,5 @@ +/Users/shoofle/Projects/aoc_2023/day16/target/debug/deps/day16-e5a07f0ab55d4573: src/main.rs + +/Users/shoofle/Projects/aoc_2023/day16/target/debug/deps/day16-e5a07f0ab55d4573.d: src/main.rs + +src/main.rs: diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.g3chw62xxx7jwnu.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.g3chw62xxx7jwnu.rcgu.o new file mode 100644 index 0000000..d9cba0a Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.g3chw62xxx7jwnu.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.ix73i56tvw53jnt.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.ix73i56tvw53jnt.rcgu.o new file mode 100644 index 0000000..a0ba2b4 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.ix73i56tvw53jnt.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.kj7d1csrrdvd26w.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.kj7d1csrrdvd26w.rcgu.o new file mode 100644 index 0000000..d5e1f79 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.kj7d1csrrdvd26w.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.mwtw54e95t49snb.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.mwtw54e95t49snb.rcgu.o new file mode 100644 index 0000000..276b382 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.mwtw54e95t49snb.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.oc3hbh4j55i4o96.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.oc3hbh4j55i4o96.rcgu.o new file mode 100644 index 0000000..5a8bd68 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.oc3hbh4j55i4o96.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.qm3dob57arrbvm5.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.qm3dob57arrbvm5.rcgu.o new file mode 100644 index 0000000..9fa1779 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.qm3dob57arrbvm5.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.qri6t6pz4mp1kn0.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.qri6t6pz4mp1kn0.rcgu.o new file mode 100644 index 0000000..1fb5962 Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.qri6t6pz4mp1kn0.rcgu.o differ diff --git a/day16/target/debug/deps/day16-e5a07f0ab55d4573.zsx305ki9wke1yz.rcgu.o b/day16/target/debug/deps/day16-e5a07f0ab55d4573.zsx305ki9wke1yz.rcgu.o new file mode 100644 index 0000000..c67cc5e Binary files /dev/null and b/day16/target/debug/deps/day16-e5a07f0ab55d4573.zsx305ki9wke1yz.rcgu.o differ diff --git a/day16/target/debug/deps/libday16-e1bddb71ea6cd219.rmeta b/day16/target/debug/deps/libday16-e1bddb71ea6cd219.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/10b4zb8cfb7o0g1o.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/10b4zb8cfb7o0g1o.o new file mode 100644 index 0000000..5c81ccd Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/10b4zb8cfb7o0g1o.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1dhv4cg68or1lu29.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1dhv4cg68or1lu29.o new file mode 100644 index 0000000..6a7dd22 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1dhv4cg68or1lu29.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1e6pfkj1vj221ko8.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1e6pfkj1vj221ko8.o new file mode 100644 index 0000000..3350bfc Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1e6pfkj1vj221ko8.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1iycw50aiuohlo2c.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1iycw50aiuohlo2c.o new file mode 100644 index 0000000..f631d41 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1iycw50aiuohlo2c.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1ln00g57nerstblb.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1ln00g57nerstblb.o new file mode 100644 index 0000000..e5b7476 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1ln00g57nerstblb.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1m7ylauzgsbvnxdy.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1m7ylauzgsbvnxdy.o new file mode 100644 index 0000000..7b54317 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1m7ylauzgsbvnxdy.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1qr2ph19pvctvupx.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1qr2ph19pvctvupx.o new file mode 100644 index 0000000..20281a5 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1qr2ph19pvctvupx.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1uxd95dbj9b71ywf.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1uxd95dbj9b71ywf.o new file mode 100644 index 0000000..6b51d4d Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1uxd95dbj9b71ywf.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1z04jzhfi3fboot3.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1z04jzhfi3fboot3.o new file mode 100644 index 0000000..f16ae26 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1z04jzhfi3fboot3.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1zunpvyv815yr8j9.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1zunpvyv815yr8j9.o new file mode 100644 index 0000000..feb1075 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/1zunpvyv815yr8j9.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/20zwih9559vpqlz5.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/20zwih9559vpqlz5.o new file mode 100644 index 0000000..390c381 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/20zwih9559vpqlz5.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/24yt5ov2i9i9kwtn.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/24yt5ov2i9i9kwtn.o new file mode 100644 index 0000000..bdebc2f Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/24yt5ov2i9i9kwtn.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/280wa8uvva3qcxed.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/280wa8uvva3qcxed.o new file mode 100644 index 0000000..14d7a34 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/280wa8uvva3qcxed.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/287ebsfg8odjv0ej.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/287ebsfg8odjv0ej.o new file mode 100644 index 0000000..df8fe8a Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/287ebsfg8odjv0ej.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2cv6kqm29cf4a5lv.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2cv6kqm29cf4a5lv.o new file mode 100644 index 0000000..9623a95 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2cv6kqm29cf4a5lv.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ftcufo1voxvqbnp.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ftcufo1voxvqbnp.o new file mode 100644 index 0000000..dac4d93 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ftcufo1voxvqbnp.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2g5nksa579rlzw9k.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2g5nksa579rlzw9k.o new file mode 100644 index 0000000..34aa76d Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2g5nksa579rlzw9k.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2h9zrbsuqqbcsngr.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2h9zrbsuqqbcsngr.o new file mode 100644 index 0000000..b93e69c Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2h9zrbsuqqbcsngr.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2hj664180kb07e45.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2hj664180kb07e45.o new file mode 100644 index 0000000..d6bde3d Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2hj664180kb07e45.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2i11lrcw98inzgqe.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2i11lrcw98inzgqe.o new file mode 100644 index 0000000..f4daa89 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2i11lrcw98inzgqe.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2jhsk8nxc42l2ym0.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2jhsk8nxc42l2ym0.o new file mode 100644 index 0000000..6b5dfdc Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2jhsk8nxc42l2ym0.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2k495d4tlr0g7q6c.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2k495d4tlr0g7q6c.o new file mode 100644 index 0000000..a39db6b Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2k495d4tlr0g7q6c.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ll0mumamza6wsie.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ll0mumamza6wsie.o new file mode 100644 index 0000000..fd4fa35 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ll0mumamza6wsie.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2mx8ku635am2xyop.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2mx8ku635am2xyop.o new file mode 100644 index 0000000..fc385e2 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2mx8ku635am2xyop.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2pl1kc41vqgoi05k.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2pl1kc41vqgoi05k.o new file mode 100644 index 0000000..19a66d9 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2pl1kc41vqgoi05k.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2rcy96owgp0lwhkp.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2rcy96owgp0lwhkp.o new file mode 100644 index 0000000..3be1dd0 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2rcy96owgp0lwhkp.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2rvg591ckjukuxb3.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2rvg591ckjukuxb3.o new file mode 100644 index 0000000..da4f2a7 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2rvg591ckjukuxb3.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2seojlpohgwvinz8.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2seojlpohgwvinz8.o new file mode 100644 index 0000000..df2b25b Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2seojlpohgwvinz8.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2wxvf48crorrze2t.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2wxvf48crorrze2t.o new file mode 100644 index 0000000..f3c742f Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2wxvf48crorrze2t.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ynh7vst0o6momhf.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ynh7vst0o6momhf.o new file mode 100644 index 0000000..ed4d6fa Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2ynh7vst0o6momhf.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2z7zw5wyaw45pizv.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2z7zw5wyaw45pizv.o new file mode 100644 index 0000000..d841bc5 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/2z7zw5wyaw45pizv.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/32kmvuaqs89spgtr.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/32kmvuaqs89spgtr.o new file mode 100644 index 0000000..3269a3c Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/32kmvuaqs89spgtr.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/33jf0trzp1ucr3r8.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/33jf0trzp1ucr3r8.o new file mode 100644 index 0000000..50a68c1 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/33jf0trzp1ucr3r8.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/35wkuntjayqx3c0p.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/35wkuntjayqx3c0p.o new file mode 100644 index 0000000..0ae6d7f Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/35wkuntjayqx3c0p.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/37wclap0ma0j5osc.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/37wclap0ma0j5osc.o new file mode 100644 index 0000000..9967fe7 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/37wclap0ma0j5osc.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/38xruaia3kl35ecc.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/38xruaia3kl35ecc.o new file mode 100644 index 0000000..0bff19b Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/38xruaia3kl35ecc.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3ag8l63xqsbhkubj.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3ag8l63xqsbhkubj.o new file mode 100644 index 0000000..cd52209 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3ag8l63xqsbhkubj.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3fub4sn0fcb1f6ke.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3fub4sn0fcb1f6ke.o new file mode 100644 index 0000000..109e33a Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3fub4sn0fcb1f6ke.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3g44eaynrrl61zbw.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3g44eaynrrl61zbw.o new file mode 100644 index 0000000..bad5c87 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3g44eaynrrl61zbw.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3gxpdy5d1u6twk7c.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3gxpdy5d1u6twk7c.o new file mode 100644 index 0000000..cb1dcc3 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3gxpdy5d1u6twk7c.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3k3mot50uhfgxgxe.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3k3mot50uhfgxgxe.o new file mode 100644 index 0000000..7b4cfcd Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3k3mot50uhfgxgxe.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3lhfi29odd6jk1xi.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3lhfi29odd6jk1xi.o new file mode 100644 index 0000000..4a10a8f Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3lhfi29odd6jk1xi.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3o15szmmbsrzg9bd.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3o15szmmbsrzg9bd.o new file mode 100644 index 0000000..2172031 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3o15szmmbsrzg9bd.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3pufrh849g67sl2y.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3pufrh849g67sl2y.o new file mode 100644 index 0000000..bc221fe Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3pufrh849g67sl2y.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3tpnw9mjmtfq3qgu.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3tpnw9mjmtfq3qgu.o new file mode 100644 index 0000000..2e67331 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3tpnw9mjmtfq3qgu.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3wxxrjm9p5tyn432.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3wxxrjm9p5tyn432.o new file mode 100644 index 0000000..f21493c Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/3wxxrjm9p5tyn432.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/407064rheqodqjws.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/407064rheqodqjws.o new file mode 100644 index 0000000..eb8981a Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/407064rheqodqjws.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/40j1rd9tyww7wevh.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/40j1rd9tyww7wevh.o new file mode 100644 index 0000000..7f3e6a7 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/40j1rd9tyww7wevh.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/42scclinnhbqbb14.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/42scclinnhbqbb14.o new file mode 100644 index 0000000..3db727e Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/42scclinnhbqbb14.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/43552u47n4n3ld2e.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/43552u47n4n3ld2e.o new file mode 100644 index 0000000..60d0563 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/43552u47n4n3ld2e.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/44y0z4vjmj21rqi4.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/44y0z4vjmj21rqi4.o new file mode 100644 index 0000000..ddd44d2 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/44y0z4vjmj21rqi4.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/49h91vug8c3gnl7o.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/49h91vug8c3gnl7o.o new file mode 100644 index 0000000..30c6761 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/49h91vug8c3gnl7o.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4bwbzlf2qik27yga.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4bwbzlf2qik27yga.o new file mode 100644 index 0000000..2d0d009 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4bwbzlf2qik27yga.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4dpksrko8uqbz4r7.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4dpksrko8uqbz4r7.o new file mode 100644 index 0000000..879670b Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4dpksrko8uqbz4r7.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4gvz8l7nrizzsu1t.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4gvz8l7nrizzsu1t.o new file mode 100644 index 0000000..83c3e90 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4gvz8l7nrizzsu1t.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4kplb7wum7fs9d23.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4kplb7wum7fs9d23.o new file mode 100644 index 0000000..b1dac91 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4kplb7wum7fs9d23.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4mmbark0zyxe4yd2.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4mmbark0zyxe4yd2.o new file mode 100644 index 0000000..aee9174 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4mmbark0zyxe4yd2.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4nwucykzjf6n35e9.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4nwucykzjf6n35e9.o new file mode 100644 index 0000000..fdc6a53 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4nwucykzjf6n35e9.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4ro85k8vn6pq1yad.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4ro85k8vn6pq1yad.o new file mode 100644 index 0000000..cabae2d Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4ro85k8vn6pq1yad.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4srekcra2jdygh2o.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4srekcra2jdygh2o.o new file mode 100644 index 0000000..114cbbc Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4srekcra2jdygh2o.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4tzeqy7k0ni95saf.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4tzeqy7k0ni95saf.o new file mode 100644 index 0000000..2ad94a3 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4tzeqy7k0ni95saf.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4we8aibaiyf0gsaq.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4we8aibaiyf0gsaq.o new file mode 100644 index 0000000..1708afc Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4we8aibaiyf0gsaq.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4xo82dd9hfkg4p5u.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4xo82dd9hfkg4p5u.o new file mode 100644 index 0000000..43ba0f4 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4xo82dd9hfkg4p5u.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4zqvec4mpvi58uaa.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4zqvec4mpvi58uaa.o new file mode 100644 index 0000000..c491cf7 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/4zqvec4mpvi58uaa.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/51ab4ogxhyieu10o.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/51ab4ogxhyieu10o.o new file mode 100644 index 0000000..8af0595 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/51ab4ogxhyieu10o.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/59d854m4vnfj5zd7.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/59d854m4vnfj5zd7.o new file mode 100644 index 0000000..eab5a69 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/59d854m4vnfj5zd7.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/5dvylfmbnquieqzw.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/5dvylfmbnquieqzw.o new file mode 100644 index 0000000..dfaade3 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/5dvylfmbnquieqzw.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/7nmq3zmrldbkk1b.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/7nmq3zmrldbkk1b.o new file mode 100644 index 0000000..7f3bbd7 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/7nmq3zmrldbkk1b.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/agpwgyodyelny40.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/agpwgyodyelny40.o new file mode 100644 index 0000000..28a52ba Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/agpwgyodyelny40.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/bu0an8d0mroq5mt.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/bu0an8d0mroq5mt.o new file mode 100644 index 0000000..85ce86e Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/bu0an8d0mroq5mt.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/dep-graph.bin b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/dep-graph.bin new file mode 100644 index 0000000..8259682 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/dep-graph.bin differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/g3chw62xxx7jwnu.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/g3chw62xxx7jwnu.o new file mode 100644 index 0000000..d9cba0a Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/g3chw62xxx7jwnu.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/ix73i56tvw53jnt.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/ix73i56tvw53jnt.o new file mode 100644 index 0000000..a0ba2b4 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/ix73i56tvw53jnt.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/kj7d1csrrdvd26w.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/kj7d1csrrdvd26w.o new file mode 100644 index 0000000..d5e1f79 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/kj7d1csrrdvd26w.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/mwtw54e95t49snb.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/mwtw54e95t49snb.o new file mode 100644 index 0000000..276b382 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/mwtw54e95t49snb.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/oc3hbh4j55i4o96.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/oc3hbh4j55i4o96.o new file mode 100644 index 0000000..5a8bd68 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/oc3hbh4j55i4o96.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/qm3dob57arrbvm5.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/qm3dob57arrbvm5.o new file mode 100644 index 0000000..9fa1779 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/qm3dob57arrbvm5.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/qri6t6pz4mp1kn0.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/qri6t6pz4mp1kn0.o new file mode 100644 index 0000000..1fb5962 Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/qri6t6pz4mp1kn0.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/query-cache.bin b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/query-cache.bin new file mode 100644 index 0000000..88f26cd Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/query-cache.bin differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/work-products.bin b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/work-products.bin new file mode 100644 index 0000000..6dbf9ef Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/work-products.bin differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/zsx305ki9wke1yz.o b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/zsx305ki9wke1yz.o new file mode 100644 index 0000000..c67cc5e Binary files /dev/null and b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy-e08s9spxl5fs/zsx305ki9wke1yz.o differ diff --git a/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy.lock b/day16/target/debug/incremental/day16-2qgx8a7nb8nyx/s-grkqctwrth-nw9tvy.lock new file mode 100755 index 0000000..e69de29 diff --git a/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/dep-graph.bin b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/dep-graph.bin new file mode 100644 index 0000000..5d08750 Binary files /dev/null and b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/dep-graph.bin differ diff --git a/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/query-cache.bin b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/query-cache.bin new file mode 100644 index 0000000..4ec9cfe Binary files /dev/null and b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/query-cache.bin differ diff --git a/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/work-products.bin b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/work-products.bin new file mode 100644 index 0000000..72b1628 Binary files /dev/null and b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh-2nkuxi0k2m4ye/work-products.bin differ diff --git a/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh.lock b/day16/target/debug/incremental/day16-38wb5cgagrzo9/s-grkqcs8qt7-1etfdnh.lock new file mode 100755 index 0000000..e69de29