using System;
public class Program
{
public static void Main()
//Replace with your TYPE from dev file
int type = 6;
Console.WriteLine($"Type = {type} requires RESTART?");
Console.WriteLine((type & 4) != 0);
}