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

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