In English, specify a representation of the board game in Python. The representation should capture the entire state of the game at one point in time. It may be helpful to first figure out how to represent all the tangible aspects of the game, such as the board and pieces. Then represent all the intagible properties of the game, such as turn orders. Your final representation must include both tangible and intangible properties. Choose among lists, dictionaries, and nested structures based on the dimensionality of the game and how you want to index into the representation. Be sure to specify what kind of values (strings, numbers, lists, etc) each list or dictionary has.