From cdb2c4479ce656dc8c5c9d06ba37588ed29bc5ec Mon Sep 17 00:00:00 2001 From: joseph le Date: Mon, 28 Aug 2023 07:42:02 +0700 Subject: [PATCH] update function get index serial number --- app/Controllers/Http/ErpsController.ts | 138 +- app/Middleware/CheckToken.ts | 9 +- app/Models/KeyValue.ts | 25 + app/store/logs/abc.log | 6 + app/store/logs/sdsdfjk.log | 14 + app/store/logs/test.log | 1753 ++++++++++++++++++++++++ app/utils/indexSN.txt | 222 +-- app/utils/runtimeCheckLogs.ts | 89 +- app/utils/sendMessToZulip.ts | 22 + package-lock.json | 194 ++- package.json | 3 +- 11 files changed, 2299 insertions(+), 176 deletions(-) create mode 100644 app/Models/KeyValue.ts create mode 100644 app/store/logs/abc.log create mode 100644 app/store/logs/sdsdfjk.log create mode 100644 app/store/logs/test.log create mode 100644 app/utils/sendMessToZulip.ts diff --git a/app/Controllers/Http/ErpsController.ts b/app/Controllers/Http/ErpsController.ts index 417e204..3fd2796 100644 --- a/app/Controllers/Http/ErpsController.ts +++ b/app/Controllers/Http/ErpsController.ts @@ -16,7 +16,7 @@ export default class ErpsController { const getListLog = async (from, to) => { try { // console.log("check!") - const listLog:string[] = [] + const listLog: string[] = []; const response = await axios.get("http://192.168.5.7:8080/"); const data = response.data; const arrayLine = data @@ -78,6 +78,10 @@ export default class ErpsController { let output = []; if (arrayLine !== undefined) { for (let i = 0; i < arrayLine.length; i++) { + let SN = arrayLine[i] + ?.split("SN:")[1] + ?.trim() + .replace(/[!@#$%^&*()_+{}\[\]:;<>,.?~\\/]/g, ""); if ( arrayLine[i].search("PID:") !== -1 && arrayLine[i].search("SN:") !== -1 && @@ -87,30 +91,33 @@ export default class ErpsController { ?.split(":")[1] ?.replace("\r", "") .trim() !== "" && - arrayLine[i] - ?.split(",")[2] - ?.split(":")[1] - ?.replace("\r", "") - .trim() !== "N/A" + SN !== "N/A" ) { - if ( - output.some( - (u) => - u.SN === - arrayLine[i] - ?.split(",")[2] - ?.split(":")[1] - ?.replace("\r", "") - .trim() - ) - ) { + if (output.some((u) => u.SN === SN)) { output.map((u, index) => { - if ( - u.SN === arrayLine[i]?.split("SN:")[1]?.trim() - ) { - output[index].PID = arrayLine[i]?.split("VID:")[0] !== undefined ? arrayLine[i]?.split("VID:")[0]?.split(":")[1]?.split(",")[0]?.trim() : ""; - output[index].VID = arrayLine[i]?.split("SN:")[0] !== undefined ? arrayLine[i]?.split("SN:")[0]?.split("VID:")[1]?.split(",")[0]?.trim() : "", - output[index].line = output[index].line.concat([i + 1]); + if (u.SN === SN) { + output[index].PID = + arrayLine[i]?.split("VID:")[0] !== undefined + ? arrayLine[i] + ?.split("VID:")[0] + ?.slice( + arrayLine[i]?.split("VID:")[0]?.search("PID") + ) + ?.split(":")[1] + ?.split(",")[0] + ?.trim() + : ""; + (output[index].VID = + arrayLine[i]?.split("SN:")[0] !== undefined + ? arrayLine[i] + ?.split("SN:")[0] + ?.split("VID:")[1] + ?.split(",")[0] + ?.trim() + : ""), + (output[index].line = output[index].line.concat([ + i + 1, + ])); } }); } else { @@ -120,15 +127,28 @@ export default class ErpsController { output.push({ PID: arrayLine[i]?.split("VID:")[0] !== undefined - ? arrayLine[i]?.split("VID:")[0]?.split(":")[1]?.split(",")[0]?.trim() - : "", + ? arrayLine[i] + ?.split("VID:")[0] + ?.slice( + arrayLine[i]?.split("VID:")[0]?.search("PID") + ) + ?.split(":")[1] + ?.split(",")[0] + ?.trim() + : "", VID: arrayLine[i]?.split("SN:")[0] !== undefined - ? arrayLine[i]?.split("SN:")[0]?.split("VID:")[1]?.split(",")[0]?.trim() - : "", + ? arrayLine[i] + ?.split("SN:")[0] + ?.split("VID:")[1] + ?.split(",")[0] + ?.trim() + : "", SN: arrayLine[i].split("SN:")[1] !== undefined - ? arrayLine[i]?.split("SN:")[1]?.trim() + ? SN.search(" ") !== -1 + ? SN?.split(" ")[0] + : SN : "", line: [i + 1], fileName: fName, @@ -142,31 +162,37 @@ export default class ErpsController { } } - if (arrayLine[i].search("PCB Serial Number") !== -1) { + if (arrayLine[i].search("Serial Number") !== -1) { + let PCB_SN = arrayLine[i] + ?.split("Serial Number")[1].split(":")[1] + ?.replace("\r", "") + .trim() + .replace(/[!@#$%^&*()_+{}\[\]:;<>,.?~\\/]/g, ""); if ( //Neu SN da nam trong output - output.some( - (u) => - u.SN === - arrayLine[i]?.split(":")[1]?.replace("\r", "").trim() - ) + output.some((u) => u.SN === PCB_SN) ) { output.map((u, index) => { - if ( - u.SN === - arrayLine[i]?.split(":")[1]?.replace("\r", "").trim() - ) { + if (u.SN === PCB_SN) { output[index].line = output[index].line.concat([i + 1]); } }); } else { + // if ( + // /^[A-Z0-9-]{5,}$/.test( + // PCB_SN + // ) + // ) { let fName = urls[index] ?.split("/") [urls[index]?.split("/")?.length - 1]?.trim(); output.push({ PID: "", VID: "", - SN: arrayLine[i]?.split(":")[1]?.replace("\r", "").trim(), + SN: + PCB_SN?.search(" ") !== -1 + ? PCB_SN?.split(" ")[0] + : PCB_SN, line: [i + 1], fileName: fName, warehouse: @@ -176,43 +202,36 @@ export default class ErpsController { ? "US" : "AU", }); + // } } } if (arrayLine[i].search("Processor board ID") !== -1) { + let PBID = arrayLine[i] + ?.split(" ") + [arrayLine[i]?.split(" ").length - 1]?.replace("\r", "") + .trim() + .replace(/[!@#$%^&*()_+{}\[\]:;<>,.?~\\/]/g, ""); if ( //Neu SN da nam trong output - output.some( - (u) => - u.SN === - arrayLine[i] - ?.split(" ") - [arrayLine[i]?.split(" ").length - 1]?.replace("\r", "") - .trim() - ) + output.some((u) => u.SN === PBID) ) { output.map((u, index) => { - if ( - u.SN === - arrayLine[i] - ?.split(" ") - [arrayLine[i]?.split(" ").length - 1]?.replace("\r", "") - .trim() - ) { + if (u.SN === PBID) { output[index].line = output[index].line.concat([i + 1]); } }); } else { + if ( + PBID?.length >= 8 + ) { let fName = urls[index] ?.split("/") [urls[index]?.split("/")?.length - 1]?.trim(); output.push({ PID: "", VID: "", - SN: arrayLine[i] - ?.split(" ") - [arrayLine[i]?.split(" ").length - 1]?.replace("\r", "") - .trim(), + SN: PBID?.search(" ") !== -1 ? PBID?.split(" ")[0] : PBID, line: [i + 1], fileName: fName, warehouse: @@ -222,6 +241,7 @@ export default class ErpsController { ? "US" : "AU", }); + } } } } @@ -242,7 +262,7 @@ export default class ErpsController { } ); // console.log(report); - return report; + return report.filter((i) => i.SN !== "" && /^[A-Z0-9-]{5,}$/.test(i.SN)===true); // }, 15000); } catch (error) { response diff --git a/app/Middleware/CheckToken.ts b/app/Middleware/CheckToken.ts index feb16d4..16856cc 100644 --- a/app/Middleware/CheckToken.ts +++ b/app/Middleware/CheckToken.ts @@ -12,11 +12,15 @@ export default class CheckToken { // code for middleware goes here. ABOVE THE NEXT CALL try { // const user = jwtDecode(request.headers().authorization); - await jwt.verify( + console.log("first", await jwt.verify( + request.headers().authorization?.replace(/"/g, ""), + Env.get("JWT_KEY"))) + let abc = await jwt.verify( request.headers().authorization?.replace(/"/g, ""), Env.get("JWT_KEY"), async function (err, decoded) { if (err) { + console.log(err) response.status(203).send("Token invalid"); // loggerAPI( // request, @@ -29,8 +33,9 @@ export default class CheckToken { } } ); + console.log(abc) } catch (error) { - console.log(error) + console.log("sdfs", error) response.status(203).send("Token invalid"); // loggerAPI( // request, diff --git a/app/Models/KeyValue.ts b/app/Models/KeyValue.ts new file mode 100644 index 0000000..f558449 --- /dev/null +++ b/app/Models/KeyValue.ts @@ -0,0 +1,25 @@ +import { DateTime } from 'luxon' +import { BaseModel, column } from '@ioc:Adonis/Lucid/Orm' + +export default class KeyValue extends BaseModel { + + public static table = 'key_values' + + @column({ isPrimary: true }) + public id_key: number + + @column() + public key: string + + @column() + public value: string + + @column() + public model: string + + @column.dateTime({ autoCreate: true }) + public created_at: DateTime + + @column.dateTime({ autoCreate: true, autoUpdate: true }) + public updated_at: DateTime +} diff --git a/app/store/logs/abc.log b/app/store/logs/abc.log new file mode 100644 index 0000000..bdabdca --- /dev/null +++ b/app/store/logs/abc.log @@ -0,0 +1,6 @@ +fjsfhsjkk +sjghsjkdg +err +sngjksg +fault +fhgg45345 \ No newline at end of file diff --git a/app/store/logs/sdsdfjk.log b/app/store/logs/sdsdfjk.log new file mode 100644 index 0000000..6e5999b --- /dev/null +++ b/app/store/logs/sdsdfjk.log @@ -0,0 +1,14 @@ +set_radius_extended_configsdf +set_radius_extended_configsdfsdf +fsdsdfsf +xe xich low +set_radius_extended_configsdfsdfdfhfg +fghgf +fghgfdfjgdfkjgerr +dfhkhjh +cong hoa xa hoi chu nghia +djgkdbsk +dfhjđhd +con co be begkklg +dhmkfhd +dfkbdfnlkbndflbd diff --git a/app/store/logs/test.log b/app/store/logs/test.log new file mode 100644 index 0000000..3fe0537 --- /dev/null +++ b/app/store/logs/test.log @@ -0,0 +1,1753 @@ +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:18:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:08 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 03:31:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 04:01:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 04:02:02 ========= +$ [01/01/1970 00:00:34.9899] Linux version 3.14.43 (aut@cheetah-build4) (gcc version 4.7.1 (OpenWrt GCC 4.7.1 r48430) ) #1 SMP PREEMPT Tue Jul 28 23:53:37 PDT 2020 +$ [01/01/1970 00:00:35.1499] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d +$ [01/01/1970 00:00:35.2499] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache +$ [01/01/1970 00:00:35.3499] Machine model: Cisco 11ac Wave2 Wifi Access Point +$ [01/01/1970 00:00:35.4299] Memory policy: Data cache writealloc +$ [01/01/1970 00:00:35.4999] Kernel command line: console=ttyMSM0,9600n8 ubi.mtd=0 root=/dev/ram activepart=part2 activeboot=0 wdgtriggered=0 board_sku=2 clk_ignore_unused +$ [01/01/1970 00:00:35.6799] CPU1: Booted secondary processor +$ [01/01/1970 00:00:35.7399] CPU2: Booted secondary processor +$ [01/01/1970 00:00:35.8099] CPU3: Booted secondary processor +$ [01/01/1970 00:00:35.8699] buginf tty flushing thread started, ttyport=9d52c400 +$ [*01/01/1970 00:00:39.0263] buginf() enabled. +$ [*01/01/1970 00:00:39.0593] Made it into bootsh: Jul 29 2020 00:16:46 T-cbfc6f1f9918f53aa2f774f4ee9f9aefab116a16-gcbfc6f1f-aut +$ [01/01/1970 00:00:58.7799] audit_printk_skb: 105 callbacks suppressed +$ [01/01/1970 00:01:17.8799] audit_printk_skb: 36 callbacks suppressed +$ +$ Welcome to Cisco. +$ +$ Usage of this device is governed by Cisco's End User License Agreement, +$ available at: +$ http://www.cisco.com/c/en/us/td/docs/general/warranty/English/EU1KEN_.html. +$ +$ +$ Restricted Rights Legend +$ +$ Use, duplication, or disclosure by the Government is subject to +$ restrictions as set forth in subparagraph (c) of the Commercial +$ Computer Software - Restricted Rights clause at FAR sec. 52.227-19 and +$ subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer +$ Software clause at DFARS sec. 252.227-7013. +$ +$ Cisco Systems, Inc. +$ 170 West Tasman Drive +$ San Jose, California 95134-1706 +$ +$ This product contains cryptographic features and is subject to United +$ States and local country laws governing import, export, transfer and +$ use. Delivery of Cisco cryptographic products does not imply +$ third-party authority to import, export, distribute or use encryption. +$ Importers, exporters, distributors and users are responsible for +$ compliance with U.S. and local country laws. By using this product you +$ agree to comply with applicable laws and regulations. If you are unable +$ to comply with U.S. and local laws, return this product immediately. +$ +$ A summary of U.S. laws governing Cisco cryptographic products may be found at: +$ http://www.cisco.com/wwl/export/crypto/tool/stqrg.html +$ +$ If you require further assistance please contact us by sending email to +$ export@cisco.com. +$ +$ +$ This product contains some software licensed under the +$ "GNU General Public License, version 2" provided with +$ ABSOLUTELY NO WARRANTY under the terms of +$ "GNU General Public License, version 2", available here: +$ http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +$ +$ +$ This product contains some software licensed under the +$ "GNU Library General Public License, version 2" provided +$ with ABSOLUTELY NO WARRANTY under the terms of "GNU Library +$ General Public License, version 2", available here: +$ http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +$ +$ +$ This product contains some software licensed under the +$ "GNU Lesser General Public License, version 2.1" provided +$ with ABSOLUTELY NO WARRANTY under the terms of "GNU Lesser +$ General Public License, version 2.1", available here: +$ http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +$ +$ +$ This product contains some software licensed under the +$ "GNU General Public License, version 3" provided with +$ ABSOLUTELY NO WARRANTY under the terms of +$ "GNU General Public License, Version 3", available here: +$ http://www.gnu.org/licenses/gpl.html. +$ +$ +$ This product contains some software licensed under the +$ "GNU Affero General Public License, version 3" provided +$ with ABSOLUTELY NO WARRANTY under the terms of +$ "GNU Affero General Public License, version 3", available here: +$ http://www.gnu.org/licenses/agpl-3.0.html. +$ +$ [ OK ] Reached target Timers. +$ [ OK ] Reached target Cisco File Systems (Pre). +$ [ OK ] Created slice -.slice. +$ [ OK ] Created slice system.slice. +$ Starting Cisco UBIFS reformat/mount... +$ [ OK ] Created slice system-serial\x2dgetty.slice. +$ [ OK ] Listening on Delayed Shutdown Socket. +$ [ OK ] Reached target Sockets. +$ [ OK ] Reached target Slices. +$ [ OK ] Started Cisco UBIFS reformat/mount. +$ Starting Cisco early mount... +$ [ OK ] Started Cisco early mount. +$ [ OK ] Reached target Local File Systems (Pre). +$ Starting Cisco platform file generation... +$ Starting Cisco fips check... +$ [*01/01/1970 00:01:27.8816] /etc/init.d/generate_platforms: line 1: plat_get_usb_admin_state: not found +$ Starting Cisco seed generation... +$ Starting Cisco system time setup... +$ [*01/01/1970 00:01:28.0838] GCM-128 POST passed +$ [*01/01/1970 00:01:28.0839] GCM-256 POST passed +$ [*09/07/2021 23:59:59.0374] Last reload time: Sep 7 23:59:59 2021 +$ [*09/07/2021 23:59:59.0009] Setting system time Tue Sep 7 23:59:59 UTC 2021 +$ [ OK ] Started Cisco platform file generation. +$ [ OK ] Started Cisco fips check. +$ [ OK ] Started Cisco seed generation. +$ [ OK ] Started Cisco system time setup. +$ [ OK ] Reached target Local File Systems. +$ Starting Cisco S10 boot service... +$ Starting Security Auditing Service... +$ [*09/07/2021 23:59:59.5934] parameter passed without an option given +$ Starting Cisco act2 check... +$ [ OK ] Started Cisco system time saving. +$ Starting Cisco system time saving... +$ Starting Cisco pkg install service... +$ [*09/07/2021 23:59:59.9121] === 5G radio domain is 12, COPY 5G BDF files from ETSI_BDF folder === +$ [*09/07/2021 23:59:59.9732] 2 +$ [ OK ] Started Security Auditing Service. +$ [*09/08/2021 00:00:00.2465] Active version: 8.10.130.0 +$ [*09/08/2021 00:00:00.2546] Backup version: 0.0.0.0 +$ [ OK ] Started Cisco act2 check. +$ [09/07/2021 23:59:59.7699] ramoops: Unknown symbol encode_rs8 (err 0) +$ [09/07/2021 23:59:59.8299] ramoops: Unknown symbol decode_rs8 (err 0) +$ [09/07/2021 23:59:59.9099] ramoops: Unknown symbol init_rs (err 0) +$ [* ] (1 of 2) A start job is running for...o pkg install service (9s /[ OK ] Started Cisco S10 boot service. +$ Starting Cisco nss service... +$ Starting Cisco nolan service... +$ Starting Cisco watchdog... +$ [ OK ] Started Cisco watchdog. +$ [ OK ] Started Cisco nss service. +$ [ OK ] Started Cisco nolan service. +$ [ OK ] Started Cisco pkg install service. +$ Starting Cisco S15platform... +$ Starting Cisco Kclick... +$ Starting Cisco nolan USB service... +$ [ OK ] Started Cisco S15platform. +$ [ OK ] Started Cisco nolan USB service. +$ [ OK ] Started Cisco Kclick. +$ Starting Cisco ME service... +$ Starting Cisco certificate create service... +$ Starting Cisco Kclick... +$ [ OK ] Started Cisco ME service. +$ [ OK ] Started Cisco Kclick. +$ Starting Cisco syslog service... +$ [*09/08/2021 00:00:00.6064] +$ [*09/08/2021 00:00:00.6064] led pattern module start +$ [*09/08/2021 00:00:00.6646] Loading caldata from mtd2 +$ [*09/08/2021 00:00:01.3399] ess-switch DT exist! +$ [*09/08/2021 00:00:01.3399] switchreg_base_addr: 0xc000000 +$ [*09/08/2021 00:00:01.3399] switchreg_size: 0x80000 +$ [*09/08/2021 00:00:01.3400] switch_access_mode: local bus +$ [*09/08/2021 00:00:01.3400] wan bmp:0x20 +$ [*09/08/2021 00:00:01.3400] ess-psgmii DT exist! +$ [*09/08/2021 00:00:01.3400] mac mode=3 +$ [*09/08/2021 00:00:01.3400] current mac mode = 0 +$ [*09/08/2021 00:00:01.3401] current dts led_source_num is 5 +$ [*09/08/2021 00:00:01.3401] mdio DT exist! +$ [*09/08/2021 00:00:01.3402] ssdk_plat_init start +$ [*09/08/2021 00:00:01.3404] enable ess clk +$ [*09/08/2021 00:00:01.4509] reset ok in probe! +$ [*09/08/2021 00:00:01.4523] PHY ID is 0x4dd0b1 +$ [*09/08/2021 00:00:01.5249] qca probe malibu phy driver succeeded! +$ [*09/08/2021 00:00:03.3290] Dakota Chip version 0x1401 +$ [*09/08/2021 00:00:03.3293] +$ [*09/08/2021 00:00:03.3294] QCA Switch config done - default in CPU switching. +$ [*09/08/2021 00:00:03.3306] qca-ssdk module init succeeded! +$ [*09/08/2021 00:00:03.3309] +$ [*09/08/2021 00:00:03.3309] QCA Switch config done - default in CPU switching. +$ [*09/08/2021 00:00:04.0489] crypto worker thread started +$ [*09/08/2021 00:00:04.0503] crypto worker thread started +$ [*09/08/2021 00:00:04.1929] pid 3243's current affinity mask: f +$ [*09/08/2021 00:00:04.1929] pid 3243's new affinity mask: e +$ [*09/08/2021 00:00:04.2011] pid 3242's current affinity mask: f +$ [*09/08/2021 00:00:04.2011] pid 3242's new affinity mask: e +$ [*09/08/2021 00:00:04.4540] Current value of FACTORY_RESET=0 +$ [*09/07/2021 23:59:59.0419] Last reload time: Sep 7 23:59:59 2021 +$ [*09/07/2021 23:59:59.0009] Setting system time Tue Sep 7 23:59:59 UTC 2021 +$ [*09/07/2021 23:59:59.1345] device wired0 entered promiscuous mode +$ [*09/08/2021 00:00:00.5038] Last reload reason : 0: unknown +$ [*09/08/2021 00:00:04.7936] stile module dp init successfully +$ [*09/08/2021 00:00:04.7937] NBAR Label:BLD_POLARIS_DEV_LATEST_20200414_053707 Module timestamp: Jul 29 2020 at 00:06:05 User: ttaichol +$ [*09/08/2021 00:00:13.7575] Loading sha2... +$ [*09/08/2021 00:00:13.7676] Dumpping sha1... +$ [*09/08/2021 00:00:14.3658] +$ [*09/08/2021 00:00:14.3658] Click sched monitor: schedulers = 3 +$ [*09/08/2021 00:00:14.6186] Loading MIC cert and key +$ [*09/08/2021 00:00:14.6287] Dumpping sha2... +$ [*09/08/2021 00:00:15.4034] Loading MIC cert and key +$ Starting Cisco S16platfomm... +$ Starting rsyslog client... +$ [ OK ] Started Cisco certificate create service. +$ [ OK ] Started Cisco syslog service. +$ [ OK ] Started Cisco S16platfomm. +$ [ OK ] Started rsyslog client. +$ Starting Cisco synclogd... +$ [ OK ] Started Cisco Tam service. +$ Starting Cisco Tam service... +$ Starting Cisco certtime service... +$ [ OK ] Started Cisco synclogd. +$ [ *** ] A start job is running for Cisco certtime service (32s / 1min 26s[ *** ] A start job is running for Cisco certtime service (32s / 1min 26s[*** ] A start job is running for Cisco certtime service (33s / 1min 26s[** ] A start job is running for Cisco certtime service (33s / 1min 26s[* ] A start job is running for Cisco certtime service (34s / 1min 26s[** ] A start job is running for Cisco certtime service (34s / 1min 26s[*** ] A start job is running for Cisco certtime service (35s / 1min 26s[ *** ] A start job is running for Cisco certtime service (35s / 1min 26s[ *** ] A start job is running for Cisco certtime service (36s / 1min 26s[ ***] A start job is running for Cisco certtime service (36s / 1min 26s[ **] A start job is running for Cisco certtime service (37s / 1min 26s[ *] A start job is running for Cisco certtime service (37s / 1min 26s[ **] A start job is running for Cisco certtime service (38s / 1min 26s[ ***] A start job is running for Cisco certtime service (38s / 1min 26s[ *** ] A start job is running for Cisco certtime service (39s / 1min 26s[ *** ] A start job is running for Cisco certtime service (39s / 1min 26s[*** ] A start job is running for Cisco certtime service (40s / 1min 26s[** ] A start job is running for Cisco certtime service (40s / 1min 26s[* ] A start job is running for Cisco certtime service (41s / 1min 26s[** ] A start job is running for Cisco certtime service (41s / 1min 26s[*** ] A start job is running for Cisco certtime service (42s / 1min 26s[ *** ] A start job is running for Cisco certtime service (42s / 1min 26s[ *** ] A start job is running for Cisco certtime service (43s / 1min 26s[ ***] A start job is running for Cisco certtime service (43s / 1min 26s[ **] A start job is running for Cisco certtime service (44s / 1min 26s[ *] A start job is running for Cisco certtime service (44s / 1min 26s[ **] A start job is running for Cisco certtime service (45s / 1min 26s[ ***] A start job is running for Cisco certtime service (45s / 1min 26s[ *** ] A start job is running for Cisco certtime service (46s / 1min 26s[ *** ] A start job is running for Cisco certtime service (46s / 1min 26s[*** ] A start job is running for Cisco certtime service (47s / 1min 26s[** ] A start job is running for Cisco certtime service (47s / 1min 26s[* ] A start job is running for Cisco certtime service (48s / 1min 26s[** ] A start job is running for Cisco certtime service (48s / 1min 26s[*** ] A start job is running for Cisco certtime service (49s / 1min 26s[ *** ] A start job is running for Cisco certtime service (49s / 1min 26s[ *** ] A start job is running for Cisco certtime service (50s / 1min 26s[ ***] A start job is running for Cisco certtime service (50s / 1min 26s[ **] A start job is running for Cisco certtime service (51s / 1min 26s[ *] A start job is running for Cisco certtime service (51s / 1min 26s[ **] A start job is running for Cisco certtime service (52s / 1min 26s[ ***] A start job is running for Cisco certtime service (52s / 1min 26s[ *** ] A start job is running for Cisco certtime service (53s / 1min 26s[ *** ] A start job is running for Cisco certtime service (53s / 1min 26s[*** ] A start job is running for Cisco certtime service (54s / 1min 26s[** ] A start job is running for Cisco certtime service (54s / 1min 26s[* ] A start job is running for Cisco certtime service (55s / 1min 26s[** ] A start job is running for Cisco certtime service (55s / 1min 26s[*** ] A start job is running for Cisco certtime service (56s / 1min 26s[ *** ] A start job is running for Cisco certtime service (56s / 1min 26s[ *** ] A start job is running for Cisco certtime service (57s / 1min 26s[ ***] A start job is running for Cisco certtime service (57s / 1min 26s[ **] A start job is running for Cisco certtime service (58s / 1min 26s[ OK ] Started Cisco certtime service. +$ [ OK ] Reached target System Initialization. +$ [ OK ] Reached target Paths. +$ [ OK ] Reached target Basic System. +$ Starting Fast CGI daemon... +$ Starting Hostapd process... +$ [ OK ] Started Serial Getty on ttyS0. +$ Starting Serial Getty on ttyS0... +$ [ OK ] Reached target Login Prompts. +$ [ OK ] Started System Monitor service. +$ Starting System Monitor service... +$ Starting Cisco kexec... +$ Starting capwapd... +$ Starting gRPC server daemon... +$ Starting Clean Air daemon... +$ [ OK ] Started NTP_PROC daemon. +$ Starting NTP_PROC daemon... +$ Starting Cisco led service... +$ Starting Cisco rtd service... +$ Starting OpenSSH server daemon... +$ Starting Cisco printkd... +$ Starting AP Trace daemon... +$ Starting Cisco brain service... +$ Starting Cisco klogd... +$ Starting WCPD process... +$ [ OK ] Started Cisco kexec. +$ [ OK ] Started Cisco led service. +$ [ OK ] Started Cisco printkd. +$ [ OK ] Started Cisco klogd. +$ [ OK ] Started AP Trace daemon. +$ [ OK ] Started Fast CGI daemon. +$ [ OK ] Started Cisco rtd service. +$ [ OK ] Started Hostapd process. +$ [ OK ] Started Cisco brain service. +$ [*09/08/2021 00:00:52.2299] pid 4227's current affinity mask: f +$ [*09/08/2021 00:00:52.2299] pid 4227's new affinity mask: e +$ [*09/08/2021 00:00:52.9372] __mm_init_module +$ [*09/08/2021 00:00:54.7632] ol_ath_ahb_probe +$ [*09/08/2021 00:00:54.7634] ol_ath_ahb_probe: io resource start: 0xa000000, mem=0xa3c00000 +$ [*09/08/2021 00:00:54.7637] +$ [*09/08/2021 00:00:54.7637] __ol_ath_attach() Allocated scn 929804c0 +$ [*09/08/2021 00:00:54.7638] ol_ath_ahb_configure: MSI addr: 0b006040, MSI base: 00000040 +$ [*09/08/2021 00:00:54.7741] +$ [*09/08/2021 00:00:54.7741] ol_ath_ahb_configure : num_desired MSI set to 0 +$ [*09/08/2021 00:00:54.7742] +$ [*09/08/2021 00:00:54.7742] Using Legacy Interrupt +$ [*09/08/2021 00:00:54.7742] +$ [*09/08/2021 00:00:54.7742] Waiting for target init +$ [*09/08/2021 00:00:54.7742] +$ [*09/08/2021 00:00:54.7743] Done waiting +$ [*09/08/2021 00:00:54.7785] ol_ath_attach interface_id 0 +$ [*09/08/2021 00:00:54.7789] Chip id: 0xb, chip version: 0x1000000 +$ [*09/08/2021 00:00:54.7794] +$ [*09/08/2021 00:00:54.7794] Target Version is 1000000 +$ [*09/08/2021 00:00:54.7794] +$ [*09/08/2021 00:00:54.7794] Flash Download Address c0000 +$ [*09/08/2021 00:00:54.7794] ol_transfer_bin_file: flash data file defined +$ [*09/08/2021 00:00:54.7794] ol_transfer_bin_file[3800] Get Caldata for wifi0. +$ [*09/08/2021 00:00:54.7795] __adf_os_fs_read[42], Open File /tmp/wifi0.caldata SUCCESS!! +$ [*09/08/2021 00:00:54.7795] file system magic:16914836 +$ [*09/08/2021 00:00:54.7795] super blocksize:4096 +$ [*09/08/2021 00:00:54.7796] inode 5844 +$ [*09/08/2021 00:00:54.7796] file size:12064 +$ [*09/08/2021 00:00:54.7797] qc98xx_verify_checksum: flash checksum passed: 0xc35d +$ [*09/08/2021 00:00:54.7797] ol_transfer_bin_file 3861: Download Flash data len 12064 +$ [*09/08/2021 00:00:54.8023] +$ [*09/08/2021 00:00:54.8023] Board data initialized +$ [*09/08/2021 00:00:54.8027] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:54.8231] ol_ath_download_firmware :First OTP download and Execute is good address:0x5800 return param 4660 +$ [*09/08/2021 00:00:54.8231] ol_ath_download_firmware:##Board Id 22 , CHIP Id 0 +$ [*09/08/2021 00:00:54.8232] +$ [*09/08/2021 00:00:54.8232] wifi0: Selecting board data file name boardData_Mallorca_TW_2G_neg_pwr.bin +$ [*09/08/2021 00:00:54.8233] ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=IPQ4019/hw.1/boardData_Mallorca_TW_2G_neg_pwr.bin +$ [*09/08/2021 00:00:54.8235] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:54.8449] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:54.8605] +$ [*09/08/2021 00:00:54.8605] [Flash] : Ignore Module param +$ [*09/08/2021 00:00:54.8606] ol_ath_download_firmware : Second OTP download and Execute is good, param=0x0 +$ [*09/08/2021 00:00:54.8612] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:54.8620] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:54.8710] ol_transfer_bin_file: Downloading firmware file: IPQ4019/hw.1/athwlan.bin +$ [*09/08/2021 00:00:54.8720] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:56.1034] HTC Rx: insufficient length, got:4 expected =8 +$ [*09/08/2021 00:00:56.1056] Startup Mode-0 set +$ [*09/08/2021 00:00:56.1083] HTC Service:0x0300 ep:1 TX flow control disabled +$ [*09/08/2021 00:00:56.1134] HTC Service:0x0100 ep:2 TX flow control disabled +$ [*09/08/2021 00:00:56.1146] Firmware_Build_Number:70 +$ [*09/08/2021 00:00:56.1147] num_rf_chain:0x00000002 ht_cap_info:0x0000085b vht_cap_info:0x339959b2 vht_supp_mcs:0x0000fffa +$ [*09/08/2021 00:00:56.1147] +$ [*09/08/2021 00:00:56.1147] RES CFG Support wmi_service_bitmap 9778 +$ [*09/08/2021 00:00:56.1147] +$ [*09/08/2021 00:00:56.1147] Sending Ext resource cfg: HOST PLATFORM as 0 and fw_feature_bitmap as 50 to TGT +$ [*09/08/2021 00:00:56.1149] ol_ath_service_ready_event: sw_cal_support_check_flag: 1 +$ [*09/08/2021 00:00:56.1163] ol_ath_service_ready_event[4276] WAPI MBSSID 0 +$ [*09/08/2021 00:00:56.1566] wmi_ready_event_rx: WMI UNIFIED READY event +$ [*09/08/2021 00:00:56.1567] htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 0 +$ [*09/08/2021 00:00:56.1625] spectral_init_netlink 81 NULL SKB +$ [*09/08/2021 00:00:56.1645] ACS not enabled +$ [*09/08/2021 00:00:56.1787] ol_ath_thermal_mitigation_attach: -- +$ [*09/08/2021 00:00:56.1789] ol_ath_ahb_probe +$ [*09/08/2021 00:00:56.1790] ol_ath_ahb_probe: io resource start: 0xa800000, mem=0xa4000000 +$ [*09/08/2021 00:00:56.1794] +$ [*09/08/2021 00:00:56.1794] __ol_ath_attach() Allocated scn 921404c0 +$ [*09/08/2021 00:00:56.1795] ol_ath_ahb_configure: MSI addr: 0b006040, MSI base: 00000050 +$ [*09/08/2021 00:00:56.1998] +$ [*09/08/2021 00:00:56.1998] ol_ath_ahb_configure : num_desired MSI set to 0 +$ [*09/08/2021 00:00:56.1999] +$ [*09/08/2021 00:00:56.1999] Using Legacy Interrupt +$ [*09/08/2021 00:00:56.1999] +$ [*09/08/2021 00:00:56.1999] Waiting for target init +$ [*09/08/2021 00:00:56.1999] +$ [*09/08/2021 00:00:56.2000] Done waiting +$ [*09/08/2021 00:00:56.2159] ol_ath_attach interface_id 1 +$ [*09/08/2021 00:00:56.2163] Chip id: 0xb, chip version: 0x1000000 +$ [*09/08/2021 00:00:56.2168] +$ [*09/08/2021 00:00:56.2168] Target Version is 1000000 +$ [*09/08/2021 00:00:56.2168] +$ +$ [*09/08/2021 00:00:56.2168] Flash Download Address c0000 +$ [*09/08/2021 00:00:56.2168] ol_transfer_bin_file: flash data file defined +$ [*09/08/2021 00:00:56.2168] ol_transfer_bin_file[3800] Get Caldata for wifi1. +$ [*09/08/2021 00:00:56.2169] __adf_os_fs_read[42], Open File /tmp/wifi1.caldata SUCCESS!! +$ [*09/08/2021 00:00:56.2169] file system magic:16914836 +$ [*09/08/2021 00:00:56.2170] super blocksize:4096 +$ [*09/08/2021 00:00:56.2170] inode 7427 +$ [*09/08/2021 00:00:56.2170] file size:12064 +$ [*09/08/2021 00:00:56.2171] qc98xx_verify_checksum: flash checksum passed: 0x2c15 +$ [*09/08/2021 00:00:56.2171] ol_transfer_bin_file 3861: Download Flash data len 12064 +$ [*09/08/2021 00:00:56.2371] +$ [*09/08/2021 00:00:56.2371] Board data initialized +$ [*09/08/2021 00:00:56.2375] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:56.2579] ol_ath_download_firmware :First OTP download and Execute is good address:0x5c00 return param 4660 +$ [*09/08/2021 00:00:56.2579] ol_ath_download_firmware:##Board Id 23 , CHIP Id 0 +$ [*09/08/2021 00:00:56.2581] +$ [*09/08/2021 00:00:56.2581] wifi1: Selecting board data file name boardData_Mallorca_TW_5G_neg_pwr.bin +$ [*09/08/2021 00:00:56.2581] ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=IPQ4019/hw.1/boardData_Mallorca_TW_5G_neg_pwr.bin +$ [*09/08/2021 00:00:56.2584] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:56.2788] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:56.2944] +$ [*09/08/2021 00:00:56.2945] [Flash] : Ignore Module param +$ [*09/08/2021 00:00:56.2946] ol_ath_download_firmware : Second OTP download and Execute is good, param=0x0 +$ [*09/08/2021 00:00:56.2952] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:56.2961] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:56.3053] ol_transfer_bin_file: Downloading firmware file: IPQ4019/hw.1/athwlan.bin +$ [*09/08/2021 00:00:56.3064] Firmware loaded from user helper succesfully +$ [*09/08/2021 00:00:57.1048] FWLOG: [196147] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0xdeb001, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:57.1049] FWLOG: [196147] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:57.1049] FWLOG: [196147] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:57.1050] FWLOG: [196147] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:57.5311] HTC Rx: insufficient length, got:4 expected =8 +$ [*09/08/2021 00:00:57.5333] Startup Mode-0 set +$ [*09/08/2021 00:00:57.5337] HTC Service:0x0300 ep:1 TX flow control disabled +$ [*09/08/2021 00:00:57.5390] HTC Service:0x0100 ep:2 TX flow control disabled +$ [*09/08/2021 00:00:57.5402] Firmware_Build_Number:70 +$ [*09/08/2021 00:00:57.5402] num_rf_chain:0x00000002 ht_cap_info:0x0000085b vht_cap_info:0x339959b2 vht_supp_mcs:0x0000fffa +$ [*09/08/2021 00:00:57.5403] +$ [*09/08/2021 00:00:57.5403] RES CFG Support wmi_service_bitmap 9778 +$ [*09/08/2021 00:00:57.5403] +$ [*09/08/2021 00:00:57.5403] Sending Ext resource cfg: HOST PLATFORM as 0 and fw_feature_bitmap as 50 to TGT +$ [*09/08/2021 00:00:57.5405] ol_ath_service_ready_event: sw_cal_support_check_flag: 1 +$ [*09/08/2021 00:00:57.5417] ol_ath_service_ready_event[4276] WAPI MBSSID 0 +$ [*09/08/2021 00:00:57.5820] wmi_ready_event_rx: WMI UNIFIED READY event +$ [*09/08/2021 00:00:57.5821] htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 1 +$ [*09/08/2021 00:00:57.5888] acfg_attach: Offload using existing sock 9f0b9400 +$ [*09/08/2021 00:00:57.5892] spectral_init_netlink 81 NULL SKB +$ [*09/08/2021 00:00:57.5919] ACS not enabled +$ [*09/08/2021 00:00:57.5963] ol_ath_thermal_mitigation_attach: -- +$ [*09/08/2021 00:00:57.7316] pktlog_init: Initializing Pktlog for AR900B, pktlog_hdr_size = 16 +$ [*09/08/2021 00:00:57.7317] pktlog_init: Initializing Pktlog for AR900B, pktlog_hdr_size = 16 +$ [*09/08/2021 00:00:58.5327] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0xdeb001, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:58.5328] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:58.5328] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:58.5328] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x94c, 0x94c, 0x0 ) +$ [*09/08/2021 00:00:58.5329] FWLOG: [197617] WAL_DBGID_PDEV_INFO_PRINT ( 0x3a, 0x10, 0x0, 0x10, 0x0 ) +$ +$ +$ User Access Verification +$ Username: [*09/08/2021 00:01:03.3539] wmi_dbg_cfg_send: mod[0]00000000 dbgcfg40000000 cfgvalid[0] 00000000 cfgvalid[1] 00000000 +$ [*09/08/2021 00:01:03.3595] wmi_dbg_cfg_send: mod[0]00000000 dbgcfg40000000 cfgvalid[0] 00000000 cfgvalid[1] 00000000 +$ [*09/08/2021 00:01:04.2375] ip6_port srcr2, ip6local fe80::1ed1:e0ff:fefd:4cf0, ip6 ::, plen 0, gw6 ::, gw6_mac 00:00:00:00:00:00, mtu 1500, vid 0, mode6 2(slaac) +$ [*09/08/2021 00:01:04.3160] pid 5323's current affinity mask: f +$ [*09/08/2021 00:01:04.3160] pid 5323's new affinity mask: e +$ [*09/08/2021 00:01:05.3968] device aptrace0 entered promiscuous mode +$ [*09/08/2021 00:01:05.5261] device to_container entered promiscuous mode +$ [*09/08/2021 00:01:06.9688] chpasswd: password for user changed +$ [*09/08/2021 00:01:06.9940] ---- set led 1 +$ [*09/08/2021 00:01:09.2087] DOT11_TXP[0]:Domain configured: 1 class:E +$ [*09/08/2021 00:01:09.5204] DOT11_TXP[1]:Domain configured: 12 class:E +$ [*09/08/2021 00:01:11.3347] DOT11_DRV[0]: Init Radio0 +$ [*09/08/2021 00:01:11.3994] DOT11_DRV[0]: set_channel Channel set to 6 +$ [*09/08/2021 00:01:11.4094] DOT11_DRV[1]: Init Radio1 +$ [*09/08/2021 00:01:11.5055] DOT11_DRV[1]: set_channel Channel set to 36 +$ [*09/08/2021 00:01:12.1854] DOT11_CFG[0] Radio Mode is changed from Local to FlexConnect +$ [*09/08/2021 00:01:12.1879] DOT11_CFG[0]: Starting radio 0 +$ [*09/08/2021 00:01:12.1898] DOT11_DRV[0]: Start Radio0 - Begin +$ [*09/08/2021 00:01:12.1919] DOT11_DRV[0]: Start Radio0 - End +$ [*09/08/2021 00:01:12.1936] DOT11_CFG[1] Radio Mode is changed from Local to FlexConnect +$ [*09/08/2021 00:01:12.1959] DOT11_CFG[1]: Starting radio 1 +$ [*09/08/2021 00:01:12.1978] DOT11_DRV[1]: Start Radio1 - Begin +$ [*09/08/2021 00:01:12.1999] DOT11_DRV[1]: Start Radio1 - End +$ [*09/08/2021 00:01:12.2515] DOT11_DRV[0]: Stop Radio0 - Begin +$ [*09/08/2021 00:01:12.4081] DOT11_DRV[0]: Stop Radio0 - End +$ [*09/08/2021 00:01:12.4176] DOT11_DRV[0]: set_channel Channel set to 1 +$ [*09/08/2021 00:01:12.4204] DOT11_DRV[0]: Start Radio0 - Begin +$ [*09/08/2021 00:01:12.4221] DOT11_DRV[0]: Start Radio0 - End +$ [*09/08/2021 00:01:12.4229] DOT11_DRV[0]: Channel set to 1, width 20 +$ [*09/08/2021 00:01:12.4272] DOT11_DRV[0]: Stop Radio0 - Begin +$ [*09/08/2021 00:01:12.6482] DOT11_DRV[0]: Stop Radio0 - End +$ [*09/08/2021 00:01:12.6496] DOT11_DRV[0]: Channel set to 1, width 20 +$ [*09/08/2021 00:01:12.6880] DOT11_DRV[1]: Stop Radio1 - Begin +$ [*09/08/2021 00:01:12.6911] DOT11_DRV[1]: Stop Radio1 - End +$ [*09/08/2021 00:01:12.6997] DOT11_DRV[1]: set_channel Channel set to 36 +$ [*09/08/2021 00:01:12.7025] DOT11_DRV[1]: Start Radio1 - Begin +$ [*09/08/2021 00:01:12.7041] DOT11_DRV[1]: Start Radio1 - End +$ [*09/08/2021 00:01:12.7046] DOT11_DRV[1]: Stop Radio1 - Begin +$ [*09/08/2021 00:01:12.9381] DOT11_DRV[1]: Stop Radio1 - End +$ [*09/08/2021 00:01:12.9383] DOT11_DRV[1]: Start Radio1 - Begin +$ [*09/08/2021 00:01:12.9400] DOT11_DRV[1]: Start Radio1 - End +$ [*09/08/2021 00:01:12.9407] DOT11_DRV[1]: Channel set to 36, width 20 +$ [*09/08/2021 00:01:12.9475] DOT11_DRV[1]: Stop Radio1 - Begin +$ [*09/08/2021 00:01:12.9506] DOT11_DRV[1]: Stop Radio1 - End +$ [*09/08/2021 00:01:12.9520] DOT11_DRV[1]: Channel set to 36, width 20 +$ [*09/08/2021 00:01:12.9548] Failed to load flex AP config from file. Default config will be used. +$ [*09/08/2021 00:01:12.9579] Socket Valid Element wcp/wcp_db Handler set_vlan_name_map Data Length 10 +$ [*09/08/2021 00:01:12.9902] Failed to send msg to wcp/Radio2.set_radius_extended_config +$ [*09/08/2021 00:01:12.9902] +$ [*09/08/2021 00:01:12.9978] Failed to load flex vap config from file. Default config will be used. +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 04:54:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 04:54:43 ========= +$ +$ Username: +$ Username: cisco +$ Password: +$ AP1CD1.E0FD.4CF0>en +$ Password: +$ AP1CD1.E0FD.4CF0#sh inv +$ NAME: AP1815, DESCR: Cisco Aironet 1815 Series (IEEE 802.11ac) Access Point +$ PID: AIR-AP1815T-E-K9 , VID: V01, SN: FGL2537L0UY +$ +$ AP1CD1.E0FD.4CF0#sh ver +$ Restricted Rights Legend +$ +$ Use, duplication, or disclosure by the Government is subject to +$ restrictions as set forth in subparagraph (c) of the Commercial +$ Computer Software - Restricted Rights clause at FAR sec. 52.227-19 and +$ subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer +$ Software clause at DFARS sec. 252.227-7013. +$ +$ Cisco Systems, Inc. +$ 170 West Tasman Drive +$ San Jose, California 95134-1706 +$ +$ This product contains cryptographic features and is subject to United +$ States and local country laws governing import, export, transfer and +$ use. Delivery of Cisco cryptographic products does not imply +$ third-party authority to import, export, distribute or use encryption. +$ Importers, exporters, distributors and users are responsible for +$ compliance with U.S. and local country laws. By using this product you +$ agree to comply with applicable laws and regulations. If you are unable +$ to comply with U.S. and local laws, return this product immediately. +$ +$ A summary of U.S. laws governing Cisco cryptographic products may be found at: +$ http://www.cisco.com/wwl/export/crypto/tool/stqrg.html +$ +$ If you require further assistance please contact us by sending email to +$ export@cisco.com. +$ +$ This product contains some software licensed under the +$ "GNU General Public License, version 2" provided with +$ ABSOLUTELY NO WARRANTY under the terms of +$ "GNU General Public License, version 2", available here: +$ http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +$ +$ This product contains some software licensed under the +$ "GNU Library General Public License, version 2" provided +$ with ABSOLUTELY NO WARRANTY under the terms of "GNU Library +$ General Public License, version 2", available here: +$ http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +$ +$ This product contains some software licensed under the +$ "GNU Lesser General Public License, version 2.1" provided +$ with ABSOLUTELY NO WARRANTY under the terms of "GNU Lesser +$ General Public License, version 2.1", available here: +$ http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +$ +$ This product contains some software licensed under the +$ "GNU General Public License, version 3" provided with +$ ABSOLUTELY NO WARRANTY under the terms of +$ "GNU General Public License, Version 3", available here: +$ http://www.gnu.org/licenses/gpl.html. +$ +$ This product contains some software licensed under the +$ "GNU Affero General Public License, version 3" provided +$ with ABSOLUTELY NO WARRANTY under the terms of +$ "GNU Affero General Public License, version 3", available here: +$ http://www.gnu.org/licenses/agpl-3.0.html. +$ +$ Cisco AP Software, (ap1g5), C1815, RELEASE SOFTWARE +$ Technical Support: http://www.cisco.com/techsupport +$ Copyright (c) 1986-2021 by Cisco Systems, Inc. +$ Compiled Wed Jul 29 00:18:43 PDT 2020 +$ +$ ROM: Bootstrap program is U-Boot boot loader +$ BOOTLDR: U-Boot boot loader Version 52 +$ +$ AP1CD1.E0FD.4CF0 uptime is 0 days, 0 hours, 56 minutes +$ Last reload time : Tue Sep 7 23:59:59 UTC 2021 +$ Last reload reason : unknown +$ +$ cisco AIR-AP1815T-E-K9 ARMv7 Processor rev 5 (v7l) with 495824/215352K bytes of memory. +$ Processor board ID FGL2537L0UY +$ AP Running Image : 8.10.130.0 +$ Primary Boot Image : 8.10.130.0 +$ Backup Boot Image : 0.0.0.0 +$ Primary Boot Image Hash: +$ Backup Boot Image Hash: +$ 4 Gigabit Ethernet interfaces +$ 2 802.11 Radios +$ Radio FW version : 7e809a6b82648b605ad4ce1fd1a98fd0 +$ NSS FW version : not available +$ +$ Base ethernet MAC Address : 1C:D1:E0:FD:4C:F0 +$ Part Number : 0-0000-00 +$ PCA Assembly Number : 074-105849-01 +$ PCA Revision Number : 0 +$ PCB Serial Number : FOC253510HH +$ Top Assembly Part Number : 068-101112-01 +$ Top Assembly Serial Number : FGL2537L0UY +$ Top Revision Number : A0 +$ Product/Model Number : AIR-AP1815T-E-K9 +$ +$ +$ AP1CD1.E0FD.4CF0# +$ AP1CD1.E0FD.4CF0#sh log +$ Console logging : Level - notification, Status - enabled +$ +$ Syslog logging : Level - error, Status - active, IP - 255.255.255.255 +$ +$ System logging : +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5875] bypasswmi : 0 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5881] target uses HTT version 2.2; host uses 2.2 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5886] ol_ath_phyerr_attach: called +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5888] OL Resmgr Init-ed +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5888] acfg_attach: Offload using existing sock 9f0b9400 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5889] ol_if_spectral_setup +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5889] SPECTRAL : get_capability not registered +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5889] HAL_CAP_PHYDIAG : Capable +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5890] SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 257) +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5890] SPECTRAL : get_capability not registered +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5890] HAL_CAP_RADAR : Capable +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5890] SPECTRAL : Need to fix the capablity check for SPECTRAL +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5891] (spectral_attach : 262) +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5891] SPECTRAL : get_capability not registered +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5891] HAL_CAP_SPECTRAL_SCAN : Capable +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5891] SPECTRAL : get_tsf64 not registered +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5892] spectral_init_netlink 81 NULL SKB +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5892] Green-AP : Green-AP : Attached +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5892] +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5892] Green-AP : Attached +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5892] rate power table overXide is only supported for AR98X +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5893] ol_if_dfs_setup: called +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5894] ol_if_dfs_attach: called; ptr=91a59984, radar_info=94b4fb48 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5917] ol_ath_attach() UMAC attach . +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5918] +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5918] BURSTING enabled by default +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5919] ACS not enabled +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5919] __ol_ath_attach: needed_headroom reservation 60 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5963] ol_ath_thermal_mitigation_attach: -- +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.5997] ath_ol_pci: (Atheros/multi-bss) +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.6669] ath_hal: 0.9.17.1 (AR5416, AR9380, WRITE_EEPROM, TX_DATA_SWAP, RX_DATA_SWAP, 11D) +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.6777] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.7218] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.7316] pktlog_init: Initializing Pktlog for AR900B, pktlog_hdr_size = 16 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.7317] pktlog_init: Initializing Pktlog for AR900B, pktlog_hdr_size = 16 +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.9142] systemd[1]: Starting dnsmasq watcher... +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.9243] brain: unloading click config +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.9244] brain: spring cleaning pages +$ Sep 8 00:00:57 kernel: [*09/08/2021 00:00:57.9748] systemd[1]: Starting DNSmasq... +$ Sep 8 00:00:58 dnsmasq[4475]: started, version 2.78 cachesize 150 +$ Sep 8 00:00:58 dnsmasq[4475]: compile time options: IPv6 GNU-getopt no-DBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-DNSSEC loop-detect inotify +$ Sep 8 00:00:58 dnsmasq-dhcp[4475]: DHCP, IP range 10.0.0.10 -- 10.0.0.250, lease time 1d +$ Sep 8 00:00:58 dnsmasq[4475]: read /etc/hosts - 3 addresses +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.1656] systemd[1]: Started DNSmasq. +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.2615] systemd[1]: Started dnsmasq watcher. +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.5327] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0xdeb001, 0x94c, 0x94c, 0x0 ) +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.5328] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x94c, 0x94c, 0x0 ) +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.5328] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x94c, 0x94c, 0x0 ) +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.5328] FWLOG: [197607] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x94c, 0x94c, 0x0 ) +$ Sep 8 00:00:58 kernel: [*09/08/2021 00:00:58.5329] FWLOG: [197617] WAL_DBGID_PDEV_INFO_PRINT ( 0x3a, 0x10, 0x0, 0x10, 0x0 ) +$ Sep 8 00:00:59 kernel: [*09/08/2021 00:00:59.4840] brain: loading click config +$ Sep 8 00:01:03 kernel: [*09/08/2021 00:01:03.0147] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:01:03 kernel: [09/08/2021 00:01:03.1099] SELinux: initialized (dev mtd_inodefs, type mtd_inodefs), not configured for labeling +$ Sep 8 00:01:03 kernel: [*09/08/2021 00:01:03.3539] wmi_dbg_cfg_send: mod[0]00000000 dbgcfg40000000 cfgvalid[0] 00000000 cfgvalid[1] 00000000 +$ Sep 8 00:01:03 kernel: [*09/08/2021 00:01:03.3595] wmi_dbg_cfg_send: mod[0]00000000 dbgcfg40000000 cfgvalid[0] 00000000 cfgvalid[1] 00000000 +$ Sep 8 00:01:03 brain: do_state:4246: assigning brain state: scan1; reason: initial_scan +$ Sep 8 00:01:03 kernel: [*09/08/2021 00:01:03.6745] systemd[1]: Starting Lighttpd Watcher... +$ Sep 8 00:01:03 kernel: [*09/08/2021 00:01:03.7348] systemd[1]: Starting Lighttpd Daemon... +$ Sep 8 00:01:03 kernel: [09/08/2021 00:01:03.7399] SELinux: initialized (dev mtd_inodefs, type mtd_inodefs), not configured for labeling +$ Sep 8 00:01:04 kernel: [09/08/2021 00:01:04.0499] SELinux: initialized (dev mtd_inodefs, type mtd_inodefs), not configured for labeling +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.0896] systemd[1]: Starting dnsmasq watcher... +$ Sep 8 00:01:04 GRPC: Turning off firewall ... +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.2375] ip6_port srcr2, ip6local fe80::1ed1:e0ff:fefd:4cf0, ip6 ::, plen 0, gw6 ::, gw6_mac 00:00:00:00:00:00, mtu 1500, vid 0, mode6 2(slaac) +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.3160] pid 5323's current affmask: f ore-- +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.3160] pid 5323's new affinity mask: e +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.3262] systemd[1]: Started Clean Air daemon. +$ Sep 8 00:01:04 dnsmasq[4475]: exiting on receipt of SIGTERM +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.3843] systemd[1]: Stopping DNSmasq... +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.3888] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.4380] systemd[1]: Started Lighttpd Daemon. +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.4486] systemd[1]: Started capwapd. +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.4815] systemd[1]: Starting DNSmasq... +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.5419] systemd[1]: Started gRPC server daemon. +$ Sep 8 00:01:04 kernel: [09/08/2021 00:01:04.5899] SELinux: initialized (dev mtd_inodefs, type mtd_inodefs), not configured for labeling +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.6174] systemd[1]: Started Lighttpd Watcher. +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.6429] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:01:04 dnsmasq[5432]: started, version 2.78 cachesize 150 +$ Sep 8 00:01:04 dnsmasq[5432]: compile time options: IPv6 GNU-getopt no-DBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-DNSSEC loop-detect inotify +$ Sep 8 00:01:04 dnsmasq-dhcp[5432]: DHCP, IP range 10.0.0.10 -- 10.0.0.250, lease time 1d +$ Sep 8 00:01:04 kernel: [*09/08/2021 00:01:04.8841] systemd[1]: Started DNSmasq. +$ Sep 8 00:01:04 dnsmasq[5432]: read /etc/hosts - 3 addresses +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.0814] systemd[1]: Reached target Multi-User System. +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.0929] systemd[1]: Starting Multi-User System. +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.1034] systemd[1]: Started dnsmasq watcher. +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.1176] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:01:05 FIPS[5385]: *** lighttpd: FIPS Mode = disabled *** +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.3008] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.3968] device aptrace0 entered promiscuous mode +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.5261] device to_container entered promiscuous mode +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.6437] systemd[1]: Started WCPD process. +$ Sep 8 00:01:05 kernel: [*09/08/2021 00:01:05.6464] systemd[1]: Startup finished in 1min 18.760s (kernel) + 0 (initrd) + 1min 21.669s (userspace) = 2min 40.430s. +$ Sep 8 00:01:05 brain: transitioning from init to scan1 +$ Sep 8 00:01:05 brain: Power mode: Full-Power, power_detection: DC_adapter(TRUE), 802.3AF_POE(FALSE) +$ Sep 8 00:01:05 FIPS[5491]: *** /opt/cisco/bin/wcpd: FIPS Mode = disabled *** +$ Sep 8 00:01:06 syslog: password for user changed +$ Sep 8 00:01:06 kernel: [*09/08/2021 00:01:06.9688] chpasswd: password for user changed +$ Sep 8 00:01:06 syslog: read LAG cfg, ap lag 0, global lag 0, lag capable 0 +$ Sep 8 00:01:06 kernel: [*09/08/2021 00:01:06.9940] ---- set led 1 +$ Sep 8 00:01:07 syslog: Check lagloadbalance setting flex mode 1 cfg 0 linkstate 0 ap_type 65 +$ Sep 8 00:01:09 kernel: [*09/08/2021 00:01:09.2087] DOT11_TXP[0]:Domain configured: 1 class:E +$ Sep 8 00:01:09 kernel: [*09/08/2021 00:01:09.5204] DOT11_TXP[1]:Domain configured: 12 class:E +$ Sep 8 00:01:11 kernel: [*09/08/2021 00:01:11.3347] DOT11_DRV[0]: Init Radio0 +$ Sep 8 00:01:11 kernel: [*09/08/2021 00:01:11.3994] DOT11_DRV[0]: set_channel Channel set to 6 +$ Sep 8 00:01:11 kernel: [*09/08/2021 00:01:11.4094] DOT11_DRV[1]: Init Radio1 +$ Sep 8 00:01:11 kernel: [*09/08/2021 00:01:11.5055] DOT11_DRV[1]: set_channel Channel set to 36 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1854] DOT11_CFG[0] Radio Mode is changed from Local to FlexConnect +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1879] DOT11_CFG[0]: Starting radio 0 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1898] DOT11_DRV[0]: Start Radio0 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1919] DOT11_DRV[0]: Start Radio0 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1936] DOT11_CFG[1] Radio Mode is changed from Local to FlexConnect +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1959] DOT11_CFG[1]: Starting radio 1 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1978] DOT11_DRV[1]: Start Radio1 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.1999] DOT11_DRV[1]: Start Radio1 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.2515] DOT11_DRV[0]: Stop Radio0 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.4081] DOT11_DRV[0]: Stop Radio0 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.4176] DOT11_DRV[0]: set_channel Channel set to 1 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.4204] DOT11_DRV[0]: Start Radio0 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.4221] DOT11_DRV[0]: Start Radio0 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.4229] DOT11_DRV[0]: Channel set to 1, width 20 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.4272] DOT11_DRV[0]: Stop Radio0 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.6482] DOT11_DRV[0]: Stop Radio0 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.6496] DOT11_DRV[0]: Channel set to 1, width 20 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.6880] DOT11_DRV[1]: Stop Radio1 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.6911] DOT11_DRV[1]: Stop Radio1 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.6997] DOT11_DRV[1]: set_channel Channel set to 36 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.7025] DOT11_DRV[1]: Start Radio1 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.7041] DOT11_DRV[1]: Start Ra End ore-- +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.7046] DOT11_DRV[1]: Stop Radio1 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9381] DOT11_DRV[1]: Stop Radio1 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9383] DOT11_DRV[1]: Start Radio1 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9400] DOT11_DRV[1]: Start Radio1 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9407] DOT11_DRV[1]: Channel set to 36, width 20 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9475] DOT11_DRV[1]: Stop Radio1 - Begin +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9506] DOT11_DRV[1]: Stop Radio1 - End +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9520] DOT11_DRV[1]: Channel set to 36, width 20 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9548] Failed to load flex AP config from file. Default config will be used. +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9579] Socket Valid Element wcp/wcp_db Handler set_vlan_name_map Data Length 10 +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9902] Failed to send msg to wcp/Radio2.set_radius_extended_config +$ Sep 8 00:01:12 kernel: [*09/08/2021 00:01:12.9902] +$ Sep 8 00:01:13 kernel: [*09/08/2021 00:01:12.9978] Failed to load flex vap config from file. Default config will be used. +$ Sep 8 00:01:13 kernel: [09/08/2021 00:01:13.0799] SELinux: initialized (dev mtd_inodefs, type mtd_inodefs), not configured for labeling +$ Sep 8 00:02:05 kernel: [*09/08/2021 00:02:05.3854] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:02:05 kernel: [*09/08/2021 00:02:05.3956] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:02:05 kernel: [*09/08/2021 00:02:05.4505] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:02:05 kernel: [*09/08/2021 00:02:05.4629] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:02:05 kernel: [*09/08/2021 00:02:05.5989] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:02:05 kernel: [*09/08/2021 00:02:05.6929] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:02:57 kernel: [*09/08/2021 00:02:57.6687] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:02:57 kernel: [*09/08/2021 00:02:57.6769] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:02:57 kernel: [*09/08/2021 00:02:57.7313] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:02:57 kernel: [*09/08/2021 00:02:57.7421] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:02:57 kernel: [*09/08/2021 00:02:57.8756] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:02:57 kernel: [*09/08/2021 00:02:57.9653] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:03:49 kernel: [*09/08/2021 00:03:49.9396] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:03:49 kernel: [*09/08/2021 00:03:49.9477] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:03:50 kernel: [*09/08/2021 00:03:49.9979] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:03:50 kernel: [*09/08/2021 00:03:50.0102] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:03:50 kernel: [*09/08/2021 00:03:50.1480] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:03:50 kernel: [*09/08/2021 00:03:50.2444] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:04:42 kernel: [*09/08/2021 00:04:42.2093] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:04:42 kernel: [*09/08/2021 00:04:42.2176] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:04:42 kernel: [*09/08/2021 00:04:42.2687] systemd[1]: Stopping Dclient...ore-- +$ Sep 8 00:04:42 kernel: [*09/08/2021 00:04:42.2793] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:04:42 kernel: [*09/08/2021 00:04:42.4176] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:04:42 kernel: [*09/08/2021 00:04:42.5073] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:05:34 kernel: [*09/08/2021 00:05:34.4773] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:05:34 kernel: [*09/08/2021 00:05:34.4855] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:05:34 kernel: [*09/08/2021 00:05:34.5358] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:05:34 kernel: [*09/08/2021 00:05:34.5476] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:05:34 kernel: [*09/08/2021 00:05:34.6808] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:05:34 kernel: [*09/08/2021 00:05:34.7722] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:06:26 kernel: [*09/08/2021 00:06:26.7498] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:06:26 kernel: [*09/08/2021 00:06:26.7579] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:06:26 kernel: [*09/08/2021 00:06:26.8131] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:06:26 kernel: [*09/08/2021 00:06:26.8241] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:06:26 kernel: [*09/08/2021 00:06:26.9645] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:06:27 kernel: [*09/08/2021 00:06:27.0548] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:07:19 kernel: [*09/08/2021 00:07:19.0165] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:07:19 kernel: [*09/08/2021 00:07:19.0248] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:07:19 kernel: [*09/08/2021 00:07:19.0760] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:07:19 kernel: [*09/08/2021 00:07:19.0876] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:07:19 kernel: [*09/08/2021 00:07:19.2232] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:07:19 kernel: [*09/08/2021 00:07:19.3119] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:08:11 kernel: [*09/08/2021 00:08:11.2865] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:08:11 kernel: [*09/08/2021 00:08:11.2948] systemd[1]: Starting dclient watcher... +$ Sep 8 00:08:11 kernel: [*09/08/2021 00:08:11.3481] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:08:11 kernel: [*09/08/2021 00:08:11.3602] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:08:11 kernel: [*09/08/2021 00:08:11.4994] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:08:11 kernel: [*09/08/2021 00:08:11.5933] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:09:03 kernel: [*09/08/2021 00:09:03.5532] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:09:03 kernel: [*09/08/2021 00:09:03.5697] systemd[1]: Starting dhcpv6 client watcher... +$ Sep 8 00:09:03 kernel: [*09/08/2021 00:09:03.6226] systemd[1]: Stopping DHCPv6 client... +$ Sep 8 00:09:03 kernel: [*09/08/2021 00:09:03.6352] systemd[1]: Starting DHCPv6 client... +$ Sep 8 00:09:03 kernel: [*09/08/2021 00:09:03.7675] systemd[1]: Started DHCPv6 client. +$ Sep 8 00:09:03 kernel: [*09/08/2021 00:09:03.8504] systemd[1]: Started dhcpv6 client watcher. +$ Sep 8 00:09:55 kernel: [*09/08/2021 00:09:55.8255] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready +$ Sep 8 00:09:55 kernel: [*09/08/2021 00:09:55.8397] systemd[1]: Starting dclient watcher... +$ Sep 8 00:09:55 kernel: [*09/08/2021 00:09:55.8917] systemd[1]: Stopping Dclient...ore-- +$ AP1CD1.E0FD.4CF0# +$ Read timed out +$ +$ +$ +$ User Access Verification +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 05:59:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 05:59:33 ========= +$ +$ Username: +$ Username: +$ % Authentication failed +$ +$ +$ +$ User Access Verification +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 06:51:26 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 06:51:31 ========= +$ +$ Username: +$ Username: +$ % Authentication failed +$ +$ +$ +$ User Access Verification +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 07:45:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 07:45:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 08:15:47 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 08:15:52 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 08:45:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 08:45:59 ========= +$ +$ Username: +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 09:58:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 09:58:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 10:28:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 10:28:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 10:58:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 10:58:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:06:47 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:06:52 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:06:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:06:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:06:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:03 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:08 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:08 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:13 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:13 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:18 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:18 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:23 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:29 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:34 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:34 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:39 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:07:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:08:58 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:03 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:09:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:10:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:11:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:12:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:10 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:13:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:14:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:30:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:10 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:10 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:31 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:36 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:31:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:18 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:23 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:28 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:44 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:44 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:49 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:32:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:00 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:05 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:05 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:10 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:10 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:26 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:31 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:31 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:36 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:33:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:13 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:18 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:18 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:23 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:28 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:39 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:44 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:34:55 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:00 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:00 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:05 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:05 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:10 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:16 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:21 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:21 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:26 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:26 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:31 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:42 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:47 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:47 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:52 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:35:58 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:03 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:03 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:08 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:08 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:13 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:13 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:18 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:29 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:34 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:34 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:39 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:39 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:44 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:36:55 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:00 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:00 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:05 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:16 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:21 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:21 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:26 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:26 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:42 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:47 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:47 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:52 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:37:58 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:03 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:03 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:08 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:08 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:29 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:34 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:38:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:16 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:21 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:39:58 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:03 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:03 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:08 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:40:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:41:58 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:03 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:42:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:43:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:44:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:45:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:46:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:47:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:48:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:49:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:10 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:31 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:36 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:50:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:13 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:18 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:18 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:23 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:28 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:34 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:39 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:39 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:44 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:51:55 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:00 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:00 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:05 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:16 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:52:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:10 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:31 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:36 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:47 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:52 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:53:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:03 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:08 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:08 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:13 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:13 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:18 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:18 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:29 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:34 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:34 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:39 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:39 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:44 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:50 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:50 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:55 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:54:55 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:00 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:00 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:05 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:11 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:16 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:16 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:21 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:21 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:26 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:32 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:37 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:37 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:42 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:42 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:47 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:53 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:58 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:55:58 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:03 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:03 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:08 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:14 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:19 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:19 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:24 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:24 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:29 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:40 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:40 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:45 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:45 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:56:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:01 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:06 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:06 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:11 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:27 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:32 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:48 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:53 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:57:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:58:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:27 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 11:59:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:14 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:35 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:51 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:56 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:00:56 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:01 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:17 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:22 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:22 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:28 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:43 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:43 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:48 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:01:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:04 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:09 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:09 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:30 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:35 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:41 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:46 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:46 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:51 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:52 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:57 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:02:57 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:02 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:02 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:07 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:07 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:12 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:12 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:17 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:18 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:23 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:23 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:28 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:28 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:33 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:33 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:38 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:38 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:44 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:44 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:49 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:49 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:54 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:54 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:59 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:03:59 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:04 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:05 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:10 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:10 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:15 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:15 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:20 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:20 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:25 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:25 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:30 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:31 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:36 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:36 ========= +$ ========= 20230823 - HELEN1 - Start recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:41 ========= +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:41 ======= +$ ========= 20230823 - HELEN1 - Start fault recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:44 +$ ========= 20230823 - HELEN1 - Start fault recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:4 +$ ========= 20230823 - HELEN1 - Start fault recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:04:4 +$ ========= 20230823 - HELEN1 - End recording -- Session US2-18-10 (Host 127.0.0.1) -- 23/08/2023 - 12:07:37 diff --git a/app/utils/indexSN.txt b/app/utils/indexSN.txt index 019bfc7..e22b9d0 100644 --- a/app/utils/indexSN.txt +++ b/app/utils/indexSN.txt @@ -1,92 +1,130 @@ -[{"PID":"","VID":"","SN":"FDO1829Q1VF","line":[6935,6982,6985],"fileName":"20230822-HELEN1-Session.US-3-5-127.0.0.1.log","warehouse":"US"} -,{"PID":"PWR-C2-640WAC","VID":"V01","SN":"LIT18390RKX","line":[6988],"fileName":"20230822-HELEN1-Session.US-3-5-127.0.0.1.log","warehouse":"US"} -,{"PID":"N5K-C5596UP","VID":"V01","SN":"FOX1633H4B5","line":[1807,1852,8537,8704,10259,10660,10917,11964],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"N5K-C5596UP","VID":"V01","SN":"FOC16427G2V","line":[1810,1855,8540,8707,10262,10663,10920,11967],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"N55-M16UP","VID":"V01","SN":"FOC16430FAZ","line":[1813,1858,8543,8710,10265,10666,10923,11970],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"N55-M16UP","VID":"V01","SN":"FOC16414PLF","line":[1816,1861,8546,8713,10268,10669,10926,11973],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"N55-M16UP","VID":"V01","SN":"FOC164411EC","line":[1819,1864,8549,8716,10271,10672,10929,11976],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"NXA-PAC-1100W","VID":"V01","SN":"PST2041H0DP","line":[1845,1879,8697,8731,10287,10687,10944,11991],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"NXA-PAC-1100W","VID":"V01","SN":"PST2041H08D","line":[1848,1882,8700,8734,10290,10690,10947,11994],"fileName":"20230822-HELEN1-Session.US-4-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-B-K9","VID":"V03","SN":"FJC2147M0VB","line":[853,926],"fileName":"20230822-HELEN1-Session.US-5-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC213946PL","line":[943,2000,2377],"fileName":"20230822-HELEN1-Session.US-5-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M09A","line":[1907,1983,2287,2360,4251],"fileName":"20230822-HELEN1-Session.US-5-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"","line":[5447],"fileName":"20230822-HELEN1-Session.US-7-9-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-B-K9","VID":"V04","SN":"FJC2229M5VU","line":[1391,1465],"fileName":"20230822-HELEN1-Session.US-8-10-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC22253W2J","line":[1482,3577],"fileName":"20230822-HELEN1-Session.US-8-10-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M09D","line":[3439,3562,3955],"fileName":"20230822-HELEN1-Session.US-8-10-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2408M2FD","line":[761,845,2071,2833,3413,5093],"fileName":"20230822-HELEN1-Session.US2-14-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC23060XBS","line":[860],"fileName":"20230822-HELEN1-Session.US2-14-6-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-B-K9","VID":"V04","SN":"FJC2229M5WB","line":[17,105,2238,2520,2595,3455,3536],"fileName":"20230822-HELEN1-Session.US2-15-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC22254TMQ","line":[122,2612,3553,4575],"fileName":"20230822-HELEN1-Session.US2-15-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M09F","line":[4485,4558,4857],"fileName":"20230822-HELEN1-Session.US2-15-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-B-K9","VID":"V03","SN":"FJC2147M0S3","line":[5635,5710,6106],"fileName":"20230822-HELEN1-Session.US2-15-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC214307RB","line":[5727,7023],"fileName":"20230822-HELEN1-Session.US2-15-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M09L","line":[6933,7006,8390,8403,8430,8498],"fileName":"20230822-HELEN1-Session.US2-15-7-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2408M54Y","line":[18,90,320,338],"fileName":"20230822-HELEN1-Session.US2-16-8-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC21394FKU","line":[105],"fileName":"20230822-HELEN1-Session.US2-16-8-127.0.0.1.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2408M2FF","line":[850,923,1134,1317,1415,2604,2617,2639,2705],"fileName":"20230822-HELEN1-Session.US2-16-8-127.0.0.1.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC21394GDG","line":[940],"fileName":"20230822-HELEN1-Session.US2-16-8-127.0.0.1.log","warehouse":"US"} -,{"PID":"WS-C3750X-24P-S","VID":"V07","SN":"FDO1933F2F9","line":[135,179,847],"fileName":"20230822-HELEN1-Session.US2-18-10-127.0.0.1.log","warehouse":"US"} -,{"PID":"C3KX-PWR-715WAC","VID":"V01","SN":"LIT1512072R","line":[138],"fileName":"20230822-HELEN1-Session.US2-18-10-127.0.0.1.log","warehouse":"US"} -,{"PID":"C3KX-NM-1G","VID":"V01","SN":"FDO19371ASX","line":[141],"fileName":"20230822-HELEN1-Session.US2-18-10-127.0.0.1.log","warehouse":"US"} -,{"PID":"WS-C3650-24PS","VID":"V01","SN":"FDO1829Q1VF","line":[65,68,666,800,2213,3126,3350,3685,4124,4309,4469,4595,8026,8346,8401,8404,8737],"fileName":"20230822-KENPC-Session.US-3-5-192.168.5.7.log","warehouse":"US"} -,{"PID":"PWR-C2-640WAC","VID":"V01","SN":"LIT18390RKX","line":[71,8407],"fileName":"20230822-KENPC-Session.US-3-5-192.168.5.7.log","warehouse":"US"} -,{"PID":"PID","VID":"","SN":"","line":[3247],"fileName":"20230822-KENPC-Session.US-3-5-192.168.5.7.log","warehouse":"US"} -,{"PID":"WS-C3650-24PS SN","VID":"","SN":"","line":[3249],"fileName":"20230822-KENPC-Session.US-3-5-192.168.5.7.log","warehouse":"US"} -,{"PID":"CISCO1921/K9","VID":"V05","SN":"FGL18192117","line":[77,285,568,579,597],"fileName":"20230822-KENPC-Session.US-1921TS-111-192.168.5.7.log","warehouse":"US"} -,{"PID":"HWIC-8A","VID":"V02","SN":"FOC160247XB","line":[80,288,571,582],"fileName":"20230822-KENPC-Session.US-1921TS-111-192.168.5.7.log","warehouse":"US"} -,{"PID":"HWIC-8A","VID":"V02","SN":"FOC16035XH6","line":[600],"fileName":"20230822-KENPC-Session.US-1921TS-111-192.168.5.7.log","warehouse":"US"} -,{"PID":"WS-C3750X-24P-S","VID":"V07","SN":"FDO1933F2F9","line":[42,417],"fileName":"20230822-KENPC-Session.US2-18-10-192.168.5.7.log","warehouse":"US"} -,{"PID":"C3KX-PWR-715WAC","VID":"V01","SN":"LIT1512072R","line":[45],"fileName":"20230822-KENPC-Session.US2-18-10-192.168.5.7.log","warehouse":"US"} -,{"PID":"C3KX-NM-1G","VID":"V01","SN":"FDO19371ASX","line":[48],"fileName":"20230822-KENPC-Session.US2-18-10-192.168.5.7.log","warehouse":"US"} -,{"PID":"CISCO1921/K9","VID":"V05","SN":"FGL182922Q1","line":[58],"fileName":"20230822-KENPC-Session.US2_1921TS_222-192.168.5.7.log","warehouse":"US"} -,{"PID":"HWIC-8A","VID":"V02","SN":"FOC16095E5X","line":[61],"fileName":"20230822-KENPC-Session.US2_1921TS_222-192.168.5.7.log","warehouse":"US"} -,{"PID":"N5K-C5596UP","VID":"V01","SN":"FOX1633H4B5","line":[71,412],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"N5K-C5596UP","VID":"V01","SN":"FOC16427G2V","line":[74,415],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"N55-M16UP","VID":"V01","SN":"FOC16430FAZ","line":[77,418],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"N55-M16UP","VID":"V01","SN":"FOC16414PLF","line":[80,421],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"N55-M16UP","VID":"V01","SN":"FOC164411EC","line":[83,424],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"NXA-PAC-1100W","VID":"V01","SN":"PST2041H0DP","line":[98,439],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"NXA-PAC-1100W","VID":"V01","SN":"PST2041H08D","line":[101,442],"fileName":"20230822-SAMBA-US4.log","warehouse":"US"} -,{"PID":"WS-C3750X-24P-S","VID":"V07","SN":"FDO1933F2F9","line":[53,97],"fileName":"20230822-SAMBA-US18.log","warehouse":"US"} -,{"PID":"C3KX-PWR-715WAC","VID":"V01","SN":"LIT1512072R","line":[56],"fileName":"20230822-SAMBA-US18.log","warehouse":"US"} -,{"PID":"C3KX-NM-1G","VID":"V01","SN":"FDO19371ASX","line":[59],"fileName":"20230822-SAMBA-US18.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FGL1844X9JN","line":[40],"fileName":"20230822-TEST01-Session.Port11-11-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC184374WF","line":[50,1125],"fileName":"20230822-TEST01-Session.Port11-11-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC18487HHX","line":[22,1299],"fileName":"20230822-TEST01-Session.Port13-13-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-Z-K9","VID":"V03","SN":"FGL2126ABZ0","line":[1756],"fileName":"20230822-TEST01-Session.Port13-13-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M08G","line":[1990,2051,2140,2542,2630,2768],"fileName":"20230822-TEST01-Session.Port13-13-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC21245KL3","line":[2066,2155,2647],"fileName":"20230822-TEST01-Session.Port13-13-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FGL1918X1RE","line":[850,3893,4423,4594],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC19123AMA","line":[861,3904,4434,4605],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-Z-K9","VID":"V03","SN":"FGL2114ABMK","line":[1314],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M08G","line":[2242,2302,2489],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC21245KL3","line":[2317,2504],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M086","line":[2892,2979,3157,3240,3780],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC211163S2","line":[2994,3255],"fileName":"20230822-TEST01-Session.Port14-14-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FGL183910G1","line":[108,173,262,387,450],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"PWR-4450-AC","VID":"V02","SN":"DCA2019X0LZ","line":[176,265,390,453,546,603],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"SM-X-4X1G-1X10G","VID":"V02","SN":"FOC1949000X","line":[280,405,468,773],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"SM-X-4X1G-1X10G","VID":"V02","SN":"FOC21237HK2","line":[411,474,807],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"ISR4451-X/K9","VID":"V03","SN":"FOC18348MEV","line":[414,480,524,581,624,645,666,687,708],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"QFBR-5766LP","VID":"","SN":"AGS09015BKF","line":[477],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"","line":[732],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FGL1717S590","line":[1033,1350],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC17151MGW","line":[1043,2006],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-Z-K9","VID":"V03","SN":"FGL2114ABM4","line":[2453,2958,2982,2989,3073,3215],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC211163S2","line":[3088,3230,4102,4230],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2319M086","line":[3972,4087,4143,4215],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FOC18487HHX","line":[4323,4531,4688,4735,4878,5082,5181,5381,5612,5706,5918,6014,6159],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FGL1852X5A1","line":[4520,4677,5071,5170,5601,5694,5907,6003],"fileName":"20230822-TEST01-Session.Port16-16-172.16.20.1.log","warehouse":"AU"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2408M2FD","line":[17,105,689,726,817],"fileName":"20230822-TEST01-Session.US2-14-6-192.168.5.7.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC23060XBS","line":[120,832],"fileName":"20230822-TEST01-Session.US2-14-6-192.168.5.7.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FJC2319M09L","line":[107],"fileName":"20230822-TEST01-Session.US2-15-7-192.168.5.7.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC214307RB","line":[124],"fileName":"20230822-TEST01-Session.US2-15-7-192.168.5.7.log","warehouse":"US"} -,{"PID":"AIR-AP3802E-A-K9","VID":"V05","SN":"FJC2408M2FF","line":[23,142,1178],"fileName":"20230822-TEST01-Session.US2-16-8-192.168.5.7.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FOC21394GDG","line":[159,1195],"fileName":"20230822-TEST01-Session.US2-16-8-192.168.5.7.log","warehouse":"US"} -,{"PID":"","VID":"","SN":"FGL174211HP","line":[62,207,291,341],"fileName":"20230822-TEST02-Session.Port7-9-172.16.20.7.log","warehouse":"AU"} -,{"PID":"C3900-SPE100/K9","VID":"V06","SN":"FOC17385UN9","line":[210],"fileName":"20230822-TEST02-Session.Port7-9-172.16.20.7.log","warehouse":"AU"} -,{"PID":"VIC3-4FXS/DID","VID":"V03","SN":"FOC17361N9U","line":[213],"fileName":"20230822-TEST02-Session.Port7-9-172.16.20.7.log","warehouse":"AU"} -,{"PID":"PWR-3900-POE","VID":"V02","SN":"SNI1507C75Q","line":[216,347],"fileName":"20230822-TEST02-Session.Port7-9-172.16.20.7.log","warehouse":"AU"} -,{"PID":"C3900-SPE150/K9","VID":"V06","SN":"FOC19182VLK","line":[344],"fileName":"20230822-TEST02-Session.Port7-9-172.16.20.7.log","warehouse":"AU"} -,{"PID":"","VID":"","SN":"FHK143470K5","line":[88],"fileName":"20230822-TEST02-Session.Port8-10-172.16.20.7.log","warehouse":"AU"}] \ No newline at end of file +[{"PID":"C9300-48UXM","VID":"V01","SN":"FCW2243L0R5","line":[62,75,238,241,306,325,393,396],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC22313V30","line":[71,321],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-C1-1100WAC","VID":"V02","SN":"LIT22432VHD","line":[244,399],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"C9300-NM-8X","VID":"V02","SN":"FOC224255UN","line":[247,402],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3850-12X48U-E","VID":"V02","SN":"FCW2039F0ZW","line":[1238,1241,1301,1318],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-C1-1100WAC","VID":"V01","SN":"LIT17290BGA","line":[1244],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC20391F4B","line":[1314],"fileName":"20190902-TEST01-Session.NT01-34-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ISR4351/K9","VID":"V04","SN":"FLM2025W0TK","line":[104,230,334],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-4450-AC","VID":"V02","SN":"DCA1949X1XS","line":[233],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ISR4351/K9","VID":"V04","SN":"FDO20210Q20","line":[251],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002","VID":"V05","SN":"FOX1548GX7J","line":[399,612,1005],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1000-ESP10","VID":"V06","SN":"JAE1644059D","line":[615,764,1008],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-PWR-AC","VID":"V02","SN":"ART1543U066","line":[618,740,1011],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-PWR-AC","VID":"V02","SN":"ART1543U06L","line":[621,748,1014],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-RP1","VID":"V05","SN":"JAE15520A7X","line":[630,756,1026],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"NWG1548059Z","line":[731],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"JAE155204FX","line":[772],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"","line":[780],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ABCU-5710RZ-CS4","VID":"B2","SN":"AGM1646201T","line":[1023],"fileName":"20190902-TEST01-Session.NT03-36-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FGL1844X966","line":[60,72,819,831],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC184134QS","line":[70,829],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3750G-24PS-S","VID":"V08","SN":"FOC1449Y02T","line":[1103,1196,1230,1672,2263],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002","VID":"V01","SN":"FOX1249GTAA","line":[2463,2491,2719,2909,3090,3544,3740],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1000-ESP10","VID":"V07","SN":"JAE191602XM","line":[2466,2494,2722,2912,3064,3093,3547,3743],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-PWR-AC","VID":"V01","SN":"ART1250U03Y","line":[2469,2497,2725,2915,3096,3550,3746],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-PWR-AC","VID":"V01","SN":"ART1250U00P","line":[2472,2500,2728,2918,3099,3553,3749],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-SIP10","VID":"V02","SN":"JAE12503051","line":[2475,2503,2731,2921,3102,3556,3752],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ASR1002-RP1","VID":"V02","SN":"JAE125031X0","line":[2481,2509,2737,2927,3108,3562,3758],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3850-48P","VID":"M0","SN":"FCW1827C13R","line":[5369,5383,5403,5406,5592,5595,5656,5673,5994,5997,6061,6064,6122,6139],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC182735HY","line":[5379,5669,6135],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-C1-715WAC","VID":"V01","SN":"LIT182508FA","line":[5409,5598,6000,6067],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"C3850-NM-2-10G","VID":"V01","SN":"FOC18273EUA","line":[5412,5601,6003],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3750G-24T-S","VID":"V10","SN":"FDO1448V1GJ","line":[5823,5905,5939],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FDO1510P0SG","line":[6302],"fileName":"20190902-TEST01-Session.NT05-38-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018","VID":"V01","SN":"TBM18030890","line":[4825],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-SUP2E","VID":"V03","SN":"JAF1751ANDS","line":[4834],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAB-2","VID":"V02","SN":"JAE19430DFR","line":[4837],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAB-2","VID":"V02","SN":"JAE19240BEL","line":[4840],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAB-2","VID":"V02","SN":"JAE19310A0B","line":[4843],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAB-2","VID":"V02","SN":"JAE19430DFE","line":[4846],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAB-2","VID":"V02","SN":"JAE191001W5","line":[4849],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-AC-6.0KW","VID":"V05","SN":"ART1936F9NY","line":[4852],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-AC-6.0KW","VID":"V05","SN":"ART1936F9P4","line":[4855],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-AC-6.0KW","VID":"V05","SN":"ART1936F9P6","line":[4858],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-AC-6.0KW","VID":"V05","SN":"ART1932F1TU","line":[4861],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAN","VID":"V02","SN":"FOX1928XA2C","line":[4864],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"N7K-C7018-FAN","VID":"V02","SN":"FOX1928XA2M","line":[4867],"fileName":"20190902-TEST01-Session.NT14-55-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2811","VID":"V06","SN":"FHK1328F0RW","line":[81,148,181],"fileName":"20190902-TEST02-Session.NT08-41-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y1JX","line":[244,277,515,548],"fileName":"20190902-TEST02-Session.NT08-41-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1413Y4J9","line":[604,638],"fileName":"20190902-TEST02-Session.NT08-41-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y1FG","line":[694,729,931,965],"fileName":"20190902-TEST02-Session.NT08-41-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ME-3400EG-2CS-A","VID":"V03","SN":"FOC1509V19T","line":[1370,1753,1786],"fileName":"20190902-TEST02-Session.NT08-41-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ME-3400EG-2CS-A","VID":"V03","SN":"FOC1433V2G3","line":[1894,1927],"fileName":"20190902-TEST02-Session.NT08-41-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y1KQ","line":[22,39,274,291],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y18W","line":[451,512,529],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y1MU","line":[587,621,857,891],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"1760","VID":"0x500","SN":"FOC08300U2Q","line":[968],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"C1760 Mainboard","VID":"0x500","SN":"FOC08300U2Q","line":[974],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"Packet Voice DSP Module with 1 C549 DSPs","VID":"3.2","SN":"VIC08303ZRQ","line":[992,1073,1111],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"1760","VID":"0x500","SN":"FOC08300U2Q","line":[1049],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"C1760 Mainboard","VID":"0x500","SN":"FOC08300U2Q","line":[1055],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"1760","VID":"0x500","SN":"FOC08300U2Q","line":[1087],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"C1760 Mainboard","VID":"0x500","SN":"FOC08300U2Q","line":[1093],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2811","VID":"V04","SN":"FHK1104F144","line":[1228,1612,1659,1698,1782],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"VWIC2-1MFT-T1/E1","VID":"V01","SN":"FOC10520RAZ","line":[1662,1832],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PVDM2-16","VID":"V01","SN":"FOC105110TS","line":[1665,1807],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC11026BFA","line":[1771],"fileName":"20190902-TEST02-Session.NT11-52-192.168.5.20.log","warehouse":"AU"} +,{"PID":"ME-3400EG-2CS-A","VID":"V05","SN":"FCW2021H0L0","line":[21,56,98,131],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO887VA-K9","VID":"V02","SN":"FGL182022Z1","line":[228,263,340],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FO61819072S","line":[329],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO887VA-SEC-K9","VID":"V02","SN":"FGL1635265Y","line":[394,429],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1413Y4YY","line":[504,537,771,804],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y14B","line":[859,892],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y182","line":[940,958,1208,1225],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C2950T-48-SI","VID":"N/A","SN":"FHK0817Y0XQ","line":[1845,1895,1913],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL150415EL","line":[2095,2387,2425],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL151112C1","line":[2259,2722,2760,2814],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1502H0SA","line":[2390],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL150415EW","line":[2470,2511],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"HWIC-2T","VID":"V04","SN":"FOC16155NTH","line":[2473],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1502H119","line":[2476],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL151112BH","line":[2587,2641,2679],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1508H0WF","line":[2644],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1506H25S","line":[2725,2839],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC150459RF","line":[2803],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC192157U4","line":[2869],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL151112BM","line":[3000,3077,3245,3336,3388,3418,3507,3558],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"EHWIC-4G-LTE-GB","VID":"V01","SN":"FOC200412V6","line":[3391,3472,3510],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"MC7304 4G-GB","VID":"1.0","SN":"352761060749463","line":[3394,3513],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1506H2BS","line":[3397,3443,3516],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC15036UYY","line":[3407],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO1941/K9","VID":"V02","SN":"FHK144474KN","line":[3694,4104,4167,4208],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO1941/K9","VID":"V02","SN":"FHK144474KC","line":[3834,3880,3919,4291,4332,4380],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"HWIC-4ESW","VID":"V01","SN":"FOC14383KY3","line":[3883,4294],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"HWIC-4ESW","VID":"V01","SN":"FOC14383MW5","line":[4170],"fileName":"20190902-TEST02-Session.NT12-53-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1413Y4J3","line":[23,40,263,280],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V03","SN":"FOC1415Y1L3","line":[338,372],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3560G-24TS-S","VID":"V05","SN":"FOC1533Y03B","line":[428,447,695,713],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"JAD06360853","line":[1568],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C3750G-12S-S","VID":"V04","SN":"CAT0921Y09R","line":[1812,1870,1903],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FGL150415EW","line":[2207],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FGL151112BH","line":[2236],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC15036UYY","line":[2262],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL151112BM","line":[2273,2356,2826,2864,2980,3026,3064],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1506H2BS","line":[2298,2359,2829,3029],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"","VID":"","SN":"FOC200412V6","line":[2328],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"CISCO2921/K9","VID":"V03","SN":"FGL150415EL","line":[2566,2602],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-2921-51-AC","VID":"V02","SN":"QCS1502H0SA","line":[2569],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-C4510R-E","VID":"V02","SN":"FOX1427H06S","line":[5045,5321,6386,6422,6520],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4K-CLOCK-E","VID":"V01","SN":"NWG142505DX","line":[6425],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142502DG","line":[6428],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142502N8","line":[6431],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142502MM","line":[6434],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142502K8","line":[6437],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142502M6","line":[6440],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142501EU","line":[6443],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142502N7","line":[6446],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4590-E","VID":"V01","SN":"NWG142501ET","line":[6449],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4648-RJ45V+E","VID":"V05","SN":"JAE1431042M","line":[6452],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V11","SN":"JAE142702G0","line":[6455],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V11","SN":"JAE142702FQ","line":[6458],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V11","SN":"JAE142702I4","line":[6461],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X45-SUP6-E","VID":"V08","SN":"JAE142907UZ","line":[6464],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V11","SN":"JAE1428030N","line":[6467],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V11","SN":"JAE142803QQ","line":[6470],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V12","SN":"JAE153702UM","line":[6473],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4248-RJ45V","VID":"V06","SN":"JAE1041D5GQ","line":[6476],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"WS-X4582-E","VID":"V02","SN":"FOX1427GRHF","line":[6479],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-C45-6000ACV","VID":"V03","SN":"AZS16460B25","line":[6482],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"} +,{"PID":"PWR-C45-6000ACV","VID":"V01","SN":"AZS14060K9C","line":[6485],"fileName":"20190902-TEST02-Session.NT13-54-192.168.5.20.log","warehouse":"AU"}] \ No newline at end of file diff --git a/app/utils/runtimeCheckLogs.ts b/app/utils/runtimeCheckLogs.ts index 71d9a8c..f4e8ab6 100644 --- a/app/utils/runtimeCheckLogs.ts +++ b/app/utils/runtimeCheckLogs.ts @@ -3,18 +3,24 @@ import chokidar from "chokidar"; import moment from "moment"; import LogDetectFile from "App/Models/LogDetectFile"; import LogReport from "App/Models/LogReport"; +import KeyValue from "App/Models/KeyValue"; +import Database from "@ioc:Adonis/Lucid/Database"; +import { sendMessToZulip } from "./sendMessToZulip"; // export default class loggerAPI { -export function runtimeCheckLogs(folderPath) { +export async function runtimeCheckLogs(folderPath) { try { let fileList = Array(); let fileList_old = Array(); + let listKeyValues = await KeyValue.all(); + // console.log(listKeyValues.map(obj=>obj.$original.value)) // Function to update the list of files async function updateFileList() { + //get date now let dateNow = moment(Date.now()).format("YYYY/MM/DD"); + //Get list file in folder fileList = fs.readdirSync(folderPath); - // console.log("File list updated:", fileList); - + //Get date modified fileList.map((file) => { const filePath = `${folderPath}/${file}`; if (file?.split(".")[filePath.split(".").length - 1] === "log") { @@ -40,6 +46,10 @@ export function runtimeCheckLogs(folderPath) { { file_name: filePath.split("/")[filePath.split("/").length - 1] }, { file_name: filePath.split("/")[filePath.split("/").length - 1] } ); + // await LogDetectFile.firstOrCreate( + // { file_name: filePath.split("\\")[filePath.split("\\").length - 1] }, + // { file_name: filePath.split("\\")[filePath.split("\\").length - 1] } + // ); fileList_old = fileList; updateFileList(); @@ -49,35 +59,78 @@ export function runtimeCheckLogs(folderPath) { }); // Watch for changes in the files listed - function watchFilesInList() { + async function watchFilesInList() { // console.log("--------->", fileList); //get date now //check new file - fileList + + await fileList ?.filter((i) => fileList_old.includes(i) === false) ?.forEach((fileName) => { //path file const filePath = `${folderPath}/${fileName}`; - //get date modified - // const stats = fs.statSync(filePath); - // //scan file today - // if (dateNow === moment(stats.mtime).format("2023/08/20")) { const scan = fs.watchFile( filePath, { interval: 10000 }, async (eventType) => { //check special item, extra RAM, error in log - - //true: import log to log_report table, send report to Zulip - const log = await LogDetectFile.findBy("file_name", fileName); - await LogReport.create({ - detected_content: "virk", - line: 123, - id_file: log?.id_ldf, + let lines = []; + let content = await fs + .readFileSync(filePath) + .toString() + ?.split("\n"); + content.map((line, index) => { + listKeyValues + .map((obj) => obj.$original.value) + .map(async (value) => { + if (line.search(value) !== -1) { + const log = await LogDetectFile.findBy( + "file_name", + fileName + ); + let checkLog = await Database.rawQuery( + "select * from log_reports where id_file = " + + log?.id_ldf + + " and line = " + + (index + 1) + + " and detected_content='" + + value + + "'" + ); + console.log(checkLog[0].length) + if (checkLog[0].length === 0) { + console.log(content[index]) + await LogReport.create({ + detected_content: value, + line: index + 1, + id_file: log?.id_ldf, + }); + lines.push(index + 1); + } + } + }); }); + //true: import log to log_report table, send report to Zulip + setTimeout(async() => { + if (lines.length === 0) { + console.log(`${fileName} has changed (${eventType})---Good`); + } else { + console.log( + `${fileName} has changed (${eventType})---SOS---${lines.length}` + ); + let fileDetect = await LogDetectFile.findBy( + "file_name", + fileName + ); + + let logsDetect = await Database.rawQuery( + "select * from log_reports where id_file = " + fileDetect?.id_ldf + ); + sendMessToZulip("stream", "Result test - auto.nswteam.net", "Log Alert", "DETECTED IN "+fileName+"\n"+JSON.stringify(logsDetect[0])) + } + }, 3000); //false: next - console.log(`${fileName} has changed (${eventType})`); } ); //setMaxListeners @@ -85,6 +138,8 @@ export function runtimeCheckLogs(folderPath) { // } }); } + + } catch (error) { console.log(error); } diff --git a/app/utils/sendMessToZulip.ts b/app/utils/sendMessToZulip.ts new file mode 100644 index 0000000..d1c3406 --- /dev/null +++ b/app/utils/sendMessToZulip.ts @@ -0,0 +1,22 @@ +import zulip from "zulip-js"; + +export const sendMessToZulip = async (type, to, topic, content) => { + try { + const config = { + username: "networktool-bot@zulip.ipsupply.com.au", + apiKey: "0jMAmOuhfLvBqKJikv5oAkyNM4RIEoAM", + realm: "https://zulip.ipsupply.com.au", + }; + const client = await zulip(config); + let params = { + type: type, + to: to, + topic: topic, + content: content + }; + + await client.messages.send(params); + } catch (error) { + console.log(error); + } +}; diff --git a/package-lock.json b/package-lock.json index aab62e4..ad40e57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,7 +22,8 @@ "mysql2": "^3.6.0", "proxy-addr": "^2.0.7", "reflect-metadata": "^0.1.13", - "source-map-support": "^0.5.21" + "source-map-support": "^0.5.21", + "zulip-js": "^2.0.9" }, "devDependencies": { "@adonisjs/assembler": "^5.9.5", @@ -651,6 +652,17 @@ "node": ">=4" } }, + "node_modules/@babel/runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz", + "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", @@ -3982,8 +3994,7 @@ "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "node_modules/interpret": { "version": "2.2.0", @@ -4261,6 +4272,36 @@ "node": ">=0.10.0" } }, + "node_modules/isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "node_modules/isomorphic-form-data": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-2.0.0.tgz", + "integrity": "sha512-TYgVnXWeESVmQSg4GLVbalmQ+B4NPi/H4eWxqALKj63KsUrcu301YDjBqaOw3h+cbak7Na4Xyps3BiptHtxTfg==", + "dependencies": { + "form-data": "^2.3.2" + } + }, + "node_modules/isomorphic-form-data/node_modules/form-data": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, "node_modules/jest-diff": { "version": "29.6.2", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.2.tgz", @@ -5327,6 +5368,25 @@ "lodash": "^4.17.21" } }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, "node_modules/node-repl-await": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/node-repl-await/-/node-repl-await-0.1.2.tgz", @@ -6281,6 +6341,11 @@ "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, "node_modules/regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -7466,6 +7531,11 @@ "url": "https://github.com/sponsors/Borewit" } }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, "node_modules/traverse": { "version": "0.6.7", "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", @@ -7723,6 +7793,11 @@ "defaults": "^1.0.3" } }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, "node_modules/webpack-merge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", @@ -7732,6 +7807,20 @@ "lodash": "^4.17.15" } }, + "node_modules/whatwg-fetch": { + "version": "3.6.17", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.17.tgz", + "integrity": "sha512-c4ghIvG6th0eudYwKZY5keb81wtFz9/WeAHAoy8+r18kcWlitUIrmGFQ2rWEl4UCKUilD3zCLHOIPheHx5ypRQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -7837,6 +7926,17 @@ "engines": { "node": "^12.20.0 || >=14" } + }, + "node_modules/zulip-js": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/zulip-js/-/zulip-js-2.0.9.tgz", + "integrity": "sha512-I8Cjnxa7qTaHwxN6YZ4IOL2IiTz89rD4NZul1t8Hzu+q8muSE4LT2iVAlnCrCut4KEbOZDA+Bsgp0/CtFkUbnA==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "ini": "^1.3.7", + "isomorphic-fetch": "^3.0.0", + "isomorphic-form-data": "2.0.0" + } } }, "dependencies": { @@ -8376,6 +8476,14 @@ "resolved": "https://registry.npmjs.org/@arr/every/-/every-1.0.1.tgz", "integrity": "sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==" }, + "@babel/runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz", + "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, "@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", @@ -10980,8 +11088,7 @@ "ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "interpret": { "version": "2.2.0", @@ -11185,6 +11292,35 @@ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true }, + "isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "requires": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "isomorphic-form-data": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-2.0.0.tgz", + "integrity": "sha512-TYgVnXWeESVmQSg4GLVbalmQ+B4NPi/H4eWxqALKj63KsUrcu301YDjBqaOw3h+cbak7Na4Xyps3BiptHtxTfg==", + "requires": { + "form-data": "^2.3.2" + }, + "dependencies": { + "form-data": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + } + } + }, "jest-diff": { "version": "29.6.2", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.2.tgz", @@ -12007,6 +12143,14 @@ "lodash": "^4.17.21" } }, + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "requires": { + "whatwg-url": "^5.0.0" + } + }, "node-repl-await": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/node-repl-await/-/node-repl-await-0.1.2.tgz", @@ -12742,6 +12886,11 @@ "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, "regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -13645,6 +13794,11 @@ "ieee754": "^1.2.1" } }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, "traverse": { "version": "0.6.7", "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", @@ -13848,6 +14002,11 @@ "defaults": "^1.0.3" } }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, "webpack-merge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", @@ -13857,6 +14016,20 @@ "lodash": "^4.17.15" } }, + "whatwg-fetch": { + "version": "3.6.17", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.17.tgz", + "integrity": "sha512-c4ghIvG6th0eudYwKZY5keb81wtFz9/WeAHAoy8+r18kcWlitUIrmGFQ2rWEl4UCKUilD3zCLHOIPheHx5ypRQ==" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -13941,6 +14114,17 @@ "optional": true } } + }, + "zulip-js": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/zulip-js/-/zulip-js-2.0.9.tgz", + "integrity": "sha512-I8Cjnxa7qTaHwxN6YZ4IOL2IiTz89rD4NZul1t8Hzu+q8muSE4LT2iVAlnCrCut4KEbOZDA+Bsgp0/CtFkUbnA==", + "requires": { + "@babel/runtime": "^7.12.5", + "ini": "^1.3.7", + "isomorphic-fetch": "^3.0.0", + "isomorphic-form-data": "2.0.0" + } } } } diff --git a/package.json b/package.json index 2e54e0b..1cc1794 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,7 @@ "mysql2": "^3.6.0", "proxy-addr": "^2.0.7", "reflect-metadata": "^0.1.13", - "source-map-support": "^0.5.21" + "source-map-support": "^0.5.21", + "zulip-js": "^2.0.9" } }