# pyc instructions -> code (claude-sonnet-3.5)
import requests
import time
url = 'https://pastebin.com/raw/reG94Uy6'
response = requests.get(url)
credentials = response.text.strip().split(':')
username = credentials[0]
password = credentials[1]
user_input_username = input('Enter your username: ')
user_input_password = input('Enter your password: ')
if username == user_input_username and password == user_input_password:
print('Login successful!')
time.sleep(1)
print('Loading credentials')
time.sleep(5)
with open('credentials.dat', 'w') as interpreter_file:
interpreter_file.write(str(credentials))
print('Successfully loaded into credentials.dat')
else:
print('Invalid username or password. Please try again.')
input('Press enter to exit...')