static bool isValidBytes(Iterable<int> bytes) { try { validateBytes(bytes); return true; } catch (e) { return false; } }