[Reversing] Stack It

The following challenge description has been given:
lol it didn't load
Below is the file type:
lol it didn't load
Opening up Ghidra and analyzing the stack_it.bin, below is what we concluded.
lol it didn't load
The initialized two byte arrays were identified and extracted the hex contents.
Byte array 1:
lol it didn't load
Byte array 2:
lol it didn't load
We then XOR them together and got the flag. The following code has been used:

with open("1.txt", "r") as rf:
    one = rf.read().strip().split("\n")

with open("2.txt", "r") as rf:
    two = rf.read().strip().split("\n")

print("flag{",end="")
for i in range(len(one)):
    print(chr(int(one[i],16) ^ int(two[i],16)),end="")
print("}")


lol it didn't load
lol it didn't load