시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB333100.000%

문제

There is a grid with N + 1 rows and M + 1 columns. The turtle, which is on the cell (0, 0), wants to get into the cell (N, M). The turtle can only go up or right. There are K traps on the grid. If the turtle will get to one of these traps, it will turn up. The turtle has strength to stand up no more than T times. Calculate, how many different ways the turtle can reach the cell (N, M). Since this number can be very large, output the remainder of his division by Z.

입력

The first line contains 5 integers N, M, K, T and Z (1 ≤ N, M ≤ 300000, 0 ≤ K, T ≤ 20, 1 ≤ Z ≤ 1000000000). Each of the following K lines contains coordinates of a cell with a trap: X, Y (0 ≤ X ≤ N, 0 ≤ Y ≤ M). It’s guaranteed that all traps situated in different cells and there is no trap in cells (0, 0) and (N, M).

출력

Print one number – the answer.

예제 입력 1

1 1 1 0 1000
0 1

예제 출력 1

1

예제 입력 2

2 2 0 0 10

예제 출력 2

6