static S formatMinuteAndSeconds(int secs) { ret secs/60 + ":" + formatInt(secs % 60, 2); }