diff --git a/CLI/student.py b/CLI/student.py index 285b001..b74e6a5 100644 --- a/CLI/student.py +++ b/CLI/student.py @@ -33,10 +33,10 @@ def getStudent(ion_user, password): def getDB(user, pwd, url): """ Sends a GET request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.get(url=url, auth=(user, pwd)) print("GET:" + str(r.status_code)) @@ -46,11 +46,11 @@ def getDB(user, pwd, url): def patchDB(user, pwd, data, url): """ Sends a PATCH request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.patch(url=url, data=data, auth=(user, pwd)) print("PATCH:" + str(r.status_code)) @@ -61,11 +61,11 @@ def patchDB(user, pwd, data, url): def postDB(user, pwd, data, url): """ Sends a POST request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.post(url=url, data=data, auth=(user, pwd)) print("POST:" + str(r.status_code)) @@ -76,11 +76,11 @@ def postDB(user, pwd, data, url): def putDB(user, pwd, data, url): """ Sends a PUT request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.put(url=url, data=data, auth=(user, pwd)) print("PUT:" + str(r.status_code)) @@ -91,10 +91,10 @@ def putDB(user, pwd, data, url): def delDB(user, pwd, url): """ Sends a DELETE request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.delete(url=url, auth=(user, pwd)) print("DELETE:" + str(r.status_code)) diff --git a/CLI/teacher.py b/CLI/teacher.py index 0bbd7f3..cf36dda 100644 --- a/CLI/teacher.py +++ b/CLI/teacher.py @@ -29,9 +29,9 @@ from datetime import datetime def getTeacher(ion_user, password): """ Gets information about a teacher from the api - :param ion_user: a teacher - :param password: the teacher's password - :return: teacher information or error + param ion_user: a teacher + param password: the teacher's password + return: teacher information or error """ URL = "http://127.0.0.1:8000/api/teachers/" + ion_user + "/" r = requests.get(url=URL, auth=(ion_user,password)) @@ -53,10 +53,10 @@ def getTeacher(ion_user, password): def getDB(user, pwd, url): """ Sends a GET request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.get(url=url, auth=(user, pwd)) print("GET:" + str(r.status_code)) @@ -66,11 +66,11 @@ def getDB(user, pwd, url): def patchDB(user, pwd, data, url): """ Sends a PATCH request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.patch(url=url, data=data, auth=(user, pwd)) print("PATCH:" + str(r.status_code)) @@ -81,11 +81,11 @@ def patchDB(user, pwd, data, url): def postDB(user, pwd, data, url): """ Sends a POST request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.post(url=url, data=data, auth=(user, pwd)) print("POST:" + str(r.status_code)) @@ -96,11 +96,11 @@ def postDB(user, pwd, data, url): def putDB(user, pwd, data, url): """ Sends a PUT request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.put(url=url, data=data, auth=(user, pwd)) print("PUT:" + str(r.status_code)) @@ -111,10 +111,10 @@ def putDB(user, pwd, data, url): def delDB(user, pwd, url): """ Sends a DELETE request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.delete(url=url, auth=(user, pwd)) print("DELETE:" + str(r.status_code)) @@ -124,7 +124,7 @@ def delDB(user, pwd, url): def command(command): """ Runs a shell command - :param command: shell command + param command: shell command """ ar = [] command = command.split(" ") @@ -145,7 +145,7 @@ class Teacher: # intitialze fields after GET request """ Initializes a Teacher with the data from the api - :param data: api data + param data: api data """ self.git = data['git'] self.username = data['ion_user'] @@ -178,7 +178,7 @@ class Teacher: def checkClass(self, path): """ Checks if a directory is valid for creating a class - :param path: path to the new class directory + param path: path to the new class directory """ cname = path.split("/") cname = cname[len(cname) - 1] @@ -221,7 +221,7 @@ class Teacher: def checkInDB(self, path): """ Checks if "path" is in the database - :param path: path to directory + param path: path to directory """ n = path.split("/") n = n[len(n) - 1] @@ -234,7 +234,7 @@ class Teacher: def addClass(self, path): """ Creates a class from an existing directory, adding it to the proper git repository and the api - :param path: + param path: """ cname = path.split("/") cname = cname[len(cname) - 1] @@ -276,7 +276,7 @@ class Teacher: def makeClass(self, cname): """ Makes a class with its own new directory - :param cname: name of class + param cname: name of class """ # check if class exists path = self.username + "/" + cname @@ -314,7 +314,7 @@ class Teacher: def deleteClass(self, path): """ Deletes an existing class - :param path: class directory path + param path: class directory path """ if not os.path.exists(path): print(path + " does not exist locally.") @@ -348,8 +348,8 @@ class Teacher: def isStudent(self, student): """ Checks if the student exists - :param student: a student - :return: True if student exists, False otherwise + param student: a student + return: True if student exists, False otherwise """ r = requests.get(url="http://127.0.0.1:8000/api/students/" + student + "/", auth=(self.username, self.password)) @@ -360,9 +360,9 @@ class Teacher: def reqStudent(self, sname, cname): """ Request student informatiion from the api - :param sname: student's name - :param cname: class name - :return: True if successful + param sname: student's name + param cname: class name + return: True if successful """ if not self.isStudent(sname): print(sname + " does not exist.") @@ -406,9 +406,9 @@ class Teacher: def addStudent(self, sname, cname): """ Adds a student to a class - :param sname: student name - :param cname: class name - :return: + param sname: student name + param cname: class name + return: """ if not self.isStudent(sname): print(sname + " does not exist.") @@ -476,9 +476,9 @@ class Teacher: def reqAddStudentList(self, array, cname): """ Runs addStudent() on all students in array - :param array: an array of students - :param cname: class name - :return: students that have not confirmed the request + param array: an array of students + param cname: class name + return: students that have not confirmed the request """ unconf = [] for i in range(len(array)): @@ -492,10 +492,10 @@ class Teacher: def addAssignment(self, path, course, due): """ Creates an assignment for "course" that is due on "due" - :param path: directory of assignment - :param course: course name - :param due: due date - :return: False if unsuccessful + param path: directory of assignment + param course: course name + param due: due date + return: False if unsuccessful """ parts = path.split("/") aname = parts[len(parts) - 1] @@ -676,9 +676,9 @@ class Teacher: def getChanges(self, student, course, commits): """ Checks for new submissions by a student - :param student: the student - :param course: the course - :param commits: commits the CLI has made for the assignment + param student: the student + param course: the course + param commits: commits the CLI has made for the assignment """ course = getDB(self.username, self.password, "http://127.0.0.1:8000/api/classes/" + course + "/") ar = self.getCommits(student, course['name'], commits) @@ -735,7 +735,7 @@ class Teacher: def comment(self): """ The ultimate form of laughter - :return: pure joy + return: pure joy """ print("heheheh") diff --git a/SkoolOS/logs/skoolos_06162020-221844 b/SkoolOS/logs/skoolos_06162020-221844 new file mode 100644 index 0000000..2492ce9 --- /dev/null +++ b/SkoolOS/logs/skoolos_06162020-221844 @@ -0,0 +1,55 @@ +Start time: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/run.py +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:18:48 + +wrote bgservice.run.html +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/test.py +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Moved a file out +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Moved a file in +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/SkoolOS/logs/skoolos_06162020-221848 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/SkoolOS/logs/skoolos_06162020-221848 +Timestamp: Tuesday, June 16, 2020 22:18:48 + diff --git a/SkoolOS/logs/skoolos_06162020-221848 b/SkoolOS/logs/skoolos_06162020-221848 new file mode 100644 index 0000000..550f87c --- /dev/null +++ b/SkoolOS/logs/skoolos_06162020-221848 @@ -0,0 +1,6452 @@ +Start time: Tuesday, June 16, 2020 22:18:52 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Moved a file out +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Moved a file in +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 +Event: Moved a file out +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Moved a file in +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Deleted file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + + +Event: Deleted file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 + + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:00 + +problem in bgservice.test - KeyboardInterrupt: +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +wrote skoolos.html +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 + + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:07 + diff --git a/SkoolOS/logs/skoolos_06162020-222011 b/SkoolOS/logs/skoolos_06162020-222011 new file mode 100644 index 0000000..608faeb --- /dev/null +++ b/SkoolOS/logs/skoolos_06162020-222011 @@ -0,0 +1,4352 @@ +Start time: Tuesday, June 16, 2020 22:20:13 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:20:13 + +wrote bgservice.run.html +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:20:14 + +wrote skoolos.html +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/a2af0a74ac00da17_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/435bea09f3fc7c08_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/cb3090f86ae511a5_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/6a8f9287d9f02656_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/a2af0a74ac00da17_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2d1d7ad0db168fa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/435bea09f3fc7c08_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/7c07a3817a7e00b1_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/cb3090f86ae511a5_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/52240efdbde06a1c_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/6a8f9287d9f02656_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9d7a4f5e80410c52_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2d1d7ad0db168fa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/7c07a3817a7e00b1_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c4834e66e88c988a_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f433aaae5c4fe52d_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/cb54c95eaf74ea81_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/096c00ab306c3bdd_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/52240efdbde06a1c_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/12c2900e7638b9db_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2ba37d7df687aeb1_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9d7a4f5e80410c52_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a7c29e607589e31b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/096c00ab306c3bdd_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/12c2900e7638b9db_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c4834e66e88c988a_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/cb54c95eaf74ea81_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f433aaae5c4fe52d_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2ba37d7df687aeb1_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a7c29e607589e31b_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a2af74e4706fbd24_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a2af74e4706fbd24_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/390e083c2839df39_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/390e083c2839df39_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e15658981a2d3018_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e15658981a2d3018_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2_2x.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/share/fonts/3270Medium.ttf +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/49eae51421567809_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ee745d868505b427_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e0d24440cd5ad5a4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/49eae51421567809_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ee745d868505b427_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e0d24440cd5ad5a4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Created file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Moved a file out +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Moved a file in +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Local State +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9e850d1e72e0d9de_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9e850d1e72e0d9de_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a1f9c2fa3c329ea9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/20b36a2112c940c9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2dc893ceb65f3f87_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a1f9c2fa3c329ea9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2dc893ceb65f3f87_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/20b36a2112c940c9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2.png +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2_2x.png +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Moved a file out +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Moved a file in +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Deleted file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:38 + diff --git a/bgservice.bgservice.html b/bgservice.bgservice.html new file mode 100644 index 0000000..e422f56 --- /dev/null +++ b/bgservice.bgservice.html @@ -0,0 +1,187 @@ + +Python: module bgservice.bgservice + + + + + +
 
