There is a directed graph consisting of $$$n$$$ levels. Each level $$$i$$$ contains $$$a_i$$$ nodes arranged in a linear sequence.
Alhelue and Ahdali are playing a game on a graph like this. Initially, a stone is placed at the first node in level $$$1$$$. Each player, on their turn, selects a node neighbor to the current stone position and moves the stone directly to that node.
The goal is to move the stone to the last node in level $$$n$$$. The player who performs this final move wins.
You are given:
Determine which player has a winning strategy assuming both play optimally. The first player always starts.
The first line of the input contains a single integer $$$t$$$ ($$$1 \le t \le 10^5$$$), representing the number of test cases.
The first line of each test cases contains an integer $$$n$$$ $$$(1 \le n \le 10^5)$$$.
The second line of each test cases contains $$$n$$$ integers $$$a_1, a_2, \ldots, a_n$$$ $$$(1 \le a_i \le 10^{18})$$$.
It's guaranteed that the sum of $$$n$$$ over all test cases doesn't exceed $$$10^5$$$.
Print First if the first player has a winning strategy, or Second if the second player will win assuming optimal play.
234 3 213
First Second
| Name |
|---|


