Statistics

Problem Statement for "OlympicShooting"

Problem Statement

Olympic shooting competitions are done in rounds of 25 shots. Obviously, whoever hits more targets wins. Ties are broken in an interesting way: using the Countback Rule. Below we quote this rule from the official rulebook.


9.15.1.2 Countback Rule

Any ties to be broken by this method must be decided as follows:

  1. The scores of the last round of 25 targets must be compared. The winner is the athlete with the highest score in that round.
  2. In a case where the tie is still not broken, the round before last must be compared and if still not broken, the round before that and so on; and
  3. If the results of all the rounds are still equal, ties must be decided by counting backward, target by target, from the last target of the last round (and if necessary, the next to the last round etc.) until a tie-breaking zero (0) is found. If the tied athletes have zeroes (0) on the same target, the countback shall continue until the tie is broken.

If two shooters have exactly the same shooting record, the above rule will conclude that they are still tied. If the tie still needs to be broken (e.g., to decide who gets a medal), the shooters who are still tied after the Countback Rule is applied have a shoot-off.

In this problem we will assume that all ties left after the Countback Rule is applied must be resolved via a shoot-off. We will also assume that whenever a shoot-off takes place, the shooter with the smaller number performs better.


You are given the shooting records of N shooters in the String[] results. For each i, results[i] is the shooting record of shooter number i. Each '1' represents a hit, each '0' is a miss.

Determine the final standings of this shooting competition and return it as a int[] with the competitor numbers ordered from best to worst. All ties need to be broken: first by using the Countback Rule, and the ones that remain by a shoot-off.

Definition

Class:
OlympicShooting
Method:
sort
Parameters:
String[]
Returns:
int[]
Method signature:
int[] sort(String[] results)
(be sure your method is public)

Constraints

  • results will have between 1 and 30 elements, inclusive.
  • Each element of results will have the same length.
  • That length will be 25, 50, 75, 100, or 125.
  • Each character in results will be '1' or '0'.