+ 
bgservice.bgservice
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/bgservice.py
+

A simple background service to log events in a directory,
+check for git commands in bash/zsh history,
+and check for non-whitelisted files in the watched directory.

+

+ + + + + +
 
+Modules
       
bgservice.checker
+os
+
pyinotify
+sys
+
time
+

+ + + + + +
 
+Classes
       
+
pyinotify.ProcessEvent(pyinotify._ProcessEvent) +
+
+
EventHandler +
+
+
+

+ + + + + + + +
 
+class EventHandler(pyinotify.ProcessEvent)
   EventHandler(pevent=None, **kargs)

+Custom event handler for watching a SkoolOS work directory
 
 
Method resolution order:
+
EventHandler
+
pyinotify.ProcessEvent
+
pyinotify._ProcessEvent
+
builtins.object
+
+
+Methods defined here:
+
process_IN_CLOSE_WRITE(self, event)
Generates an output to record for IN_CLOSE_WRITE events
+param event: event automatically passed to function
+return: none
+ +
process_IN_CREATE(self, event)
Generates an output to record for IN_CREATE events
+param event: event automatically passed to function
+return: none
+ +
process_IN_DELETE(self, event)
Generates an output to record for IN_DELETE events
+param event: event automatically passed to function
+return: none
+ +
process_IN_MOVED_FROM(self, event)
Generates an output to record for IN_MOVED_FROM events
+param event: event automatically passed to function
+return: none
+ +
process_IN_MOVED_TO(self, event)
Generates an output to record for IN_MOVED_TO events
+param event: event automatically passed to function
+return: none
+ +
process_IN_OPEN(self, event)
Generates an output to record for IN_OPEN events
+param event: event automatically passed to function
+return: none
+ +
+Methods inherited from pyinotify.ProcessEvent:
+
__call__(self, event)
To behave like a functor the object must be callable.
+This method is a dispatch method. Its lookup order is:
+  1. process_MASKNAME method
+  2. process_FAMILY_NAME method
+  3. otherwise calls process_default

