INTDSET - Chiaki With Intervals


Chiaki has a set AA of nn intervals, the ii-th of them is [li,ri][l_i, r_i]. She would like to know the number of such interval sets SAS \subset A: for every interval aAa \in A which is not in SS, there exists at least one interval bb in SS which has non-empty intersection with aa. As this number may be very large, Chiaki is only interested in its remainder modulo (109+7)(10^9+7).

Interval aa has intersection with interval bb if there exists a real number xx that laxral_a \le x \le r_a and lbxrbl_b \le x \le r_b.

Input

There are multiple test cases. The first line of input contains an integer TT, indicating the number of test cases. For each test case:

The first line contains an integer nn (1n2×1051 \le n \le 2 \times 10^5) -- the number of intervals.

Each of the following nn lines contains two integers lil_i and rir_i (1li<ri1091 \le l_i < r_i \le 10^9) denoting the ii-th interval.

It is guaranteed that for every 1i<jn1 \le i < j \le n, liljl_i \ne l_j or rirjr_i \ne r_j and that the sum of nn in all test cases does not exceed 2×1052 \times 10^5.

Output

For each test case, output an integer denoting the answer.

Example

Input:

2
3
1 2
3 4
5 6
3
1 4
2 4
3 4

Output:

1
7

hide comments
shubham_001: 2018-01-06 06:56:39

How answer of first test case is 1? when there is no intersection between any two intervals?


Added by:zimpha
Date:2018-01-04
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All