using System;
public class Program
{
public static void Main()
long userId = 76561197982600699;
Random random = new Random((int)userId);
byte[] array = new byte[16];
random.NextBytes(array);
Console.WriteLine(new Guid(array).ToString());
}