1/// Multiplication factor of metric system (10³). 2pub const METRIC: u64 = 1000; 3/// Multiplication factor of binary system (2¹⁰). 4pub const BINARY: u64 = 1024;