import sys # sys.setrecursionlimit(1000005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = -1-(-1 << 31) # inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 q=II() xa,ya,xb,yb,xc,yc=LI() xy=LLI(q) xm=(xa+xb)/2 ym=(ya+yb)/2 xn=(xc+xb)/2 yn=(yc+yb)/2 vx=ya-yb vy=xb-xa wx=yb-yc wy=xc-xb mat=[[vx,-wx,xn-xm], [vy,-wy,yn-ym]] if mat[0][0]==0: mat[0],mat[1]=mat[1],mat[0] d=mat[0][0] mat[0][0]=1 mat[0][1]/=d mat[0][2]/=d c=mat[1][0] mat[1][0]=0 mat[1][1]-=mat[0][1]*c mat[1][2]-=mat[0][2]*c if mat[1][1]: s=mat[1][2]/mat[1][1] xo,yo=xn+wx*s,yn+wy*s else: xo=(xa+xb+xc)/3 yo=(ya+yb+yc)/3 r2=(xa-xo)**2+(ya-yo)**2 for x,y in xy: if (x-xo)**2+(y-yo)**2>r2: print("No") else: print("Yes")