Rating: 4.0

```
import string

# the result is compared with the following string
# found in memory with gdb
strz=list("adhmp`badO|sL}JuvvFmiui{@IO}QQVRZ")

solution = []

# is a stream chiper, and every char is xored with a counter starting from 7
for index, y in enumerate(strz):
solution.append( chr(ord(y) ^ (7 + index)) )

print("".join(solution))

```