master 68291f781a04 cached
18 files
593.3 KB
221.0k tokens
56 symbols
1 requests
Download .txt
Showing preview only (611K chars total). Download the full file or copy to clipboard to get everything.
Repository: Quantika14/guasap-whatsapp-foresincs-tool
Branch: master
Commit: 68291f781a04
Files: 18
Total size: 593.3 KB

Directory structure:
gitextract_jhisgfz7/

├── GuasApp_Forensic.py
├── LICENSE
├── README.md
├── Reports_Guasap_Forensic/
│   └── readme
├── check_root.py
├── hashdeep.py
├── images/
│   ├── NO-ROOT.PPM
│   ├── SI-ROOT.PPM
│   ├── logika14-1.PPM
│   └── logika14-2.PPM
├── modules/
│   ├── __init__.py
│   ├── apks_to_root.txt
│   ├── config.py
│   ├── dependencies.py
│   └── functions.py
├── parser_db.py
├── whatsapp_db.py
└── whatsapp_log_forensic.py

================================================
FILE CONTENTS
================================================

================================================
FILE: GuasApp_Forensic.py
================================================
#!/usr/bin/env python
#-*- coding:utf-8 -*-

'''
Copyright (C) 2018  QuantiKa14 Servicios Integrales S.L
'''

#********************************************
#TEAM QUANTIKA14
#AUTHOR: JORGE CORONADO A.K.A @JORGEWEBSEC
#AUTHOR: RAMON BAJONA 
#DESCRIPTION: APP FOR WHATSAPP FORENSIC
#DATE: 10-05-2018
#VERSION: 1.1
#********************************************

import parser_db, whatsapp_log_forensic, modules.functions, whatsapp_db, check_root, hashdeep, modules.config, modules.dependencies

from Tkinter import *
import os, time, socket, requests
from time import sleep
from distutils.version import LooseVersion

licencia=""
rute= ""
inten=False
menu=True
report=False
list_dbs=list()
info_root=list()
whatsapp_log=list()
label_root=False
root_posibility=None
popup_a=False
debugging=False
first_add=True

if os.name == 'nt':
	modules.config.adb_comm=modules.config.adb_w
	width_w = 72
	width_e = 63
else:
	modules.config.adb_comm=modules.config.adb_l
	width_w = 61
	width_e = 53

def enviar_licencia(licenci, root):
	global licencia
	global inten

	inten = True
	licencia = "true"
	root.destroy()
	print "[INFO][>] Licencia GNU V.3. Recuerde que siempre podrá contribuir con la causa aportando mejoras a la aplicación desde el repositorio de GITHUB."
	print "[INFO][>] ----------------------------------> WWWW.QUANTIKA14.COM/GUASAP-FORENSIC"

def info_root_f(root, pop_wait):
	global info_root
	global label_root
	global root_posibility
	global popup_a
	mensaje_deb = Label(pop_wait, text="Comprobando dispositivo...")
	mensaje_deb.place(x=20,y=60)
	pop_wait.update()
	info_root,roote=check_root.check_root(pop_wait)
	root_posibility=roote
	popup_a=True
	reloadd(root)


def popup():
	global info_root
	global label_root
	global root_posibility
	pop_root = Toplevel()
	imgicon = PhotoImage(file=os.path.join("images",'ico.gif'))
	pop_root.tk.call('wm', 'iconphoto', pop_root._w, imgicon)
	pop_root.title("Comprobar root")
	pop_root.configure(width=450, height=450)
	pop_root.resizable(width=False, height=False)
	if info_root[0]=="Root Device":
		imagen = PhotoImage(file="images/SI-ROOT.PPM")
		widget = Label(pop_root, image=imagen)
		widget.image = imagen
		widget.place(x=20,y=20)

	elif info_root[0]=="No root device":
		imagen = PhotoImage(file="images/NO-ROOT.PPM")
		widget = Label(pop_root, image=imagen)
		widget.image = imagen
		widget.place(x=20,y=20)
	elif info_root[0]=="No adb installed":
		mensaje = Label(pop_root, text="No se ha detectado adb por favor reintente despues de instalar")
		mensaje.place(x=40,y=40)
		mensaje.configure(foreground="red")
	elif info_root[0]=="No debugging actve":
		mensaje = Label(pop_root, text="No se han detectado permisos de depuración usb,\n por favor revise el telefono")
		mensaje.place(x=40,y=40)
		mensaje.configure(foreground="red")
	else:
		mensaje = Label(pop_root, text="Ningún dispositivo conectado")
		mensaje.place(x=40,y=40)
		mensaje.configure(foreground="red")
	label_root = True
	add_report(info_root, 0)

def whatsapp_deb(root, option):
	if option != 2:
		pop_wait = Toplevel()
		icon = PhotoImage(file=os.path.join("images",'ico.gif'))
		pop_wait.tk.call('wm', 'iconphoto', pop_wait._w, icon)
		pop_wait.title("Información WhatsApp Forensic")
		pop_wait.configure(width=500, height=220)
		pop_wait.resizable(width=False, height=False)
		mensaje = Label(pop_wait, text="Espere mientras se realiza el proceso")
		mensaje.place(x=20,y=40)
		pop_wait.update()
	en,out,err=os.popen3(modules.config.adb_comm+" shell ls data")
	err = err.read()
	#WIN LIN
	if "device unauthorized" in err:
		os.popen(modules.config.adb_comm+" kill-server")
		os.popen(modules.config.adb_comm+" start-server")
		print "Please connect your Android device with USB Debugging enabled:"
		mensaje_deb = Label(pop_wait, text="Por favor, conecte el modo depuración en la pantalla de su dispositivo")
		mensaje_deb.place(x=20,y=60)
		pop_wait.update()
		os.popen(modules.config.adb_comm+" wait-for-device")
		mensaje_deb.destroy()
	#WIN LIN
	elif "error: device" in err:
		print "No such device, please check the conection and restart app"
		mensaje_deb = Label(pop_wait, text="No se encuentra ningun dispositivo, por favor,")
		mensaje_deb.place(x=20,y=60)
		mensaje_deb2 = Label(pop_wait, text="compruebe la conexion y prueba de nuevo")
		mensaje_deb2.place(x=20,y=80)
		pop_wait.update()
		time.sleep(1)
		option = 0
	#LIN									WIN
	elif "sh: 1: adb:" in err  or "no se reconoce como un comando" in err:
		print "adb not installed, please install and restart app "
		mensaje_deb = Label(pop_wait, text="Adb no se encuentra en el ordenador, por favor,")
		mensaje_deb.place(x=20,y=60)
		mensaje_deb2 = Label(pop_wait, text="instala adb y prueba de nuevo")
		mensaje_deb2.place(x=20,y=80)
		pop_wait.update()
		time.sleep(1)
		option = 0
	if option == 1:
		info_root_f(root, pop_wait)
	elif option == 2:
		whatsapp_root(root)
	elif option == 3:
		whatsapp_mm(root, pop_wait)
	elif option == 4:
		whatsapp_db_f(root, pop_wait)
	elif option == 5:
		whatsapp_db_root(root, pop_wait)
	elif option == 6:
		whatsapp_log_f(root, pop_wait)
	elif option == 0:
		reloadd(root)

def whatsapp_root(root):
	option , version, marca = check_data()
	pop_roote = Toplevel()
	pop_roote.title("Information to Root device")
	pop_roote.configure(width=445, height=220)
	imgicon = PhotoImage(file=os.path.join("images",'ico.gif'))
	pop_roote.tk.call('wm', 'iconphoto', pop_roote._w, imgicon)
	pop_roote.resizable(width=False, height=False)
	mensaje = Label(pop_roote, text="Version: "+version)
	mensaje.place(x=20,y=40)
	mensaje.configure(foreground="green")
	mensaje_2 = Label(pop_roote, text="Mobile brand: "+marca)
	mensaje_2.place(x=20,y=60)
	mensaje_2.configure(foreground="blue")
	mensaje_3 = Label(pop_roote, text="App recommended to root: "+option["app"])
	mensaje_3.place(x=20,y=80)
	mensaje_3.configure(foreground="brown")
	
	if len(option["observaciones"]) > 60 and len(option["observaciones"]) < 150:
		mensaje_4 = Label(pop_roote, text="OBSERVATIONS:\n"+option["observaciones"][:65])
		mensaje_4.place(x=20,y=100)
		mensaje_4.configure(foreground="red")
		mensaje_5 = Label(pop_roote, text=option["observaciones"][65:130])
		mensaje_5.place(x=20,y=140)
		mensaje_5.configure(foreground="red")
		mensaje_6 = Label(pop_roote, text=option["observaciones"][130:])
		mensaje_6.place(x=20,y=140)
		mensaje_6.configure(foreground="red")
	elif len(option["observaciones"]) > 150 and len(option["observaciones"]) < 200:
		mensaje_4 = Label(pop_roote, text="OBSERVATIONS:\n"+option["observaciones"][:65])
		mensaje_4.place(x=20,y=100)
		mensaje_4.configure(foreground="red")
		mensaje_5 = Label(pop_roote, text=option["observaciones"][65:130])
		mensaje_5.place(x=20,y=140)
		mensaje_5.configure(foreground="red")
		mensaje_6 = Label(pop_roote, text=option["observaciones"][130:195])
		mensaje_6.place(x=20,y=160)
		mensaje_6.configure(foreground="red")
		mensaje_6 = Label(pop_roote, text=option["observaciones"][195:])
		mensaje_6.place(x=20,y=160)
		mensaje_6.configure(foreground="red")
	else:
		mensaje_4 = Label(pop_roote, text="OBSERVATIONS:\n"+option["observaciones"])
		mensaje_4.place(x=20,y=100)
		mensaje_4.configure(foreground="red")


def check_how_root(android_v, marca):
	perfect_option="none"
	other_option="none"
	pvm = LooseVersion(android_v)
	for dicts in modules.config.dicts_root:
		try:
			if dicts["version"]=="all":
				pvd = LooseVersion("20.20.20") 
			else:
				pvd = LooseVersion(dicts["version"]) 
		except:
			pvd = LooseVersion("20.20.20")
		if dicts["marca"]==marca and (pvd==pvm or pvd<pvm):
			perfect_option=dicts
		if dicts["marca"]=="all" and (pvd==pvm or pvd<pvm):
			other_option=dicts
	if perfect_option != "none":
		return perfect_option
	elif other_option != "none":
		return other_option

