in src/Libs/Common/Utils/NameConverter.cs [11:22]
public static string Truncate(string key)
{
if (key.Length <= SafeNameLength)
return key;
var id =key+"-"+ key.GetHashCode();
id=id.Substring(id.Length - SafeNameLength);
if (id.StartsWith("-"))
{
id = "t" + id.Substring(1);
}
return id;
}