# Each line is one game. First two listed players in each game form one team (a pair), # and the rest form the other team. # # No player meets any other more than once, in any capacity. m28 = [ # Round 1: [ [0, 1, 2, 3], [4, 9, 20, 21], [5, 7, 10, 22], [6, 11, 12, 23], [8, 13, 14, 24], [15, 16, 25, 26], [17, 18, 19, 27] ], # Round 2: [ [0, 4, 5, 6], [1, 11, 15, 27], [2, 13, 17, 20], [3, 8, 22, 25], [7, 14, 18, 23], [9, 10, 19, 26], [12, 16, 21, 24] ], # Round 3: [ [0, 14, 16, 19], [1, 4, 7, 8], [2, 5, 12, 15], [3, 6, 9, 17], [20, 23, 24, 25], [21, 22, 26, 27], [10, 11, 13, 18] ], # Round 4: [ [0, 11, 20, 22], [1, 6, 16, 18], [2, 4, 19, 24], [3, 5, 14, 26], [7, 17, 21, 25], [8, 10, 12, 27], [9, 13, 15, 23] ], # Round 5: [ [0, 18, 24, 26], [1, 5, 13, 21], [2, 6, 10, 25], [3, 4, 23, 27], [7, 15, 19, 20], [8, 9, 11, 16], [12, 14, 17, 22] ], # Round 6: [ [0, 7, 9, 12], [1, 17, 23, 26], [2, 8, 18, 21], [3, 10, 15, 24], [4, 11, 14, 25], [5, 16, 20, 27], [6, 13, 19, 22] ] ]