def check_data():
	command=modules.config.adb_comm+" shell getprop ro.build.version.release"
	command2=modules.config.adb_comm+" shell getprop ro.product.manufacturer"
	en,android_v,err = os.popen3(command)
	android_v=android_v.read()
	en,marca,err = os.popen3(command2)
	marca=marca.read()
	if android_v!="" and android_v!="\r\n":
		option = check_how_root(android_v, marca)
		return option , android_v, marca
	else:
		print "Version not found on device"

def whatsapp_mm(root, pop_wait):
	mensaje_deb = Label(pop_wait, text="Extrayendo archivos multimedia...")
	mensaje_deb.place(x=20,y=60)
	pop_wait.update()
	md5_cloned,md5_original=hashdeep.extract_mm(pop_wait)
	add_report((md5_cloned,md5_original),6)
	label_root=True
	reloadd(root)

def whatsapp_log_f(root, pop_wait):
	global whatsapp_log
	global label_root
	mensaje_deb = Label(pop_wait, text="Extrayendo/analizando logs...")
	mensaje_deb.place(x=20,y=60)
	pop_wait.update()
	whatsapp_log=whatsapp_log_forensic.extract_log(pop_wait)
	add_report(info_root, 1)
	label_root = True
	reloadd(root)

def whatsapp_db_f(root, pop_wait):
	global list_dbs
	global label_root
	mensaje_deb = Label(pop_wait, text="Extrayendo base de datos cifrada...")
	mensaje_deb.place(x=20,y=60)
	pop_wait.update()
	list_dbs=whatsapp_db.extract_db(pop_wait)
	add_report(list_dbs, 2)
	label_root = True
	reloadd(root)

def whatsapp_db_root(root, pop_wait):
	global list_dbs
	global label_root
# Begin comments for offline development (using db files from another device (require one for root checker)):
	mensaje_deb = Label(pop_wait, text="Extrayendo base de datos descifrada...")
	mensaje_deb.place(x=20,y=60)
	pop_wait.update()
	list_dbs,rows=whatsapp_db.extract_db_root(pop_wait)
# end "for offline development"
	# Adding last Trello tasks
	mensaje_num = Label(pop_wait, text="Obteniendo estadísticas de mensajes...")
	mensaje_num.place(x=20,y=100)
	pop_wait.update()
	total_messages, byConversation_messages, groups_members = whatsapp_db.count_messages(pop_wait)
	removed_id = whatsapp_db.detect_breakID(total_messages)
	msg_analytics = []
	# Appending the msg analytics of each extraction for in a future will be able
	# to do a comparison among Whatsapp backup DBs and create knowledge from the 
	# differences between these 
	msg_analytics.append([[total_messages], [byConversation_messages], [removed_id], [groups_members]])
	add_report(msg_analytics, 5)
	# end Trello tasks
# Begin comments for message analytics report while the final workflow is under construction:
	# add_report(rows, 5)
# end "for message analytics"
	label_root = True
	reloadd(root)

def add_report(data, option):
	global info_root
	global list_dbs
	global whatsapp_log
	global rute
	global first_add
	text_final=""

	if first_add:
		text_final+= modules.config.css
		text_final+="<h1>Guasap Forensic Report</h1><h2>QK14</h2>"
		first_add=False
	#Extrae la version de Android
	command = modules.config.adb_comm+" shell getprop ro.build.version.release"
	command2=modules.config.adb_comm+" shell getprop ro.product.manufacturer"
	#Ejecuta los comandos para extraer version
	en,android_v,err = os.popen3(command)
	en,marca,err = os.popen3(command2)

	android_v=android_v.read()
	marca=marca.read()

	if android_v!="" and android_v!="\r\n":
		if option == 0:
			text_final+="<p class='cabecera'><b>Root check</b></p>"
		elif option == 1:
			text_final+="<p class='cabecera'><b>Log information</b></p>"
		elif option == 2:
			text_final+="<p class='cabecera'><b>Encrypt DB check</b></p>"
		elif option == 5:
			text_final+="<p class='cabecera'><b>Decrypt DB check</b></p>"
		elif option == 6:
			text_final+="<p class='cabecera'><b>Extracted media</b></p>"
		t = time.strftime('%A %B, %d %Y %H:%M:%S')

		#Crea en el informe fecha y hora de Android
		text_final+="<h3> Date of system: "+ str(t)+"</h3>"
		#Obtiene la fecha y hora
		command = modules.config.adb_comm+" shell date"

		en,time_device,err = os.popen3(command)
		time_device=time_device.read()

		if ":" not in time_device:
			text_final+="Device Not found \n\n"
		else:
			text_final+="<h3> Date of device: "+ str(time_device)+"</h3>"
		text_final+="<p class='aversion'><b>Android version</b>: "+android_v+"</p>"
		text_final+="<p><b>Mobile brand</b>: "+marca+"</p>"
	else:
		text_final+="<p class='cabecera'>Device Information</p><br>"
		text_final+="<p class='aversion'>Android version: Not found</p>"
	if option == 0:
		text_final+="""<p class='rootinfo'>"""
		divo=True

		for i in range(len(info_root)):
			if i == 0:
				if info_root[i]=="Root Device":
					text_final+= "<b>Root Device</b>: Yes</p><br>"
				else:
					text_final+= "<b>Root Device</b>: No</p><br>"
			else:
				if divo:
					text_final+="<div>"+"Root files: "+info_root[i]["file"]+", "+"Directory: "+info_root[i]["directory"]+", App used to root:"+info_root[i]["App"]+"<br>"
					divo=False
				else:
					text_final+= "Root files: "+info_root[i]["file"]+", "+"Directory: "+info_root[i]["directory"]+", App used to root:"+info_root[i]["App"]+"<br>"
		text_final+="</div>"

		commandd = modules.config.adb_comm+" shell pm list packages -f"
		en,packages,err = os.popen3(commandd)
		packages=packages.read()
		packages = packages.split("\n")
		text_final+="</p>"
		text_final+="<p class='subcabecera'>Installed packages:</p>"
		text_final+="<p>"+packages[0]+"</p>"
		text_final+="<p>"+packages[1]+"</p>"
		text_final+="<p>"+packages[2]+"</p>"
		text_final+="<div id='list'>"
		for i in range(3,len(packages)):
			text_final+="<p>"+packages[i]+"</p>"
		text_final+="</div>"
		text_final+='<a id="boton_" href="#" onclick="javascript:listar();return false">Show all</a>'
	elif option == 1:
		clase_list=0
		if whatsapp_log!=None:
			for log in whatsapp_log:
				text_final += "<p class='hash'><br>------------------------"+"<br>"
				text_final += "-------  <b>Cloned</b>  ------"+"<br>"
				text_final+="MD5 [>] "+str(log["hash_clonado"].split(" ")[0])+"<br>"
				text_final+="Path [>] "+str(log["hash_clonado"].split(" ")[2])+"<br>"
				text_final+="--------<b>Original</b>-------"+"<br>"
				text_final+="MD5 [>] "+str(log["hash_origen"].split(" ")[0])+"<br>"
				text_final+="Path [>] "+str(log["hash_origen"].split(" ")[2])+"<br>"
				text_final+="NAME LOG [>] "+log["log"]+"</p><br>"
				text_final+='<a id="boton_log_info_'+str(clase_list)+'" class="botonlog" href="#" onclick="javascript:listar_log_'+str(clase_list)+'();return false">Show analytics</a>'
				text_final+="<div id='log_info_"+str(clase_list)+"' style='display:none'>"
				if log.has_key('deleted_msg'):
					msg_deleted=log["deleted_msg"]
					text_final+="<p>Deleted messages on log:<br>"
					for msg in msg_deleted:
						text_final+=msg+"<br>"
					text_final+="</p>"
				if log.has_key('dates_backup'):
					dates_backup=log["dates_backup"]
					text_final+="<p>Dates of backups:<br>"
					for date in dates_backup:
						text_final+="DB backup on date: "+date+"<br>"
					text_final+="</p>"
				if log.has_key('cons'):
					cons=log["cons"]
					text_final+="<p>Dates of connect: <br>"
					for con in cons:
						first=con["first_change"]
						sec=con["second_change"]
						text_final+="Date: "+con["time"]+"<br>"
						text_final+="Action: "+first["state"]+" | Name: "+first["name"]+"<br>"
						text_final+="Action: "+sec["state"]+" | Name: "+sec["name"]+"<br>"
					text_final+="</p>"
				if log.has_key("group_w"):
					groups = log["group_w"]
					text_final+="<p>Groups: \n"
					for group in groups:
						text_final+="Name: "+group["subject"]+", Owner: "+group["subject_owner"]+", Subject time: "+group["subject_time"]+"<br>"
						text_final+="Num creator: "+group["creator"]+", Date creation: "+group["date_creation"]+", Subject time: "+group["subject_time"]+"<br>"
						for user in group["users"]:	
							text_final+="Num de usuario del grupo: "+user+"<br>"
					text_final+="</p>"
				text_final+="</div>"
				text_final+="""<script>
function listar_log_"""+str(clase_list)+"""(){
        if ($('#log_info_"""+str(clase_list)+"""').css("display")=="none"){
          $('#log_info_"""+str(clase_list)+"""').show();
          $(boton_log_info_"""+str(clase_list)+""").text('Hide analytics');
        }
        else{
          $('#log_info_"""+str(clase_list)+"""').hide();
          $(boton_log_info_"""+str(clase_list)+""").text('Show analytics');
            }
      };</script>"""
				clase_list+=1
		else:
			text_final+= "WhatsApp Forensic doesn´t found WhatsApp"
	elif option == 2:
		i=0
		divo=False
		for dbs in list_dbs:
			if dbs["name"]!=None and dbs["name"]!="None" and "open ls" not in dbs["name"]:
				if i == 3:
					text_final+="<div id='list_dbs'>"
					divo=True
				db_v = dbs["name"].split(".")
				db_v = db_v[len(db_v)-1]
				text_final += "<p class='aversion'><b> Encrypt DB version</b>: "+db_v+"</p>"
				text_final += "<p class='hash'>------------------------"+"<br>"
				text_final += "-------  <b>Cloned</b>  ------"+"<br>"
				text_final+="MD5 [>] "+str(dbs["hash_d"].split(" ")[0])+"<br>"
				text_final+="Path [>] "+str(dbs["hash_d"].split(" ")[2])+"<br>"
				text_final+="--------<b>Original</b>-------"+"<br>"
				text_final+="MD5 [>] "+str(dbs["hash_o"].split(" ")[0])+"<br>"
				text_final+="Path [>] "+str(dbs["hash_o"].split(" ")[2])+"<br>"
				i+=1
			else:
				text_final += "<p> DataBase don´t found </p>"
		if divo:
			text_final+="</div>"
			text_final+='<a id="boton_dbs" href="#" onclick="javascript:listar_dbs();return false">Show all</a>'
	elif option == 5:
		i=0
		divo=False
		for dbs in list_dbs:
			if dbs["name"]!=None and dbs["name"]!="None" and "open ls" not in dbs["name"]:
				if i == 2:
					text_final+="<div id='list_dbs_root'>"
					divo=True
				db_v = dbs["name"].split(".")
				db_v = db_v[len(db_v)-1]
				text_final += "<p class='aversion'><b>Type DataBase</b>: "+db_v+"\n"
				text_final += "<p class='hash'>------------------------"+"<br>"
				text_final += "-------  <b>Cloned</b>  ------"+"<br>"
				text_final+="MD5 [>] "+str(dbs["hash_d"].split(" ")[0])+"<br>"
				text_final+="Path [>] "+str(dbs["hash_d"].split(" ")[2])+"<br>"
				text_final+="--------<b>Original</b>-------"+"<br>"
				text_final+="MD5 [>] "+str(dbs["hash_o"].split(" ")[0])+"<br>"
				text_final+="Path [>] "+str(dbs["hash_o"].split(" ")[2])+"<br>"
				i+=1
			else:
				text_final += "<p>DataBase don´t found</p>"
		if divo:
			text_final+="</div>"
			text_final+='<a id="boton_dbs_root" href="#" onclick="javascript:listar_dbs_root();return false">Show all</a>'
		#text_final += "<p class='subcabecera'>Deleted Messages</p>"
		# for row in data:
		# 	text_final += """<p class='messages'>"""+row.replace("Numero de telefono de whatsapp borrado", "WhatsApp phone number deleted").replace("\nTimestamp","; Timestamp")+"<br>"
		# text_final+="</p>"
		# Adding message analytics:
		# TODO: Create a new window that can offer  interaction to select or order messages by 
		# groups, users, dates,  etc.  and show message analysis customized by users. 
		text_final += "<p class='subcabecera'>Messages Analytics</p>"
		for elem in data:
			text_final+="<b>Total messages: </b>"+str(elem[0][0])+"<br>"
			text_final+="<b>Messages by conversations: </b>"+"<br>"
			for conv, msg_num in elem[1][0].items():
				text_final+=conv+": "+str(msg_num)+"<br>"
			text_final+="<b>Groups members: </b><br>"
			for group, members in elem[3][0].items():
				text_final+=group+" Members: "
				for member in members:
					text_final+="&emsp;"+member+"<br>"
			text_final+="<b>Deleted messages: </b>"+str(elem[2][0])+"<br>"
	elif option == 6:
		md5_cloned=data[0]
		md5_original=data[1]
		text_final+= "<p class='aversion'><b>Number of Media files</b> [>] "+str(len(md5_original))+"</p>"
		text_final+= "<p class='hash'><br>"
		for i in range(len(md5_cloned)):
			for has in md5_original:
				if has[1] == md5_cloned[i][1]:
					text_final+="------------------------"+"<br>"
					text_final+="-------  <b>Cloned</b>  ------"+"<br>"
					text_final+="MD5 [>] "+str(md5_cloned[i][1])+"<br>"
					text_final+="Path [>] "+str(md5_cloned[i][0])+"<br>"
					text_final+="--------<b>Original</b>-------"+"<br>"
					text_final+="MD5 [>] "+str(has[1])+"<br>"
					text_final+="Path [>] "+str(has[0])+"<br>"
					if i == 2:
						text_final+="<div id='list_media'><p class='hash'>"
					out=i
		if out>2:
			text_final+="</p></div>"
			text_final+='<a id="boton_media" href="#" onclick="javascript:listar_media();return false">Show all</a>'
	f = open (rute,'a')
	f.write(text_final)
	f.close()