+@param event: Event to be processed.
+@type event: Event object
+@return: By convention when used from the ProcessEvent class:
+         - Returning False or None (default value) means keep on
+         executing next chained functors (see chain.py example).
+         - Returning True instead means do not execute next
+           processing functions.
+@rtype: bool
+@raise ProcessEventError: Event object undispatchable,
+                          unknown event.
+ +
__init__(self, pevent=None, **kargs)
Enable chaining of ProcessEvent instances.

+@param pevent: Optional callable object, will be called on event
+               processing (before self).
+@type pevent: callable
+@param kargs: This constructor is implemented as a template method
+              delegating its optionals keyworded arguments to the
+              method my_init().
+@type kargs: dict
+ +
my_init(self, **kargs)
This method is called from ProcessEvent.__init__(). This method is
+empty here and must be redefined to be useful. In effect, if you
+need to specifically initialize your subclass' instance then you
+just have to override this method in your subclass. Then all the
+keyworded arguments passed to ProcessEvent.__init__() will be
+transmitted as parameters to this method. Beware you MUST pass
+keyword arguments though.

+@param kargs: optional delegated arguments from __init__().
+@type kargs: dict
+ +
nested_pevent(self)
+ +
process_IN_Q_OVERFLOW(self, event)
By default this method only reports warning messages, you can overredide
+it by subclassing ProcessEvent and implement your own
+process_IN_Q_OVERFLOW method. The actions you can take on receiving this
+event is either to update the variable max_queued_events in order to
+handle more simultaneous events or to modify your code in order to
+accomplish a better filtering diminishing the number of raised events.
+Because this method is defined, IN_Q_OVERFLOW will never get
+transmitted as arguments to process_default calls.

