# No player partners any other more than once, and no player opposes any other more than once.
#
# Only 3 rounds are possible.

m08 = [
# Round 1:
	[
		[[0, 1], [2, 3]],
		[[4, 5], [6, 7]]
	]
# Round 2:
	[
		[[0, 4], [1, 5]],
		[[2, 6], [3, 7]]
	]
# Round 3:
	[
		[[0, 2], [4, 6]],
		[[1, 3], [5, 7]]
	]
]