Short 5-hex hash for diagnostics.
String shortHash(Object? object) { if (object == null) return '00000'; final int value = object.hashCode & 0xFFFFF; return value.toRadixString(16).padLeft(5, '0'); }