129 byte random UUID formatted as standard 36 char hex and hyphen string
byte[] bytes = generateUUID();
String res = ByteFormatter.encodeString( bytes ).toLowerCase();
return( res.substring(0,8) + "-" + res.substring(8,12) +
"-" + res.substring(12,16) + "-" + res.substring(16,20) + "-" + res.substring( 20 ));