PROGRAMMING:Isolated Pointset
On a two-dimensional plane, $$YHH$$ has a series of isolated points named PointSet, which contains $$N$$ points in it. $$YHH$$ would like to know if there is a way to draw a vertical bisector from any two points in the PointSet, passing through at least one point in the PointSet. Please help him.
### Input Specification:
There are multiple test cases. The first line contains an integer $$T$$ ($$1$$ ≤ $$T$$ ≤ $$2$$ × $$ 10^5$$), indicating the number of test cases. For each test case:
Then followed $$T$$ lines, each line contains an integer $$N$$ ($$1$$ ≤ $$N$$ ≤ $$2$$ × $$ 10^5$$), indicating the number of points in the PointSet.
### Output Specification:
If there is a way to solve this problem, output "Yes"(without quotes), otherwise, output "No"(without quotes) instead.
### Sample Input:
```in
two
four
five
```
### Sample Output:
```out
Yes
Yes
```
### Hint:
Vertical bisector: Line $$CD $$is a * * vertical bisector * *
![ Vertical bisector. PNG] (~ / 9462accc-b277-4406-97d5-911bb7585c81. PNG)
For the first sample, $$YHH$$ can construct two equilateral triangles $$ABD$$, $$BDC$$ as shown below.

For the second sample, $$YHH$$ can construct three equilateral triangles $$ABE$$, $$BCE$$, $$CDE$$ as shown below.

answer:If there is no answer, please comment
### Input Specification:
There are multiple test cases. The first line contains an integer $$T$$ ($$1$$ ≤ $$T$$ ≤ $$2$$ × $$ 10^5$$), indicating the number of test cases. For each test case:
Then followed $$T$$ lines, each line contains an integer $$N$$ ($$1$$ ≤ $$N$$ ≤ $$2$$ × $$ 10^5$$), indicating the number of points in the PointSet.
### Output Specification:
If there is a way to solve this problem, output "Yes"(without quotes), otherwise, output "No"(without quotes) instead.
### Sample Input:
```in
two
four
five
```
### Sample Output:
```out
Yes
Yes
```
### Hint:
Vertical bisector: Line $$CD $$is a * * vertical bisector * *
![ Vertical bisector. PNG] (~ / 9462accc-b277-4406-97d5-911bb7585c81. PNG)
For the first sample, $$YHH$$ can construct two equilateral triangles $$ABD$$, $$BDC$$ as shown below.

For the second sample, $$YHH$$ can construct three equilateral triangles $$ABE$$, $$BCE$$, $$CDE$$ as shown below.

answer:If there is no answer, please comment