R245EVN36J34PTG3I2RMX5LIOT76LCPL5RZ2H22BCIXFBGJYJ25QC
writeln!(std::io::stderr(), "Error: {}", e).unwrap_or(());
match e.downcast::<std::io::Error>() {
Ok(e) if e.kind() == std::io::ErrorKind::BrokenPipe => {}
Ok(e) => writeln!(std::io::stderr(), "Error: {}", e).unwrap_or(()),
Err(e) => writeln!(std::io::stderr(), "Error: {}", e).unwrap_or(()),
}