mod = 10 ** 9 + 7 for _ in range(int(input())): n, ag, bg, ac, bc, ap, bp = map(int, input().split()) a, b, c = pow(ag * pow(bg, mod - 2, mod) + ac * pow(bc, mod - 2, mod), n, mod), pow(ag * pow(bg, mod - 2, mod) + ap * pow(bp, mod - 2, mod), n, mod), pow(ap * pow(bp, mod - 2, mod) + ac * pow(bc, mod - 2, mod), n, mod) ans = 1 - (a + b + c - 2 * (pow(ag * pow(bg, mod - 2, mod), n, mod) + pow(ac * pow(bc, mod - 2, mod), n, mod) + pow(ap * pow(bp, mod - 2, mod), n, mod))) print(ans % mod)