# 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.

m42 = [
# Round 1:
	[
		[11, 17, 28, 34],
		[9, 22, 24, 35],
		[1, 18, 26, 36],
		[3, 23, 29, 37],
		[4, 14, 25, 38],
		[7, 32, 31, 15, 39],
		[40, 10, 20, 33, 6],
		[5, 8, 19, 41],
		[2, 12, 21, 30],
		[0, 13, 16, 27]
	],
# Round 2:
	[
		[8, 18, 29, 34],
		[10, 23, 25, 35],
		[32, 27, 19, 36, 2],
		[0, 20, 30, 37],
		[5, 15, 26, 38],
		[33, 39, 12, 28, 4],
		[7, 11, 21, 40],
		[6, 9, 16, 41],
		[3, 13, 22, 31],
		[1, 14, 17, 24]
	],
# Round 3:
	[
		[9, 19, 30, 34],
		[32, 20, 11, 26, 35],
		[33, 36, 16, 24, 3],
		[1, 21, 31, 37],
		[6, 12, 27, 38],
		[5, 13, 29, 39],
		[4, 8, 22, 40],
		[7, 10, 17, 41],
		[0, 14, 23, 28],
		[2, 15, 18, 25]
	],
# Round 4:
	[
		[10, 16, 31, 34],
		[33, 35, 21, 27, 8],
		[0, 17, 25, 36],
		[2, 22, 28, 37],
		[7, 13, 24, 38],
		[6, 14, 30, 39],
		[32, 5, 9, 23, 40],
		[4, 11, 18, 41],
		[1, 15, 20, 29],
		[3, 12, 19, 26]
	],
# Round 5:
	[
		[15, 21, 24, 34],
		[13, 18, 28, 35],
		[5, 22, 30, 36],
		[33, 19, 7, 25, 37],
		[32, 38, 10, 29, 0],
		[3, 11, 27, 39],
		[2, 14, 16, 40],
		[1, 12, 23, 41],
		[6, 8, 17, 26],
		[4, 9, 20, 31]
	],
# Round 6:
	[
		[25, 12, 22, 32, 34],
		[14, 19, 29, 35],
		[6, 23, 31, 36],
		[4, 16, 26, 37],
		[33, 11, 1, 30, 38],
		[0, 8, 24, 39],
		[3, 15, 17, 40],
		[2, 13, 20, 41],
		[7, 9, 18, 27],
		[5, 10, 21, 28]
	]
]