#P1480A. Yet Another String Game

Yet Another String Game

No submission language available for this problem.

Description

Homer has two friends Alice and Bob. Both of them are string fans.

One day, Alice and Bob decide to play a game on a string s=s1s2sns = s_1 s_2 \dots s_n of length nn consisting of lowercase English letters. They move in turns alternatively and Alice makes the first move.

In a move, a player must choose an index ii (1in1 \leq i \leq n) that has not been chosen before, and change sis_i to any other lowercase English letter cc that csic \neq s_i.

When all indices have been chosen, the game ends.

The goal of Alice is to make the final string lexicographically as small as possible, while the goal of Bob is to make the final string lexicographically as large as possible. Both of them are game experts, so they always play games optimally. Homer is not a game expert, so he wonders what the final string will be.

A string aa is lexicographically smaller than a string bb if and only if one of the following holds:

  • aa is a prefix of bb, but aba \ne b;
  • in the first position where aa and bb differ, the string aa has a letter that appears earlier in the alphabet than the corresponding letter in bb.

Each test contains multiple test cases. The first line contains tt (1t10001 \le t \le 1000)  — the number of test cases. Description of the test cases follows.

The only line of each test case contains a single string ss (1s501 \leq |s| \leq 50) consisting of lowercase English letters.

For each test case, print the final string in a single line.

Input

Each test contains multiple test cases. The first line contains tt (1t10001 \le t \le 1000)  — the number of test cases. Description of the test cases follows.

The only line of each test case contains a single string ss (1s501 \leq |s| \leq 50) consisting of lowercase English letters.

Output

For each test case, print the final string in a single line.

Samples

Sample Input 1

3
a
bbbb
az

Sample Output 1

b
azaz
by

Note

In the first test case: Alice makes the first move and must change the only letter to a different one, so she changes it to 'b'.

In the second test case: Alice changes the first letter to 'a', then Bob changes the second letter to 'z', Alice changes the third letter to 'a' and then Bob changes the fourth letter to 'z'.

In the third test case: Alice changes the first letter to 'b', and then Bob changes the second letter to 'y'.