#P1086F. Forest Fires

Forest Fires

No submission language available for this problem.

Description

Berland forest was planted several decades ago in a formation of an infinite grid with a single tree in every cell. Now the trees are grown up and they form a pretty dense structure.

So dense, actually, that the fire became a real danger for the forest. This season had been abnormally hot in Berland and some trees got caught on fire!

The second fire started is considered the second 00. Every second fire lit up all intact neightbouring trees to every currently burning tree. The tree is neighbouring if it occupies adjacent by side or by corner cell. Luckily, after tt seconds Berland fire department finally reached the location of fire and instantaneously extinguished it all.

Now they want to calculate the destructive power of the fire. Let valx,yval_{x, y} be the second the tree in cell (x,y)(x, y) got caught on fire. The destructive power is the sum of valx,yval_{x, y} over all (x,y)(x, y) of burnt trees.

Clearly, all the workers of fire department are firefighters, not programmers, thus they asked you to help them calculate the destructive power of the fire.

The result can be rather big, so print it modulo 998244353998244353.

The first line contains two integers nn and tt (1n501 \le n \le 50, 0t1080 \le t \le 10^8) — the number of trees that initially got caught on fire and the time fire department extinguished the fire, respectively.

Each of the next nn lines contains two integers xx and yy (108x,y108-10^8 \le x, y \le 10^8) — the positions of trees that initially got caught on fire.

Obviously, the position of cell (0,0)(0, 0) on the grid and the directions of axes is irrelevant as the grid is infinite and the answer doesn't depend on them.

It is guaranteed that all the given tree positions are pairwise distinct.

The grid is infinite so the fire doesn't stop once it reaches 108-10^8 or 10810^8. It continues beyond these borders.

Print a single integer — the sum of valx,yval_{x, y} over all (x,y)(x, y) of burnt trees modulo 998244353998244353.

Input

The first line contains two integers nn and tt (1n501 \le n \le 50, 0t1080 \le t \le 10^8) — the number of trees that initially got caught on fire and the time fire department extinguished the fire, respectively.

Each of the next nn lines contains two integers xx and yy (108x,y108-10^8 \le x, y \le 10^8) — the positions of trees that initially got caught on fire.

Obviously, the position of cell (0,0)(0, 0) on the grid and the directions of axes is irrelevant as the grid is infinite and the answer doesn't depend on them.

It is guaranteed that all the given tree positions are pairwise distinct.

The grid is infinite so the fire doesn't stop once it reaches 108-10^8 or 10810^8. It continues beyond these borders.

Output

Print a single integer — the sum of valx,yval_{x, y} over all (x,y)(x, y) of burnt trees modulo 998244353998244353.

Samples

Sample Input 1

1 2
10 11

Sample Output 1

40

Sample Input 2

4 1
2 2
1 3
0 2
2 4

Sample Output 2

18

Sample Input 3

3 0
0 0
-2 1
1 1

Sample Output 3

0

Note

Here are the first three examples. The grey cells have val=0val = 0, the orange cells have val=1val = 1 and the red cells have val=2val = 2.