#Lutece0409. Sea Base Exploration

Sea Base Exploration

Migrated from Lutece 409 Sea Base Exploration

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

When the scientists explore the sea base, they use a kind of auto mobile robot, which has the mission to collect the swatches of resource of the sea base. The collections of the resource are taken to the research ship and classified, and then the research ship goes back to the mainland -- the research centre where scientists can do further research.

The robots have equipments to collect and store the resource, but the equipments have limited capability. Only a small quantity of each kind of recourse is enough for scientific research. So, once the robot has collected one kind of resource, it needs not to collect more. The capability of the robot is fixed and the same as the number of kinds of resource the scientists have already known. So, the robot will collect a list of resource and come back with fruitful results. The resource is buried beneath the surface of the sea base, and the quantity is always enough for the robot to collect if the map indicates that there are some. If the robot doesn't want to collect the resource underneath its location, it can leave it ignored and pass the square freely.

The robot needs a unit electric power to move from a square to another when its container is vacant and only can it move to a square adjacent to it. It needs AiA_i units to dig and collect the resource marked ii. Each of the resource has its weight, so the robot costs BiB_i units of power per move after it has collected resource ii.

During the sea base walk, the robot carries a battery with a certain units(P) of electric power, and the power of it need to be economized, the scientists ask you to calculate the minimal quantity of power the robot will use to collect all kinds of resource and back to the ship.

Input

The first line of the input is an integer TT which indicates the number of test cases.

Each of the cases tells the map of the sea base you will explore, The first line will be the M,N,K,P,MM, N, K, P, M (1M201\leq M\leq 20) is the width of the area, NN (1N201\leq N\leq 20) is the length of the area, and KK (1K101\leq K\leq 10) is the number of kinds of resource, PP is the certain capacity of the battery.

Then follows MM lines characters indicating the map, each line contains NN characters.

There are four kinds of characters, ., *, # and capital letters.

The symbol . indicate that free space. The * indicates where the research ship located, notice that once the robot moves back to this area, it will be fetched back to the main ship automatically. You can assume there is only one * on one map.The # indicates that the space is blocked of some reason, the capital letters indicate KK kinds of resource, and you can assume that there are always KK kinds of capital letters (alphabetically from AA).

The next KK lines follows two integers each line, AiA_i and BiB_i.

Output

For each input set output a number of the minimal quantity of power on one single line. Print a warning Impossible if the minimal quantity of power needed exceeds the capacity of the battery or it's impossible for the robot to accomplish the mission.

Samples

1
5 5 1 50
*....
##.##
A#.#A
.#.#.
.....
1 0
21

Note

The data used in this problem is unofficial data prepared by pfctgeorge. So any mistake here does not imply mistake in the official judge data.

Resources

South Central China 2008 hosted by NUDT