@override int decode(Input input) { return input.read() | (input.read() << 8) | (input.read() << 16) | (input.read() << 24); }