for i in range(30):
    addr=0x1400014AE+i
    byte=get_bytes(addr,1)#获取指定地址的指定字节数
    byte=ord(byte)^0x77
    patch_byte(addr,byte)#打patch修改字节