#D3812. Tree and Table

    ID: 3169 Type: Default 2000ms 256MiB

Tree and Table

Tree and Table

Little Petya likes trees a lot. Recently his mother has presented him a tree with 2n nodes. Petya immediately decided to place this tree on a rectangular table consisting of 2 rows and n columns so as to fulfill the following conditions:

  1. Each cell of the table corresponds to exactly one tree node and vice versa, each tree node corresponds to exactly one table cell.
  2. If two tree nodes are connected by an edge, then the corresponding cells have a common side.

Now Petya wonders how many ways are there to place his tree on the table. He calls two placements distinct if there is a tree node which corresponds to distinct table cells in these two placements. Since large numbers can scare Petya, print the answer modulo 1000000007 (109 + 7).

Input

The first line contains a single integer n (1 ≤ n ≤ 105). Next (2n - 1) lines contain two integers each ai and bi (1 ≤ ai, bi ≤ 2n; ai ≠ bi) that determine the numbers of the vertices connected by the corresponding edge.

Consider the tree vertexes numbered by integers from 1 to 2n. It is guaranteed that the graph given in the input is a tree, that is, a connected acyclic undirected graph.

Output

Print a single integer — the required number of ways to place the tree on the table modulo 1000000007 (109 + 7).

Examples

Input

3 1 3 2 3 4 3 5 1 6 2

Output

12

Input

4 1 2 2 3 3 4 4 5 5 6 6 7 7 8

Output

28

Input

2 1 2 3 2 4 2

Output

0

Note

Note to the first sample (all 12 variants to place the tree on the table are given below):

1-3-2    2-3-1    5 4 6    6 4 5  
| | |    | | |    | | |    | | |  
5 4 6    6 4 5    1-3-2    2-3-1  
  
4-3-2    2-3-4    5-1 6    6 1-5  
  | |    | |        | |    | |  
5-1 6    6 1-5    4-3-2    2-3-4  
  
1-3-4    4-3-1    5 2-6    6-2 5  
| |        | |    | |        | |  
5 2-6    6-2 5    1-3-4    4-3-1  

inputFormat

Input

The first line contains a single integer n (1 ≤ n ≤ 105). Next (2n - 1) lines contain two integers each ai and bi (1 ≤ ai, bi ≤ 2n; ai ≠ bi) that determine the numbers of the vertices connected by the corresponding edge.

Consider the tree vertexes numbered by integers from 1 to 2n. It is guaranteed that the graph given in the input is a tree, that is, a connected acyclic undirected graph.

outputFormat

Output

Print a single integer — the required number of ways to place the tree on the table modulo 1000000007 (109 + 7).

Examples

Input

3 1 3 2 3 4 3 5 1 6 2

Output

12

Input

4 1 2 2 3 3 4 4 5 5 6 6 7 7 8

Output

28

Input

2 1 2 3 2 4 2

Output

0

Note

Note to the first sample (all 12 variants to place the tree on the table are given below):

1-3-2    2-3-1    5 4 6    6 4 5  
| | |    | | |    | | |    | | |  
5 4 6    6 4 5    1-3-2    2-3-1  
  
4-3-2    2-3-4    5-1 6    6 1-5  
  | |    | |        | |    | |  
5-1 6    6 1-5    4-3-2    2-3-4  
  
1-3-4    4-3-1    5 2-6    6-2 5  
| |        | |    | |        | |  
5 2-6    6-2 5    1-3-4    4-3-1  

样例

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