#Lutece0809. Everywhere

Everywhere

Migrated from Lutece 809 Everywhere

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

The "Biology Operator-X" (BOX) is a new system developed by scientists, to help them learn the characteristics of a special kind of cell.

The BOX has HH rows, each row contain exactly WW squares, forming a H×WH\times W rectangle. At first scientists choose NN squares from the first row, and for each of them, they put a single cell in it.

The BOX will not look beautiful if HH is too large, so HH will always be no more than 100×W100\times W.

The cell will grow following some rules:

For a square at row AA, column BB, as (A,B)(A,B), each cell in that square will split into three cells, one will move to the square below, as (A+1,B)(A+1,B), one will move to the square at lower-left (A+1,B1)(A+1,B-1), and one will move to the square at lower-right (A+1,B+1)(A+1,B+1). So, after moving, there will be no cell in the original square.

Some cells may move out of the BOX, those cells will die immediately, and will not grow any more.

Scientist chooses a single square at the bottom of the BOX. Any cells moving into that square will be collected, and will not split and move anymore.

Given the position of that square, how many cell will they collect in the end?

The answer may be large, please output the number module a prime number given in the input.

Input

The first line contains two integers HH, WW, (1H,W109,HW100)(1\leq H, W\leq 10^9, \frac{H}{W} \leq 100), describing the size(height and width) of BOX.

Next line has a single integer NN (1N101\leq N\leq 10), it is the number of squares chosen by the scientists to put cells at the very beginning.

The third line contains NN integers A1,A2ANA_1,A_2\cdots A_N, seperated by space. They are the NN squares chosen by the scientists to put cells in the first row. In other words, those squares will locate at (1,A1),(1,A2),,(1,AN)(1,A_1), (1,A_2), \cdots , (1,A_N). (1AiW,1iN)(1\leq Ai\leq W, 1\leq i\leq N)

Then two integers PP and ModMod are given in the fourth line. Scientists will collect cells from the square (H,P)(H,P) (1PW)(1\leq P\leq W), and ModMod is the module number. (1Mod10001\leq Mod\leq 1000, ModMod is a prime number).

Output

Output the answer module ModMod.

Samples

5 5 
5
1 2 3 4 5
3 11
3

Note

The example is shown in the picture below.

title

Resources

the 12th UESTC Programming Contest Final