#arc143c. [arc143_c]Piles of Pebbles

[arc143_c]Piles of Pebbles

Problem Statement

There are NN piles of pebbles. Initially, the ii-th pile has AiA_i pebbles.

Takahashi and Aoki will play a game using these piles. They will alternately perform the following operation, with Takahashi going first, and the one who becomes unable to do so loses the game.

  • Choose one or more piles, and remove the following number of pebbles from each chosen pile: XX pebbles if this operation is performed by Takahashi, and YY pebbles if performed by Aoki. Here, a pile with an insufficient number of pebbles cannot be chosen.

Determine the winner of the game if both players play optimally.

Constraints

  • 1leqNleq2times1051 \\leq N \\leq 2\\times 10^5
  • 1leqX,Yleq1091 \\leq X, Y \\leq 10^9
  • 1leqAileq1091 \\leq A_i \\leq 10^9

Input

Input is given from Standard Input in the following format:

NN XX YY A1A_1 A2A_2 cdots\\cdots ANA_N

Output

If it is Takahashi who will win the game, print First; if it is Aoki, print Second.


Sample Input 1

2 1 1
3 3

Sample Output 1

First

Here is one possible progression of the game.

  • Takahashi removes 11 pebble from both piles.
  • Aoki removes 11 pebble from the 11-st pile.
  • Takahashi removes 11 pebble from the 11-st pile.
  • Aoki removes 11 pebble from the 22-nd pile.
  • Takahashi removes 11 pebble from the 22-nd pile.

No matter how Aoki plays, Takahashi can always win, so the answer is First.


Sample Input 2

2 1 2
3 3

Sample Output 2

Second