Validate a lokad ID (should be 4 bytes in hex format)
bool isValidLokadId(String lokadId) { return lokadId.length == 8 && _isValidHex(lokadId); }