static bool isValidHashNoso(String hash) { if (hash.length < 3 || hash.length > 32) { return false; } return true; }