+@param event: IN_Q_OVERFLOW event.
+@type event: dict
+ +
process_default(self, event)
Default processing event method. By default does nothing. Subclass
+ProcessEvent and redefine this method in order to modify its behavior.

+@param event: Event to be processed. Can be of any type of events but
+              IN_Q_OVERFLOW events (see method process_IN_Q_OVERFLOW).
+@type event: Event instance
+ +
+Data and other attributes inherited from pyinotify.ProcessEvent:
+
pevent = None
+ +
+Methods inherited from pyinotify._ProcessEvent:
+
__repr__(self)
Return repr(self).
+ +
+Data descriptors inherited from pyinotify._ProcessEvent:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+

+ + + + + +
 
+Functions
       
stop_watching()
Stops the watch started by watch_dir()
+return: none
+
watch_dir(watched_dir='/home/nkenschaft', log_dir='SkoolOS/logs')
Watches the specified directory for changes and outputs it in
+human readable format to a log file in the specified log directory.
+param watched_dir: directory to watch for changes
+param log_dir: directory to store log files
+return: none
+

+ + + + + +
 
+Data
       DIR = None
+NOTIFIER = None
+START_TIME = None
+STDOUT = <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>
+ \ No newline at end of file diff --git a/bgservice.checker.html b/bgservice.checker.html new file mode 100644 index 0000000..1fa7c36 --- /dev/null +++ b/bgservice.checker.html @@ -0,0 +1,44 @@ + +Python: module bgservice.checker + + + + + +
 
+ 
bgservice.checker
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/checker.py
+

+

+ + + + + +
 
+Modules
       
os
+

+ + + + + +
 
+Functions
       
file_check(dir_)
Checks specified dir_ for non-whitelisted files using verify_file()
+param dir_: directory to check
+return: list of suspicious files
+
shell_check()
Check .bash_history and .histfile for git commands that could interfere with SkoolOS
+return: results of the check
+
verify_file(file_)
Check if the file name has an extension in the list of whitelisted file exentsions
+param file_: path to file
+return: whether or not the file's extension is whitelisted
+

+ + + + + +
 
+Data
       file_whitelist = ['.doc', '.docx', '.odt', '.pdf', '.rtf', '.tex', '.txt', '.wpd', '.3g2', '.3gp', '.avi', '.flv', '.h264', '.m4v', '.mkv', '.mov', '.mp4', '.mpg', '.mpeg', '.rm', ...]
+ \ No newline at end of file diff --git a/bgservice.html b/bgservice.html new file mode 100644 index 0000000..98a850e --- /dev/null +++ b/bgservice.html @@ -0,0 +1,23 @@ + +Python: package bgservice + + + + + +
 
+ 
bgservice
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/__init__.py
+

+

+ + + + + +
 
+Package Contents
       
