Niebieskie ksi.eczki
IV Olimpiada Informatyczna 1996/1997

Task: ALI
Author: Piotr Chrz±stowski-Wachtel
ALI BABA

III stage contest  
Source fileALI.??? (e.g. PAS,C, CPP)
Executable fileALI.EXE
Input fileALI.IN
Output fileALI.OUT

To open sesame one needs a set of tokens containing at least z gold tokens, s silver tokens and m copper tokens.

Initially, Ali Baba has at his disposal a certain number of tokens of each kind. He can exchange them with the Guardian of sesame, according to given rules.

Every rule is of the form:

z1, s1, m1 -> z2, s2, m2 (zi, si, mi are from the set {0,1,2,3,4}).

Such a rule denotes that Ali Baba can exchange z1 gold tokens, s1 silver tokens and m1 copper tokens for z2 gold tokens, s2 silver tokens and m2 copper tokens.

Tokens received in a transaction can be exchanged in the next transactions.

Task

Write a program that:

Input

In the first line of the text file ALI.IN there is one positive integer d<=10, which is the number of sets of data.

Then the sets of data follow. Each set of data consists of many lines.

In the first line there are three non-negative integers zp, sp, mp from the set {0,1,2,3,4}. They are the numbers of gold, silver and copper tokens respectively, owned by Ali Baba initially.

In the second line there are three integers z, s, m from the set {0,1,2,3,4}. They are the numbers of gold, silver and copper tokens needed to open sesame.

In the third line there is written the number of rules r, 1<=r<=10.

In each of the following r lines there is a sequence of six numbers z1, s1, m1, z2, s2, m2 from the set {0,1,2,3,4}. They describe a single rule: z1, s1, m1 -> z2, s2, m2.

The numbers in each line are separated by single spaces.

Output

In the i-th line of the text file ALI.OUT there should be written the result for the i-th set of data:

Example
For the text file ALI.IN:

2
2 2 2
3 3 3
3
0 1 1 2 0 0
1 0 1 0 2 0
1 1 0 0 0 2
1 1 1
2 2 2
4
1 0 0 0 1 0
0 1 0 0 0 1
0 0 1 1 0 0
2 0 0 0 2 2
the correct solution is the text file ALI.OUT:
NIE
9