# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
import json
patches = []
for x in range(0, 64, 16):
for y in range(0, 256, 32):
patches.append({
'Source.X': x,
'Source.Y': y
})
print(json.dumps(patches))