bgservice
+
checker
+
+ \ No newline at end of file diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py index 3c3e635..34ae4f3 100644 --- a/bgservice/bgservice.py +++ b/bgservice/bgservice.py @@ -7,11 +7,14 @@ import time import sys import os import pyinotify -import checker +from . import checker from pathlib import Path class EventHandler(pyinotify.ProcessEvent): + """ + Custom event handler for watching a SkoolOS work directory + """ _methods = [ "IN_CREATE", "IN_CLOSE_WRITE", @@ -24,8 +27,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_CREATE(self, event): """ Generates an output to record for IN_CREATE events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Created file\n" \ @@ -39,8 +42,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_CLOSE_WRITE(self, event): """ Generates an output to record for IN_CLOSE_WRITE events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Wrote to a file\n" \ @@ -54,8 +57,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_DELETE(self, event): """ Generates an output to record for IN_DELETE events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Deleted file\n" \ @@ -69,8 +72,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_MOVED_TO(self, event): """ Generates an output to record for IN_MOVED_TO events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Moved a file in\n" \ @@ -84,8 +87,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_MOVED_FROM(self, event): """ Generates an output to record for IN_MOVED_FROM events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Moved a file out\n" \ @@ -99,8 +102,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_OPEN(self, event): """ Generates an output to record for IN_OPEN events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Opened file\n" \ @@ -122,9 +125,9 @@ def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): """ Watches the specified directory for changes and outputs it in human readable format to a log file in the specified log directory. - :param watched_dir: directory to watch for changes - :param log_dir: directory to store log files - :return: none + param watched_dir: directory to watch for changes + param log_dir: directory to store log files + return: none """ global DIR global START_TIME @@ -152,7 +155,7 @@ def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): def stop_watching(): """ Stops the watch started by watch_dir() - :return: none + return: none """ NOTIFIER.stop() now = time.time() diff --git a/bgservice/bgservice.sh b/bgservice/bgservice.sh deleted file mode 100755 index 9d43de7..0000000 --- a/bgservice/bgservice.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -python3 bgservice.py diff --git a/bgservice/checker.py b/bgservice/checker.py index 58b3874..9f8941f 100644 --- a/bgservice/checker.py +++ b/bgservice/checker.py @@ -70,7 +70,7 @@ file_whitelist = [ def shell_check(): """ Check .bash_history and .histfile for git commands that could interfere with SkoolOS - :return: results of the check + return: results of the check """ bash_history = [ line.strip() @@ -93,8 +93,8 @@ def shell_check(): def verify_file(file_): """ Check if the file name has an extension in the list of whitelisted file exentsions - :param file_: path to file - :return: whether or not the file's extension is whitelisted + param file_: path to file + return: whether or not the file's extension is whitelisted """ for ext in file_whitelist: if len(file_) > len(ext): @@ -106,8 +106,8 @@ def verify_file(file_): def file_check(dir_): """ Checks specified dir_ for non-whitelisted files using verify_file() - :param dir_: directory to check - :return: list of suspicious files + param dir_: directory to check + return: list of suspicious files """ files = glob(dir_ + "/**/*", recursive=True) suspicious_files = [] diff --git a/bgservice/run.py b/bgservice/run.py deleted file mode 100644 index 8070cd3..0000000 --- a/bgservice/run.py +++ /dev/null @@ -1,2 +0,0 @@ -import bgservice as bg -bg.watch_dir() diff --git a/bgservice/test.py b/bgservice/test.py deleted file mode 100644 index 9c7cad0..0000000 --- a/bgservice/test.py +++ /dev/null @@ -1,4 +0,0 @@ -import bgservice as bg -bg.watch_dir() -input() -bg.stop_watching() diff --git a/skoolos.html b/skoolos.html new file mode 100644 index 0000000..677dfd5 --- /dev/null +++ b/skoolos.html @@ -0,0 +1,112 @@ + +Python: module skoolos + + + + + +
 
+ 
skoolos
index
/home/nkenschaft/Sysadmin/skoolos/skoolos.py
+

The main program file for SkoolOS

+

+ + + + + +
 
+Modules
       
argparse
+datetime
+http
+
json
+os
+pprint
+
requests
+socketserver
+sys
+
time
+webbrowser
+selenium.webdriver
+

+ + + + + +
 
+Functions
       
addAssignmentTeacher(teacher, course)
+
addStudentsTeacher(teacher, course)
+
authenticate()
Authenticates the user via Ion OAuth
+
chooseClassStudent(student)
Chooses a class for a student to view and work on
+param student: a student
+return: a course prompt
+
chooseGeneralTeacher(teacher)
+
classOptionsStudent(student, course)
Allows students to choose what they want to do related to a class
+The student can save, exit, or go back
+param student: a student
+param course: a course
+return: True if exiting, False if going back
+
classOptionsTeacher(teacher, course)
+
create_server()
Creates a simple HTTP server for creating api requests from the CLI
+
delDB(USER, PWD, url)
Sends a DELETE request to url
+param USER: username
+param PWD: password
+param url: URL for request
+return: json request response
+
getDB(USER, PWD, url)
Sends a GET request to url
+param USER: username
+param PWD: password
+param url: URL for request
+return: json request response
+
getUser(ion_user, password, utype)
Returns user information
+param ion_user: user
+param password: user's password
+param utype: type of user (student or teacher
+return: api user information
+
main()
The Command Line Interface (CLI) for SkoolOS
+Serves to allow both teachers and students to access the majority of the features of SkoolOS
+
makeClassTeacher(teacher)
+
makePass()
Prompts the user to create a password
+return: the password
+
patchDB(USER, PWD, url, data)
Sends a PATCH request to url
+param USER: username
+param PWD: password
+param url: URL for request
+param data: data to request
+return: json request response
+
postDB(USER, PWD, url, data)
Sends a POST request to url
+param USER: username
+param PWD: password
+param url: URL for request
+param data: data to request
+return: json request response
+
putDB(USER, PWD, url, data)
Sends a PUT request to url
+param USER: username
+param PWD: password
+param url: URL for request
+param data: data to request
+return: json request response
+
studentCLI(user, password)
The CLI for students to access
+param user: student username
+param password: student password
+
teacherCLI(user, password)
The CLI for teachers to access
+param user: teachers username
+param password: teachers password
+
viewStudentsTeacher(teacher, course)
+

+ + + + + +
 
+Data
       PWD = ''
+USER = ''
+client_id = 'QeZPBSKqdvWFfBv1VYTSv9iFGz5T9pVJtNUjbEr6'
+client_secret = '0Wl3hAIGY9SvYOqTOLUiLNYa4OlCgZYdno9ZbcgCT7RGQ8x2...mOADHIv5fHxaa7GqFNtQr11HX9ySTw3DscKsphCVi5P71mlGY'
+redirect_uri = 'http://localhost:8000/callback/'
+scope = ['read']
+token_url = 'https://ion.tjhsst.edu/oauth/token/'
+ \ No newline at end of file diff --git a/skoolos.py b/skoolos.py index 8778d79..10962e2 100644 --- a/skoolos.py +++ b/skoolos.py @@ -50,7 +50,9 @@ def main(): URL = "http://127.0.0.1:8000/api/" r = requests.get(url=URL) except: - print("Run Django server on http://127.0.0.1:8000/ before continuing") + print( + "Run Django server on http://127.0.0.1:8000/ before continuing" + ) sys.exit(0) input("Welcome to SkoolOS. Press any key to create an account") @@ -94,11 +96,12 @@ def main(): #################################################################################################### STUDENT METHODS + def studentCLI(user, password): """ The CLI for students to access - @param user: student username - @param password: student password + param user: student username + param password: student password """ from CLI import student data = getUser(user, password, 'student') @@ -116,8 +119,8 @@ def studentCLI(user, password): def chooseClassStudent(student): """ Chooses a class for a student to view and work on - @param student: a student - :return: a course prompt + param student: a student + return: a course prompt """ carray = student.sclass.split(",") if len(carray) == 1 and carray[0] == "": @@ -142,13 +145,13 @@ def classOptionsStudent(student, course): """ Allows students to choose what they want to do related to a class The student can save, exit, or go back - @param student: a student - @param course: a course - :return: True if exiting, False if going back + param student: a student + param course: a course + return: True if exiting, False if going back """ student.viewClass(course) - student.getAssignments(course, 100) - choices = ["Save","Submit assignment","Back","Exit SkoolOS"] + student.getAssignments(course, 100) + choices = ["Save", "Submit assignment", "Back", "Exit SkoolOS"] options = [ { 'type': 'list', @@ -170,29 +173,30 @@ def classOptionsStudent(student, course): student.exitCLI() # exit cli return True - if(option == "Submit assignment"): + if (option == "Submit assignment"): assignments = os.listdir(student.username) tlist = [] b = True for a in assignments: - oname = a + "_" + course + oname = a + "_" + course a = student.username + "/" + a - if(os.path.isdir(a) and not "." in a and not oname in student.completed): + if (os.path.isdir(a) and not "." in a + and not oname in student.completed): tlist.append(a) assignments = tlist assignments.append("Back") print(assignments) - + options = [ - { - 'type': 'list', - 'name': 'submit', - 'choices':assignments, - 'message': 'Select: ', - }, + { + 'type': 'list', + 'name': 'submit', + 'choices': assignments, + 'message': 'Select: ', + }, ] ass = prompt(options)['submit'] - if(ass == "Back"): + if (ass == "Back"): return False else: student.submit(course, ass) @@ -203,8 +207,8 @@ def classOptionsStudent(student, course): def teacherCLI(user, password): """ The CLI for teachers to access - @param user: teachers username - @param password: teachers password + param user: teachers username + param password: teachers password """ from CLI import teacher data = getUser(user, password, 'teacher') @@ -278,7 +282,10 @@ def makeClassTeacher(teacher): cname = prompt(questions)['cname'] teacher.makeClass(cname) - soption = ["1) Add individual student", "2) Add list of students through path", "3) Exit"] + soption = [ + "1) Add individual student", "2) Add list of students through path", + "3) Exit" + ] questions = [ { 'type': 'list', @@ -307,10 +314,15 @@ def makeClassTeacher(teacher): def classOptionsTeacher(teacher, course): print("Class: " + course) - unconf = getDB(teacher.username, teacher.password, "http://localhost:8000/api/classes/" + course)['unconfirmed'] + unconf = getDB(teacher.username, teacher.password, + "http://localhost:8000/api/classes/" + + course)['unconfirmed'] for s in unconf: teacher.addStudent(s, course) - options = ['1) Request Student', "2) Add assignment", "3) View student information", "4) Exit"] + options = [ + '1) Request Student', "2) Add assignment", + "3) View student information", "4) Exit" + ] questions = [ { 'type': 'list', @@ -324,7 +336,10 @@ def classOptionsTeacher(teacher, course): def addStudentsTeacher(teacher, course): - soption = ["1) Add individual student", "2) Add list of students through path", "3) Exit"] + soption = [ + "1) Add individual student", "2) Add list of students through path", + "3) Exit" + ] questions = [ { 'type': 'list', @@ -369,7 +384,8 @@ def addStudentsTeacher(teacher, course): def addAssignmentTeacher(teacher, course): nlist = os.listdir(teacher.username + "/" + course) - alist = getDB(teacher.username, teacher.password, "http://localhost:8000/api/classes/" + course)['assignments'] + alist = getDB(teacher.username, teacher.password, + "http://localhost:8000/api/classes/" + course)['assignments'] print(nlist) tlist = [] b = True @@ -388,8 +404,8 @@ def addAssignmentTeacher(teacher, course): nlist = tlist if len(nlist) == 0: print("No new assignments found") - print( - "To make an assignment: make a subdirectory in the " + course + " folder. Add a file within the new folder") + print("To make an assignment: make a subdirectory in the " + course + + " folder. Add a file within the new folder") return False questions = [ { @@ -419,7 +435,8 @@ def addAssignmentTeacher(teacher, course): def viewStudentsTeacher(teacher, course): - data = getDB(teacher.username, teacher.password, "http://127.0.0.1:8000/api/classes/" + course) + data = getDB(teacher.username, teacher.password, + "http://127.0.0.1:8000/api/classes/" + course) students = data["confirmed"] unconf = data['unconfirmed'] print("Studented in class: ") @@ -429,23 +446,25 @@ def viewStudentsTeacher(teacher, course): for s in unconf: print(s) student = input("View student (Enter student's ion username): ") - while((not student in str(data['confirmed'])) and (not student in str(data['unconfirmed']))): + while ((not student in str(data['confirmed'])) + and (not student in str(data['unconfirmed']))): print("Student not affiliated with class") student = input("View student ('N' to exit): ") if student == 'N': return False - sinfo = getDB(teacher.username, teacher.password, "http://127.0.0.1:8000/api/students/" + student + "/") + sinfo = getDB(teacher.username, teacher.password, + "http://127.0.0.1:8000/api/students/" + student + "/") pprint.pprint(sinfo) print("Confirmed: " + str(student in str(data['confirmed']))) - if(student in str(data['confirmed'])): + if (student in str(data['confirmed'])): path = teacher.username + "/Students/" + course + "/" + student print(student + "'s work: " + path) fin = sinfo['completed'].split(",") alist = [] for f in fin: - if(course in f): + if (course in f): late = teacher.afterSubmit(course, f, student) - if(late): + if (late): s = f.split("_")[0] + " (LATE)" else: s = f.split("_")[0] @@ -454,16 +473,17 @@ def viewStudentsTeacher(teacher, course): #put log stuff + ############################################################################################################################################ def getUser(ion_user, password, utype): """ Returns user information - @param ion_user: user - @param password: user's password - @param utype: type of user (student or teacher - :return: api user information + param ion_user: user + param password: user's password + param utype: type of user (student or teacher + return: api user information """ if 'student' in utype: URL = "http://127.0.0.1:8000/api/students/" + ion_user + "/" @@ -490,11 +510,11 @@ def getUser(ion_user, password, utype): def patchDB(USER, PWD, url, data): """ Sends a PATCH request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.patch(url=url, data=data, auth=(USER, PWD)) print("PATH:" + str(r.status_code)) @@ -504,10 +524,10 @@ def patchDB(USER, PWD, url, data): def getDB(USER, PWD, url): """ Sends a GET request to url - @param USER: username - @param PWD: password - @param url: URL for request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + return: json request response """ r = requests.get(url=url, auth=(USER, PWD)) print("GET:" + str(r.status_code)) @@ -517,11 +537,11 @@ def getDB(USER, PWD, url): def postDB(USER, PWD, url, data): """ Sends a POST request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.post(url=url, data=data, auth=(USER, PWD)) print("POST:" + str(r.status_code)) @@ -531,11 +551,11 @@ def postDB(USER, PWD, url, data): def putDB(USER, PWD, url, data): """ Sends a PUT request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.put(url=url, data=data, auth=(USER, PWD)) print("PUT:" + str(r.status_code)) @@ -545,10 +565,10 @@ def putDB(USER, PWD, url, data): def delDB(USER, PWD, url): """ Sends a DELETE request to url - @param USER: username - @param PWD: password - @param url: URL for request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + return: json request response """ r = requests.delete(url=url, auth=(USER, PWD)) print("DELETE:" + str(r.status_code)) @@ -558,7 +578,7 @@ def delDB(USER, PWD, url): def makePass(): """ Prompts the user to create a password - :return: the password + return: the password """ questions = [ { @@ -591,8 +611,11 @@ def authenticate(): """ Authenticates the user via Ion OAuth """ - oauth = OAuth2Session(client_id=client_id, redirect_uri=redirect_uri, scope=scope) - authorization_url, state = oauth.authorization_url("https://ion.tjhsst.edu/oauth/authorize/") + oauth = OAuth2Session(client_id=client_id, + redirect_uri=redirect_uri, + scope=scope) + authorization_url, state = oauth.authorization_url( + "https://ion.tjhsst.edu/oauth/authorize/") import os cdir = os.getcwd() # Linux: chromdriver-linux @@ -603,14 +626,14 @@ def authenticate(): print("Linux") system = input("Enter OS: ") - while(system.lower() != "linux" and system.lower() != "macos"): + while (system.lower() != "linux" and system.lower() != "macos"): print("Not valid OS") system = input("Enter OS: ") - if(system.lower() == 'macos'): + if (system.lower() == 'macos'): path = os.path.join(os.getcwd(), 'chromedriver', 'chromedriver-mac') - if(system.lower() == 'linux'): + if (system.lower() == 'linux'): path = os.path.join(os.getcwd(), 'chromedriver', 'chromedriver-linux') - + browser = webdriver.Chrome(path) browser.get("localhost:8000/login") @@ -621,11 +644,13 @@ def authenticate(): url = browser.current_url gets = url_decode(url.replace("http://localhost:8000/login/?", "")) while "http://localhost:8000/login/?username=" not in browser.current_url and ( - not browser.current_url == "http://localhost:8000/"): # http://localhost:8000/ + not browser.current_url + == "http://localhost:8000/"): # http://localhost:8000/ time.sleep(0.25) url = browser.current_url - gets = url_decode(url.replace("http://localhost:8000/login/?username=", "")) + gets = url_decode(url.replace("http://localhost:8000/login/?username=", + "")) # code = gets.get("code") # if state == gets.get("state"): # state = gets.get("state") @@ -654,12 +679,15 @@ def authenticate(): pwd = data['pwd'] user = data['username'] print(r.status_code) - r = requests.get(url="http://localhost:8000/api/students/" + user + "/", auth=(user, pwd)) + r = requests.get(url="http://localhost:8000/api/students/" + user + "/", + auth=(user, pwd)) is_student = False if r.status_code == 200: is_student = True print("Welcome, student " + user) - r = requests.get(url="http://localhost:8000/api/students/" + user + "/", auth=(user, pwd)) + r = requests.get(url="http://localhost:8000/api/students/" + user + + "/", + auth=(user, pwd)) profile = r.json() username = profile['ion_user'] grade = profile['grade'] @@ -676,7 +704,9 @@ def authenticate(): else: print("Welcome, teacher " + user) - r = requests.get(url="http://localhost:8000/api/teachers/" + user + "/", auth=(user, pwd)) + r = requests.get(url="http://localhost:8000/api/teachers/" + user + + "/", + auth=(user, pwd)) profile = r.json() username = profile['ion_user'] profile = {