Examples

  1. {"1111111111101111111111111", "1111111111111111111111100", "1111111111111111111110111", "1111111111111111111111111", "1111111111111111111110111"}

    Returns: {3, 0, 2, 4, 1 }

    Five participants, one round of 25 shots. Participant 3 hit all 25 targets and won. Participants 0, 2, and 4 hit 24 targets each. The Countback Rule tells us that participant 0 should be second (as they are the only one among the three who hit target #22). A shoot-off decides that participant 2 is before participant 4 in the final standings. Participant 1 is last with just 23 hit targets.

  2. {"11111111111011111111111110000000000000000000010000", "11111111111111111111111000000000000000000000001000", "11111111111111111111101110000000000000000000000100", "11111111111111111111111110000000000000000000000010", "11111111111111111111101110000000000000000000000001"}

    Returns: {3, 4, 2, 0, 1 }

    Here we also have a second round of shooting. In the second round each shooter only hit one target. These hits change the order produced by the Countback Rule. E.g., when comparing shooters 2 and 4, we see that they both have score 1 for the last round, they both have score 24 for the first round, and then we see that on the very last shot of the competition shooter 4 succeeded while shooter 2 failed.

  3. {"11111111111011111111111110000000000000000000000100", "11111111111111111111111000000000000000000000011000", "11111111111111111111101110000000000000000000000100", "11111111111111111111111110000000000000000000000010", "11111111111111111111101110000000000000000000000001"}

    Returns: {3, 1, 4, 0, 2 }

    A similar but different situation. Note that participant 1 now has a total of 25 hits, just like almost everyone else in this example. The Countback Rule places them in second place, as their last round is better (two hits) than the others (one hit each).

  4. {"00000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000"}

    Returns: {0, 1, 2, 3, 4, 5 }

    A larger tie that is only decided by a shoot-off involving all six people.

  5. {"10000000000000000000000000000000000000000000000000", "01000000000000000000000000000000000000000000000000"}

    Returns: {1, 0 }

    Both shooters have the same grand totals and also the same round totals. As we are going back through their shooting history shot by shot, we see 48 shots where the results match and then finally we get to the second shot of the competition. There the tie is finally broken.

  6. {"00000000000000000000000000000000000000000000000000"}

    Returns: {0 }

  7. {"1111110100011011001100111", "1011011110100011110110000", "1110110001001110001001101", "1010111011001010111010100", "0111000110011000111110110", "0011110110111010100101010", "1111011100001110001100011", "1111110100001011100100101", "1111110100011011001100111", "1000110110001111001110111", "1111111100011010101100100", "0101000000111001011010111", "1111110100011011001100111", "1111110100011011001100111", "1111110100011011001100111", "1000010010111010010100100", "0100010101001010100010110", "1100100001101000001100011", "1110110100011011001100111", "0011111101011011011110110", "1100110101001110111001010", "1100110101110011101110111", "1100110101010101000010101", "1011010100111000000101110", "1111100010111000101000111", "0111110110110001100001111", "1011110100010011001000011"}

    Returns: {21, 19, 0, 8, 12, 13, 14, 25, 9, 18, 10, 24, 6, 7, 4, 5, 20, 3, 1, 2, 11, 26, 22, 23, 17, 16, 15 }

  8. {"1100101000101111010011001", "1100000000001010010111111", "0110101000111110010011001", "1110100111101111110001100", "1000111001101111010011011", "0111111000011110001001001", "1100101000101111010011001", "1110001000101111110011011", "1101101001110011010011001", "1001000100011111000001101", "1100101000111001001001001", "1100101000101111010011001", "1001101000101001011111000", "1100101000101111010011001", "1000111000001011110010000", "1100101000101111010011001", "0100011000001110000000001", "1100101000101111010011001", "1100101001101111010111001", "1100101000101111010110001", "1100101000111111010011001", "1100001000101101010111001", "1100101001101111010111001", "1001101010111110011011010", "0010100010001011110101010", "1100101000101111010011001", "1110111010101111010011001", "0101100001101010010111001", "1100101000101111010011001"}

    Returns: {26, 3, 7, 4, 18, 22, 23, 20, 8, 0, 6, 11, 13, 15, 17, 25, 28, 2, 5, 19, 21, 27, 12, 1, 9, 10, 24, 14, 16 }

  9. {"01101101110001000001100111001101111011101101000000011110011100000000001110000001111111001111111111010110001100110011101111000", "01101101110001100010101111001100111001101100001000011110010100000000001100000001111110001011111111110110001100110001100110000", "01101101110001000001100111001101111011101001000000011110011100000001001111000001101111001111111111001110000110110011101111000", "01101001110001000001111111001100111011101101001010011110011100100000001110000101101111001111001101010010001100110000101000000", "01101111110001000001100111001101111011101001000000011110011110000000000110000001111110001111101111010100001100110011101111000", "01101101110001000001100111001101111011101101000000011110011100000000001110000001111111001111111111010110001100110011101111000", "01101101110001000001100111001101111011101101000000011110011100000000001110000001111111001111111111010110001100110011101111000", "01101101110001000001100111001101111011101101000000011110011100000100001110100001111110001111111011010110011100110011101111000", "01101101110001100001100111001101011011101101010001011110011100000000000110001001111111001111111111010110001100100011101111000", "01101101110001000001100111000101111011101101000100011110011100000000101110000001111011001111111111010110001100110011101111000", "01100101110001000001100111001101111011101001000000011110011100000000001100000101111011101011111110010110001100110011101111011", "01101101110011100011100011101101101111101000000000011110001100000000001110010001111111001111111101110110001100111011000111000", "01101101110001000001100111001101111011101101000000011110011100000000001110000011111011001111111111010110001100110011101111000", "01001101100001000001100111001101111011101101000010011110011100000000001110000001111011011111111111010110001100110011101111000", "01101101110000000001100101011101111011001101000000010010011100000000000110000001100110001111111101010110001101111111100111000", "01101101110001000001100111011101111011111100000100011110010100000000101110000001111010000111111110110110001100110011001111000", "01101101100001000001100111000101001011110101000010011110010101000000001110010001111110001111100111110010001100110011101111000", "01101101110001000001100111001100111001100111000000011111011100100010001111000011100111011011111111010110001101111011101111000", "01111001110001000001101101001111111011101101000000011110011100000000001110000001111111001111111101010110011100110011101111000", "01101101110001000001101110001101101010101101000000011110011100001000001010010101011111001111110111010110101100111000101111000", "01100101100001000001000011001101111011101101000000111110011000010000001110000001111101000111101111010110001100110011101011000", "01101101110011000001100111011101110001101111000000011110011100010000001110000000001111000011111111010011001101110011101111010", "01101101110001000001100111001101111011101101000000011110011100000000001110000001111111001111111111010110001100110011101111000", "01101101110001000001000011001011111010101001001010011110010100000000001110000001111111001111111111010110001100110011101111000", "01101101110001000001100111001101111011101101000000011110011100000000001110000001111111001111111111010110001100110011101111000", "00111101110001000001100111001101111001101101010000011110011110000000001111000001011111001111111111010110001100110011101111000", "01101111110001000001100111001111111011101101000000011010011100000001001110000001111111001111111101010110011100110011100111000"}

    Returns: {17, 18, 7, 25, 26, 8, 2, 0, 5, 6, 22, 24, 12, 9, 11, 21, 13, 10, 19, 15, 23, 4, 16, 1, 3, 14, 20 }

  10. {"11000110011000110111110010000101010101100000001010", "11000100011000110010110010000101010101100000001010", "11000110001000110111110010000100010101110000000011", "11000110011000100110110010000101011101000000011010", "11000110011110110110110010010001010101100000001010", "01000110011010100111110111001100110101101000001010", "11010110011101110111010010000101010101010000001010", "11100010011000000000110010000111010001101000000010", "11111110011100110111110010000001010001000010001110", "11000110001000010111110010111101101001100010101010", "00000011111000110111010001000101011101100000001110", "11011010011110101110110010000101010101110001011010", "11010100011101011110110111000100000101000010001011", "11000100011010111101010011000111000101100001101000", "11000110011000110111110010000101010101100000001010", "11100100001001010101110010000001010001100001001011", "11000110011000110110110000000100010101100000011010", "11000110011000110111110010000101010101100000001010", "11000000111000011111100010100101011100100000100010", "11100110011010110111110010000100010001101000101111", "11000110011000110111110010000101010101100000001010", "11100110011110100111110010110100010101010001001011", "11000110011000110111110010000101010101100000001010", "11001110011000100101110011000101100001100000000010", "11010110011001010110110000000101100101101011011110"}

    Returns: {21, 11, 24, 19, 9, 5, 8, 12, 6, 13, 4, 10, 0, 14, 17, 20, 22, 3, 18, 2, 15, 16, 23, 1, 7 }

  11. {"1111011010111000011011000001000110001110110111101000001100100011101010110000100101111001100000100001", "1011011010110010011011000001000110011110110110101000001100100111101010110000100101110001100000001001", "1111010010111001011011010001000111001110110111111000001101010001101010110000100101111001100000100001", "1111011010011000011011000001000110001110110111101000001100100011101010110000100101011001100000100001", "1111011010111000010011000111010110001110110111101000001100100010101010110010100101111001100010100001", "1111111010110100011111001001000110001010110111101000001100100001001011110000110100111000100000101111", "1111011010111000111011000001000110011110111111101000001100100011101000110000100101111101100000100001", "1101011000111100011010010001000110001110010111100000000100100011101010110100110101111010100000110000", "1110011011111100011011000000000110001110110111101000001100100011101010110000100101111001100000100001", "1101011000110000011011000001000110001110110111101000001100100111101010100000100101111001100000110001", "1111011010111000111011000001000110001110111111101000001100100011101010110000100101111101100001100001", "1111010010111000001001000001100110001110110111101100001100100011101010110000100101111001100000100001", "1110011001111000011011000001000110001110110110101000000100100011011010110000000111111011110000100000", "1111011110111000011011101001000110001111110011101000001000100011101110110000100101111001100100100001", "1111011010111000011011000001000110001110110111101000001100100011101010110000100101101001100000110001", "0110010010111000011001011001010111001110110011101000011100110111100000110000100010101001100000100001", "1111011011101001011111000111000101011110110011100000001101100011101010110010000101111011000000100001", "1111101000111010011011100101000110011110100111101100101100100011101010110100100101111001100000100001", "1011001010100000011001000001000111000110111111001000001100100011101010111001100001111001110000100001", "1111011010111000011011000001000110001110110111101000001100100011101010110000100101111001100000100001", "1111011010111001011001000001000011001010110011101100000101110011001010110010110101111111100010100001", "1111011010111000011011000001000110001110110111101000001100100011101010110000100101111001100000100001", "1111011010111000011011000001000110001110110111101000001100100011101010110000100101111001100000100001", "1111011110111000011011000001000010101110110111101000011100100010101010110000100101111001000000100001", "1111011010111000011011000001000110001110110111101000001100100011101010110000100101111001100000100001", "1111011010111011001011100001010110001110110111101000011100100011101110110000101101111001110010101001"}

    Returns: {25, 17, 20, 10, 13, 16, 5, 4, 6, 2, 14, 0, 19, 21, 22, 24, 8, 23, 11, 1, 9, 7, 12, 3, 15, 18 }

  12. {"01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110100111110101110010101110010001001101011001110011000011111100001100000000100001101011001000101100101011101010011001001010", "01110100111110101110010101101010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110101111110101110010001100000001001101011001011011000011111100001100000000100001111011001000101100101011101000001001001010", "01110100111110101110010101100010001001101010001010011000011111100101100000000111001111011001000101100001011101010011001001010", "01111100111110101110000101100010001001101010000010011100001011010001100000000100001111011001000100100001011101011111001001010", "01110000111110101110000101100110001001101110101110010001011011110011001000000100001011011001000001110101011101010011101001010", "01110100111010101110010101000010001001101010001010011000011101110001100000000100001101011001000101100110011101010011001000010", "01100100111110101110010111111011001001101100001010011000011111110011100000010100001111011001010101100101010111010011001001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011011000101100101011101010011001001010", "01110100111110101110010101100010001001101000001010011000011111100001100000100100001111011001000101100101011101010011001001010", "01111100011100101110010001000010101001101110101010011000010111100101100001001101011111011001000111100001011101010011000001000", "01100100111100101110010101100010011001101010010000011100011111100111100000010100001110001001100101011111011101010111001001000", "01110100111110100100010101100010001001101010001010011000011111110001101000000110011110011001000101110101010101010011001001010", "01110000111110101111010101100010001011111010000011011001011111100001110010000011101111111011000110101101011101010011011001000", "11110100111110101110110101100010111011101010001011011000011110100001100100000101001101011001110101000101111001010011001001010", "01110101111110101110010101100010001001101010001010010000011011100001100000000100011111011000000101100101011101110111001001010", "01110100111100101110010101100010001001001010000010011000011111100011100000000100101111011000000101100111010101010011001111010", "01111100010010100110010101110011000001100010001010010000011111100001100011000101001111011101000101100101011101111011000001010", "01110100111100101110010101110010001001101011001010011000011110100001110000000100001111011001000101010111001101010011011001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010", "01110100111110101110010101100010001001101010001010011000011111100001100000000100001111011001000101100101011101010011001001010"}

    Returns: {15, 9, 16, 13, 7, 20, 2, 5, 12, 17, 19, 10, 3, 14, 18, 11, 0, 1, 21, 22, 23, 24, 25, 4, 6, 8 }

  13. {"01000000000111000010111101010110010000010000110001111110111101111000011111000101111100000011101110010001010000001100011001011", "01000000010111000000110101000110110000010000100101111110111101111010011111000101111100010011101110010001010000001100011000011", "01000000001111000010111101010111010000010000110001111110111101111000011111000101111101000011101110010001010000100100011001011", "01000100000101000000001101010110010000010000111001111111010111110000010111000001010100000001001010011001010000011100011001011", "01000000000111000010111101010010010000010000110001111010111001111010011111000111111110010011101110010000010100001100101011011", "01000000000111110010111101010110010000011000110001111100111101111000011111000001111100000011001100110001010000001100011101011", "01000100100111000011111101011110010000010000110001101110111101111000011111000001111100001011101110111011111000001100011001001", "01000000000111000010111101010110010010010000100001111111111101111000011111000101111000000011101110010001010000001100011001011", "01000000000111000010111101010110010000010000110001111110111101111000011111000101111100000011101110010001010000001100011001011", "01001110000111010010111101010110010000010000110001111110111101111000010111000001111100000111001110110001010000010100011001011", "01000000000111100010111101010110010000010000110001111110111101111000011111000101111100000011101110010001010000101100011001011", "10000000001111000000111101010110010000110000110001111110111100111000011111001100111100000011101110010011011000011100011000011", "01000000001111000010111001010110010000010010110001111110111111111000011111000101111101000111101110100000010011011101110011001", "01110100000111110010111101110110010000010100111001101100010001111000011111100101111100010011101010110011010000001100011001011", "01000000000111000010111101010111010000010000110001111010111100111000011101000101111101000011101110110001010000001100011001011", "01000000000111000010111101010110010000000010110000111111111101111001011111000111111100000011101100010000110000001100011101011", "11000000000111010011111101011111010000000000100001111110111101111000011111000111111100000011111110010001010001001000011001011", "01000000000101000010111101010110010000010100110001111110111100111000011111000101111100000011101110010001010000001100011001011", "01000000000111000010111101010110010000010000110001111110111101111000011111000101111100000011101110010001010000001100011001011", "01001001000111001110111101010111011000000000110001111110111101111001001111000101101100000011100110110101010000001100011001011", "01000000000101100010111011010110010110110000111001011011111001101010011111000101011100000011111110000111010000001100011001010", "01000000000111000010111101010110010000010000110001111110111101111000011111100101111100010011101110010001010000001100011001011", "01011000000111000010111101010110010001010001110000111110111101011000011101000101111100001011101110010001010000000100010001011", "11000000000111100010110101010110010000010000110000111010111101111000011111010001111101000011101110010001010000001100011001111", "01000000000011000011111100010110010000010000110101111110011101111101001001000101111111001001110110110001010010001100011001011", "01000000000111000010111101010110010000010000100101101110111100111000001111000101101100000011101110000011010000001100011001011", "01000000000111000010101001110110110000010000100001011010111101101000001111000100111100000011101111010001010010001100011000010", "01000110000111000010101101010110000000010000110000011110111101111000111111001101111100000011101111010011000000001100011001001", "01011000000111010010111101010110010101010000110100111110111101111000011111000101111101000010101110000001010000001000011001011", "01000000000111100010111101010110010000010000110001111110111101111000011111000111111100000000101110010001010000001100011001011"}

    Returns: {12, 6, 13, 19, 16, 2, 9, 28, 11, 4, 24, 15, 10, 20, 21, 23, 5, 14, 0, 8, 18, 7, 29, 27, 1, 22, 17, 25, 26, 3 }

  14. {"1111011001011101001011110101110111101000100111010111101111011100100101100001011001110011001001110110", "1011011000011101001010110101110111100000000111011111001111011100101001100001011001011010000001110110", "1111011001011101101110110101110111101000100111010111111101011100100101100001011001110011011001110110", "1111011001011100001011110101110111000000100111010011101011011100100101110001011001110011001001110111", "0100011101011001001011110001110111101000100111010111101011001101100111100001011001110011001001110110", "1111011001011111001010110101110111101100000111010111001111011110100101000001001001110011001000110010", "0111011001011101001011110101110111101000100111010110101111011100100101100101011001010111001001111110", "1111011001011101001011110101110111101000100111010111101111011100100101100001011001110011001001110110", "1111011001011101001011110101110111101000100111010111101111011100100101100001011001110011001001110110", "1111111001011101001011110101110011101000000111010111101111001100100101100101011001110011001001110110", "1011011011011100001011110101110111001000110111000111111100011110100100100001011001110111011001011110", "1111011011011111001011011001110011111000000111010111101101001101100001000101011000110110101001110100", "1011011101011101001011010101100111001100000111000111101110111100111101100001010001110011011011110110", "1111011001011101001111100101110111101100100111010111101111011110110101100001011001010011001001110110", "1111011001001001001011110001111111101000100111000111111110011101101101100001011010100011100001010010", "1011011001010101001011110101110111101000110111010111101111011100000001100001011001111011001001110110", "1111011001011101001011110101110111101000100111010111101111011100100101100001011001110011001001110110", "1111010000011100111011110101110101101000100111000111101111011101100001100001011101110011001000110110", "1111011001011101001011110101110111101000100111010111101111011100100101100001011001110011001001110110", "1111011001011101001011110001110010101000100111010100101111011100100101100001001001110011011001110100", "1100111001011101011011110101100111101000100111010111001101011110100101100001011000110011001101110100", "1111011001011101001011110101110111101000000111010111101111011100100101100001011001010011001001110110", "1111011001011111001011110111110111101000100011010110100111011100100101100001011001110011011001110110", "1111011001001101001011110001110111101001000111011111101111011100000101100001011001110011000000100010", "0011011001001101000010110101110111001000100101011111001111011100100111100001001101010011101001110110", "1111011001010100101011100101110111101000101101010111101110011000100001100001011001110001001001110010", "1110011000011100001011110101110111101000100111010101101111011100100101100001011100110111001000010110", "1111011001011101001110100111110111101000101111000100101111011000100110101001111001110011001001110100"}

    Returns: {2, 13, 6, 22, 0, 7, 8, 16, 18, 10, 12, 9, 15, 27, 21, 3, 17, 20, 11, 4, 14, 5, 26, 24, 19, 23, 1, 25 }

  15. {"1001000001101101110001100", "1110000000101110100001100", "0110000101011111110001110", "1001100101101010010000100", "1011011011111011011001100", "1000000010101101111001111", "1001000001101101010001100", "1001000010100011011010100", "1001000100101101001001101", "1001100011101101110001100", "0100001000001111111001010", "1001010001101101110001100", "1000000010100101110001110", "1001000001101101100001100", "0100000010100001000101100", "1001100001110101100100000", "0110001011001101011001111", "1010000001101111000010100", "1101110000111110100011000", "1100000100100111110101110", "0001000001001101100101100", "0101000111001101110001100", "1001000000011000111000100", "1001000001101101110001100", "1110000011101111110011100", "1000000100101000101001100"}

    Returns: {4, 24, 16, 2, 5, 19, 9, 18, 11, 21, 8, 10, 0, 23, 12, 6, 13, 1, 7, 17, 3, 15, 20, 25, 22, 14 }

  16. {"1101101100000000100010010", "1111100001101000100010011", "1101101100000000100010010", "0011101011101010111010100", "1100111100000101101010010", "1101101100000000100010010", "1101101100010010101000010", "1101101100000000100010000", "0111111100000011000010011", "1100101101110010000001010", "0001101000000000100110010", "0111111111000100010010100", "1011111100000010010010011", "1010111111110001111100010", "1101111110000000101010010", "1101101100000000100010010", "1001100100001000010010000", "1101101100000000100010010", "1110111111010100100011000", "1100101100000000000010010", "1101101100000000100010010", "1101101100000000100010110", "1101111100101000110010010", "1101100100000000100010010", "1101110110000000110010001", "1101100000000100100010010", "1101101010000000100010011"}

    Returns: {13, 3, 18, 22, 11, 12, 1, 8, 4, 14, 24, 9, 6, 26, 21, 0, 2, 5, 15, 17, 20, 25, 23, 7, 10, 19, 16 }

  17. {"11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11101100111100010111100110010011010100110000111001011000110101101100111101011011000000110100010000001101001010010010111010010", "11001001010100010101100001010111000100110000100001010110010101101100101001011011010100110100000110011001101010010010101011010", "11001100110110010101100110000011010000110000101001011010010101001100001101001011010100110100000110010100101010010010101011011", "11001101100100010101100110100001010100110000100011011010011101111100101101001010010100110100000110111111101000010110111011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010110110100000110011101101000010010111011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11001100111100010101100111101011010100110000101000011010010101101000100101001011010100100100000110011101101010110011111011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100100100000110011101101010010000101011010", "11001100110100010101000110010011010100110000100001011010110001101100100001001011010100111100000110011101101010010010111101010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11001100010100010101100110010011000100110001101000011010010100001100101001001011110100111100000110011101101011010010101011010", "10001110110100010101100110010011010110110000001010010010010000101110101111001011000100110111000110011101101010010010111001010", "11001100010100010101100110010011010110110001101000011010010101001101101111001011010100110100000010011101001010000110010011010", "11001100110110010101100100010011010100010000101000111010010101101100101101001011010100110100001110011101101010010011111011010", "11001100110100010101100110010011010100110010001000011010010101101100101101001011010100111100000110011101111010010010111011010", "01001101110111010101100000010011010100110000101000011010011101101100101101001000010100010100000110011101101010010010011011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11001100110100010101100110010011010100110000101000011010010101101100101101001011010100110100000110011101101010010010111011010", "11001100110100010101100110100011010100110000101000011010010101101100101101001011010100110100000110011101101010010000111011010", "11001100110100010101100111110011000100110000101000011010010001101101101101001011010100110101000110011101101110010010111110010", "11001100110100010101100111010011010100110000101000011010010101101100101101001111010100000100000110011100101010001010011011010", "11001100110100010101101110010011110100110000101000111011010101101100101101001011010100110100000110011101101010010010111011010", "11001100110110010101100110010011011100110000101000011010110101101100101001001011010100110100000110010101001010010110111011010"}

    Returns: {24, 22, 5, 9, 16, 17, 25, 2, 0, 1, 7, 8, 12, 19, 20, 6, 14, 21, 13, 11, 23, 15, 18, 10, 3, 4 }

  18. {"0000100101100101100100101110011010001111101100110111001111101011110000110011110001100100111000000010", "0000100101100111000100101110011010001111101100110111000111101011110000110001110001100100111100000010", "0000100101100101100100101110011011001111101100110111000111001111000000111011110101100100111000001010", "0000100101100101110100101110111010001111101100110101001111101011110000110011111011100100111000000000", "0000101100000100000100001110011010001101111100110011001110101111110010110010110101100110111000000111", "0010100101100101100100101110011010001111101110110101001111101111010000110011110001100100111000000010", "0000100101100101100100101110011010001111101100110111001111101011110000110011110001100100111000000010", "0010110111100101100100101110101010001110101100111010111111101011110000110011111001100000111000011010", "0000100101100101100100101010011010000111101100110111001111100011110000100111010001100100011000000010", "0000100101100101100100101110011010001101101100110111001101101011110000110011110001100100101000010010", "0110100101100111100100100010011010001111100100110111001111101011110000111111110001100100111000000010", "0000101101100101100100101111111010000111101100110111001111100011110000111011011001100100111100011110", "0010100101100101110110111100011010001011111100110110001111011011010000110011100001100100111000000010", "0000100101100101000001101010011110001110001100110011001111101011110000010011110001100000111001110110", "0000100101100101110100101110011010001111101100110111001111111011110000110011110001100100111000010010", "0000100101100101100100101110011010001111101100111110001111111011110000110011110001100100111000000010", "0000100101100101000101100110011010001111100100111110001101001011111000110011110001100010111000010000", "0000000101001001000100001010001010001111101100011111100111101010110010110111111001100110111000010010", "0000100101100101100100101110011010001111001000110100001111101011110000110011110001100100111000000010", "0000100111100100101101101110001000001111100110111111001111000011110000010001100011010100111000001110", "0010000111110101100100001110010000000111101100110111001110101011110000110011110001100101111000100010", "0000100101100101000100101110011010001111101100110111001111101011010000011011110001100000111000000011", "0001100101100101101100101110011010001111000110111111001111101011110000110011110100100100111000000010", "0000100101100101010100101110011010001111101000110111101111101011010000110111110001100100111000000000", "0000100101100101100100101110011010001111101100110111001111101011110000110011110001100100011000000010", "0000100101100101100100101110011010001111101100110111001111101011110000110011110001100100111000000010", "0000100101100101100100101110011010001011111100110111001111101011110000110011110001100100111000000010", "0000100101100101100100101110011010001111101100110111001111101011110000110011110001100100111000000010", "0001100111101101100110101110011110001111001100110111101101100011110100110011100001100100111000110011"}

    Returns: {11, 28, 7, 14, 3, 10, 22, 2, 15, 5, 26, 0, 6, 25, 27, 12, 4, 20, 19, 1, 23, 24, 17, 13, 21, 9, 16, 18, 8 }

  19. {"100001001010100010101011101110101011100011100110010100011000000010110000010", "111001001010100010111011101110101011100010100000010101111000000010110000010", "100001001010100011001011100110101010100010110110010101111110000010110010110", "110011101010000110101010111110101010100111100101010100011000110001110000011", "101001000010100010100011101110100111100011100110010101011100000010110000010", "100001001010100010101011101110101011100011100110010100011000000010110000010", "100001001010100010101011101110101011100011100110010100011000000010110000010", "100001001010100010101011101110101011100111100110010100011000000010110000010", "100001001010100010101011101110101011100011100110010100011000000010110000010", "100001001010100000101011101110101011101001100100010100011000000010110000010", "100001001010100010101011101110101011100011100110010100011000000010110000010", "100101011010100010101111101110101101100111100110010100011000000010111000010", "100001011010100010101011001110101011100011000110010000011001000010110000010", "100011011010100010101011101011101011100110100101010100011000001010110000010", "100001001010100010101011101110101011100011100110010100011000000010110000010", "100001001010101000111011101110111011100011100110010110011000000011110000010", "100001001000100110101011101110100010100011100111110100011000000010011100011", "100001001011100010101111101110101011100011100110010100011000000000010001010", "100001001010100010101011001110101011101001000100010100011000000010110010010", "000101001010100010101011101101101011000010110011011100011010000000010000010", "100001001010100010101011101110101011100011100110010100011000000010110000010", "100001001011011010101011111100011111100011100110000100011000000010110000011", "100011000010100010100011000000001011110011100110010000011000001010000110110", "100001001010100010101011101110101011100011100110010100011000000010010000010", "100001001000101010101011101100001011100111100110010100111000100010110000010", "100011101111100010101101000110101011100011100010011000001100100010110000110", "000101001010100010011011001110101110110111100110010110011001000011110010000", "100011000010100010111011101111100011101011110110010100010010000010111101010", "100001001010100010101011101110101001100011100110010100010000000010110000010"}

    Returns: {27, 3, 11, 2, 26, 15, 25, 21, 13, 16, 1, 4, 24, 7, 17, 0, 5, 6, 8, 10, 14, 20, 12, 19, 23, 18, 9, 28, 22 }

  20. {"01000011010111010001001000110011001011000000101100001111100010101001110111100110000001000011101110100011111011100000101001010", "01000111000111010101001000110011001011100000101100011011100010101101110011100010000001000011101100100011111011100000101001010", "00010001010111010000001000100001001010000000100100011111100010101101010111100110000001000111101110100001110011100001101001010", "01000010010111010001001110110011001011000001101101000111100110111001110111100010000001000011111110100011111011100000101001011", "01000111000011000011001001110011001011010000101100000011110010100000100111100110010001000011101111100011011011101100101001010", "01000011010111010101001000110011001001010010101100001101100110101001110111100000101000010011101110100011111011100100101001010", "01000011010111010001001000110011001011000000101100001111100010101001110111100110000001000011101110100011111011100000101001010", "01100011010111011001001000110011001011000000101100001111100010101001110111100110000001000011101110100011111011100110101001010", "11000011110111010101001000010111000010100000100001001111100010001000010111100110000001000011101110100011111011000010101001000", "01000011010111010001001000110011001011000000101100001111100010101001110111100110000001000011101110100011111011100000101001010", "01000011010111010001000010110011001011000000101100001111100010111101111111100110000001000011101110100010111011100000101001010", "01000011010111010001001000110011001011000000101100001111100010101001110111100110000001000011101110100011111011100000101001010", "00010011110111110001001001100011010011000000101100001111100011101001110101100110100001010011001110100011001011100000101101010", "01000011010111010001001000110011001011000000101100001111100010101011110111110110000001000011101110100011111011100000101001011", "01000011010000010001001000110011000010000100101110001111100011101001110111000100000001000011001110100011111010100000001001010", "01000011010111010000001000110011001011000000111100001110100010101001110111101110000001000011101110100011111011100000101001010", "01000011010111010001001000110011001011000000101100001111100111001001110111100100110101010001101110100011111011100000101001010", "01000011010111010001100100110011001011100100001101001111000011101001110100100110000011000011111110100011101011100000111101010", "01000001010111010001001000110011001011000010101100001111100011101101110111100110000001000011101110100011111011100110101001010", "01001011110111000001001001111011001011001000101000001101100010100001110111100111000001100001101110100011111011100000101001010", "01000011010110110001001001111011001010000100001100001110100010101001110111100110000001000111001111100011111011110000001100010", "01000011010111010001001000110011001011000000101100001111100010101001110111100110000001000011101110100011111011100000101001010", "11000111011111010001011000111001001011000000101110101101100010101001110111110110000001100111100110100011111011100000100001010", "01000011010111110001001100110011001011100000011101001111100010101001110110100110000001000011111110101000101011100000101001010", "00010111000011010001001100110011000011010100101100001111100010001001110111100110000101000111101110100011111011100001101001010", "01000011010111010001001000110011001011000000101100001111100010101001110111100110000001000011101100100011111011100000101001010", "01001011010111101001000000011111001011000000111100001111100010101001111111100110000001000011101100110011111011100000101101010", "11100001010111010001001000011011001011001001101101011111101010101101110110100110000101000011101110100110111001100101101001010", "01001010010111010001001000010011011011000000101101001111100111101001110111100110000001010011100110100011111011000000101011000"}

    Returns: {27, 22, 3, 26, 18, 7, 17, 24, 13, 5, 16, 19, 12, 10, 28, 23, 20, 4, 15, 0, 6, 9, 11, 21, 1, 25, 8, 2, 14 }

  21. {"1111000111110101110111010010001110010110000000001011100010100011000100010010100001101110000111110101", "1111000111110101110111010010001110010110000000001011100010100011000100010010100001101110000111110101", "1111001101110101110111010010001110010110000100001010100010110011000110010110100000101110000111110001", "1111000111110101110111010010001110010110000000001011100010100011000100010010100001101110000111110101", "1111000111110101110111011010001110010100100000001011100010100011000100010010100001101110010111110101", "1111000111111101110111100010010010010010000000001001100010100011000100100010100011001110000111110110", "1111100111110001110111110010001110010110000000101011100010100001000100010010101001101110001011110101", "1111011111110101110011010010001110010110000100001011100010101011000100010010000001101110000111110101", "1011000111111101100111010010101110010100000001001011100010100011001100010010000101101110001111110101", "1111000101110111110101010010001110010110000000000011110010100011101100010010100001101110000111110100", "1111000111110101110111010010001110010110000000001011100010100011000100010010100001101110000111110101", "1101001111110111110101001010001110000110001000000011100010100011000100010011110001001110000111100101", "1110000111110101110111010010001110010010000100001011100010100011000100010010100001101110000111110101", "0111000110010101110111010011001110000110000101001011100010101011001100010010110001101110010111110101", "1111000111110101110111010010001110010110000000001011100010100011000001010010100001101110000111110101", "1111000111110101111111010010101110010110000000010011100010110011000100010010100001100110000111100001", "1111000110110100110111000010101110110110010000001011100010101011000100010010100111100110000111110101", "1111000111110101110111010010001110010010000000001011110010100011000100010010100001101110000011110001", "0111000111111101110111010010101110010110000000001011100010100111100100010000100101011110000111110101", "1011000111000101110111010110101110110110000101011011100010100011000110110011100001001110000010111101", "1111000111110101110111010010001110010110000000001011100010100011000100010010100001101110000111110101", "1111001111100101110111010110001110110110000100001011100010110001001100000000110001101010000111111100", "1111000111110101110111010010001110010110000000001011100010100011000100010010100001101110000111110101", "1111000111110101110111010010001110010110000000001011000110100011000100011010100001100110000111111001", "0111001110110101110111010010001111011110000000001011100010100011000100010010100001101110000111110101", "0111100111110001110111011010000110110010000000001011100110100011000101010010101101101100000111110101"}

    Returns: {19, 13, 18, 25, 16, 8, 4, 6, 21, 7, 24, 2, 14, 0, 1, 3, 10, 20, 22, 9, 23, 15, 12, 11, 5, 17 }

  22. {"11110000111001011000000000101000111101011001001100", "10100001110010011000001100101101011100010011001100", "01110000100011011001010000111000001001011101101100", "11110001111001011000000001101010111101011001001100", "11110000111001011000000000101000111101011001001100", "10110000111001001000000000101000111100011001001100", "01111000111001011000100001101000111101011000001100", "11100101011011011100001000000000100101011000001110", "11110010111001011000000000101000111101011001001100", "11110000111001011000000000101000111101011001001100", "10100000111000011000000000000001111100011000001100", "10110000111000011000000000111000111101011001011100", "11110000111001011000000000101000111101011001001100", "11110000100000111000101110001000111010011001011110", "11110000111001011000000000101100111101011001001100", "11010000101001001000000000101000111101001001001100", "10100000111001111001101100001011101111001001101111", "10100000110001011000001000100001111101000000001001", "11010010010001011010000000101110000100111100101000", "01010100111001011000001000000000111111011001001101", "11110011000000011001000011001000111011011011011101", "11110001111001011000000000101000111001011001001100", "11110000111001011000000010101000111101011001001100", "11110000101101011010000000101000111101011001001100", "11111100010000111011000011101100111111010001001110"}

    Returns: {16, 24, 20, 3, 13, 14, 22, 23, 8, 6, 11, 19, 2, 1, 0, 4, 9, 12, 21, 7, 18, 5, 15, 17, 10 }

  23. {"1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010011000111", "1010001101011110000011011101100000010010011011000100001101101000010011100101010100101001010011000111", "1010001101001110000011010101100010010000011011000000001101111000110010100100010100001001010011000111", "1010001100001110010011001111100001010010011011000100001101101100000010100101110100101101010011000101", "1010011101011110001011011111000000010010010011010100001101101000010011100101100110101001010001000111", "1010001111011111000011011111100000010010011111000100100001001000011011100111010100101001110011000111", "1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010011000111", "1010001100111110000011010110100100010010010011000101001101101000010011001000011100101101010011100111", "1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010011000111", "1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010011000111", "1010001101011110010011011111101000010110011011000110001101101000010001100101010101100001010011000111", "1010001101011100000011011111100000010010011011000100000101110100110011100101010000100001010011001101", "1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010011000111", "1110101101111110010011011111100000010010011011000100001101101001010011100101010100101001010011100101", "1110001101011110000011011111100000010110011001000000001101101000010011100101010100101001010010000111", "1010001001011110000011011111100001110110111011100100101101100000010101100101011100101001010001000111", "1010000111011110000011011011100000010010011011001100001101101000010010100101010100101001010011000111", "1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010001000111", "1010001101011110000011011111100000010010011011000100001101101000010011100101010100101001010011000111", "1010001111001110000001110101000000000010011011100100000101101010010001100101010100101001011000000111", "1010001101010111000010011111100000010010011011010100000101101100010011100101010100101001010111100111", "1010011101001110000011011101101010010010011011000100011101101000010011100101000101111000011011000111", "1011001101111110000011011011000000010010011011000110101101101000011001101101010101100001010001000011", "0000011101011010000011011111100000010010011011000100001001101000111011100101011111001000000111000111", "1010001101011110000011011111000000010010011011000101100101101000010011100101010100001001010011000011"}

    Returns: {13, 5, 15, 21, 10, 20, 4, 22, 7, 23, 0, 6, 8, 9, 12, 18, 3, 1, 16, 17, 14, 11, 24, 19, 2 }

  24. {"011111101001010011000110111100011000101010101010111011101011001100001001101", "010110001010010011000110111101011010101010101010111011111011001000101001001", "011111001001010011000110111100011000101010100010100010101011001100001011101", "011111101001010011000110111100011000101010101010111011101010001100001001101", "011111101001010011000110111100011000101010101010111011101011001100001001101", "011111101001010011000110111100011000101010101010111011101011001100001001101", "011111101001010011000110111100011000101010101010111011101011001100001001101", "011111101101010011000110111001011000101010101010110011101011001100001001101", "011011100001010011000110111101011100101010101010110011100011001100001101001", "011111101001010011000110101100011000110010101010111011101011001101001001101", "001111001001010011000110111100011000100110101000111011101011001100011001101", "011111101000010011000110011100011000001010001011111011101001001101001001001", "011111101001010011000110111100011000101010101010111011101011001100001001101", "011111111001011011000110111100011000101010101010111011101011001110001001101", "111111111001010011010110111100011010100010101010111011111010011100001001101", "011011101000110011000111111100011000101001100110101011101011001101001001101", "011111101001010011000111111110111000100010101010111011101011001100001101101", "011111101001010011000110111100011000001010101010111011101010001100001001111", "011111101001000011001110111100011001101010101010110011100011001000001011101", "111111111010110010000110010100010000011011100110111011101001001000101001001", "111111101001000011000110010001011000101010101010010011101010001101001001101", "011111111011000001100110111111010000100011101011000011101001001000001000111", "011011001000010111000110110001011010101011101000111101101011001101001101001", "011111111101010001000110111011011000101010101010111111001011001101001011101", "011101101001011011000000111100111000101111001010110011001001001100001001101", "011111101001010011000110111100011000101010101010111011101011001100001001101", "011111101001010001001110111110011001111010100010111101001001001100101000111", "011011101101010011010110111100011000101000001010111011101011001100001010111", "111111101001010011000100111100011000100010100110111011111011001110101001101", "011101100011010111010110111100010001001010111011111011101011001111001010101"}

    Returns: {23, 29, 14, 16, 13, 28, 26, 9, 15, 27, 0, 4, 5, 6, 12, 25, 7, 22, 1, 17, 3, 18, 10, 8, 19, 21, 24, 11, 2, 20 }

  25. {"111101010001111000000010100101111100100010011110000100111110110011001000110", "111101010001111010000010100100111100100010011110000100011110110011011101110", "111101101001111000011011100101111100100010000110000100111110100010001000110", "111101010011010000001010000101111100100010111110100000111111110011100000110", "110101010001111001000100010111111100100010011010101111111110100011011000101", "111101010001111000000010100101111100100010011110000100111110110011001000110", "111101010001111010000010100101111100100010110010000000111010110011001000111", "111101010001110000000010100101111101100000101101000100111010110010001000110", "111101010001111000000010100101110100100010010110000100111110110011001000110", "111100000001011010000111100101111100100010001110000100111110110111001010100", "111101010001111001000110110101110000100010011110000000111110110001011000110", "111101011001111100000010100101111100100010011100000100111110110011011000110", "011101010001111000001010100101111100100010011110000100111110110011001000110", "111101010001111000001010100101111100100010011110000100111110110011001000110", "111101010001111000000010100101111100100010011110000100111110110011001000110", "111101010101111001001010100101111100100010011010100100101110110111001000110", "011101011001111001000010100111111110100010011110000101111110110010001000100", "111101010001111000000010100101111100100010011110000100111110110011001000110", "101111111000110000000010100100111100101110011010000010111010110011000001110", "111101010001111000000010100101111100100010011110000100111110110011001000110", "011100010001111000000010100101111101100010011110000100111110110011001000110", "011101100111111000000000100101010100100010011010001100110100110011101100110", "111101010001111010000000100101111100100000011110100100111110110011001000111", "110010010000110000000010100111111000101010111010101000111110110011001001110", "111101010101111000000010110101111100100010111110000110111110100001001000100"}

    Returns: {4, 15, 1, 11, 16, 22, 3, 13, 24, 9, 12, 0, 5, 14, 17, 19, 10, 2, 23, 20, 18, 6, 21, 8, 7 }

  26. {"0111111010001001110111000", "0111011010001001111101010", "0111111011001101110111001", "0111111010001001110111000", "0111001011110001000111110", "0001101010001001110111000", "0111111011001001110011000", "0111111010001001110111000", "0111111000001001110111000", "0111011010001001110101100", "0010110010001011001100101", "0110111101111101110010000", "0111111010001001110111000", "0111111010001001110101100", "0110111110001111010111000", "1110111001100010000110001", "0001010010110101111111001", "0111111010001001110111000", "0111010011001001110100010", "0110011011011101101011000", "1010011011100100001111001", "0111111010001001110111000", "1110111010001100111000111", "0111111010001001110111000", "0111111010001001110111000", "0111010010001100110011100", "1111011100001111101111000"}

    Returns: {2, 26, 22, 14, 11, 16, 4, 1, 13, 0, 3, 7, 12, 17, 21, 23, 24, 19, 6, 20, 9, 8, 15, 18, 25, 10, 5 }

  27. {"1100001011101111101011110100100100010000000110110111011000001000111111011001001101010100001100101010", "1100001011101111100001110110100100010000000110111111011100001000101111011001001101010100001100111010", "1100001011101111101001110100110100010000000110110111011000001000111111011001001101010100001110101011", "1100001011101111101011110100100100010000000110110111011000001000111111011001001101010100001100101010", "1100001011101111101011111100100110010000000010110111011000001010111111011011001101010101011110101010", "1100000010101101100011111101100110010000000100100110011010001000011111011000011101010110001100101010", "1100001011100111101001101100100100010000010110110110011100101000101111010001000001010100101110101011", "1100001011101111101011110100100100010000000110110111011000001000111111011001001101010100001100101010", "1100001011101111101011110100101100010000000110110111011000001000111111011001001111010001001100101010", "1100001011101111101111110100000100010000000110110111011000001001111111011001001101010100001100101110", "1100001001101111101001110100100100010000000100110111011001001000101111011001001101011100001100100010", "1101001011001111101011110100101100011000000110010101010000001101011111011001001101010110001100101000", "1100001011111111101011110100100100010010000110110111011000001000111111011001001100011100001100101010", "1100001011101111101011110100100100010000000110110111011000001000111111011001001101010100001100101010", "1100001001101111111011110001101101000000101100111111011000001000111110010001101001010111001100101011", "1100001011101111100011110001100100010000000110110111011000001000111111011001001101010100000100101010", "1101001010101111101111010100100100010000010110110110011000000000011111011001001100010001001100101000", "0100001111111111101111110100101100000001010110110111011000000000111111010001001001010101101100101010", "1100001011101111101011110100100000010000000110110111011000001000111111011001001101000100001100101010", "1000000011111111101011110100100101110010000110110110110010100100111110011001001100010100001000111000", "1100001011101111101011110100100100010000000110110111011000001000111111011001001101010100001100101010", "1100101011101101100011111100100101010000011110110111011001001010001010000001001101010100001100001000", "1100001011101111101011110100100000010000010110110111011000001000111111011001001101010100001100101000", "1110111010101111100001110110100000010100000110100111111000001000011111010001101100011000001100001011", "1100001011101111101011100100100100011000100101110111011000011000110101011001001101010100001100101010", "1100001011101111101011110100100100010000000110110111011000001000111111011001001101010100001100101010", "1100001011001111101011110010100100000000100111110111011110001000110011111000001111010100000100101000", "1100001000100111101011010100000100010000011110111110011000001000111111011001000001010100001100101010", "1100001101101111101001110100100100010000000110010111111010001010111101011001001101110100001110101010"}

    Returns: {4, 14, 17, 28, 2, 9, 8, 12, 1, 0, 3, 7, 13, 20, 25, 24, 11, 19, 6, 23, 22, 26, 15, 18, 5, 10, 21, 16, 27 }

  28. {"10101011101110011101010110100110001000010000001011", "10101011101110011101010110100110001000010000001011", "11111011101110010101010110010000001000110001000011", "10101011101110011101010110100110001000010000001011", "10101011101110011101010110100110001000010000001011", "10101011101110011101010110100110001000010000001011", "10101011100110011101011110100110001000010100001011", "10101011101110011101011110100110001010010000001010", "10101011101110011101010110100110001000010000001011", "10101011111110011101010111100100001001010000001010", "10101011101110011101010110100110001000010000001011", "10101011101110011101010110110010001100010001001011", "10001110100000111101110111100110000111000000011011", "11100011111010000111010010100110001010011110001110", "10101011101110011101010110100110001000010000001011", "10101011101110011100010110100110000010110000101011", "11101011101110011101010110100110001000010000001011", "00101011100110011001010010000110001100110000011011", "11101011101110011001001110101011001000110110010011", "00111101101111001101010101110110000000110000000011", "11100011101110011100010110100110001000010000000011", "10101011101110011111010100100110111100010010001111", "10100011101110011101010110100110001000010100001011", "10101011101110011101010110000110001000010000001011", "10101011101110011101010110100110001100010000001011", "01101011011110000101010110110100011011000010011011", "10101011101111011111010110100110001000010000001011", "10101011110110011101110110100110001000010000001011", "10111011101110010111000010100110001010010100001011"}

    Returns: {21, 18, 25, 13, 11, 26, 12, 15, 28, 6, 24, 27, 16, 9, 7, 22, 19, 0, 1, 3, 4, 5, 8, 10, 14, 2, 23, 17, 20 }

  29. {"1110001110101011100011101", "1110001110101011100011101", "1110010100111000010111101", "1100100010011011110011000", "1011110010001111000011110", "0110000100000010110010111", "1100001110010101100100010", "0110011001001110101000101", "0000100000101111000001101", "1110000110101101010001101", "1000011110000011100010101", "1110101010111011100011101", "1110011110101011001111001", "0011101011110110101001010", "1111011100110000100001011", "1110001110011011100011111", "1100001111100000011011111", "1010011101011011000011111", "1110001110101011100011101", "0110001110101010100011101", "1110001110101111100011101", "0100101111110001110110111", "1110011110101011100011101", "1100001110101011100001100", "1000101101010111100111001", "1111001100001010100010101", "0011010111101011100010101", "1110101101101010100011101"}

    Returns: {15, 21, 20, 11, 22, 12, 17, 0, 1, 18, 27, 16, 2, 26, 24, 4, 13, 14, 19, 9, 25, 7, 23, 3, 10, 6, 5, 8 }

  30. {"101100010110001101100011100101101101100001101001111000001011001011110110111", "101100010110001101100010100101000101100001101001111000001011001011110110111", "101100010110001101100011100101101101100001101001110000001011001011110110111", "101100110110001111100110100101001101110001101001111000001000011010110110101", "101101010100011101100011100111101100101011101101111000000011001010110111101", "001100010110001101100011100101101101100001101001111000001011001011100110111", "100001110100001101100111110101101111001001101001111001011010000010110111011", "101111000110001101101011101000111101110001101101101001101011001011111110111", "101110011110011101100011000101101101100001101001111000001011001011110111101", "101001000110000101101011101101111101100101101001111010001001001011010110101", "101100010110001101100011100101101101100001101001111000001011001011110110111", "101100100111011100101111000101100101101001111001111100001000011001110111111", "101101010100001101100111100101101111100101001101111000001011001011111010111", "101100010110001101100011100101101101100001101001111000001011001011110110111", "101000010111001101110011100101101101100001101001111000001010001001010110111", "100100010100001101100011100101101100101001101011111000001011001011110010111", "101110010101001001100101100101101110100001101101111000001011001001110110111", "101100010110001101100011100001101101100001101001111000001001001011110110111", "100100010110001101100110000101110101100001100001111000001011001011110110111", "101100010110001101100011100101101101100001101001111000001011001011110110111", "111100010000101101001000100101100101111001101001111010000011111011011100111", "001100000100001101101011100101101101100001101011011001001011001011110110111", "101100000110001111101011101101101110100011111100111000101101000011110110100", "101100010110001101100011100101101111100001101001111000001011001011110110111", "101100010101001101100101111001101101111011101101111101101011001000110110111", "101100010110001001100011100101101111101011100000110001000001001011110010111"}

    Returns: {7, 24, 12, 11, 8, 4, 22, 23, 6, 20, 0, 10, 13, 19, 16, 9, 21, 2, 3, 15, 5, 17, 14, 18, 1, 25 }

  31. {"0100001100011110000011101001110110010111000010100101101111011000110101011111001110010011010101011001", "0100001100011110000011101001110110010111000010100101101111011000110101011111001110010011010101011001", "0100001101011110000011101001110010010111000010100101101111011000010101011111001110010011000101001001", "0100001000011010000011101001100110010111010010100101100111011000110101011111001110011011010101011001", "0100001100011110100011101001010110010111000010100101101111011000111101010111011110010011010101011000", "0110000101011111000011101001110110011111000010100101001111011000110101011111001110011011010001011001", "0100001101011110000011101011110111000111000010101101101111011000110101010111001110010011110111111001", "0100001100011110000011101001110110010111000010100101101111011100110101011111001110010011010101011001", "0000001100011110000011101001110010000111000010100001101111011000110101011111001110010011011101011101", "0100001100011110000011101011110110010110000000000111111111011000110101011111000110000010010101011001", "0100101100011110000011101001110110010111000010100101101111011000111101011110001110010011010001011001", "0100001100011110000011101001110110010111000010100101101111011000110101011111001110010011010101011001", "0000000100011010000011101001110010010111000010101101101111011000111101011111001010110010010101011001", "0100001100011110001011101001110110010111000011100101101111011000110101011111001110010011010001011001", "0100001000011110000011101001110110010111001011100101101101011000010101011111001110010011010101011001", "0110001101000110000011001001110110010111000000101101101111011000110111011111011110010011010101011001", "0100001100010110000011101001110110010111000010100101101011011000110101011111001110010011010101011101", "0100000000011111000001100001110110000111000010100101100110011000111101011011101111010110010101011101", "0100101100111110000010101001110110011011010010110001101111011000110101011111001110010000010101010001", "0100001101110110000011100001110110010011000010100100100110011000110111011111001110011011010101011101", "1100101100011110000011101101010110010110000010110111101110011000000101011101001110010011010101011001", "0100101000011110000001101001110111010111000110100101101111010000100101011111000110010000010101011001", "1110001100011100000011101001111110010111010010100101101111011000110101011111001110110011010101011001", "0100001100011010100011101001110100110111000110110101100111001100110101111011001110010011010101010101", "0110001100011010000010001000110100011011110010100111101111011000110101010011100110010000000101001000", "0100001100011110000011101001110110010111000010100101101111011000110101011111001110010011010101011001", "0100001101011110000011101001111110000111000111100101101111011011011101011111100100010011010101011001", "0110001110011110001001111001011110110111000010100101101101011000110101011110001100010011011101011001", "0100001100011110000011101001110110010111000010100101101111011010110101011111001110010011010101011001", "0100001100011110000011101001110110010111000010100101101111011000110101011111001110010011010101011001"}

    Returns: {6, 22, 26, 5, 27, 15, 28, 7, 23, 13, 0, 1, 11, 25, 29, 4, 10, 19, 16, 14, 20, 18, 8, 3, 17, 12, 2, 9, 21, 24 }

  32. {"100101001111001011100001101010111100101100000101111101000100110011001011100", "100001001111001011100001101010111100111100000101101101000100110001001001000", "100101011111011011100001101010111110101100000101111101000000110011001011100", "100101001111001011100001101010111100101100000101111101010100110011001001100", "100101001111001010100001101110110100101100001101111111010111111011001011000", "100111001101001001100010101010111100101100000001111101000110110001101011110", "100111001111001011100011101010111100101100100101101101010101110001001011010", "100101001111001011100001101010111100101100000101111101000100110011001011100", "100101001111001011100001101010111100101100000101111101000100110011001011100", "100101001011001011100001101010111100101100000101111101000100110011001011100", "001101000111000011010001101011111100101000011101111101010100110010011011100", "100101000111011010100100101110111100101110001101111001000100100011001001110", "100101001111101011100001101010111100100000000101111101000100110011001011100", "100101001111001011100011111010111100110000000101111101000110100001001011010", "100101011011001010100001100010111100111000100001111101000101110010011011100", "100101101110001011100001101000111100101111000100111101000100111011001011100", "100101001110000011100001110000111000101100010101111100000101110011001011100", "100101001111001011100001100010111101000100000101111101000101110111001011001", "100101001111001011100001111010111100100100000111111111000100111011001011100", "100101001111001011100001101010111100101000000101111101000100110011001011000", "100101011101001010100001111010101101101000010000011101001110110001011001100", "100101001110101011110000001010111101101100000111110101000100110011100011001", "100101001111101001001101011000111010101100010001011101001100110011101011100", "100001001101001111110011101010111100101100100101011101000100110011001111101", "100011001111001011100001101010110100100100000101111111000000111011001111100", "100101001111001011000001101010111100101100000101111101000000110011001011100", "100101001001001010110001101110011101101100001000111101100000110111001001100", "000001000111101001100111101010111100101100010101111101000110110111101011100", "100101001110001011100001101010111100100100000101111101010100110011001011100"}

    Returns: {4, 27, 18, 23, 6, 2, 22, 10, 15, 5, 17, 24, 0, 7, 8, 3, 21, 13, 11, 14, 28, 9, 12, 20, 26, 25, 19, 16, 1 }

  33. {"1111010001110111001000011", "1011000101110100000010001", "1110010001111111001000011", "1111010001110111001001011", "0001010000110111000000011", "0011001101110111011011111", "1111010001110111001000011", "1100010000000000000111101", "0101110000010111001000000", "1111110010100111001000011", "1001001001110001100000111", "1101011001110101001000010", "1111110101011110110110011", "1111010001110111001000011", "1111000100110001011000111", "0011000001111011101100111", "0111011000110111101001010", "0111110100110101001011011", "1111010001110111011000011", "1011110101001111011110011", "0111001001110100101000111", "0011010001110111110000011", "1011110100101110011110101", "1111011001010111101101010", "0111000001010001001100011", "1001000011110111011100010", "1001011101110100000000000", "1010010001010101001010011"}

    Returns: {12, 5, 19, 22, 23, 17, 3, 18, 15, 2, 0, 6, 13, 9, 16, 14, 20, 21, 25, 11, 10, 27, 24, 1, 4, 8, 26, 7 }

  34. {"010001000010011010000110110010111101100110100110110101000000010111001001000", "010101100111011110100110100010111011100100000110100111000011110111011001000", "010101000010011010000100110010111101101110100110110101000000010111001011000", "110001110011011000000010110011111111100110000111110101000000010011001100000", "110001000010010010010110110011011011000110100010100101010100010010001101100", "000110000011010010010110110010111101100010101110010011000000110111000000000", "010001000010011010000110110010111101100110100110110101000000010111001001000", "010101101010011111000111111010101101010110100100110101000100011111010011100", "010101000010011010000110110010111101100110100111110101000000010111001001000", "010000001010011000010110110010110111110011000110110000100100010111001001000", "010001000010011010000110110010111101100110100110110101000000010111001001000", "010001000011010111000110110001110101000110100010110000000001010111001001000", "000001000010010010000111111011110111001110110111111111100001110111001001000", "100000000010011011100010100010110101100111110110100101001100000111001001000", "000101101010011010000110111010111101100110100110111101000000010111101011000", "011000000010010010000110110110010000111100000111110101000000010111001000000", "011001000010011010000110110001111101100110100010110100001000010101101001000", "010001000010011010000110110010111101100110100110110101000000010111001001000", "000001000010011010000110100010111111100110100111110101000000010111001001000", "010001000010011010000110110010111001100110100110110100010100010111001001000", "010001000010011010000110110010111101100110100110110101000000110111001001000", "011100000010010010000010110010110101001000000110110000100001110111001101010", "010001100010011011000010110000111101100110110010100100000000010101101001000", "001101000010001010000010110010101111101011100110110101011100010111101101000", "000000100010111010000010011010111101110000100100010101000010010110001000000"}

    Returns: {7, 12, 1, 14, 23, 3, 2, 8, 20, 4, 19, 13, 18, 9, 0, 6, 10, 17, 16, 5, 21, 22, 11, 15, 24 }

  35. {"111001011101100010011000011111000010001011100000011001101100100010110010100", "111001001101100010011000011111000010001011100000011001111000100010110010100", "111001011101100010011000011111000000001010100000011001101100100010110010100", "111001010011100010001000011111000010001010100010001001100001100010010010111", "100001001101100110111000011111010010000001100000011001001100000010010010100", "111001001101100010111000011110010011010011010000111000101100100010110010110", "111000011111100010011000011111000010001111100000010001101100100010110010100", "111001001101100010111000010110000010001011100000011000101101100010110010100", "111001011100100010111000001111000010001011100000011001001100110010110010100", "010001000001001000010000011111000010010011100000011001101100100110111010100", "011111011101100010011000011111000010001011100000011011101100100010100010100", "111001011101100010001000011111000010001011100000011001101100100010110010100", "101001111101100000010010010011000010000011000100011011100100000010110011100", "111001010101100011011000110111100010001111100000011001111100100011110100001", "111001001011100010001000001111000010001010100000010001101100100010111011100", "101001011101101010011000010111000010011011110000011001101101100010110000000", "111001011101100010011000011101000010001011111000011010101101100110110010100", "100001011101000010001000011011010010001011100010011010001110100000110000000", "111000111101100010011000010011000010001011101000010100101100101010010010100", "011001111101110010011000011111000010001011100010011001101110110010110000100", "111001011101100010011000011111000010001011100000011001101100100010110010100", "101101001101101010011110011111000010001001100000011101101100110010000010100", "111001011100100010111010011111101010001011100000111001101110100010110000100", "110001011100100011011000011010000010001011100000011000101100100010111010100", "101001011101100010011000011111000010001011100000011001101100100010110010100"}

    Returns: {13, 22, 16, 19, 5, 10, 21, 0, 20, 6, 15, 24, 11, 1, 8, 7, 2, 18, 14, 3, 23, 12, 9, 4, 17 }

  36. {"1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "1101001011001010110010111110110110011110000101110100111111101010001010011110010101111010111001010011", "1101001011001010110010111110110110111100001100100100111111111001011001011100010101011010111001010010", "1101001011001010110010111110110110011010001101110100111110101010001001001100011101101011111000010011", "1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "1111101110001110110010111110100111111110001111010100101111101010000001011100010101111010111101010011", "1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "1101000011001110111110111100010110001110101101110100111111101010001011011001010100111010110001111011", "1101001011101010110000101110110110010110001101110000111111101011001001010010010101111000101111010010", "1101001011001011111010111100110110011110101101110100111111101010011001011100110101111010011001010001", "0100001001001010110110111110010110001110101100110100111111101010001001011101110101111010111001010011", "1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "1100001011000110110010011110100110111100000001110000110111101010001001011110010001111010110001000011", "1100001011011010110010111111100110011010001101110100111101101010001001111000110101111010111101010011", "1011001001001000110010111110010110011111101111010000011111101010001001011100010001111010010001010011", "1101001011001011110010111110110110011110001101110100111101101010001001011100010101111010111001000011", "1100001001011010110001111010110010111110100101110100111011101010001001011100010001111000110001010011", "1101001011001010110010111110111110011110001101110100111111101010001001011100010101111010111001010011", "1101001001011010100010111111110110011010001101111101111110111101001000011110010111111010111001010011", "1101001011001010110010111110110110011110001001110100111111101010001001011100010101111010111001000011", "1101001000000010110010111110101110111110000111100000111110111010000001001100110101111010101001010011", "1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "0101001001001110111001111110110100011100001111110101111011101010001001011100000101001010111001110011", "1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "1001100011001010100010111110110110011110101101010100100111101010001101011110010101111010101001010011", "1101001011001010110010111110110110011110001101110100111111101010001001011100010101111010111001010011", "1111001111001000110010111111110110011100001101010100111111111011001001011100010101111010110001010011"}

    Returns: {18, 5, 9, 7, 17, 26, 13, 1, 0, 4, 6, 11, 21, 23, 25, 15, 10, 19, 2, 3, 24, 22, 8, 20, 14, 16, 12 }

  37. {"1111011110010000111110010011000111101010000011100111000110010101101100001111100010001110001111110011", "1111011110010000111110010011000011001010000011100111000110010101101100001111100110001110001101110010", "0111011010100000111110010011010011101110110011100111000110010101101100001110100010011110000111010011", "1011010110010010111110010011000111101010000111100110010010010111100100001111100111000110001111000011", "1011011110010000011110010011000111101010000011100100000110010101101100001111100110001110001111110011", "1111011110010000111110010011000111101010000011100111000110010101101100001111100010101110001110110011", "1110011110010100111110011001000111100110000111100101001010011101101100001011101010001110011101110111", "1111011110010000111110010011000111101010000011100111000110010101101100001111110010001110001011110011", "1101011010010000011110010011100101001000000011100111000110010001101100001111100010001010001111110011", "1111111110010000111010010011001111101010000011100111000110010101101100001111100010001110001111110010", "1111011110010000111110010011000111101010000011100111000110010101101100001111100010001110001111110011", "1110011110010000111110000111000111101010000011100111000110010101001100001111110010001110001111100011", "1111011110010000111110010011000110100000010011100111000110010101101100001111100010001110001111110011", "1111001110010000110100010011100111101010000111100111000110000101001100010101000000001110001111110011", "1111001110010000101010100011000111101110000011100111000110010011101100001011100010100110001111110111", "1111011110010000111101010011001111101010000011000011000110010101101100001101100010011110001100110011", "1101000010010000110110010011010111101010000011000110001110010101101100011111100010001010101111111011", "1111011110010000111110010011000111101010000011100111000110010101101100001111100010001110001111110011", "1011011110001000111100110011000111101010000011110011000010010101101110001011100010001110001110110010", "1111011110110000111110010011000111101010000011100111000110010001101100001111100000001110001111110011", "1101011110110101111110010010000110001010010011110111001110000101101000001111100010011110001111010001", "1011011110010100100011010011000110101010000011100101000110010101100100001011110010001110001111110110", "1110010110010000111110010011000011100000000011110111000110010101101101010101101010001100001101110011", "0010011110010110111110011011001111001010100011101111000111010001101101001101100011001110001111111111", "0010011111010000111110010111000111101110001011000111100100100101001100101101100010101110001111100011"}

    Returns: {23, 6, 0, 10, 17, 7, 5, 9, 24, 19, 20, 2, 14, 12, 11, 3, 16, 4, 1, 15, 18, 21, 22, 13, 8 }

  38. {"0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0110111011010100100010110000110100000101011110110011011010101110010001010001010001010001011111010010", "0110101100111100001110100100010100001111011010110011111110110010000101010001000001000001001111010110", "0100111010110100100010111000110100000111001011110011011010111001000001011011010001010001101111010010", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "1110111110110100101000110000110100000111000000110010011010101010000001010001010101010101001011000010", "0110111010110100100010110000100100001011111000111011010011101010000001011011011000011001001011001010", "0110011011111100100010110000110100000110011000110011011010100110010001010101010001010101001111010010", "0110111010110100100010110000111100000111011000110111011010101010000001010011010001010001001111010010", "0111101010110100100010110001110100010111011000100011011010101110000001010001000001000101111111100010", "0111111010110100100010110000110100000111011000110011011010101010000001010001011001010001001111010010", "0010110010110100100000110100110100000001011000110011011010110010000001001001010000010001001111010011", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0111111010110100100010110000110100000111011000110011011110101010000001010001010001010001001111010010", "0110111000110100100000110000100100000011111000110011011010101011000001010101010001010001001111010010", "0110111000111100110010111000110100010111001000110010010110001010010001000111110001010000001110010010", "1110111000110100100010101010110000000111011000110010001010101010000000010001010101010001001111010010", "1110111000110100100010110000110100000111001001100011011010111010100011011011010001001001001011011010", "0110111000110100100010111000110100000111011000110011011010101000000001010000010001010001001111010010", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0110111010100100100010110000110110000111011000110011011010101000000000010001010001010001001111010011", "0100101010110100100010110000110100100111011001110011011000101110010001010001110001010001001111010010", "1011111010100110100010010100111100100111001001110011001010101010000001010001010001010001001111010010", "0111011000010000100000101000110100000111011000110011011000000010000001010001010011010010001111001010", "0110110000111100100010110000100100000011010000110011001010101010011011111011000001000001011111010010", "0110111010110100100010110000110100000111011000110011011010101010000001010001010001010001001111010010", "0110111010111100100010100000110100000111010011110011011011100010000001010001010001000101001111000010"}

    Returns: {3, 1, 20, 2, 7, 9, 6, 8, 24, 10, 16, 25, 18, 0, 4, 12, 13, 14, 15, 22, 28, 27, 29, 23, 17, 5, 19, 21, 11, 26 }

  39. {"01111110101111111001111101100101000101110111111001", "01101010101110111001101101100101010101110111111010", "00011000100110111010111101000101100001010101101001", "01111110101100110000111001110000001001110100110001", "11111110111111010001001101100100001101110101111001", "01101110101111111001111001100101000101110101110001", "01011101100111110011101101100101010100111111100000", "00111110101111101001111101110001000001110111111001", "01101010100011011100011110100101000101101111100001", "01101010101111111101101111101101000101111101111001", "01111110100111111001111101100001000101110111111001", "01110010101011111000111101000101101111110110111010", "00111110111111111001111101100101000101110111111001", "11110010101111111001110101100101100000011111111100", "01101111111110111001111101110101000111001111111011", "01111110010011101011111101110101100111000110011001", "01111110101111111001111101100101000101110111111001", "01110100101111111001011111100101010101110111111001", "01011110101111010001111101100101000101110111111001", "10111010101101101000111101101101100100010111111001", "01111110101110111000111101110101000101110011111001", "11011010101111110001111101100011000100110011101101", "01111110101111111001111101100101000101110111111001", "11101111011111111101111111110111001101101100110000", "01110110001011111001011101000101001101110101111101"}

    Returns: {14, 23, 9, 12, 0, 16, 22, 17, 20, 10, 1, 11, 18, 7, 4, 15, 13, 24, 19, 21, 5, 6, 8, 3, 2 }

  40. {"01010000010000011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110100000", "01010000010000011110111001011001000001111110110010110100111111100111111110110010110000000110101101000000101010010010110100000", "01010000010100011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110100010", "01010000010000011011110001011011010001111110110010110110101110110111011010110111110100110110101101011000100010010010110100000", "01010000011000011110111001010001000101110110111010100111111101100011011010110010010000001110101101000000101110010010100100000", "01010000010000011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110100000", "11010000010000001010101001111001001001111110010010110100111111100111010110110010010000010110101111000000101010000010110101000", "01100101010000011110111001010001000101111110110011000100111111100011011010100000110000000100101100000000101010010010110110000", "01010000010000011110111001011001000001111110110010110100111111100111011110110010100000000110101101000000101010010010110100000", "01100000010000001110111001011001000001111100110110111101111111100111011110010010110000000110101001000000101010010010100100001", "01011010010000011110111001011001000001111110110110110100111111100111011110110010110100000110101101000000101011011010110100000", "01010000010000011110111001111101010001111110110010111100111111100111011110110010110000000110101101000000101010010010110100000", "01010000010000011110111001011001000001111111110010110100111111100111011110110010110000000110101101000000101010010010110100000", "01010000010000011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110100000", "01010000011010011110111001001101000001111110111110101100011110100011011110110010110000100111101111000000101010010010110000100", "00000000010000111110111001111001000001111100110100100100111111101111010100111010110000000110101101000000101010010011110100000", "01010000010000011110111101011001011101111110010010110100111111100111011110111010110010100110101101000000101010010011110100001", "01010000010000011110111011011001000001111010110010110100111111100110011110110010110010000110101101001000101011010010100101000", "01010000010000011110111001011001000001111110111010110100111011100111011110110010110000000100101101000000101010010010110100000", "01010100010010011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110101000", "01010000000000011110110001011001000001111110110010110000101011100111011110110110110000001110101101000101101010010010110101000", "01010000010000011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110100001", "00010000010000011110111001011001000001111110110011110100111111100111010110110010110000000110100101000000101010010010110100000", "01110000010000011110101001011001000001110000010010110100111111100111011010110010010000001110101001000000101010010010111100000", "01010000011000011110111001011001000001111110110010110100111111100110011110110010110000000110101101000000111010010010010100000", "01010000110000011110101000001001000001111110110010110100110101100111001111110010110000010110101001100000001010010000101100011", "01010010010000011100011001011001000001111110010010011000101101100111110110010010110000010110101101000000101000010010111100000", "01010000010000011110111001011001000001111110110010110100111111100111011110110010110000000110101101000000101010010010110100000"}

    Returns: {16, 10, 3, 14, 11, 19, 17, 2, 21, 1, 12, 20, 0, 5, 13, 27, 24, 15, 6, 4, 9, 8, 18, 22, 25, 7, 23, 26 }

  41. {"01011001101101110101010101101001110000010011010010", "01011001101101110101010101101001110000010011010010", "01011001101101110101010101101101111000010011010010", "00011001100101110101010101111001011000000001010010", "01011001101101110101010111101001110000010011010010", "01011001101101110101010101101001110000010011010010", "01011001101101110101010101101001110000010011010010", "01011001101101110101010101101001110000010011010010", "01001001101101101101011101101001010000111011000010", "01010001011101100101110101011001010001111110000001", "01001000001101110101110101100001111000110011000011", "01010101101100110111010111001011110000001111110010", "00010101101101110101011111100001101000010010010010", "00011000001100000101100101111001110100010101010100", "01010001101101110101110101101001110000010011010011", "01000000111101111001010101101011110010010011010010", "10110001101101111101100101100011110000001111010011", "01001001111101110101000011101001110000011011111100", "11001001101101110111000101101001100000011011110010", "11011001101101110101010101001011110000010101010110", "01011001101101110101010101101001110000010011010010", "01011001101101110101010101101001110000010011010010", "01011001000101110101011111101001110010010011010010", "11010010101111010101010101001010010000010011110010", "01011001101101100101010100101001110000000011110011", "11010001101100111101010101111001110100010111011011", "01011000001101010001111101101001110100010001010100", "00010000101001110100100101110001110000010011011010", "01011001111101111100010101101001110000110011010010"}

    Returns: {25, 16, 11, 17, 2, 19, 28, 14, 18, 22, 4, 15, 9, 0, 1, 5, 6, 7, 20, 21, 8, 10, 24, 23, 12, 26, 3, 13, 27 }

  42. {"0001101110011000001010111", "0001101110011000001010111", "0000001111011000001001011", "0011111010001000001001111", "1001111011000001001101111", "1010101110011100010111010", "0101000111001000000111110", "0011100111100000100010011", "0011001110001000001010110", "0001101100111001101110111", "0001101110011000001010111", "0001011010001010001010110", "1000101111011110011001111", "1001111111010000001100111", "0000101110011000001010111", "0000000010010010001000111", "0001100110011000001010111", "0001100110011100001111110", "0111100110011100111010111", "0001101110010000100010111", "0001101010010000000010001", "1011011101111110011110111", "0001100100011000001010011", "0001101110011000001010111", "1100001110011111010110111", "0001101110011000001010111", "1001100101110100001111001", "0000101010011000001101111", "0001101110011000101010111"}

    Returns: {21, 12, 24, 18, 9, 4, 13, 5, 28, 26, 17, 3, 0, 1, 10, 23, 25, 27, 14, 16, 19, 7, 6, 2, 11, 8, 22, 15, 20 }

  43. {"10110011100110010001011000101010010011110110011110", "10111011100101001011011000111010010011110110010010", "10110011100110000001011000001010010011110110011110", "00100010100110010001011000101100010111110010011100", "10010011100110010001011010101000010011100110000110", "10110011100100010101111000001010010011010110011110", "10110011100110010001011000101010010011110110011110", "10100011101110000001001000100011110011000110011111", "11110000100010111001011010111010010011110100011101", "11110011001111010001011100101010000011100101011000", "10110011100110010000011000101110000011111111001110", "10100010110110001101010000001110010000110101001100", "10110011100100010001011000101010110011110110111110", "10110011100111010001011000101010110011010101001100", "10110011000110110001010101101100110010110110010110", "00110011100010010001011001110010010011110100011110", "10100011000010010011001100101000010011010110010101", "10110011101010011010011000101110111111111110011101", "10110011100110010001011000101010010011110110011110", "10110011100110010001011000101010011011110110011110", "10110011100110010001011010101010010001110110011110", "10110111100000011011011000101010010101100110011110", "10110011100110010001011000101010010011110110011110", "10110110100110010001110000011010110111111111111110", "10110011100000010001011000101010010010110110011110", "01010100100110000001011001101010010000101100010110", "10110001100110010001011000101010010011111110011111", "10110011100110010001011000101010010011110110011110"}

    Returns: {17, 23, 26, 12, 19, 8, 1, 10, 0, 6, 18, 22, 27, 14, 20, 21, 5, 13, 9, 7, 15, 2, 24, 3, 4, 16, 11, 25 }

  44. {"0011111000011010000111101011110101011001101011000000010110011111110110110101000001011100001001110111", "0011111000011010010111101010110101011000101011000000010000011111110110110101010001011100111011100111", "0011111000011010000111101011110101011001101011000000010110011111110110110101000001011100001001110111", "0011111000010010010110101011110111011011101001100001010110111111010110110101000001011000001011110100", "0001110000010010000111101011010001011111101011000000010100110111100110110101100101011100001000000111", "0011111100011011000111101011110101011101101011000000110110010111110110110101000001010100001001110111", "0111110000010000000111101011000101010011101011100000010111011111110110110111000001011100101101111111", "0011110000011010000111101011110101011001101001010000010000011111100110110101000001010100001011110111", "0011111100011010000111101011101101011101101011000000010110011111000110110101001001011100001010110111", "0010011001011010010011001011110101010001100011000100010000011100111110010101000001011001001011010011", "0011111000010010000111101011110101011001101010000000010110011111110110110100000001011100001001110111", "0011111000011010000111101011110101011001101011000000010110011111110110110101000001011100001001110111", "0001111000011110000111101011110101011001101011000000010110011111110111110101000000011100001001110111", "0011111000011010000111101011110101011001101011000000010110011111110110110101000001011100001001110111", "0011111000011010000111101011110101011001101011000000010110011111110110110101000001011100001001110111", "0010111001011010000110101011010001011001101011001000010110011111110100110101000001011000000000110110", "0010011001011010000111100011100001111000101011000010000110101111110100110101000001111100001001110111", "0011111000011010000111101011110101011001101011000000010110011111110110111101000001011100001001110111", "0011111000010011000111101011110101010001101111000000010110011111110110110101000001011100001001110111", "0011111000011010000111101111110101111101101011000000010110011111110010110101000001111100001001100111", "0011111010001010000011011011111101011001101011000001000110011111110111010101000000011100001001111111", "0011101001011010000111101011110101011001101011100000010110011101100110110101000001011100001001110111", "1001111100010010000111101011110101000001101011100000110110001110100110110101100011010100001001110011", "0111111001011010000111001011110001011001100001000000010111011111110110110101000001011100001001110110", "0010111000011010000111101011110101011001101011000000011110011111110110110101000001011100001101110111", "1011111000011010000011100001110101010001101011001000010110011111110111110101001001011101011001110111", "1011111000011010000111001011110101011000100011000000010111101111110110110101010100011100001111110111", "0111111000011011000111101111011100011001101011000000010110010110010111010101000001010010101001110111", "0011111000011010000111101011110101011001101011000000010110011111110110110101000001011100001001110111", "0011011000011010000000001111110101011001101011000011011110011111110110110001010001011100001001100111"}

    Returns: {6, 25, 26, 19, 5, 24, 8, 17, 1, 20, 18, 0, 2, 11, 13, 14, 28, 12, 3, 21, 27, 29, 23, 22, 10, 16, 7, 4, 15, 9 }

  45. {"011100110110110110110111110010000100110010001010001000110111010010000010101", "011000010100111110110111100010010101110010000010001001111101010110100000101", "011100110110110110110111110010000100110011001010001000110111010010000010101", "011100111110110110110111110010000100111010001010010000110111010010000010101", "011101110110110010010111110010000000110110001010001001110101011010001010110", "011100110110110110111111110010000100110010001010001000110110010010000010101", "011110110110110111111101110010001100110010101110001000110111011010101010101", "011100110110110110110111110010000100110010001010001000110111010010000010101", "011100110110010110110111110010000100101011001010011010110111000011000111001", "011100110110110110110111110010010100110010001010001000110011010011000110101", "111100011110110110000111111010000101110111001010001000110111000010100010101", "011100110110110010110111100010000100110010001010001001110111010010000110111", "011100110111100111110111110010000100110010001010001001010111010000000011111", "010110110111010110100111111010010110110011001010011000000111011010000010111", "001101100111110110100111111010000100110110001010001100010110010110000010111", "011100110110110110110111110010000100110010011010011000110111010010000010001", "101000111110110110111111110010000100011110101110001001010111110110010010001", "010000010011010110010111110000110010110110001010001000110111010010000010100", "011100110110110110110111110000000101110010001010000000110111010010000010101", "011000110100110110101110110110000100100100001000001000100111011010010011101", "001101110110101110110110111010000110010010001010101010100111010010000010101", "111100111110111001100111111010010000111010111010001000110001010011100010001", "011000110101111111010110110010000110100000000010001000110101010010000010111", "011100110110110111010010110011000111111010001110011001111111011010000010101", "011100111010110010100111110011000100110010011110001000110111000000110011101", "011100110111110110110111010010000100110010101010001000110111010010000010001"}

    Returns: {6, 23, 16, 13, 21, 8, 10, 24, 14, 9, 12, 3, 11, 4, 20, 2, 15, 1, 0, 7, 25, 5, 18, 19, 22, 17 }

  46. {"00001011101001101011010110011111010100010110110011", "00101011111101101011010000010011011001010010110001", "00001011101001101010010110011111010100010110110011", "00001011001001100000010110010011010100010110010011", "00001000101001010001010010011111010110111110000001", "00000111110010011000010110111111010100100110010001", "01010010001100111011000111011111010011000110110111", "00001011101001101011010110011111010100010110110111", "00101110100001101101110010011110011100010110110001", "00001010100001111011010110011101110110110111100011", "00101001101001111011011110111100011100011011110111", "10001011101001101011011110011111110100010111010111", "00001010001010101010111110000111100100010010100001", "00011011001011101010110110011111010110010101110010", "11001001001100001010010100101111111001010111110011", "01011011100001101011010110010111000100010110100001", "01001110101000101111011010011101000010010110110000", "00001001101001001001010111011111010100010110111011", "00001011101001001011010110011111010111010010010011", "00001011111001101011011110111111011100010110110011", "11011111001001001001110110011100010000010000111001", "00001011101001001111010111011101010000010110110011", "00001011101001101011010110011111010100010110110011", "00001011101001101011010110011111010100010110110011", "00001010111001101011011101001110010010110110010101"}

    Returns: {10, 11, 19, 6, 9, 7, 13, 14, 0, 22, 23, 17, 2, 18, 21, 24, 8, 1, 5, 15, 16, 20, 4, 12, 3 }

  47. {"111110000011000110101111010011111001001101011100001011000011011101111101110", "111110000011000110101111010011111001001101011100001011000011011101111101110", "111110000011000100111111010010111011000001011100001111000011011101101101110", "111110000011001110110111011101111001100101001100001010000011011101101101111", "101000000011100110101101010011111001001101011000001101010011011101111101111", "111110000011000100101101010001111001001001001100001011010011011101111101100", "111110000011000110100111010001111110011100011100011010100011010101111100010", "110100001001000010001010010001111001001110011110001011000111011001111101110", "111110000011000110111111010011111000001101011101001001000011011101111101110", "111110000011000110101111010011111001001101011100001011000011011101111101110", "100110000011000110001111010110101001001101111000101010010010001101111100100", "111110000011000110101111010011111001001101011100001011000011011101111101110", "111110000011000110101111010011111001001001011010101011001011011111111101110", "111110000011000110101111110011111001001101011100001011000011011101111101110", "111110010011010110100110010001111001001101011100011011000011011101011101111", "111110000010000010100111010011010000001101011100001011000010011111111101011", "111101000010000110101001010011011101001101010000001011000010011000011100110", "111110000011000110001111010011111001001001111100001011000010011101111101110", "110111000011000111111111000011111001010110011100001011001011011101111101110", "111110100011000110001111010011111001001101111100001001000011011101111101110", "111010100011001010101111000001111001001100011100001011000011011001111101111", "111110000011000110101111010011111001001101011100001011000011011101111101110", "101110100011010110001111011010111001001101011110011010000001011101111101011", "110110000011100110101111010111111001000101011100001011000011011101111101110", "100110100011000110101111010011111001001101011100011011000011011101101101110", "111110000011000110101111010011111001001101011100001011000011011101111101110", "111111100011100010101111011111111001001101010100001001000010011001110101010", "111110000011000010101110010011111001001101011100001011000011011101111101110", "111110000011000110100111010011101001001101011100001011000011011101111101100", "111110101011000110101111010011111011101111011100001111000111100100000111101"}

    Returns: {29, 12, 18, 13, 14, 0, 1, 9, 11, 21, 25, 23, 19, 3, 8, 22, 24, 4, 27, 2, 17, 26, 20, 28, 6, 5, 7, 15, 10, 16 }

  48. {"1100110111101100010010111011101001101111101111000100010110111000001010010000111000000100011011001010", "1100110110111100010010111111101111101111111111000100000110111000001010010000111100000100011011001010", "1100110101101100010011111011101001101111101111001101010110111000001010000000111100000100011011001010", "1100110111001100000110011011000000111011111111000100010110111100011010010000111000001100010011001010", "1100110110101100010010111011101101100101101111000000000110110010001010000010111000000100011011001010", "1100110111101100011010111011101001101111101111000100010110111000001010010000111000000100011011000010", "1000110111111100010010110011100001101111101111100100010110111000001010010000111000000100011011001010", "1110110111101100010010110011101001101111101011010000100110011100000010010000111010001100011111001110", "1100110111101100010010111011101001101111101111000100010110111000001010010000111000000100011011001010", "1100110111101100010010111011101001101111101111000100010110111000001010010000111000000100011111000010", "1100100111101101110011011011001001101111101110001100010100111001001110010000111000000101011011000110", "1100111111101100011010111011100001101101101001001110010111111000001010010000111000000100011011001010", "1000101111101100010000110010111001101111110011000001010110111000001010110000111100000100111011001010", "1000110011101100010010111011101001101111101111000110010110111010001010010100111001100100001011001010", "1100110110101000010111111011001001101101001111000100001110111000001101010010011000000101010011001000", "1100110111101101010010111011111000000111100110000100010100111000101010000001111000011100101011001010", "1100110111101100010010111011101001101111101111000100010110111000001010010000111000000100011011001010", "1100110111101101010011111011100111101111101111010100110100011000101010110100111000000000111010001011", "1100110111101100010010111011101001101111101111000100010110111000001010010000111000000100011011001010", "0110110111101100010010111111101101101111101110000100010110111000001000010000111000011100011110101010", "1100010011101110110000111111111000101110101111010100010110111000001010010000111100000100011011001010", "1100110111101100001011111000101001101111101111001100111110111000101010110000111010000100011011001010", "1100110111111000010010111010101001101111001111000100010111111000001010010000111000000100011011001010", "1100110111101100010010111011111001101110101111000100010010111000001110011000111000000010000011101011", "1100110111101100010010111011101001101111101111000100010110111000001010010000111000000100011011001010", "1100110111000100010010111001101011011111100111100100010110111001011010010001101000000110011011001010", "1100110111101100010010111011100001101111101111010100010110111001001010010000111000000100011011001010", "1100110110101100010010111011101001101111101111000100010110111000001010010000111000000100011011001010", "1100110111101100110010111011101001101111101111000100010110111000001010010000111000000100011011001010", "1100110110101100010010101011101001101111101111000100010110111100001010010000011010000110011011001010"}

    Returns: {17, 21, 1, 19, 7, 13, 10, 2, 25, 20, 11, 23, 26, 28, 29, 0, 8, 16, 18, 24, 9, 5, 15, 12, 22, 6, 27, 3, 14, 4 }

  49. {"10100111110000001100000100001011100010010100010101", "10101111010000001000110100001011100011110100010101", "00100111110000100100001110001011100010010110011001", "10001111100000000110000001001011101000111100011011", "10100111110000001100000100001011100010010100010101", "10101110100000000100101100001001100011001100000101", "10110111110001001100111110001011111000010100011101", "00100111100000001101001100001011100000010100010101", "10010101110000001100000100001011100010010110010100", "10100111110000001100000100001011100010010100010101", "10000111110000001100000100001011100010010100010001", "10101110010000001000000011001011100110000100010101", "10100111110001001100000000000001001011010000010101", "10100111110000001100000100001011100010010100010101", "11100111000010101100000100000010101010011100000110", "10100111110000001100000100001011100010010100010101", "11100110110000001010100101101110110000011101010111", "10100111100111001000000100001010100110000001011111", "10100111110000001100000100001011100010010100010101", "00100111110100001101010101001011100011010110110111", "10110111110110001111000101001001111010010100010000", "10110011111100001011000101001100101110010100011111", "10101111110110001100010100000111101010011000010100", "10100111110000001100001100011011010110010100110101", "10101111110000000100000100001011100010010100110101"}

    Returns: {6, 19, 21, 16, 20, 23, 22, 1, 3, 17, 2, 24, 0, 4, 9, 13, 15, 18, 14, 11, 8, 7, 5, 10, 12 }

  50. {"10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010100001111110", "10100000000000000111000010001010001100000111101110101011011110101101110110111001100011011011001001010100110011110000001011010", "10101100100100100011000010001010001110000101101110101110011110111101110111011101100110111011001000110100110000010100001101110", "10101000101001000011000011001011011100001111110110101110011110001101110111011001100101111011001100110100110010000100000111110", "10101000100000000011000010001010001100000110101110101110011100101101110110011011100111101011001000010100110001010100001111110", "10100000110010000011000010001010001110001111101110101010111110101101110111011101100011011111000100010100110001010000011111110", "10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010100001111110", "10101000100000000011000010001010001110000111101110101110011110101111110111011001100111111011001000010100110001010100000111110", "10001000000000000011000010001010000100000010101110101110011110101101110111011001100111111011001010011100111001000110001111110", "10101000100000010011001010001010001110000011001110001110001110101001110111011111100111101011001000100101100001010100001011110", "00101000100000000011000010001010001100000111101110011100011110101100110011010001110111110011001010000100110000000100001111110", "10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010100001111110", "10101000110000000001000000001010001100000111101110101010011110011101110110011001100111111011001010010100110001010100101111110", "11101000100000000011000110001010001100000111101110101110011100011101110111011000100111111011001000010100110001110100000111110", "10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010100001111110", "10101000100000000011000010001010001100001111101100101110011110101101100111011001100111111001001000010100100101010100001110110", "10101000100000000011000010001010001100110111101110111110011110111101110111011001100111111011001000000100110001011100001111110", "00101000100010000011000010001110011100000110101100101110011110101101110111111001101111111011001000010110110001010100001111110", "11101000100000001011010010001010011100000001101110100110011010101101110111011001100011111011001000010100110001110110001111110", "11101000110100000011000010011010001101000011101110001100011110101001010111011001100111111010011000010100111101010100001101010", "10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010100001111110", "00101100100100000011010110001010000110000111101110001110011010101101110111011001100101111011001100010100101011110110001111110", "10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010100001111110", "10001000100000010111001011000010011100000110000110101100111110101101000111011001100111111011001010010100110010010100001111110", "10101110100000000011000010001010001100001111111111101110011110111101110111011001100111111010000000000000110001000100001111110", "10101000100000111011000010000010001100000111101110101010011111111101110110010001100111111011001000010100110001010100000111110", "10101000100000000011000010001010001100000111101110101110011110101101110111011001100111111011001000010100110001010000001111110", "10001000100000000011000010001010001100000111101110101110111110101101100111011001100111111011001000010100111001010100001111110", "10101000100010100011000010001010001101000111110111101110000110111001110111011001100111111011001000010101000001110100011111110"}

    Returns: {21, 16, 3, 17, 28, 5, 2, 18, 7, 24, 27, 0, 6, 11, 14, 20, 22, 19, 13, 25, 12, 23, 26, 8, 9, 4, 1, 15, 10 }

  51. {"001101000011100010011001010110110100110100010111101110001011100011001100011", "000011000011100000011001010111110110101100010011101100001011101001001000001", "001101000011100011011001110110110100110000010101101010001111100011001100001", "000001000001100011001001010110110100110100011011101110011011110011001100010", "011100000011000010011001010110100101110000010111100101001011110011000000111", "011100000111101010011101010111101100110101010011001110000011100011001100101", "101101100011011011010001110110111100110100011010111110001011000111001110011", "001101001011100010011001010110110101111100000111101111001011110011101000011", "000100000011100010011001010010110100110100000111101111001011110011001101011", "001101000011100010011001010110110100110100010111101110001011100011001100011", "000101101001100010010001011110111100110100011011101110001011110110101100011", "000101000010110100001011000110111100010100110111100010010011100011101100011", "001101000011100010011001010110110100111110010111101110001011011011001100011", "001001000010100010011101010110110101110100010111001110001011100111001000011", "001101000011100010011001010110110100110100010111101110001011100011001100011", "001101000001100010011101100110110100010000010011001110001011100011001100011", "101100100011110010011001110110110100110001010111101110001011100111101100011", "101001110001000010011001010010110000111100010111101110011001110011001100011", "001101000011100010011001010110110100110101011111101110001011110011001100011", "001111000011100011011001010110110100110100010110101110011111000111000110011", "101111000111100010111001010011100100100100010111101110011011111011001100011", "001101000011100010011001010110110100110100010111101110001011100011001100011", "000101000111100010010001010111100000010100010010111100001111100010100100011", "101000000011100011011101110110111101110000011011001010001011100011001100011", "001101010011101010010001010110110000110110010111101100001011100011001100011", "001101010111100010011101010110110000110100010111101111011011100101001101111"}

    Returns: {25, 6, 20, 16, 7, 10, 19, 12, 18, 5, 23, 17, 0, 9, 14, 21, 24, 8, 13, 2, 3, 11, 4, 15, 1, 22 }

  52. {"1000111100000101010100011010010110011101111010111100000001101010101000000011101001101100101110110100", "1000011100001101010000011000010110011101011010111100000011101010101000010011101001100100101110110100", "1001111100000101010100011010010110011101111010111100000001101010101000000011101001101101101110110100", "1000111100000101010100011010010110011101111010111100000001101010101000000011101001101100101110110100", "1100010100001101110000011010010110010101101010111100000001101010101000000011101011101000101111100100", "1000111100000101010100011010010110011101111010111100000001101010101000000011101001101100101110110100", "1000111100000101010100011010010110011101111010111100000001101010101000000011101001101100101110110100", "1000111100000101010100011010010110011101110010111100000001001010101000000011001000101100101110110100", "1000111100000101010110011010010110011101101010111100000001101000101000000011101001100100101110100100", "1000111101000101010000010100010110011101111010011100000001101011101000100001100001101100101110110100", "1010111100000101000100011011110110011101111010101101000101101010101000000011101011100100101010000100", "1000111100000101010100011011010110011101111010111100000001101010101000001011101001101100101110110100", "1010011110000101111100011111010110011100111010111110000001111110101000010011101111101101001110100000", "1000111100001001010110011110011111111101110110111101000001101000101000000011101001111100001110110110", "1010111100100101010000011000011110010101101010111100000001001010111110010011101000100100101110110100", "1000101000101101011100011000010110111101111011110100100001101100100100000011111000100000101110110001", "1000111100100111010100011010010010111101111010110100000000111111100000000011101101100100101110110100", "0000110100000101010100010010010110011101111010011100001101101010101010000111101001101100101110110100", "1000011110000011110100011000010010101101011000111000000001101010001000000011001001101000100110110100", "1000011110000111010100011010010110011111111010111100101001000010100010000010101101001100111110111100", "1100110100000101010110011010010010001100111010111100000001101011101000000001100100101100101110010100", "1000111100000101010100011010010110011101111010111100000001101010101001000011101001101100101110110100", "1100101100001101000111011011010110011100111000111000000101111000101000000010100001101100101110100100", "1000111111000101000100011010010111111101111010111100000001100011101000010011101000101100101110110100", "1000101100000101010100011010010110011101111010111100000001100010101000000011001001001100101110100100", "1000111100000100010100011010010100011101011010011100000001101010101000000011101101101100100110110110"}

    Returns: {12, 13, 19, 23, 2, 11, 16, 21, 17, 0, 3, 5, 6, 14, 15, 10, 4, 1, 9, 22, 25, 8, 20, 7, 24, 18 }

  53. {"0101110011100011011111100", "0001111011010111001001101", "1011111101001111010111101", "0101110011100011011111100", "0101110011100011011111100", "0111110011100011011111100", "0111110000100011000111000", "0101010100100010111101110", "0101110011100011011111100", "1000100011110011011111100", "0101100010100001001111100", "0101110011100011011111100", "0101100111100011001011000", "0010101001001111100111100", "0101001000101010011001000", "0011010011100011001100111", "0100010001100001111110100", "0101110011100011011111100", "1101110101100111010110010", "0101110011100011011111100", "0000001011000011011100001", "1111100001000011001101110", "0101110011100011011111100", "1111111001101110001111100", "0110111011101001011111000"}

    Returns: {2, 23, 5, 18, 0, 3, 4, 8, 11, 17, 19, 22, 24, 1, 9, 15, 7, 21, 13, 12, 10, 16, 6, 20, 14 }

  54. {"000001111111111010011111011011011100110110101010101001111111100101001011010", "000001111111111010011111011011011100110110101010100001111111100101001011010", "000001111111111010011111001011011100110110101011111001111111100101001011010", "000101111111111010010110011011011100110110111010101011111111100001011011010", "000000101011111010010110111011011100100010101010101101101111000100100011010", "000001111111111010011111011011011100110110101010101001111111100101001011010", "100001100101111111011111000010001100111110101010101011111110110101001111010", "010011111111110010111111011001011100110100101011100001111111100101001011010", "001001111111110010011111111111011101110100100011101111111111100101010010011", "000001111111111010011111011011011100110110101010101001111111100101001011010", "000001001001001010011110001111011100111100101010101001111110100111001011011", "000001111111110010010111011011011100110110001010101001111111100101001011010", "000001111111111010011111010011011100110110101010101001111001100101001011010", "100001110110111110001101011001011100010110011110101011111001100100000111010", "000011101110111001011111011011011100110111010010111001111111110000011111000", "000001111111110010010001011001011110110111101000111011111011101001101111010", "010001111001111000111101101111001110110110001011111001111111110111001011010", "010101111111111010001111111011111100110110001010101001111111100101111001011", "100001011111111010011011110011011100110110001011101001111110100100001011111", "000011110001111001001111011011011100010110111000101000111110000101001011011", "000101111111111010011110111011101101110110100010101101011111100101001011010", "000001111011111010011011011011011110110110101110101001111111001101011111010", "000000110111111110010010011011001011110010101010101001111111101101000011010", "000001111111111010011111011011011100110110101010101001111111100101001011010", "000101111011011010111101011011111100110110001010111011111011100101101011010", "010001000111101010010001011011101101111110101000011001101111101110101011010"}

    Returns: {8, 17, 21, 16, 3, 24, 2, 20, 14, 0, 5, 9, 23, 7, 15, 6, 18, 1, 11, 12, 25, 22, 13, 10, 19, 4 }

  55. {"001100100010110001111110101000010010101001001111100001111110001010101010100", "001100100110110001111110101000010010101001001111000001111110001010101010100", "001100100010110001111110101000010010101001001111100001111110001010101010100", "001100110010100001110110101000010100101001011111100001111110001010101010110", "001100100010110001010110111010010010100011011111100000110110001110101010100", "001100100010100001101110101000010010011001001111110001110110000010101010100", "001100100010110101111110101000010010101001001111100001111110001010101110100", "001100100010110001111110101000010010101001001111100001111110001010101010100", "101100100010010001111100101000011010101001001101100001111110001010101010100", "001100100010110001111110101000010010101001001111100001111110001010101010100", "001100100010110001111110101000010010101001001111100001111110001010101000101", "001100000010110001111110101000010010101001001111100001111111011011100010100", "001101100010110001101111101000010010111001001111100001011110001001101010110", "001100100010110001111110101000010010101001001111100001111110001010101010100", "001100100010110001111100101001010010101001001111100001111110001110111010100", "001101100010110001110011101000010010100001001111101001011110001010011000101", "001100100011110001011010111000010010001001010111110001111110001010101010100", "001100100010110011111110101000010010101001001111100001111110001010101010100", "001100101000110001011100101001010000101001001111100001110111101010110011100", "001110100010000001101110100000010000101000101111100001110100001010001011101", "000100000010110001110110100000010010101001001111100111110110001111101110101", "001100100010111101111110101000011010001001001111100001101110001010101010100", "001100100010110000111110101000010001101001001011100001111110001010101010100", "001100100010110001111110101000010010101001001111100001111110001010101010100", "001100100010110001111110101000010010101100010111100001011000101011100010100", "101111000011110001011100101001010010001001001111101111101010101010101010100"}

    Returns: {25, 14, 6, 12, 20, 11, 3, 17, 21, 18, 16, 10, 0, 2, 7, 9, 13, 23, 1, 4, 8, 15, 22, 24, 5, 19 }

  56. {"1100011101111111110101101", "1111110101110101111000010", "0100011101011111110111000", "1111000101111101101001000", "1100000101011111111111101", "1101011001100111110001101", "1110011101111110110100101", "1100011101111111110101001", "1100011101110111010101100", "1100011101111111110101101", "1100011101111111110101101", "0010110001111111111111100", "1001011010001001110001101", "1100001001011111110101111", "1000010111111111110101101", "0000010111010111101111110", "0110100111010100100101101", "1100010001111101100001101", "1100011101011111110100101", "1110101011111010110111101", "1101010101000100100111100", "1100011011011101110101101", "1000001100001101110001011", "0100011101110111110101101", "0010011101011111101101001", "1100011101111111110101101"}

    Returns: {19, 0, 9, 10, 25, 4, 14, 6, 7, 11, 13, 23, 21, 18, 1, 5, 24, 15, 8, 2, 3, 16, 17, 12, 20, 22 }

  57. {"00000000100000000000000000000000000000000000000000", "00000001000000000000000000000000000000000000000000", "00000000100000000000000000000000000000000000000000", "00000001000000000000000000000000000000000000000000", "00000000100000000000000000000000000000000000000000", "00000001000000000000000000000000000000000000000000"}

    Returns: {0, 2, 4, 1, 3, 5 }

  58. {"1111111111101111111111111", "1111111111111111111111100", "1111111111111111111110111", "1111111111111111111111111", "1111111111111111111110111" }

    Returns: {3, 0, 2, 4, 1 }

  59. {"11111111111011111111111110000000000000000000000100", "11111111111111111111111000000000000000000000011000", "11111111111111111111101110000000000000000000000100", "11111111111111111111111110000000000000000000000010", "11111111111111111111101110000000000000000000000001" }

    Returns: {3, 1, 4, 0, 2 }

  60. {"1111111111101111111111111000000000000000000000010011111111111011111111111110000000000000000000000100", "1111111111111111111111100000000000000000000001100011111111111111111111111000000000000000000000011000", "1111111111111111111110111000000000000000000000010011111111111111111111101110000000000000000000000100", "1111111111111111111111111000000000000000000000001011111111111111111111111110000000000000000000000010", "1111111111111111111110111000000000000000000000000111111111111111111111101110000000000000000000000001", "1111111111101111111111111000000000000000000000010011111111111011111111111110000000000000000000000100", "1111111111111111111111100000000000000000000001100011111111111111111111111000000000000000000000011000", "1111111111111111111110111000000000000000000000010011111111111111111111101110000000000000000000000100", "1111111111111111111111111000000000000000000000001011111111111111111111111110000000000000000000000010", "1111111111111111111110111000000000000000000000000111111111111111111111101110000000000000000000000001", "1111111111101111111111111000000000000000000000010011111111111011111111111110000000000000000000000100", "1111111111111111111111100000000000000000000001100011111111111111111111111000000000000000000000011000", "1111111111111111111110111000000000000000000000010011111111111111111111101110000000000000000000000100", "1111111111111111111111111000000000000000000000001011111111111111111111111110000000000000000000000010", "1111111111111111111110111000000000000000000000000111111111111111111111101110000000000000000000000001", "1111111111101111111111111000000000000000000000010011111111111011111111111110000000000000000000000100", "1111111111111111111111100000000000000000000001100011111111111111111111111000000000000000000000011000", "1111111111111111111110111000000000000000000000010011111111111111111111101110000000000000000000000100", "1111111111111111111111111000000000000000000000001011111111111111111111111110000000000000000000000010", "1111111111111111111110111000000000000000000000000111111111111111111111101110000000000000000000000001", "1111111111101111111111111000000000000000000000010011111111111011111111111110000000000000000000000100", "1111111111111111111111100000000000000000000001100011111111111111111111111000000000000000000000011000", "1111111111111111111110111000000000000000000000010011111111111111111111101110000000111100000000000100", "1111111111111111111111111000000000000000000000001011111111111111111111111110000000000110000000000010", "1111111111111111111110111000000000000000000000000111111111111111111111101110000000000000000000000001", "1111111111101111111111111000000000000000000000010011111111111011111111111110000000000000000000110100", "1111111111111111111111100000000000000000000001100011111111111111111111111000000000000000000000011000", "1111111111111111111110111000000000000000000000010011111111111111111111101110000000000000000001000100", "1111111111111111111111111000000000000000000000001011111111111111111111111110000000000000000000010010", "1111111111111111111110111000000000000000000000000111111111111111111111101110000000000000000000000111" }

    Returns: {22, 23, 28, 29, 25, 3, 8, 13, 18, 27, 1, 6, 11, 16, 21, 26, 4, 9, 14, 19, 24, 0, 5, 10, 15, 20, 2, 7, 12, 17 }

  61. {"11111110111111101101111111111111111111111111111111111111110111111111111111111011111111111111111111111111111111111111101110111", "11111110111111101101111111111111111111111111111111111111111111111111111111111011111111111111111111011111111111111111101110111", "11111111111111101001111111111111111111111111111111111111111111111111111111111011111111111111111111011111111111111111101110111", "11111111111111111001111111111111111111111111111111111111111111111111111111111011111111111111111111001111111111111111101110111", "11111111111111111001111111111111111111111111111111111111111111111111110111111011111111111111111111101111111111111111101110111", "11111011111111111001111111111111111111111111111111111111111111111111111111111011111111111111111111101111111111111111101110111", "11111011111111111001111111111111101111111111111111111111111111111111111111111011111111111111111111101111111111111111111110111", "11111011111111111001111111111111101111111111111111011111111111111111111111111011111111111111111111101111111111111111111111111", "11110011111111111001111111111111111111111111111111011111111111111111111111111011111111111111111111101111111111111111111111111", "11110011111111111001111111111111111111111111111111011111111111111111111111111111111101111111111111101111111111111111111111111", "11110011111111111001111111111111110111111111111111011111111111111111111111111111111111111111111111101111111111111111111111111", "11111011111111111001111111111111110111111111111111011111111111111111111111111111111011111111111111101111111111111111111111111", "11111011111111111001111111111111110111111111111111111111111111111111111111111111111011111111111111101111111111101111111111111", "11111011111111111001111111111111110111111111111111111111111111111111111111111111111011111111111111111111011111101111111111111", "11111011111111111001111111101111110111111111111111111111111111111111111111111111111011111111111111111111111111101111111111111", "11111111111111111001111111101111110111111111111111111111111111111111111111111111111011111111111111111111111111101110111111111", "11111111111111111001111111101111110011111111111111111111111111111111111111111111111011111111111111111111111111111110111111111", "11111111111111111001111111111011110011111111111111111111111111111111111111111111111011111111111111111111111111111110111111111", "11111111111111111001111111111111110011111111111111111111111111111111111111111111111010111111111111111111111111111110111111111", "11111111111111111001111111111111110011111111011111111111111111111111111111111111111011111111111111111111111111111110111111111", "11111111111111111011111111111111110011111111011111111111111111111111111111111111111011111111111111111111011111111110111111111", "11111111111111111011111111111111110111111111011111111111111111111111111111111111111011111111111101111111011111111110111111111", "11111011111111111011111111111111110111111111011111111111111111111111111111111111111011111111111101111111011111111111111111111", "11111011111111111011111111111111110111111111011111111111111111111111111111111111111010111111111111111111011111111111111111111", "11111011111111011011111111111111110111111111011111111111111111111111111111111111111110111111111111111111011111111111111111111", "11111011111101011011111111111111111111111111011111111111111111111111111111111111111110111111111111111111011111111111111111111", "11111011111101011011111111111111111111111111111111111111111111111111111111111111111110111111111111111111011111111111011111111", "11111011111101011011111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111011111101", "11111111111101011011111111111111111111111111111111111111111111111111111111111111111111111111110111111111011111111111011111101", "11111111111101111011111111111111111111110111111111111111111111111111111111111111111111111111110111111111011111111111011111101" }

    Returns: {10, 8, 9, 7, 11, 25, 24, 14, 16, 17, 19, 12, 6, 23, 22, 18, 26, 13, 15, 20, 0, 1, 2, 5, 21, 4, 3, 27, 28, 29 }

  62. {"11111111111011111111111110000000000000000000010000", "11111111111111111111111000000000000000000000001000", "11111111111111111111101110000000000000000000000100", "11111111111111111111111110000000000000000000000010", "11111111111111111111101110000000000000000000000001" }

    Returns: {3, 4, 2, 0, 1 }

  63. {"11000000000000000000000000000000000000000000000001", "10000000000000000000000000000000000000000000011000" }

    Returns: {1, 0 }

  64. {"11111111111111111111111110000000000000000000000000", "00000000000000000000000001111111111111111111111110" }

    Returns: {0, 1 }

  65. {"00000000000000000000000000001000000000001010000000000010000000000000100000000000000000000000000000001000000000000000000000000", "00000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000011000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000100000000000000000000000000000000", "00000000001000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000010010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000010000000000000000000000000000000000000000000000000000000000000010000000000100000000001000000000000000000000", "00000000000000000000000000001000000000000000000000000100000000000000000000000000000000000001000000000000000000000000000000000", "00000000000000000000000001001000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000001001", "00000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000001000010000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000", "00000000000000000000000001000000100000000000000000000000000000000000100000000000000000000000000000000000000000000000000001000", "00000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000100000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000001000000000000000000000100000000000000000000100000000000000000000000000000000000000000000000000000000100000000000000", "00000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010", "00000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001000000000000000000100000000000000", "00000000000000000000000100000000000000000000000000001000000000000000000000000100000000000000000000000000000000000000000000010", "00000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }

    Returns: {0, 12, 10, 27, 17, 22, 15, 26, 11, 2, 4, 20, 5, 8, 24, 25, 14, 16, 28, 13, 23, 1, 18, 3, 29, 6, 7, 9, 19, 21 }

  66. {"111111111111111111111111100000000000000000000000000000000000000000000000001", "000000000000000000000000011111111111111111111111110000000000000000000000010" }

    Returns: {1, 0 }

  67. {"10000000000000000000000000000000000000000000001100", "11000000000000000000000000000000000000000000000001" }

    Returns: {0, 1 }

  68. {"10000000000000000000000001100000000000000000000000", "11100000000000000000000001000000000000000000000000" }

    Returns: {1, 0 }

  69. {"00000000000000000000000001111111111111111111111111", "11111111111111111111111111111111111111111111111100" }

    Returns: {1, 0 }

  70. {"000000000100000000000000011000000000000000000000000000000000000000000000010", "000000000011000000000000010000000000000000000000000000000000000000000000001" }

    Returns: {0, 1 }

  71. {"100000000000000000000000011000000000000000000000000010000000000000000000000", "100000000000000000000000010000000000000000000000001100000000000000000000000" }

    Returns: {1, 0 }


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: