static byte color332toByte(S s) { if (l(s) != 3) fail(s); ret (byte) ((parseInt(substring(s, 0, 1)) << 5) | (parseInt(substring(s, 1, 2)) << 2) | parseInt(substring(s, 2))); }