def create_report_f(t):
	global rute
	t = t.split(",")[1].replace(" ","_").replace(":","_")
	rute = 'Reports_Guasap_Forensic/Report_guasap_forensic'+t+'.html'
	f = open (rute,'w')
	f.write("\n")
	f.close()
	return t

def reloadd(root):
	root.destroy()
#	root.update()

def on_closing(root):
	d = Dialog_exit(root)

def Dialog_exit(parent):
	top = Toplevel(parent)
	parent = parent
	imgicon = PhotoImage(file=os.path.join("images",'ico.gif'))
	top.tk.call('wm', 'iconphoto', top._w, imgicon)
	top.title("Salir")

	Label(top, text="¿Está seguro?").grid(row=0, column=0, columnspan=2)

	button1 = Button(top, text="Si, salir de la app", command= lambda: out(top,parent))
	button2 = Button(top, text="No.", command= lambda: icon(top, parent))
	button1.grid(row=1, column=0, padx=5, pady=5)
	button2.grid(row=1, column=1, padx=5, pady=5)

def out(top,parent):
	global menu
	menu=False
	top.destroy()
	parent.destroy()

def icon(top,parent):
	top.destroy()

if __name__ == '__main__':
	print modules.config.banner
	print "*********************************************************************************"
	print "/////////////////////////////////////////////////////////////////////////////////"
	print "*********************************************************************************"
	print "-- APP NAME: GUASAP FORENSIC                                                   --"
	print "-- Description: WhatsApp Forensic App                                          --"
	print "-- Created by QuantiKa14 Team                                                  --"
	print "-- Licencia GNU V.3                      Quantika14 Servicios Integrales S.L.  --"
	print "-- Authors: Jorge Coronado A.K.A @JorgeWebsec  / Ramon Bajona                  --"
	print "-- Date: 10-05-2018 | 19/12/2018                                                           --"
	print "-- Email contact: info@quantika14.com                                          --"
	print "*********************************************************************************"
	print "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||"
	print "*********************************************************************************"

	t=time.strftime('%A %B, %d %Y %H:%M:%S')

	create_report_f(t)
	
	#Comprobamos que las dependencias están instaladas
	modules.dependencies.check_dependencies()

	while(menu):
		root = Tk()
		root.configure(width=600, height=550)
		root.resizable(width=False, height=False)
		imgicon = PhotoImage(file=os.path.join("images",'ico.gif'))
		root.tk.call('wm', 'iconphoto', root._w, imgicon)
		imagen = PhotoImage(file="images/logika14-2.PPM")
		widget = Label(root, image=imagen)
		widget.image = imagen
		widget.place(x=40,y=10)
		imagen2 = PhotoImage(file="images/logika14-1.PPM")
		widget2 = Label(root, image=imagen2)
		widget2.image = imagen2
		widget2.place(x=40,y=500)
		root.title("Guasap Forensic version GNU V.3")
		w = Label(root, text="Introduzca número de licencia:")
		w.place(x=40,y=80)
		e = Entry(root, width=width_e, state=NORMAL)
		e.place(x=40,y=95)
		button = Button(root, text='Enviar', command= lambda: enviar_licencia(e.get(), root), height=1)
		button.place(x=495, y=90)
		if root_posibility == None:
				button_root = Button(root, text="CHECK indicios de ROOT", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 1))
				button_root.place(x=40, y=150)
				if licencia:
					button_root.config(state = NORMAL)
		button_roote = Button(root, text="Rootear dispositivo", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 2))
		button_roote.place(x=40, y=200)
		button_mm = Button(root, text="Extracción de Whatsapp multimedia", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 3))
		button_mm.place(x=40, y=250)
		button_dbc = Button(root, text="Extracción de Data Base cifrada", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 4))
		button_dbc.place(x=40, y=300)
		button_db = Button(root, text="Extracción/Análisis de DB (root)", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 5))
		button_db.place(x=40, y=350)
		button_log = Button(root, text="Extracción/Análisis de Whatsapp Log (root)", width=width_w, state=DISABLED, command=lambda: whatsapp_deb(root, 6))
		button_log.place(x=40, y=400)
		info = Label(root, text="Informe:")
		info.place(x=35,y=450)
		rute_la = Label(root, text=rute)
		rute_la.place(x=90,y=450)
		if root_posibility == True:
			button_root = Button(root, text="Comprobar rooteo en el dispositivo (Dispositivo rooteado)", width=width_w, command=lambda: whatsapp_deb(root, 1))
			button_root.place(x=40, y=150)
			button_root.config(foreground="green")
			button_log.config(state = NORMAL)
			button_db.config(state = NORMAL)
		elif root_posibility == False:
			button_root = Button(root, text="Comprobar rooteo en el dispositivo (Dispositivo no rooteado)", width=width_w, command=lambda: whatsapp_deb(root, 1))
			button_root.place(x=40, y=150)
			button_root.config(foreground="red")
			button_log.config(state = DISABLED)
			button_db.config(state = DISABLED)
		if inten:
			if licencia:
				button_roote.config(state = NORMAL)
				button_mm.config(state = NORMAL)
				button_dbc.config(state = NORMAL)
				e.config(state = DISABLED)
				a = Label(root, text="Licencia validada correctamente")
				a.config(foreground="#75507b")
				a.place(x=40,y=115)
			else:
				a = Label(root, text="Licencia no valida")
				a.place(x=40,y=115)
		if popup_a:
			popup()
			popup_a=False
		if label_root==True:
			label_Root = Label(root, text="Trabajo finalizado.")
			label_Root.config(foreground="red")
			label_Root.place(x=250,y=430)
			label_root==False
		root.protocol("WM_DELETE_WINDOW", lambda:on_closing(root))
		root.mainloop()
 



================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
# Guasap Forensic
The Guasap Forensic implemented in Python under the GNU General Public License, for the extraction and analysis of files, data bases and logs for forensic WhatsApp.

# What it does?

1. Check root in device
2. Extract DB and multimedia files (no root)
3. Extract and analyze (deleted messages and others) DB and logs (only root)
4. Create a report with the results

# How to use?

$ python Guasap_Forensic.py

