String asciiPreview(List<int> b) => String.fromCharCodes(b.map((x) => (x >= 32 && x <= 126) ? x : 46));