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

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