# Each line is one game. First two listed players in each game form one team (a pair), # and the rest form the other team (pair or triple as needed). # # No player meets any other more than once, in any capacity. # # No player is in a triple more than once. m45 = [ # Round 1: [ [0, 11, 22, 33, 44], [1, 12, 24, 36], [2, 13, 26, 39], [3, 14, 28, 42], [4, 15, 30, 34], [5, 16, 32, 37], [6, 17, 23, 40], [7, 18, 25, 43], [8, 19, 27, 35], [9, 20, 29, 38], [10, 21, 31, 41] ], # Round 2: [ [0, 12, 23, 34], [1, 13, 25, 37], [2, 14, 27, 40], [3, 15, 29, 43], [4, 16, 31, 35], [5, 17, 22, 38], [6, 18, 24, 41], [7, 19, 26, 33], [44, 8, 20, 28, 36], [9, 21, 30, 39], [10, 11, 32, 42] ], # Round 3: [ [0, 13, 24, 35], [1, 14, 26, 38], [2, 15, 28, 41], [3, 16, 30, 33], [4, 17, 32, 36], [44, 5, 18, 23, 39], [6, 19, 25, 42], [7, 20, 27, 34], [8, 21, 29, 37], [9, 11, 31, 40], [10, 12, 22, 43] ], # Round 4: [ [0, 14, 25, 36], [1, 15, 27, 39], [44, 2, 16, 29, 42], [3, 17, 31, 34], [4, 18, 22, 37], [5, 19, 24, 40], [6, 20, 26, 43], [7, 21, 28, 35], [8, 11, 30, 38], [9, 12, 32, 41], [10, 13, 23, 33] ], # Round 5: [ [0, 15, 26, 37], [1, 16, 28, 40], [2, 17, 30, 43], [3, 18, 32, 35], [4, 19, 23, 38], [5, 20, 25, 41], [6, 21, 27, 33], [7, 11, 29, 36], [8, 12, 31, 39], [9, 13, 22, 42], [44, 10, 14, 24, 34] ], # Round 6: [ [0, 16, 27, 38], [1, 17, 29, 41], [2, 18, 31, 33], [3, 19, 22, 36], [4, 20, 24, 39], [5, 21, 26, 42], [6, 11, 28, 34], [44, 7, 12, 30, 37], [8, 13, 32, 40], [9, 14, 23, 43], [10, 15, 25, 35] ] ]