# 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 twice.  If 5 rounds or fewer are played, then
# no player is in a triple more than once. 

m46 = [
# Round 1:
	[
		[0, 44, 22, 33, 11],
		[1, 12, 24, 36],
		[2, 13, 26, 39],
		[14, 28, 3, 42, 45],
		[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:
	[
		[45, 12, 0, 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, 14, 25, 36],
		[1, 15, 27, 39],
		[42, 2, 16, 29, 44],
		[3, 17, 31, 34],
		[4, 18, 22, 37],
		[45, 24, 5, 19, 40],
		[6, 20, 26, 43],
		[7, 21, 28, 35],
		[8, 11, 30, 38],
		[9, 12, 32, 41],
		[10, 13, 23, 33]
	],
# Round 4:
	[
		[0, 15, 26, 37],
		[1, 16, 28, 40],
		[45, 30, 2, 17, 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, 34, 14, 24, 10]
	],
# Round 5:
	[
		[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, 37, 12, 30, 7],
		[8, 13, 32, 40],
		[9, 14, 23, 43],
		[45, 10, 15, 25, 35]
	],
# Round 6:
	[
		[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],
		[45, 29, 8, 21, 37],
		[9, 11, 31, 40],
		[10, 12, 22, 43]
	]
]