As for the source code of the script:
from cryptography.fernet import Fernet
import base64
password = input("Enter password: ")
if len(password) <= 32:
password = bytes((password.upper() + ("0" * (32 - len(password)))).encode())
else:
password = bytes(password[:32].encode())
key = base64.urlsafe_b64encode(password)
cipher_suite = Fernet(key)
try: print("Decrypted Message:", cipher_suite.decrypt(b"gAAAAABlAvLrzrIT5K716CaeNEaIbSC0dm4XqLlDmJ681XYVsMYY6priYBsgGfubWSF5WVAo2a35WgSwL2oa0oB0lI_5QWtgouGtOJAwlgOx-1CRcp-MmB0=").decode())
except: print("Invalid Password")
>>Click here to continue<<