[![HOW TO USE GUASAP FORENSIC](https://quantika14.com/wp-content/uploads/2017/01/slider1_qk14-1400x500.jpg)](https://www.youtube.com/watch?v=AZaTOYx6ELA&t=5s)

# Images

![example](/images/guasap.png)

# Contact

* Twitter: @QuantiKa14
* Web: www.quantika14.com
* Email: info @ quantika14 . com


================================================
FILE: Reports_Guasap_Forensic/readme
================================================
******************************************************
*** CARPETA DONDE SE GUARDA LOS INFORMES
*** QUE GUASAP FORENSIC AUTOMÁTICA CREA CON 
*** LOS RESULTADOS.

******************************************************
*** PARA MÁS INFORMACIÓN PUEDES CONTACTAR 
*** CON QUANTIKA14
*** WWW.QUANTIKA14 - INFO @ QUANTIKA14.COM
*** TWITTER: @QUANTIKA14


================================================
FILE: check_root.py
================================================
#!/usr/bin/env python
#-*- coding:utf-8 -*-

import modules.config, modules.functions, os
from subprocess import Popen, PIPE, STDOUT
from Tkinter import *

root_posibility=False

#A partir de esta línea comenzamos a verificar si el dispositivo está rooteado.
def check_root(pop_wait):
	root=check_su()
	count=1
	list_root_info=list()
	list_root_info.append(root)
	if root != "No adb installed":
		mensaje_deb = Label(pop_wait, text="Buscando aplicaciones que requieren de Root...")
		mensaje_deb.place(x=20,y=80)
		pop_wait.update()
		for directory in modules.config.directory:
			a = modules.config.adb_comm+" shell ls "+directory+"Download/"
			a = os.popen(a).read()
			print "Checking root... \n"
			if "No such file" not in a and "sh: 1: adb:" not in a:
				a = a.replace("\r","").split("\n")
				for apk in a:
					#A partir de esta línea, lee el archivo "apks_to_root.txt" y compara los nombre de las aplicaciones con el de los paquetes y/o aplicaciones en la carpeta de Descargas.
					for line in open("modules/apks_to_root.txt", "r"):
						line = line.split("||")
						for lin in line:
							if "|" in lin:
								continue
							else:
								if lin in apk:
									#A partir de esta línea nos indica que se ha localizado una aplicación  en la carpeta de Descargas que permite realizar un rooteo.
									print "Find root file"
									print "App: "+line[0].title() +" ---> "+apk 
									print "Directory: "+ directory+"Download/"+"\n"
									name_d="dict_"+str(count)
									name_d={"App":line[0].title(), "file":apk, "directory":directory}
									list_root_info.append(name_d)
									count+=1
			#A partir de esta línea comienza a buscar en todo el dispositivo alguna aplicación que permita realizar el rooteo.
			for line in open("modules/apks_to_root.txt", "r"):
				line = line.split("||")
				for lin in line:
					if "|" in lin:
						lin = lin.split("|")
						b = modules.config.adb_comm+" shell ls "+directory
						b = os.popen(b).read()
						b = b.replace("\r","").split("\n")
						for bpk in b:
							for li in lin:
								if li in bpk:
									print "Find root file"
									print "App: "+line[0].title() +" ---> Evidence: "+bpk 
									print "Directory: "+ directory+"\n"
									name_d="dict_"+str(count)
									name_d={"App":line[0].title(), "file":bpk, "directory":directory}
									list_root_info.append(name_d)
									count+=1
					else:
						b = modules.config.adb_comm+" shell ls "+directory
						b = os.popen(b).read()
						b = b.replace("\r","").split("\n")
						for bpk in b:
							if lin in bpk:
								print "Find root file"
								print "App: "+line[0].title() +" ---> "+apk
	 							print "Directory: "+ directory+"Download/"+"\n"
								name_d="dict_"+str(count)
								name_d={"App":line[0].title(), "file":bpk, "directory":directory}
								list_root_info.append(name_d)
								count+=1
			print "Change directory..."
	magisk=check_magisk()
	if magisk:
		list_root_info.append(magisk)
#	list_root_info.append(root_posibility)
	if len(list_root_info)<2:
		print "No se han encontrado evidencias de root."
	return list_root_info, root_posibility

def check_magisk():
	a = modules.config.adb_comm+" shell cd data/data/adb && ls"
	a = os.popen(a).read()
	b = modules.config.adb_comm+" shell cd data/adb && ls"
	b = os.popen(a).read()
	if "magisk" in a or "magisk" in b:
		print "Find root file"
		print "App: Magisk"
		print "Directory: data/adb\n"
		return {"directory":"data/adb","App":"Magisk","file":"magisk_debug.log"}
	else:
		return False

#Aquí comprobamos a través de un comando si el dispositivo dispone de permisos de root.
def check_su():
	global root_posibility
	command = modules.config.adb_comm+" shell su 0 ls /data/data/com.whatsapp"
	#p = Popen(command, shell=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
	#output = p.stdout.read()
	en, output, error=os.popen3(command)

	err = error.read()
	out = output.read()

#Nos devolverá este error si en nuestro equipo no tenemos instalado ADB
	if "sh: 1: adb:" in err or "no se reconoce como un comando" in err:
		print "No adb installed"
		root_posibility=False
		return "No adb installed"
#Nos devolverá este error si no hemos autorizado la depuración USB en nuestro dispositivo
	elif "device unauthorized" in err:
		print "No debugging actve"
		root_posibility=False
		return "No debugging actve"
#Nos devolverá este error si el dispositivo no se encuentra conectado a nuestro equipo
	elif "error: device" in err:
		print "No such device..."
		root_posibility=False
		return "No such device"
	else:
#Nos devoverá este error si nuestro dispositivo no dispone de permisos de root o no se encuentra rooteado
		if "su: not found" in out:
			print "No root device..."
			root_posibility=False
			return "No root device"
#Nos devolverá este aviso en caso de que el dispositivo esté rooteado
		else:
			print "Root Device detect..."
			root_posibility=True
			return "Root Device"


================================================
FILE: hashdeep.py
================================================
#!/usr/bin/env python
#-*- coding:utf-8 -*-

import os, time
import os.path as osp
import hashlib
import modules.config, modules.functions
from Tkinter import *

def write(text):
    """ helper for writing output, as a single point for replacement """
    print(text)

# --- helpers ---
def filehash(filepath):
	blocksize = 64*1024
	md5 = hashlib.md5()
	with open(filepath, 'rb') as fp:
		while True:
			data = fp.read(blocksize)
			if not data:
				break
			md5.update(data)
	return md5.hexdigest()

def check_directory():
	for directory in modules.config.directory:
		direct = modules.config.adb_comm+" shell ls "+directory+"WhatsApp/Media/"
		a,b,c = os.popen3(direct)
		b = b.read()
		if "No such file or directory" in b:
			continue
		else:
			return directory

def pull_media(directory):
	pull = modules.config.adb_comm+" pull "+directory+"WhatsApp/Media Whatsapp_Extracted_Media/"
	a = os.popen(pull)
	print pull
	print a.read()

def get_subdirectoris(directory):
	ls_recursi = modules.config.adb_comm+" shell ls -R "+directory+"WhatsApp/Media"
	a, b, c = os.popen3(ls_recursi)
	b = b.read()
	return b

def get_mdinfo(path, i):
	name =path+"/"+i
	if os.name == 'nt':
		name = name.replace(" ", "\\ ")
	else:
		name = name.replace(" ", "\\\\ ")
	md5 = modules.config.adb_comm+" shell md5 "+name
	hash_ = os.popen(md5).read()
	if "/sh" not in hash_:
		return name, hash_.split(" ")[0]
	else:
		md5 = modules.config.adb_comm+" shell md5sum "+name
		hash_ = os.popen(md5).read()
		return name, hash_.split(" ")[0]

def extract_mm(pop_wait):
	md5_original=list()
	md5_cloned=list()
	files=list()
	on_rute=False
	on_file=False
	subdirectoris=list()
	modules.functions.create_dir_media()
	directory = check_directory()
	pull_media(directory)

	# --- /helpers ---

#	write("""\
#	%%%% HASH_CHECK
#	%%%% size,sha256,filename
#	##
#	## Clone media hash check
#	##""")

	mensaje_deb = Label(pop_wait, text="Creando hash y comparando...")
	mensaje_deb.place(x=20,y=80)
	pop_wait.update()
	mensaje_deb = Label(pop_wait, text="(Este proceso varia su duracion en base a los archivos multimedia)")
	mensaje_deb.place(x=20,y=80)
	pop_wait.update()

	PATH = 'Whatsapp_Extracted_Media/'
	""" Clone media data check """
	for path, dirs, files in os.walk(PATH):
		for fpath in [osp.join(path, f) for f in files]:
			md5 = filehash(fpath)
			name = osp.relpath(fpath, PATH)
#			print "---------------------"
#			print "MD5 [>] "+str(md5)
#			print "Path [>] "+str(name)
			md5_original.append((name,md5))
	print "Finish hash cloned..."

#	print '\n'
#	write("""\
#	%%%% HASH_CHECK
#	%%%% size,sha256,filename
#	##
#	## Original media hash check
#	##""")

	ls=get_subdirectoris(directory)
	ls=ls.replace("\r", "").split("\n")

	for l in ls:
		if "/" in l and on_rute:
			if on_file:
				files.append(path.replace(":",""))
				subdirectoris.append(files)
				on_rute=False
				on_file=False
				files=[]
			else:
				on_rute=False
				on_file=False
				files=[]
			path=""
		if "/" in l:
			path = l
			on_rute=True
		elif "." in l and on_rute:
			file_l = l
			on_file=True
			files.append(file_l)
		else:
			continue

	for directory in subdirectoris:
		path=directory[len(directory)-1]
		for i in range(len(directory)-1):
			name, md5 = get_mdinfo(path, directory[i])
			md5_cloned.append((name,md5))
#			print "---------------------"
#			print "MD5 [>] "+str(md5)
#			print "Path [>] "+str(name)
	print "Finish hash origin..."
	print "Comparing..."
	for i in range(len(md5_cloned)):
		for has in md5_original:
			if has[1] == md5_cloned[i][1]:
				print "-----------------------"
				print "-------  Cloned  ------"
				print "MD5 [>] "+str(md5_cloned[i][1])
				print "Path [>] "+str(md5_cloned[i][0])
				print "--------Original-------"
				print "MD5 [>] "+str(has[1])
				print "Path [>] "+str(has[0])
#				time.sleep(1)
	return md5_cloned, md5_original


================================================
FILE: images/NO-ROOT.PPM
================================================
P6
400 400
255
۞juRuS΋ؗkM^ިު΋}\sRtτ}\z^٤ۡnP|X֚mL{ZrRhrN|`єόpsSnpO{ZxVфxXtWboNtTՐ֍uTvS}[؞ߥtQuStڗ~pQhۅhxYvT]ޔyxVrWՕrOsU҈qMz]qQcݡpn·y]zZ~aԈnNbrKy[pMjݥ|[sRtNhޣrP{Zn÷ާઽޭެެެܧ{^pQ~ЈtPvWrPzڛy]uS{^uU||wWuRӔ㺮ٛ҆rhfxYz[{Z{Y|Z|[zY{Zbioz҂ؔԐpN|Zԁ`yWuUuW֔ҌsOvXxWtOgz\yV{`øާӍvbvQoJoNrRsSuRxWxUvVvVvUvUuTvVsSrQrQnJnLpM~_p̀ܣۜknI}qK{[sP_ҌqPuTtYrQgݦrOxTsڻݫхguQnGrMvS{Y{Z{[yWyWxVxVwUvVvUxVyVwUwUwUxVyWzXzXzXxVvTpKuSwWy[lKؗpO}YtVb֋sLuYwWsSoxxZsWיаڝstRpIsSuY{YyVxYwWwTvSxVxVwUxVwUvVvUwUwUwUwUwUwUxVwUwUwUwUxV{YyWxVwUuUo؜ρqR{XsSiӊqSzYvU|VxW}\wMvY⩭ݖknNqQ~^xZx\w\tVuTwVxVxWwVxVwUwUxVwUxVwUwUwUwUwUwUwUwUxVxVvTwUwUxXxVxVwUyWsQoMfדy[tXvVtT~dsoMx]xUyVxZwU{W|ZoLqQxZyYuTuWvSyTxUwTwTwUxWxYwUxVxVxVxVxVwUwUvVwVxVwUxVxVxVwUxVxVxVxUxUxVxVsS{Z[uStUlݟnLxZxUuWuTqRxXvTvWyXޭvYuVwU~YyWsSuR|UvSxUxUvWuXwWwUwTwTwUwUxVxVxVyVwUxVvVwVxVxVxVxVxVwUxVxVxVxTxUxXxXvVuUsStT{ZpQpMvެovSxYyUuVvVy[uRtT{_߯ڛvZwXxVvUxVxVxVwUxVxVxVxVxVxVxVxVxVxVxVxVxVxVxVxVxVyWyWxVxVwUxVxVxVxVwUwUxVxVwUxVwUuVvUxUwUuVxX{XoO{\ۛϙ́uXvRxVxVxVxVxVwUwXxR|]ȑxlJx\wWvUtZwVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVyWyWyWyWxVxVxVxVxVxVwUwUxVxVxVxVxVvVvUwUwUuUwTyUwWwXpM~ΈjqRvXxTxVxVxVyWyWxVxXxUwWt㵁gsQyYxW|TwRtWwUwUwUyWxVyWyWyWyWyWyWyWxVyWyWxVxVxVxVyWyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVxVvTvUwWvVwVtWvTuVu[yWwPàsRzVwVxXxVxVxVyWyWxWxUxXxVsTψߢw]y[xXtTwRtSuVxUxVxVxVyWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVwUxUuUsTvVyVxVvUuYuTuSyVtTuRҏrO}\tRwWxUxVwUxVyWyWxWxSwZxVvUsTڛrRxWuVwUuUuTuUxWxVwUxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUyWxVyWxVuTvVyXvWuUyVuYyXzUvXxUxVxWxVwVwWvWxWvVޥw\vVwUvUwVwVxVxVyWyWyWyWyWxWxVwYyUrٖsRzXwUwUwUwUwUwUxVxVwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUxVxVxVxVwUwTtPwVwTrNtQwTuTuTxVxVxVxVxVxXxXxXyYwWćgvVxVwUwUxVxVxVxVyWyWyWyWyWxVxVwVwSrOٜpSyXvTwUwUwUwUwUwUwUwUvTwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVxVxVwUuUuQxUsRxVhgtUsQ|WwUxVxVxVwUwUxVwUwUwZxWynJ{ZwUwUwUwUxVxVxVxVyWyWyWyWxVxVvVvUuSx]zXwTwUwUwUwUwUwUxVxVxVyWwUvTxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUwUwUuVkڛԪԛisQwUxVxVxVwUwUxVxVwUvTxU|\ЉrSxXtTxVxVwUwUxVxVxVyWyWyWyWyWxVxVwXwVsR{etTzZuRwUwUwUwUwUwUxVuTuTvTxVyWxUxVyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVxVwUwUuVf}axVwUxVxVxUxUxUxUwTvUvVwWj٩z[sRwRxUxVxVxVxVxVxVxVxVxVxVyWyWxVxVyUxQxVΎovTuVwWxVxVxVwUwUvUuSyRzX|^w\|YtUvSxVwUxVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxXxVwTvUz[mFޥnKwVwTxYyVxVxVxVxVwVxYuSvSӋÄhtTzXxVxVyWyWxVxVxVxVxVvVvVwVxVxVwUwUtXwUtRՏnMwXvU{UxWxVxVwUwUwUvVaט㫩֐}dsSvWxVxVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWwUyWxXxVwTwV{\iFlKzZwTxWyVyWyWxVxVxWuWwU|[pJlpPvVvTxVxVyWyWxVxVxVxVxVuUvVwUwUwUwUwUvUwUuXݬuUwVwTzVxTsVyWxVvTxVvThޭ^sRyWxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwWwUwTwV}[lGkKyYwTxWyVyWyWyWxVxUwPyTyUtUcЊsSyTtTyWxVxVyWyWxVxVxVxVxVuUuUwUxVxVxVxVwUuÙϋouSyYvSyWtWwUxVwUwUwUxWכӈvUxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwWxVyVwUyZlJڠԌrSvXwSxUyUyWyWyWxVuXxUxUvTw[oMؒڡ{XxZyZuUwUxVyWyWyWxVxVxVxVxVvVvVwVxVxVxVxVvUwZ֑mI}ZsTvUvUvVyTxVwUyWtR~_۝yTwUxVwUwUwUwUxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVvUwUxUvUwWuUyVܧuYwVuUwUxUxVyWyWyWxVwVwVvUwXvRzVuSǃduTyXuXvUvTxVxVyWyWxVxVxVxVxVwVwVwVwUwTyXyZvYσbuWzXvVvVxVxVwVxVwUwUuSaٙxXxVxVxVxVwUwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUwUxVwUwUvWwYvX|֑҈tyZuUwUwUxVxVxVyWyWyWxVxVwUwUwUwUwUrOՎtqQyXwSyWxVxVxVxVyWyWyWxVxVxVxVxVxVwVwTxRzXtWj҈mN}_tRxUyVxVvVvVxVwUxVvTz[ۣ·qRzXvTxVxVwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVwUwUxVxVxVuUvVzVsVtTwZw[sUtSyTvTxVxVxVxVyWyWyWxVxVwUwUxVvVsS|YsU͆wRvTzUyTwVxVxVxVxVyWyWyWxVxVxVwUxVxVuUxUvTtQz\濄hrTvUyQvUxUwUwVvVxVxVxVxVvV}bଂ_uRyWyWwUxVwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVvVsTtOzVzYwUyVyVxVwVwUwUxVxVxVyWyWyWxVxVxVwUxVxVvS|YoN֞ڞyTvWvUxTsTuWwUwUxVxVyWyWyWxVxVxVwUwUxVvU{YsWuXܤӑtPyWsUxVwVvVxVxVxVxVxVxVxVxUvPeӌ䮾ᬙ΃}`zWyXyWyWxVxVxVxVyWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVwVuVwVyVyWyWyWwWwWxVxVyWyWyWyWyWyWxVxVxVwUxVxVxVuVxWgayVvWxVxVvVyVxVxVxVyWyWyWyWxVxVxVwUwUxVvXvWwUˇЉotRyWwUxVxVxVyWyWyWxVxVwUxVxVxVvTwU}[{[rRvTxVzWxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVxVyWyWyWyWyWyWyWxVxVyWyWyWyWyWyWxVzWzWyVyVxVtTuSy[qNnuR|[xVxVyWyWxVxVxVyWyWyWyWyWxVvVwUzR{UtUsTrRgޥtUxVwUwUxVxVxVyWyWyWxVxVxVxVxVwUwUwUvTsSxXxVxVzWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVtTuS{[rOьЃuUySwTxVxVyWyWyWyWyWyWyWyWyWyWxVxVxRxXtWzWxZ|^фnJ{YuSwUxVxVxVyWyWyWyWxVxVwUwUwUwUxVxVvVvVxVxVzWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVwTvTwUwVhۜyYvSvXuRxVxVyWyWyWyWyWyWyWyWyWyWxVxVzVuSzVtQwZݢًstNzXvTxVxVxVxVyWyWyWyWyWxVxVwUxVwUvTvTvVvVxVxVzWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVvVuUuUvVuUyUwTtQ|[nL|]xXwVxYvUxVyWyWyWyWyWyWyWyWyWyWyWxVxVwXvVyRwXψ|awRxVxVxVxVxVxVyWyWyWyWyWxVxVxVxVwUxVxVvVvVxVxVzWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVvVuUuUuUuUyUxVuR{YkF۟qwUvUsS{UxWxVyWyWyWyWyWyWyWyWyWyWyWxVvVtUw^qRp֔oNz[xVxVwUxVxVyWyWyWyWyWxVxVxVwUxVxVxVxVxVxVxVyWyWxVxVyWyWxVxVxVxVxVyWxVxVyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVxVyWyWxVxVvVuUuUxVxVwUzXqMԊЉsQxVwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWxVxVxV{ZqP~avoIy^wUwUwUxVxVyWyWyWyWyWxVxVxVwUxVyWxVxVxVxVxVyWyWyWyWxVxVxVyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVvVvVvVwUwUxVwUsRo٢uN{WwUvTvTxVxVxVyWyWyWyWyWyWxVxVyWyWxVxVxVxW{[ݨۍqqPyVwUxVxVxVvUwVwVxWwVyWxVxVxVxVxVxVyWyWxVxVxVxVxVxVxVyWyWxVxVxVxVxVyWxVwUxVxVxVwUxVxVwUwUxVxVxVwVwVwVwVwVxVxVxVwUwUwUxVxVxVxVxVwUvTvTwUwUwUwUvTwUuTuUvVxVxVyWzXxWhz[yWuTwUwUwUxVxVyWyWyWyWyWxVxVxVxVwVwVwUwUwVsSыˆkqRxWwUxVxVxVuUvVvVvVuUxVxVxVwUwUxVwUxVxVxVxVxVxVxVxVxVxVxVwUxVxVxVxVxVwUwUxVxVxVwUxVxVwUwUwUwUxVvVvVuUuUuUxVxVwUwUwUwUwUwUxVxVwUyWyWyWzXzX{Y{Y{YzXxWvVuUuStRrPpNoOlK݋qqTxZvVwUwUwUxVxVyWyWyWyWxVxVxVwUwUvVvVtTyYrRrcsSwUxVxVxVxVuUvVxVxVxVxVxVwUxVxVxUxUxUxUwUvUxUxUxTuRuTwWxWwVvSuTwTxTtUwUvTwSxUuTuUuUuUuSvSwUsUuXtWtWuYvXvXzZyWy[yZ}^~]zYyVzXuSrMtMqNqNnKoJjEkDiFvU}`{_ixt~א֎ԑԈqNyWvSxUuUuUuUvVwWyWyWyWyWyWxVxVwUxVyXsTwYqQbޭ|^tTyVxVxVxVxVuUvVxVxVxVxVwUwUwUxVuXtWuXuXuVvWxWxWxVwUwUwVvVxYwZvWtTtSvSvUvUuVuU{X{Y|Y{Y|\|]|[{\yXyVyVuRtPrPnNlLqLpKiDgDnLyY|\cptwԅ҉ӎ٘ܟ۠qQ{YwUwUxVuUuUuUvVvVyWyWyWyWyWyWxVwUxVvUtTzZyY٢xYvVxVxVxVxVwUwUxVwUwUwUwUwUwUwUwUuTtSvUvTtVtVwWwWxWzVyUyVxVzUzWzV~Z~\{ZyXyVwVtQtQsPpMpMnJlGlHnKtQzZ{]ilny҄ЂӋؕՖڣ|[x\wUwUxVwUwUwUwUxVxVxVyWyWyWxVxVxVwUxVwRzZuRҋڜyWxWxXvTwUwUvTwTvTvTtTuUxVxVxVxVxVyV{X{X{Xz\y[yYyYyXuSsPtRrRoNoNnMmLiHnKrRyZy^inp{рф֎ՒӖݣⰾް՗pOxVxXxXwWwWwUwUxVxVxVxVyWyWyWxVxVxVxVxV{\wQuܝyVxXvWyWxW{YzXzW{XzXxXvVxVxVvTuSuSqPpOoNoNkJoNtQxUzVagipx~̀ЇԌӓޣ੽ݰ軺᫸৷ަԊч҂mk|_w|_xWwRwWwWwWxXyVyVyVyVxVxVyWxVxVxVxVxUxVxVrRc۠yZyWsSsQqQqPqOpLoJkGlKtUwWz]fjipzxЄщҒޣܦ߰丼᰹६חьӉylgwVlHkJnKnLnMpNsQtRtRvTzVtRtjJx\sTxVxVxVwUxUxUwTxUxUwWwWyWyWyVxUzTyXvVtZڡ{Z|Yaeiqtw}΄ד۠ۧ水ݠ֑Ջ҃rjanNlKkJlJmLqKrNtRsStTwXwXwY{]{Z{Z{Z{Z{[zXxVzXxV}VyW}_ܣnKyXyWxVxVxVwUxXxXwWxXxXvVvVxVxV{VvWuUzXrRؐDZ۠آ䴾䳫՗ؖ֏xphvWnMnLlJrOrPsSsTsSuTxUyWzY{W|V|X}W}YwXyXyXzWxWwWyWxUyUuSvTvTvTvUxVxVxVxVwXwWdަmHzXxTwUwUxVxVxXyYxXwWxXuUuUwUwUyTsQ{YqNv鿳ܢӎڕчpqbpNmJmMoLpMsPtMtPuRvSvTz[y]xZxYxXzZzX{X{WzWvXxWxVyVxVxVvVxUxUxUxUyVwTyTzWzVyUyUyVzV{WzWzWxVxVxVxVuVyZyZݤmJyYwUwUwUxVxVxVxVwUwUxVvVvVwUwUvSuUxUd汬יٕۚttpsTqRpPpMrQrRtWuStUuUwUwXvVyXxXyWxWwVwWwYxWvUwVwUuTwVuTwUxVwVxVwVvUvUyWzWxWxVyWxWxVwWxVyWyWxWwWxWyVyVwVwVxVyWyWyWyWxVxVxVxVuS~]iEߤlMxZtVvUwUxVvUwTwTwTwTxUvUvUwVwTvVyWuTŵܡ֝ݡҊwzcnNqQpOrPuRuStSsRwVxZwWsSwUwWxYxXuVuWtTuTwVwTwTxUxVwVwWxVwUvTwUwUxVxVxVxVvVvVuUuUuUwUxVxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVtS}_iFߦrS~ZuRwUwUwUwUwUwUwUwUxVxWuXxWuSxXsOՕ{tPy`tWuWwWwVxVvUxWuXvYwUwYwY|YzUwUxVvVuUvUwUwUwVwVwUxVvSxUxUwUwUwUvTvTwUwUxVxVwUwUxVxVvTwUyWxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVtT|\iGݣ~wTyWxVuVrSyVxVxVxVxVxVvWqWvTyWtRt—ˀx[sSvQuUuVkמtoOyVvOzTyWyXwWwUwTuRuTxUxWxZuWtUxUxVtTuWxUxUxUwTxUuUwUxVxVxVvWvVuUuTuUuUuUuUuUwUxVxVxVxVwUwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwTzWlEԐuVxSxUuUuUwUwUwUwUxVvTwQtSvV{Z^Օ~vZvYuTxT{VuUvSvTvY~fvmPyWuUyYxYuVuVvWuTuUuXtVwUxUvXtYxVxVuUvUwWwWwWwWwWtUtUuUvUvUvXuUvUvUuUuUuUuUuUxVxVxVxVxUwUwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxUyXlIԐؠsNxVyVyVvVwUwUvTwUyWzV{XvOzZяutStTwUyWwUwUxVxVxVwUuVuXؖφhK|YvUwUwUxVxVxVwVwVwVwVxVxVyWyWxVxVxVxVxVxVwUxVxVwVwVxVxVwUwUxVxVxVwUwUwUxVwUwUxVyWyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxUz[qN׌ڠxVyZvVuSwWwVuTwT{TsVtT{YޤږzuRzVxVxVwUyWyWxVxVwUuSvUs[xYЅjI|\wUwUwUxVxVxVxVyWyWxVxVxVyWyWxVxVxVxVxVxVxVxVyWyWxVyWyWxVxVyWyWyWxVxVxVxVxVxVxVyWyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvTz[qMvᮃgvSwSzXxVvUxWxWvWiؚoPzX{TxUxVyWxVxVxVxVwUxVuUvXwR^΅nM{[wUwUwUxVwUxVxVyWyWxVxVxVyWyWxVxVxVxVyWxVxVyWyWyWyWyWyWxVxVxVxVyWyWyWyWyWxVxVyWyWyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvSyWqRxܼ୕~x\vRuQgӌ̅ktR{WwUxWxVyWyWxVxVxVxVxVvUvSwUxRޥڗtTzXxVwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVwTxUrUvڪmH{ZxSwTxWxVyWyWxVxVwUxVxVuTuTvYvUpܟyXxTwUwUxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxUxUrSgՑoJzYwTyVyWyWyWyWxVxVxVwUxVxUyVuTvYtPؤ{YwWwUxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuRyVvV|]ҎnKyZuTvVyWyWyWyWxVxVxVwUwUwUyUuRwVrL䳂bvTxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuTxUxX|\ԐmKyYvUvVyWyWyWyWxVxVxVxVxVvUyVvTwZqOisQyWxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVyYvTy[sQՑpKzXxUyVyWyWyWyWxVxVxVxVxVvUvTxTxXoNćmtPyWxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxYuU|]jGڢԐqLzYxUxXyWyWyWyWyWyWyWyWyWxVyVxUzYqL֌trPyWvTwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxYtTy]iFݢԐqNzYxUxXyWyWyWyWyWyWyWyWyWxWyWxUzYqL{pOyWvTwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVtSw\lIזԐqNzYxUxXyWyWyWyWyWyWyWyWyWxWyWxUzYqL|nNyWvTwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxTuQxXoGҋԐrOzYxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL΁mL{YwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxUvUzZmHԉԐrOzYxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLԉkJ{YwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxUwY{[oNτԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZnKΏlH|ZxVwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuYtR{WqRtԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZnK՘oO|ZwUwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvWtS{WqQsԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYpMzYxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUvWyUuUjԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYpMݪz[xVxVwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVyTvXxUxV|\ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYpMbvTwVwUwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWwUxVyUvVvVxV|^ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoLLJksSwWwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWwUxVyVuStUzVwYԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoLʇmsSwWwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWwUyWxVuSuT}\lL؝ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoL֍qqQuUwTxUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxWvTuSz\jHٙԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVwWwUxXoLyoNxWwTxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxUvTwRz^gEבԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZoLЁpO{YwUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxUwVvUzWmMчԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUyZoLςnL|[wUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxUwVvVzWmMӅԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYoL֎lK~\wUxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyVwVuU{XoOԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWwWwUxYoLՒlJ}\vTxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVyVwVuUzWqQvԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWxWwUyYoLԔkJ}[vTwTxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUuUyVsRqԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLڞsPzVvUwRxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVuUuUyVtSkԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLzZxTuUxUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvVvVzWuTfԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL|]uSvXxUxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVvVvVyVvV|]ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL羃etRvXxVwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVvVvVyVwVxYԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLΈnsS{XvUwVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUyWsPܣԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLՍsrR{XvUwVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUzXnJӘԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLڑyqO{XwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUzXmJӓԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqLςoLzXwWxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUwUwUzXkJӋԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxWyWxUzZqL̈́pJzXwVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVvTzXlK̀ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVyWxUzYqLҊnMzXvSxTxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUwUyWoKЀԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVyWxUzYqLؑlFz]wUxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUyWpM{ԐrO{ZxUyYyWyWyWyWyWyWyWyWyWxVyWxUzYqLٗkEy_yVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwUyWtSnԐqNzZxUyYyWyWyWyWyWyWyWxVxVwUyWwTyXqL١nNyZxTxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwUyWsSjԏpNzZxUxXyWyWyWyWyWyWyWxVxVwUxVwTyXpMuXwVvSxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVwUwUxVtSeՏoN|ZyUxWyWyWyWyWyWyWyWxVxVwUwVwUxYoNz]xUvSyVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUxVxVxVxVxUz\޶ՏnM{YyUxWyWyWyWyWyWyWyWxVxVwUvUwTxYoN|bxVxUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVwUvTxVxVwUzZޭՏnM{ZyUxVyWyWyWyWxVyWxVxVxVwUvUwTxYnM̆muSzWwUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVxVwUwTwUݣՏnM{ZyUxVyWyWyWxVxVxVwUwUwUwUvUvTxYnMӊsuSyVwTxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUyWpNՒ֎pMyWxUuVyWyWyWyWxVxVxVxVwUvUwVuTxYrKڑurQ{ZwUyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVyWyWwUwU|ZiHЋՎmHzYxUvUyWyWyWxVxVxVxVxVxVvTyUxUvXnKсoN{ZxUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwU{YmJъיkG{ZzTuRyWyWyWxVxVxVxVxVxVwUxTxWvWsVӊnK{\wUxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwUwUwUwUwUzXpK΀uT{\zVvUyWyWyWxVxVxVxVxVxVuUwRyXvUσҎnI{\vTxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVwUwUwUzXpMxِumOyWuUwWyWyWxVxVxWxVwUwUvVwTwWvTؘmF{\vSxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVwUwUxXqMzrR{ZuQvQwSwUxXuVvWvUvUvSwUyWqPnڜhD|_vRxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVvVvVxVwUxUzYoOyҎvSyUyWxWvVuUvTvUuUwWxYx[rS~cٟjH|^wSxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVwVwVxVwUwU{[nN|ٝ̓vZtTuWxZzZzV{YxZvVxSvOcݩnL{ZwUxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVvUvU|YlHσٟdyYtTsTtSsOrPwWbr{ZxVwVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVxVxVvVuUyWxUٞ֬՗l`dzac̈́|^yVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxYyWxWsRxZqSoăfxVwUxVxVyWyWyWyWxVxVxVyWyWyWyWxVxVxVyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWxVyWyWyWyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWxVxVzVwUuNxT{WsQיԎurQxVxVxVyWyWyWyWxVxVxVyWyWyWyWxVxVxVyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWxVyWyWyWyWyWyWyWyWyWxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWyWxVxVxVyWyWyWyWyWyWyWyWyWxVxVvSuVwX|[pO|ޗ~qNzXwUxVyWyWxVxVxVxVxVxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWxVyWyWyWyWyWyWxVyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVyWyWyWyWyWyWyWyWyWyWyWyWxVxVyWyWvVvVwWwWvVxVxVxVxVzWvSvVqL΀ڐnJyWwUxVxVxVxVxVwUwUwUwUxVxVxVxVxVxVyWxVyWyWyWyWxVxVxVxVxVxVxVxVxVxVxVxVxVxVwUxVxVxVxVwUwUwUwUwUxVxVxVxVyWyWyWyWyWyWyWyWyWxVwUwUvTwUuUuUuUuUvVxVxVwUwUyVvXrPцvTvRvZuUsTwXuUzVxUtUuUxVwUxVwUwUwUwUyWyWyWyWyWyWxVxVtUuUwUtSvSxTwTuTvUuUvUvUwTxTxVwTuUwUvTuRwTyVwUwUxVxVyWyWyWyWyWxVxVwUxVwUtSwZxWzUzVxVwRuUuUvTuSuUsUw\ρ҄rQ}YzRsTwWuUuUxUwUuUxVwUxVwUxVxVxVyWyWyWyWyWyWyWxVtUuVxVuZvYwXwUvUtUuUvTwSwRvSwTxVxXxVxXuWtUtUwUwUxVxVyWyWyWyWyWxVxVwUxVxWsSuUqSpSrywٗܜכĂewZuXvSxTuUsUwUzVxVwUwUxVxVxVxVxVyWxVyWyWyWxVxVxVvVwVxUwTuTxVyWyV|VyUyXy\xZxXyYxUyVwUwUxVvUuTxVxVxVxVyWyWyWyWxVxVxVwU{YwS}ZܠyXvWxXwUwTuTtTvUxUvTvTxVxVxVxVxVyWxVyWyWyWxVxVyVvVwVxUxVxUuUvSwSsRqPpPnOnKpMqSnr|lxXxVxUwUwUxVxVyWyWyWyWxVxVxVwUyWuTw[鼆lpPyYyVzWwXwX{XyVxVwVwWwVwUxVyWxVyWyWyWxVxVxVxVwUwUzTwUuVoؕݥکדxYwVxUwUwUxVxVxVxVyWyWxVxVxVxVwUwUy[үٝnmJqMoNpNrNnHpIsTxUuUuUxVyWyVyWyWyWxVxVxVwUwUwUwWuVwWٗڝxVxVxXxVxVxVxVxVxVyWyWxVxVxVwUxVwTz\뽹ުߨ૸⬼繓vwTwVvVxVyWyVyWyWyWxVxVwUwUwUwUuVtUy[آٜwUwUwWwUwUxVxVxVxVyWyWxVxVxVwUxVvTz\ϊwVvVuUwUyWzWyWyWyWyWyWyWyWxVxVyXwU{XڜڝxVxVwWxVxVxVxVyWyWyWyWyWyWxVxVxVvS{]΃yVvVvVxVyWzWyWyWyWyWyWyWyWyWxVwYvV{YڡڝyWxVxXxVyWyWyWyWyWyWyWyWyWxVxVxVvS{]уyWvVvVwUyWzWyWyWyWyWyWyWyWyWxVxWuVzY۠ڜyXyXyWxVxVyWyWyWyWyWyWyWyWxVxVvVuT{^уyWvVvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠڜyYyXyWxVyWyWyWyWyWyWyWyWyWxVxVwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVxVwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWwWuT|^уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWyWvT|\уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWyWvT|\уyWwWvVxVyWzWyWyWyWyWyWyWyWyWxVyWwWzZܠۜyYyXyWxVyWyWyWyWyWyWyWyWyWxVyWyWvT|\уxVvVvVxVxVzWyWyWyWyWyWyWxVxVxVyWwWzZܠڛyYyXyWxVxVyWyWyWyWyWyWyWyWxVxVxVvT|\уxVvVvVwUxVzWyWyWyWyWyWxVxVxVxVyWwWzZܠڛyYyXyWxVxVxVxVyWyWyWyWyWxVxVxVxVvT{[ЅxVvVvVxVxVzWyWyWyWyWyWxVxVxVxVxUvU{Y۟ڝxVxVxXxVxVxVxVxVxVyWyWyWyWyWxVxVvSz[ЇxVvVvVxVxVzWyWyWyWyWxVxVxVxVwUxUvUzYڠٜxVxVxXwUxVxVxVxVxVyWyWyWyWyWxVxVvS{[ΉyXvVuUwUyWzWyWyWyWyWxVxVwUwUwUyXvV|[ٜۢxVxVxXwUxVxVxVxVxVyWyWyWxVxVxVxVwTyYҏyXvVuUwUxVyVyWyWyWyWxVxVxVwUwUvUvVyZ؟ڝxVxVxXwUxVxVxVxVxVyWyWyWxVxVwUxVvS|[߭ޥzZvUuUvTwVwUyWyWyWyWxVxVxVwUwUxWsRaۡwUvTwVwUxVxVxVxVxVyWyWyWwVxXuUxVwS|[z\tSxUxSxWvVyWyWyWyWxVxVxVwUwU{WqRqĄhtTxZwUxVxVxVyWyWyWyWyWwVxVvUxXtSdqsQyVzTzUvVyWyWyWyWxVxVxVwUwUxWiMґ{jNyYwUxVxVxVyWyWyWyWyWxUvQyTxXtUω}[wZz[xQxVyWyWyWyWxVxVwUvTxVqRh~btPwUxVxVxVyWyWyWyWyWxWuVyYvRcԐ{\wVvVxUyWyWyWyWyWyWxVwUvTw[ڤӑrRzXwUxVxVyWyWyWyWyWwWvUwWz[؜ӔqVtU}[wUtTvXwUxUuUwZwWwX՘ϏtUzZxWuTxVyXxZxWxU~]tSuQԘ"44Y#bIxXvUuUvVaF3X$!1"23Z"_EsStSuTxVbG3W$ /$5L)5M)4M)5L)!$4N)4N)5N)4J* 000@@@000000<<<<<<LLL```<<<888@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((@@@@@@@@@(((      000@@@$$$ddd```   @@@@@@@@@,,,      ```lll444$$$ddd```   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((@@@@@@(((888@@@444hhh\\\,,,000888```lll444@@@@@@@@@@@@@@@@@@@@@@@@@@@   HHH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@   @@@ߧ@@@TTT   <<<000TTT@@@``````      ,,,TTTttthhh000```(((@@@   @@@$$$xxx444pppppp   π\\\XXX000   444```LLL$$$|||444hhhxxx@@@```000   XXXDDDHHH(((   <<<(((LLL```XXX000   444```LLL```@@@PPPDDD   @@@```@@@tttttt珏   PPPPPPTTTTTTLLLtttttt痗@@@```@@@   $$$000```TTTTTTLLL``````444``````@@@```,,,   LLL$$$TTT(((000@@@```@@@   444|||dddhhh\\\$$$TTT(((``````   ``````ppp|||@@@```LLLhhh   $$$XXX\\\xxx@@@```@@@   <<<lllXXX\\\````````````   @@@```000888   ```888@@@```@@@   \\\TTT      ```````````````ppp                     @@@```TTT```   888<<<\\\tttttt888TTT```@@@```@@@   dddxxx444   \\\ttt888```ttt                     ``````@@@```DDD   ۟lll|||PPPLLLlllDDD@@@```@@@   <<<,,,   ||||||PPP\\\lll```<<<``````PPP\\\ppp@@@```<<<   כ@@@@@@@@@```@@@   TTT444@@@   XXX@@@DDD```@@@lll`````````$$$$$$@@@```(((   ppp\\\TTT\\\@@@```@@@      <<<ppp\\\ddd\\\``````DDD\\\``````@@@```````````````PPP@@@```   <<<000@@@```@@@   000TTT|||LLL   ,,,(((<<<000``````<<<$$$``````@@@```   @@@```@@@   <<<LLL444   DDD````````````444`````````````````````@@@@@@```hhh@@@   ttt@@@@@@```@@@   ttt@@@@@@   ```ttt``````$$$``````DDD@@@@@@```pppLLL,,,000   <<<<<<LLL,,,000@@@```@@@   ddd(((xxx   <<<<<<``````000``````,,,000@@@```000000LLL<<<   000ppp000LLL<<<@@@```@@@   ttt```   000ppp000``````lllxxx``````PPPPPP۟<<<@@@ß000xxxHHHHHH   (((ߓddd@@@TTT((( HHHTTT@@@```@@@   (((TTTNjTTT@@@\\\   (((ߓddd@@@TTT(((```׿```$$$TTT`````````   $$$```@@@˛LLLTTT   ttttttTTT@@@```@@@   LLL   tttttt```(((`````````PPPTTT```@@@DDD```DDDTTT```@@@   PPP```444DDD```DDD<<<```TTT(((,,,PPP```XXX@@@$$$DDD``````DDD,,,<<<``````HHH444ۿ```(((llllllHHHۏ$$$888ߋߧXXXǻ```444뛛<<<000ppp\\\@@@pppppp@@@,,,DDD,,,888@@@(((000xxx\\\   TTT$$$TTT@@@444ddd444糳˟888@@@<<<ϧhhh$$$@@@@@@ttt|||444,,,$$$@@@@@@@@@@@@@@@@@@@@@@@@(((XXX                        LLLXXX   000PPPppp```@@@hhhDDD(((,,,000lllXXXLLLlll888@@@\\\@@@xxx(((PPP   000888888@@@@@@dddxxxPPP888```,,,000@@@xxx000   @@@TTTttt   000@@@@@@ddd$$$LLL<<<`````````000```xxxDDD@@@   ddd@@@DDDPPP000   PPPlllHHH@@@,,,lll888(((TTT@@@DDDTTTttt@@@<<<hhh888@@@```,,,LLL@@@,,,ߧppp@@@```444hhhttt```$$$$$$xxx@@@,,,(((ttt@@@PPPDDDDDDPPP\\\XXX@@@뀀444@@@<<<TTTDDD@@@@@@```lll   XXXLLL|||```@@@@@@TTT@@@   ppp@@@$$$ppp@@@\\\@@@hhhxxx(((llllll$$$   ppp@@@@@@XXX000,,,ddd$$$444DDD\\\|||$$$XXX@@@    @@@$$$ddd\\\444```ǏhhhHHHppp444   矟tttLLL```xxx﫫TTTTTTTTT<<<HHHlllDDDHHHhhhHHH000HHH   DDD,,,dddHHH444``````PPP888߀lll@@@ǧdddlll\\\PPPppp(((<<<|||xxx<<<
Download .txt
gitextract_jhisgfz7/

├── GuasApp_Forensic.py
├── LICENSE
├── README.md
├── Reports_Guasap_Forensic/
│   └── readme
├── check_root.py
├── hashdeep.py
├── images/
│   ├── NO-ROOT.PPM
│   ├── SI-ROOT.PPM
│   ├── logika14-1.PPM
│   └── logika14-2.PPM
├── modules/
│   ├── __init__.py
│   ├── apks_to_root.txt
│   ├── config.py
│   ├── dependencies.py
│   └── functions.py
├── parser_db.py
├── whatsapp_db.py
└── whatsapp_log_forensic.py
Download .txt
SYMBOL INDEX (56 symbols across 8 files)

FILE: GuasApp_Forensic.py
  function enviar_licencia (line 47) | def enviar_licencia(licenci, root):
  function info_root_f (line 57) | def info_root_f(root, pop_wait):
  function popup (line 71) | def popup():
  function whatsapp_deb (line 107) | def whatsapp_deb(root, option):
  function whatsapp_root (line 165) | def whatsapp_root(root):
  function check_how_root (line 212) | def check_how_root(android_v, marca):
  function check_data (line 233) | def check_data():
  function whatsapp_mm (line 246) | def whatsapp_mm(root, pop_wait):
  function whatsapp_log_f (line 255) | def whatsapp_log_f(root, pop_wait):
  function whatsapp_db_f (line 266) | def whatsapp_db_f(root, pop_wait):
  function whatsapp_db_root (line 277) | def whatsapp_db_root(root, pop_wait):
  function add_report (line 305) | def add_report(data, option):
  function create_report_f (line 541) | def create_report_f(t):
  function reloadd (line 550) | def reloadd(root):
  function on_closing (line 554) | def on_closing(root):
  function Dialog_exit (line 557) | def Dialog_exit(parent):
  function out (line 571) | def out(top,parent):
  function icon (line 577) | def icon(top,parent):

FILE: check_root.py
  function check_root (line 11) | def check_root(pop_wait):
  function check_magisk (line 84) | def check_magisk():
  function check_su (line 98) | def check_su():

FILE: hashdeep.py
  function write (line 10) | def write(text):
  function filehash (line 15) | def filehash(filepath):
  function check_directory (line 26) | def check_directory():
  function pull_media (line 36) | def pull_media(directory):
  function get_subdirectoris (line 42) | def get_subdirectoris(directory):
  function get_mdinfo (line 48) | def get_mdinfo(path, i):
  function extract_mm (line 63) | def extract_mm(pop_wait):

FILE: modules/dependencies.py
  function check_dependencies (line 3) | def check_dependencies():

FILE: modules/functions.py
  function extract_deleted_messages (line 11) | def extract_deleted_messages():
  function decompress (line 162) | def decompress(filename):
  function get_whatsappLog (line 169) | def get_whatsappLog(log):
  function get_whatsappDB (line 185) | def get_whatsappDB(db):
  function get_whatsappDB_root (line 202) | def get_whatsappDB_root(db):
  function set_permission_log (line 219) | def set_permission_log(filename):
  function set_permission_db (line 224) | def set_permission_db(filename):
  function count_logs (line 229) | def count_logs():
  function count_dbs_root (line 235) | def count_dbs_root():
  function count_dbs (line 241) | def count_dbs():
  function create_dir_log (line 259) | def create_dir_log():
  function create_dir_db (line 266) | def create_dir_db():
  function create_dir_report (line 273) | def create_dir_report():
  function create_dir_media (line 280) | def create_dir_media():
  function get_hash_root (line 288) | def get_hash_root(data, option):
  function get_hash (line 317) | def get_hash(data, option):
  function get_members (line 361) | def get_members(group):
  function clean_user (line 370) | def clean_user(peer):
  function db_head_parser (line 375) | def db_head_parser(db):
  function create_report (line 398) | def create_report(t, list_dbs, info_root, whatsapp_log):
  function banner (line 433) | def banner():

FILE: parser_db.py
  function analyze_db (line 5) | def analyze_db():

FILE: whatsapp_db.py
  function extract_db (line 6) | def extract_db(pop_wait):
  function extract_db_root (line 36) | def extract_db_root(pop_wait):
  function count_messages (line 67) | def count_messages(pop_wait):
  function detect_breakID (line 101) | def detect_breakID(total_msg):

FILE: whatsapp_log_forensic.py
  function extract_log (line 6) | def extract_log(pop_wait):
Condensed preview — 18 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,444K chars).
[
  {
    "path": "GuasApp_Forensic.py",
    "chars": 25964,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\n\n'''\nCopyright (C) 2018  QuantiKa14 Servicios Integrales S.L\n'''\n\n#*********"
  },
  {
    "path": "LICENSE",
    "chars": 35147,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 723,
    "preview": "# Guasap Forensic\nThe Guasap Forensic implemented in Python under the GNU General Public License, for the extraction and"
  },
  {
    "path": "Reports_Guasap_Forensic/readme",
    "chars": 347,
    "preview": "******************************************************\n*** CARPETA DONDE SE GUARDA LOS INFORMES\n*** QUE GUASAP FORENSIC "
  },
  {
    "path": "check_root.py",
    "chars": 4936,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\n\nimport modules.config, modules.functions, os\nfrom subprocess import Popen, "
  },
  {
    "path": "hashdeep.py",
    "chars": 3844,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\n\nimport os, time\nimport os.path as osp\nimport hashlib\nimport modules.config,"
  },
  {
    "path": "images/NO-ROOT.PPM",
    "chars": 178210,
    "preview": "P6\n400 400\n255\n۞juRuS΋ؗkM^ިު΋}\\sRtτ}\\z^٤ۡnP|X֚mL{ZrRhrN|`єόpsSnpO{ZxVфxXtWboNtTՐ֍uTvS}[؞ߥtQuStڗ~pQhۅhxYvT]ޔyxVrWՕrOsU҈q"
  },
  {
    "path": "images/SI-ROOT.PPM",
    "chars": 316117,
    "preview": "P6\n400 400\n255\n)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))"
  },
  {
    "path": "images/logika14-1.PPM",
    "chars": 5023,
    "preview": "P6\n515 40\n255\nߏttt`````````hhh뛛DDDLLLPPP``````hhh```````````````DDDppp``````ddd`````````DDDttt``````ttt`````````@@"
  },
  {
    "path": "images/logika14-2.PPM",
    "chars": 5914,
    "preview": "P6\n515 50\n255\nppphhh(((pppxxxPPPTTTXXXhhhߏ```DDDlll"
  },
  {
    "path": "modules/__init__.py",
    "chars": 1,
    "preview": "\n"
  },
  {
    "path": "modules/apks_to_root.txt",
    "chars": 1181,
    "preview": "Vroot||none ||iRoot vRoot Super 1 click_v2.8.apk\nkingoroot|| none ||KingoRoot.apk \nsrsroot|| none ||mobile9_4307081.apk\n"
  },
  {
    "path": "modules/config.py",
    "chars": 8909,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\nanalyze_logs=[]\n\ndirectory=[\"/storage/external_SD/\",\"/sdcard/\", \"/storage/sd"
  },
  {
    "path": "modules/dependencies.py",
    "chars": 261,
    "preview": "import os\n\ndef check_dependencies():\n\ttry:\n\t\tfrom Tkinter import *\n\texcept:\n\t\tprint \"[MODULES][>] Para instalar Tkinter "
  },
  {
    "path": "modules/functions.py",
    "chars": 15090,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\nimport os \nimport config\nimport gzip, time, datetime, modules.config, sqlite"
  },
  {
    "path": "parser_db.py",
    "chars": 755,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\nimport sqlite3, datetime\n\ndef analyze_db():\n\tconn = sqlite3.connect('Whatsap"
  },
  {
    "path": "whatsapp_db.py",
    "chars": 4201,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\nimport modules.config, modules.functions, parser_db, sqlite3\nfrom Tkinter im"
  },
  {
    "path": "whatsapp_log_forensic.py",
    "chars": 901,
    "preview": "#!/usr/bin/env python\n#-*- coding:utf-8 -*-\nimport modules.config, modules.functions\nfrom Tkinter import *\n\ndef extract_"
  }
]

About this extraction

This page contains the full source code of the Quantika14/guasap-whatsapp-foresincs-tool GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 18 files (593.3 KB), approximately 221.0k tokens, and a symbol index with 56 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!