Por: @eduardoh Publicado em: 2022-08-16
Estudo sobre leitura de JSON em Python
Objetivo
Hoje temos um problema em relação a nossa geração de logs do Webfilter. No mecanismo que está hoje, estamos com travamentos do servidor e também problemas para exibir gráficos de acesso.
Levantamos então a hipótese de utilizar a biblioteca padrão do Python para efetuar a leitura de arquivos JSON, que é o formato exportado pelo nosso Webfilter.
A ideia desse documento é de um formato bastante simples (e com olhar de um Sysadmin e não de um Dev kkkk) montar um script de leitura de JSON.
Após os resultados, vamos deixar algumas sugestões para utilizarmos no tratamento de dados do Webfilter.
O script
Não levamos em consideração a questão de performance do script bem como boas práticas de desenvolvimento, o objetivo é simples e claro: ler arquivo JSON.
import json
file_path = "/path/arquivo.json"
with open(file_path, encoding="utf-8") as meu_json:
dados = json.load(meu_json)
print("Número de requisições: ", len(dados), "\n")
actions = set([dado["action"] for dado in dados])
print("Tipos de action: ", actions, "\n")
accept = [dado for dado in dados if dado["action"] == "accept"]
print("Número de requisições 'accept': ", len(accept), "\n")
deny = [dado for dado in dados if dado["action"] == "deny"]
print("Número de requisições 'deny': ", len(deny), "\n")
virus = [dado for dado in dados if dado["action"] == "virus"]
print("Número de requisições 'virus': ", len(virus), "\n")
other = [dado for dado in dados if dado["action"] == "other"]
print("Número de requisições 'other': ", len(other), "\n")
sites = {dado["site"]: 0 for dado in dados}
for dado in dados:
sites[dado["site"]] += 1
sites = dict(sorted(sites.items(), key=lambda item: item[1], reverse=True))
print("Top 10 - Sites com mais requisições: ")
n = 1
for k, v in sites.items():
if n > 10:
break
print(n, ".", k, ":", v)
n += 1
Os dados
Aqui está um arquivo JSON para utilizarmos como exemplo:
Clique para ver o arquivo!
``` [{"method": "GET", "status": 204, "action": "accept", "size": 792, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T08:01:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T10:39:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T19:46:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T19:46:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T19:46:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T19:46:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T19:48:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 538, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-12T19:49:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 538, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-12T19:49:11Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8466, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T19:49:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6641, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T19:49:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 44606, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T19:49:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T19:53:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 538, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-12T19:54:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T19:58:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1914, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:01:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:02:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:03:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:08:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-12T20:09:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-12T20:09:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-12T20:13:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3831, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-12T20:13:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2857, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:13:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:13:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13114, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-12T20:14:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 50593, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-12T20:14:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 73537, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-12T20:14:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 42401, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-12T20:14:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8789, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:14:12Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2720847, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:14:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6764, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:14:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 60953, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-12T20:14:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 134629, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-12T20:14:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12810, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-12T20:14:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 691684, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-12T20:14:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6218, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-12T20:14:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31448, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:14:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 37165, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:14:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8337, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-12T20:14:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 70841, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-12T20:14:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4227, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-12T20:14:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 261762, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-12T20:14:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-12T20:14:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2496, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-12T20:14:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3926820, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5634538, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11553274, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 773687, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2461844, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4996066, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 18134491, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8886829, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1556256, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 26981464, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2374521, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1288160, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11232722, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4131538, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3341515, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 14381852, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6626991, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4016795, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3569274, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16211479, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 55919428, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:15:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 48250180, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:16:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 116221393, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-12T20:16:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-12T20:16:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-12T20:16:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:18:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2422, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.godaddy.com", "datetime": "2022-06-12T20:24:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-12T20:24:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 157964, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-12T20:24:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6930, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-12T20:24:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 25669, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-12T20:24:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 819128, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-12T20:24:43Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4705, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:25:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:27:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2557, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:30:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T20:31:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:32:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1256, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:32:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T20:33:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:47:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2279, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:51:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T20:57:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2970, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:59:24Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T20:59:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:07:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T21:08:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:42:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 762, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T21:44:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T21:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T21:58:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 29061, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T22:15:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 22186, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T22:15:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T22:20:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:32:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T22:33:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-12T22:33:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T22:37:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-12T22:43:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-12T22:45:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T22:45:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3871, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-12T22:53:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T22:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:07:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1645, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T23:09:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:12:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-12T23:17:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:22:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1123, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-12T23:22:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-12T23:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:07:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4739, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T00:09:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-13T00:25:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-13T00:25:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:32:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1037, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T00:35:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T00:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T01:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T02:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T03:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:02:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T04:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-13T05:19:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-13T05:20:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T05:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T06:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T07:57:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T08:01:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-13T08:31:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-13T08:31:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:47:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2181, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T08:49:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T08:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8782, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-13T09:24:13Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1241328, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-13T09:24:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6218, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-13T09:24:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5454, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-13T09:24:16Z"}, {"method": "GET", "status": 200, "action": "other", "size": 31715, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-13T09:24:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 63216, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-13T09:24:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 581821, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-13T09:24:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:52:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T09:56:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T09:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:02:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1415, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T10:05:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:05:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-13T10:05:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T10:05:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:07:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:12:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:13:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-13T10:13:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:17:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:22:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:22:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:27:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-13T10:27:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:32:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:37:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:42:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T10:43:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T10:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3866, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T10:59:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1010, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:00:31Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:01:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:02:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:06:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:12:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:16:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:16:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:16:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:16:56Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:16:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:17:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:17:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:18:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:22:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:22:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:22:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:22:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2396, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:23:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:23:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:23:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:23:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:23:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:23:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:23:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:23:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:24:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:24:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:24:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:24:07Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3865, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T11:24:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6005, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T11:24:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:24:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:24:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:24:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:24:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:25:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:25:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:25:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:25:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:25:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:25:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:25:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:25:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:25:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:26:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:26:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:26:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:26:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:26:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:26:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:26:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5832, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:27:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:27:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:28:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:28:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:28:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:28:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1674, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:29:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:31:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:31:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:31:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:31:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:31:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:31:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:31:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:32:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:32:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:32:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:32:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:32:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:32:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:32:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:32:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:32:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:32:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T11:33:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:33:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:33:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:33:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:33:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:33:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:34:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:34:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:34:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:34:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:35:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:35:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:35:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:35:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:35:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:35:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:35:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:35:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:36:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:36:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:36:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:37:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:37:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:37:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:37:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:37:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:37:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:37:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:37:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:38:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:38:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:38:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:38:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:38:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:38:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:38:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:39:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:39:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:39:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:43:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:45:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:45:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:45:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:46:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:46:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:46:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:46:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:46:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:46:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T11:46:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:47:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:47:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:47:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:47:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:47:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:48:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:49:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:49:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:49:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:49:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:50:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:50:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:50:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:51:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:51:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:51:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:51:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:52:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:52:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:52:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:52:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:52:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:52:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:52:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:52:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:52:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:53:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:53:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:53:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:53:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:53:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:54:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:54:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:54:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:54:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:54:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:54:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:54:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:54:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:55:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:55:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:55:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:55:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:55:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:55:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:55:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:57:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:58:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:58:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:58:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:58:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T11:58:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2801, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:58:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:58:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:58:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:58:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:58:59Z"}, {"method": "POST", "status": 200, "action": "other", "size": 923, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T11:59:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T11:59:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:59:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T11:59:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T11:59:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:00:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:00:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:00:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:01:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:01:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:01:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:02:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:02:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:02:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:03:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:03:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:03:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:03:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1897, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T12:05:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:06:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:06:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:06:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:07:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:07:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:07:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:07:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:08:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:09:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:09:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:09:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:10:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:10:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:10:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:10:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:13:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:14:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:14:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:14:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:14:36Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 362, "ip": "172.28.10.42", "user": "", "site": "http://www.caixa.gov.br", "datetime": "2022-06-13T12:14:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:15:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:15:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:15:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:15:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:15:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:15:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:15:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:16:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:16:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:16:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:16:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:16:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:16:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:17:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:17:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:17:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:17:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:17:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:17:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:17:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:18:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:19:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:19:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:19:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:19:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:20:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:20:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:20:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:20:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:20:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:20:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 774, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T12:21:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:21:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:21:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:21:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:21:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:22:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:22:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:22:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:22:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:22:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:22:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:22:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:22:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:23:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:23:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:23:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:23:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:23:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:23:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:23:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:24:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:24:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:24:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:24:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:25:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:25:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:25:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:25:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 11600, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T12:26:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:26:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:26:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:26:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:26:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T12:27:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:27:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:27:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:27:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:27:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:28:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:28:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:28:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:28:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:28:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:29:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:29:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:29:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:29:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:29:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:29:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:29:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:30:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:30:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:30:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:30:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:30:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:31:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:31:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:31:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:31:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:31:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:31:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:31:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:32:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:32:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:32:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:33:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:33:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:33:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:33:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:33:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:33:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:33:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:33:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:34:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:34:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:34:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:34:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:35:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:35:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:35:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:36:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:36:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:36:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:36:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:36:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:36:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:36:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:36:59Z"}, {"method": "POST", "status": 200, "action": "other", "size": 15671, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T12:37:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:37:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:38:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:38:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:38:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:38:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:38:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5890, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T12:39:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:39:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:39:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:39:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:39:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:40:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:40:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:40:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:40:09Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1136, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T12:40:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:42:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:42:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:42:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:43:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:44:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:44:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:44:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:44:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-13T12:46:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-13T12:46:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:46:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:46:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:46:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:46:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:47:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:47:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:47:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:47:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:47:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:47:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:47:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:48:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:48:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:48:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:48:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:48:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:48:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:48:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:48:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:49:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:49:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:49:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:49:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:50:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:50:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:50:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:52:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:52:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:52:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:53:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:53:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:53:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:53:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:53:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:53:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:53:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:53:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:54:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:54:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:54:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:54:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:54:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:54:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:54:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:54:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:55:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:55:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:55:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:56:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:56:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:56:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:56:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:56:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:56:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:56:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:56:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:57:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:57:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:57:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:57:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:58:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:58:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:58:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T12:58:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:58:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:58:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:58:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:58:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:58:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:58:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:58:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:58:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:59:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:59:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:59:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:59:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T12:59:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T12:59:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T12:59:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:00:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:00:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:00:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:00:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:00:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:00:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:00:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:00:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:01:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:01:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:01:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:01:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:01:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:01:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:01:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:01:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:01:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:01:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:01:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:02:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:02:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:02:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:02:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:03:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:03:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:03:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:03:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:03:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:03:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:03:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:04:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:04:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:04:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:04:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:04:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:04:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:04:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:05:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:05:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:05:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:05:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:05:52Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:05:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:05:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:06:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:06:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:06:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:06:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:06:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:06:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:06:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:06:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:06:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:06:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:06:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:06:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:07:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:07:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:07:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:07:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:07:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:07:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:07:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:07:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:08:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:08:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:08:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:08:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:08:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:08:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:08:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:08:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:08:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:08:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:08:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:08:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:09:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:09:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:09:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:09:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:09:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:09:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:09:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:10:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:10:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:10:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:10:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:10:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:10:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:11:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:11:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:11:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:11:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:12:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:12:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:12:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:12:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:13:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:13:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:13:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:13:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:13:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:13:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:13:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:13:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:13:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:14:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:14:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:14:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:14:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:14:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:14:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:14:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:14:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:14:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:14:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:15:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:15:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:15:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:15:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:15:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:15:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:15:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:15:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:15:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:15:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:15:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:15:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:16:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:16:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:16:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T13:16:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:17:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:17:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:17:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:17:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:17:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:17:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:17:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:17:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:18:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:18:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:18:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:18:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:19:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:19:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:19:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:19:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:19:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:19:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:19:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:19:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:19:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:19:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:19:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:19:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:20:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:20:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:20:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:20:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:20:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:20:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:20:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:20:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:21:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:21:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:21:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:21:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:22:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:22:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:22:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:22:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:22:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:22:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:22:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:22:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:22:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:22:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:22:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:25:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:25:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:25:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:25:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:27:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2080, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T13:28:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:28:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:28:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:28:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:28:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:29:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:29:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:29:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:29:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:30:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:30:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:30:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:30:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:30:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:30:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 819, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T13:30:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T13:33:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T13:33:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T13:33:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:33:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 968, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T13:34:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T13:35:34Z"}, {"method": "POST", "status": 200, "action": "other", "size": 24972, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T13:36:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T13:36:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:38:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:43:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2596, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T13:45:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:48:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:53:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T13:58:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1602, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T13:59:20Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1273, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:01:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:03:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8016, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:03:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:04:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:04:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:04:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:04:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152777, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T14:05:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:06:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:06:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:06:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:06:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:07:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:07:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:07:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:07:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:08:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:09:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:10:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:11:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:12:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2442, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:12:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:13:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1608, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:16:59Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1976, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:17:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:17:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:18:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:18:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1960, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:19:08Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6231, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:20:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:22:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:22:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:22:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:23:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1351, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:25:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:28:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:33:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 940, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:33:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:33:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-13T14:33:31Z"}, {"method": "POST", "status": 200, "action": "other", "size": 774, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:33:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:35:36Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1448, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:37:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:37:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:37:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:38:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:43:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:48:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:48:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:48:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:48:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:48:47Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2774, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:49:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:49:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:49:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:49:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:52:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:52:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:52:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:52:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:53:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T14:53:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T14:53:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T14:53:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T14:54:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4120, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T14:54:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T14:58:25Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 315, "ip": "192.168.88.21", "user": "", "site": "http://download1.rpmfusion.org", "datetime": "2022-06-13T15:00:22Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 315, "ip": "192.168.88.21", "user": "", "site": "http://download1.rpmfusion.org", "datetime": "2022-06-13T15:00:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:03:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 866, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T15:05:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T15:05:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-13T15:05:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:08:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:13:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:18:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:23:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T15:25:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:27:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:28:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3757, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T15:32:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:33:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:38:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:43:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:48:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:53:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T15:58:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:03:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:08:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1881, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T16:09:23Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T16:12:16Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T16:12:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:13:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:18:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:23:25Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152776, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T16:24:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-13T16:25:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-13T16:25:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:28:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T16:31:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:33:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:38:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:40:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:40:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:40:13Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:40:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:40:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:40:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:40:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:42:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:42:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:42:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:42:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:42:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:43:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:43:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:43:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:43:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:43:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4333, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T16:44:02Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2813, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T16:45:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T16:47:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:48:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:48:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:48:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:48:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:48:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:49:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:49:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:49:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:49:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:53:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:53:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:53:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:53:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:53:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:56:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:56:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:56:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:56:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T16:58:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:58:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T16:58:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T16:58:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T16:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:03:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:07:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:07:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:07:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:07:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:08:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:08:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:08:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:08:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:08:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6991, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:12:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:13:26Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152776, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T17:15:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:16:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:16:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:16:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:16:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:16:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:16:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:16:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:18:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:21:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:21:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:21:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:21:54Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4454, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:22:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:27:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:27:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:27:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:27:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:28:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3487, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:29:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T17:30:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2422, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.godaddy.com", "datetime": "2022-06-13T17:30:18Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T17:30:18Z"}, {"method": "POST", "status": 200, "action": "other", "size": 10592, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:30:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:31:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:33:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6696, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:34:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:35:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T17:35:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T17:35:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T17:35:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:37:42Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T17:37:54Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T17:37:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:38:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5459, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T17:38:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:43:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1534, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:45:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:48:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:52:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:53:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:53:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1626, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T17:56:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T17:58:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4304, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T18:01:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:02:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:03:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:03:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:03:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:03:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:03:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 979, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:06:45Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 743, "ip": "192.168.88.21", "user": "", "site": "http://t.email.econodata.com.br", "datetime": "2022-06-13T18:06:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:08:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:12:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:13:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:13:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:13:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:13:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:13:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:13:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:13:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:13:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:13:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:13:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:13:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:13:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:13:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:14:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:14:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:14:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:14:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:18:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:22:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4365, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:23:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:23:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2979, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:26:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:27:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:28:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2061, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:29:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2552, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:32:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:33:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:34:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:34:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:34:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:34:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:38:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:38:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:43:26Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 755, "ip": "192.168.88.21", "user": "", "site": "http://t.email.econodata.com.br", "datetime": "2022-06-13T18:43:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2879, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:45:03Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1985, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:45:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:45:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:45:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:45:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:45:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:48:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:50:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:50:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:50:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:50:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:50:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:50:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:50:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:53:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T18:55:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T18:55:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T18:55:40Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1745, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T18:57:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T18:58:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:03:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2463, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:06:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:08:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2422, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.godaddy.com", "datetime": "2022-06-13T19:10:11Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4198, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:12:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:13:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:18:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T19:23:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T19:23:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T19:23:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T19:23:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5289, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:24:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3913, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:25:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:27:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:28:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:33:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:37:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2147, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:38:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T19:39:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T19:39:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T19:39:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T19:39:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6376, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:40:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2247, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:41:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:43:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:48:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3407, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:48:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4366, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:48:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T19:50:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5998, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T19:51:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:53:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T19:54:15Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T19:54:17Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5097, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T19:54:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:54:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 29876, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T19:54:50Z"}, {"method": "GET", "status": 200, "action": "other", "size": 34177, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T19:56:34Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152776, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T19:56:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6009, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T19:56:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 25670, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T19:56:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:58:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T19:59:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T19:59:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T19:59:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T19:59:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T19:59:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4600, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T20:00:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:04:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:04:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:07:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:07:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:07:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:09:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:09:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:12:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:13:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:13:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:13:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:13:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:14:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:14:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 25655, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T20:14:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:17:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:18:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:18:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:18:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:18:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:19:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:19:29Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2134, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T20:20:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:22:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:23:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:23:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:23:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:23:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:24:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:24:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:26:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:26:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:26:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:27:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:29:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:29:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:29:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:29:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:29:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 995, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T20:29:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:29:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:30:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:30:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:30:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:30:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:30:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:30:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-13T20:31:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:31:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:31:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:31:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:31:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-13T20:31:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:32:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:32:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:32:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:32:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:34:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:34:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T20:34:45Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T20:34:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3870, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T20:35:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:37:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:37:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:37:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:37:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:37:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:37:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:37:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:37:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:37:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:37:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:37:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:38:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:38:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:38:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:38:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4849, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T20:38:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:38:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:38:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:38:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:39:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:39:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:39:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:39:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:39:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:39:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:39:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:40:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:40:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:40:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:40:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:40:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:40:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:40:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:40:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:41:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:41:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:41:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:41:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:41:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:41:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:41:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:42:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:43:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T20:43:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T20:43:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T20:43:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.43", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T20:43:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:44:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:49:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T20:49:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:54:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:57:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4142, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T20:57:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3265, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T20:58:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T20:59:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T20:59:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2839, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:02:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:04:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:07:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:07:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:07:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:07:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:09:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:10:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:14:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T21:15:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:15:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:15:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:15:41Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 330, "ip": "172.28.10.42", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-13T21:15:52Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 542, "ip": "172.28.10.42", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-13T21:15:53Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 737, "ip": "172.28.10.42", "user": "", "site": "http://app.ys7.com", "datetime": "2022-06-13T21:15:54Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1662, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-13T21:15:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:15:55Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2770, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-13T21:15:56Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1108, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-13T21:15:57Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 9498, "ip": "172.28.10.42", "user": "", "site": "http://ynuf.alipay.com", "datetime": "2022-06-13T21:15:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:16:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:16:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:16:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:16:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:19:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1869, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:19:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:20:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:24:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8855, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:25:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:25:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:27:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1830, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:29:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:29:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-13T21:29:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:30:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:30:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:30:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:30:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:30:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:30:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:30:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:30:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:30:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:31:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:31:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:31:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:31:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:31:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:32:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:32:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:32:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:32:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:33:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:33:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:33:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:33:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:33:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:34:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:34:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:34:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:34:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:35:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:35:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:35:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:35:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:35:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:35:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:35:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:35:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:35:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:35:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:35:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:36:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:36:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:36:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:36:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T21:37:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:37:42Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T21:37:43Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-13T21:37:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:38:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:38:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:38:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:39:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:39:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:39:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:39:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:39:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:39:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:39:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:39:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:39:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:40:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:40:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:40:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:40:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4082, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:40:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:40:55Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1984, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:41:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:41:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:41:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:41:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:41:54Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1899, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:42:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:42:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:44:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:44:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:44:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:44:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:45:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:45:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:45:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:45:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:45:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:47:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:47:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:47:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:47:09Z"}, {"method": "POST", "status": 200, "action": "other", "size": 911, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:47:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:47:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:47:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:47:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:47:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:47:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:49:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:49:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:49:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:49:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:49:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:50:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:50:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:50:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:50:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:50:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:51:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:51:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:51:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:51:59Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1442, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T21:52:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:54:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:54:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:54:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:54:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:54:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:55:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:56:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:56:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:56:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:56:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:57:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:58:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T21:58:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T21:58:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T21:58:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T21:59:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:00:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:01:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T22:01:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T22:01:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:01:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:02:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T22:04:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:04:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T22:04:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:04:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4074, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T22:05:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:05:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T22:05:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:05:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T22:05:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:05:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:07:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T22:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T22:09:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:09:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T22:09:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T22:09:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:09:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:10:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-13T22:11:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-13T22:11:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-13T22:11:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:15:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:17:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1920, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T22:19:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:20:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:25:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:27:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1592, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T22:27:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:30:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:35:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:40:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:45:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:50:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:55:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T22:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:00:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:05:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T23:07:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-13T23:07:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:10:55Z"}, {"method": "GET", "status": 200, "action": "other", "size": 4303, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T23:11:58Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3869, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T23:12:00Z"}, {"method": "GET", "status": 200, "action": "other", "size": 4601, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-13T23:12:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:22:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-13T23:25:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:32:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1088, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T23:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:37:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1674, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T23:42:06Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T23:42:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:42:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1263, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-13T23:45:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-13T23:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:07:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1281, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T00:09:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:12:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 940, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T00:12:44Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 473, "ip": "192.168.88.23", "user": "", "site": "http://zerossl.crt.sectigo.com", "datetime": "2022-06-14T00:12:58Z"}, {"method": "GET", "status": 307, "action": "virus", "size": 1014, "ip": "192.168.88.23", "user": "", "site": "http://ib.adnxs.com", "datetime": "2022-06-14T00:14:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T00:23:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T00:23:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:27:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1958, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T00:32:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:37:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1273, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T00:37:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-14T00:38:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T00:38:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T00:38:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T00:38:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T00:40:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-14T00:40:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 26358, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-14T00:44:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T00:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:02:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3151, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T01:06:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:37:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T01:40:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:42:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1593, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T01:45:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:47:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1985, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T01:50:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:52:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 807, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T01:54:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T01:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T02:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:02:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:27:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1862, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T03:30:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T03:57:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:02:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T04:14:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T04:14:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:32:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T04:57:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1453, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T05:01:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:27:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T05:57:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:27:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:47:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:52:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T06:57:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1520, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T07:02:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:12:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:22:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T07:41:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T07:41:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T07:57:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T08:01:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:02:42Z"}, {"method": "GET", "status": 403, "action": "deny", "size": 14270, "ip": "172.28.10.26", "user": "", "site": "http://s3.amazonaws.com", "datetime": "2022-06-14T08:07:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:27:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:37:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:47:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T08:49:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T08:57:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 20512, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T08:59:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:02:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:07:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 807, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T09:09:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:22:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5384, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T09:24:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6240, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-14T09:24:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 57467, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-14T09:24:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11876, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-14T09:24:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 104036, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-14T09:24:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8787, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:24:51Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 198162, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:24:52Z"}, {"method": "GET", "status": 206, "action": "other", "size": 202380, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:24:52Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2042776, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:24:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6764, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:24:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 195582, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T09:25:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4231, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-14T09:25:01Z"}, {"method": "GET", "status": 200, "action": "other", "size": 700521, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-14T09:25:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3499, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T09:25:03Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2889, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T09:25:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7176, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:04Z"}, {"method": "GET", "status": 200, "action": "other", "size": 24358, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 37170, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:07Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 52331, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 79197, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T09:25:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4227, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T09:25:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 261762, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T09:25:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T09:25:11Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2668, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T09:25:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1032717, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1913629, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8583665, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 99533553, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T09:25:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:32:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 872, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T09:36:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:52:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1017, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T09:55:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T09:57:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-14T09:57:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T09:57:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3484, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T09:58:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T09:58:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T09:58:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:02:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1465, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T10:04:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:12:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2970, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T10:14:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:22:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T10:23:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T10:24:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:27:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T10:31:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T10:31:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T10:47:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T10:47:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:47:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T10:51:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T10:57:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T11:00:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3859, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T11:00:46Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T11:00:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:02:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T11:03:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:12:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:13:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:14:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.24", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:14:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.31", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-14T11:14:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5454, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:14:59Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 43834, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:15:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31722, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:15:00Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 8497, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:15:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8787, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:15:01Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1313408, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:15:01Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1153328, "ip": "172.28.10.24", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T11:15:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3869, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T11:15:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:17:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:17:03Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:17:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:17:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:17:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.24", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:17:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:17:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:18:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:18:47Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:18:47Z"}, {"method": "POST", "status": 200, "action": "other", "size": 868, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T11:19:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:19:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T11:19:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 588, "ip": "192.168.88.31", "user": "", "site": "http://certificates.godaddy.com", "datetime": "2022-06-14T11:20:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:21:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:21:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:21:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.24", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:22:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:22:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:23:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:23:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:23:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:23:20Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 477, "ip": "172.28.10.42", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-14T11:23:25Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 737, "ip": "172.28.10.42", "user": "", "site": "http://app.ys7.com", "datetime": "2022-06-14T11:23:26Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2216, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:23:27Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2216, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:23:28Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1108, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:23:29Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 9492, "ip": "172.28.10.42", "user": "", "site": "http://ynuf.alipay.com", "datetime": "2022-06-14T11:23:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:23:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:23:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:23:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:23:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:23:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:24:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:25:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:25:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:25:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:25:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:25:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:25:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:25:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:25:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:26:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:26:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:26:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:26:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:27:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:27:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:27:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:28:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:28:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:28:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:28:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:28:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:28:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:28:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:29:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:31:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:31:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:31:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:31:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:32:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:32:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:32:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:32:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:33:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:33:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:33:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:33:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:34:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:34:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:34:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:34:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:34:42Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3858, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T11:35:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:36:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:36:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:36:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:36:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T11:36:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3405, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T11:36:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T11:36:48Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 477, "ip": "172.28.10.42", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-14T11:37:07Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 737, "ip": "172.28.10.42", "user": "", "site": "http://app.ys7.com", "datetime": "2022-06-14T11:37:09Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 554, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:37:09Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2216, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:37:10Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2216, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:37:11Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 554, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-14T11:37:12Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 9486, "ip": "172.28.10.42", "user": "", "site": "http://ynuf.alipay.com", "datetime": "2022-06-14T11:37:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:37:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:37:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:37:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:37:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:37:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:38:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:39:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:41:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:42:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:43:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:44:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 379435, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3145131, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114283, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4642089, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1544717, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8627925, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5124117, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 716986, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3602961, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 41181, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3016443, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 18732, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 70249, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8703470, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 671915, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1000952, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3930335, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 142583, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2470048, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 914, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 772869, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:44:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 554111, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 902360, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 143412, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16628, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4354, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T11:44:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:45:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:45:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:45:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:45:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 20015300, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 715670, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2783868, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 639240, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2081197, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1392277, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5391117, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1684340, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:45:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2905758, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5696205, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2380174, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3099168, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:46:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 20269867, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12621273, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7917562, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6717558, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3769398, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11256589, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 21611476, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7858725, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9178649, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2827052, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10034069, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7029995, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9355053, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2355133, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 59065136, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10515112, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8808738, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6646266, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7652985, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8916940, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3307516, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13667186, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 24608330, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 33969728, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12178871, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 621839, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 124809253, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 18452636, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10040715, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:46:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 54593462, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11805559, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9653661, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1380662, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 35446304, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 57827773, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 14275670, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:47:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:47:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:48:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6626, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T11:48:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:49:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1741, "ip": "192.168.88.21", "user": "", "site": "http://cacerts.digicert.com", "datetime": "2022-06-14T11:49:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.21", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-14T11:49:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:50:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:50:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:50:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:50:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:51:06Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:28Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:29Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:31Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:41Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:52:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:52:55Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:53:14Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:53:34Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:53:35Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:53:37Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:53:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:53:46Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:53:49Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:54:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:54:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:54:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:54:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:54:32Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:54:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T11:54:49Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T11:54:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:55:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T11:55:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T11:55:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T11:55:08Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:55:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:56:06Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T11:57:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 479, "ip": "172.28.10.24", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T11:57:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 397, "ip": "172.28.10.24", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T11:57:16Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1051, "ip": "172.28.10.24", "user": "", "site": "http://r3.o.lencr.org", "datetime": "2022-06-14T11:57:16Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2835, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T11:57:16Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1850, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T11:57:17Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2100, "ip": "172.28.10.24", "user": "", "site": "http://r3.o.lencr.org", "datetime": "2022-06-14T11:57:17Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1775, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T11:57:21Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2054, "ip": "172.28.10.24", "user": "", "site": "http://ocsp2.globalsign.com", "datetime": "2022-06-14T11:57:28Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2662, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T11:57:29Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T11:57:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 875, "ip": "172.28.10.24", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T11:58:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 912598, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:58:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4559958, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T11:58:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:58:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T11:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T11:59:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:01:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2302, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:01:07Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:01:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 512382, "ip": "172.28.10.24", "user": "", "site": "http://ciscobinary.openh264.org", "datetime": "2022-06-14T12:01:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:01:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:01:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:01:28Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:02:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:02:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:02:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:02:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:02:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:03:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2615, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:04:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:04:23Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1448, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:04:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:04:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:06:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:06:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:06:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:06:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:06:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:06:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:09:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:11:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:11:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:11:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:11:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:11:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:11:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:11:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:11:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:11:34Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:05Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:25Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:26Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:28Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:32Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:40Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:12:56Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:13:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114283, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:13:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565094, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:13:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7692650, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:13:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1615715, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:13:25Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:13:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:13:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2380486, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 41436, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2132, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 161980, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3684187, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9082069, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2359554, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:14:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10002461, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9430177, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2265958, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:14:26Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:14:32Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:15:06Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:15:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:15:18Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:15:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4481, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:15:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 304159, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:15:26Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:15:30Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:15:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 58662, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 15313335, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9987476, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8542906, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8512698, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6435276, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6859953, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 26015236, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:15:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:15:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:15:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:15:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:15:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1584310, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:16:06Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 686, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 584375, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:08Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 448, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 133052, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:09Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 448, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1865083, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:09Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 896, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 109192, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 388916, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:10Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 448, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2103652, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 691408, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 820469, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 65582, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:19Z"}, {"method": "POST", "status": 302, "action": "accept", "size": 22066, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 86235, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1374, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2034186, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 448, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1004141, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 79754, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 303736, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:19Z"}, {"method": "POST", "status": 302, "action": "accept", "size": 1088, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:19Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 622, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 274423, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:24Z"}, {"method": "POST", "status": 302, "action": "other", "size": 20178, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 39973, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 604821, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:26Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 448, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2084798, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:26Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 448, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 388916, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13042, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11338, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:32Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 27038, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:33Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 896, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1243, "ip": "192.168.88.21", "user": "", "site": "http://regin.jucesc.sc.gov.br", "datetime": "2022-06-14T12:16:33Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 13460, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:16:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 64383, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:16:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1098748, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:16:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 167792, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5338, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:16:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4285772, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:40Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:16:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 591, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:16:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 262784, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 226372, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 233164, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:16:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1128854, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 246512, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3316198, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 43474, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 215916, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5339520, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:38Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 5824, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:17:41Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 2580, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:17:41Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 258, "ip": "192.168.88.21", "user": "", "site": "http://assinador.pscs.com.br", "datetime": "2022-06-14T12:17:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 45816, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 70143, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 61934, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:17:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 36774, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 204956, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 43274, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 80975, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8685, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 577792, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 292476, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 98779, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 129248, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:18:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 113748, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1533177, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10063534, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7063509, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 17112576, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:18:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6603299, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6091201, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 40482, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:19:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:19:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:19:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:19:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:19:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 440526, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1545554, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7111080, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:37Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13297, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:19:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:19:59Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:19:59Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:19:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:19:59Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:20:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:20:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 742, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:20:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:20:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:20:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:20:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:20:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:20:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:20:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:20:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:20:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:20:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:21:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:21:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:21:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:21:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:21:09Z"}, {"method": "GET", "status": 200, "action": "other", "size": 5458, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6863, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 25654, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 993069, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:23Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152776, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:24Z"}, {"method": "GET", "status": 200, "action": "other", "size": 29877, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:22:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:22:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:22:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16555, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T12:22:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:22:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:23:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:23:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:23:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:24:23Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4612, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:25:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:25:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 554, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:26:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:26:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:26:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:26:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:26:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 821, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:27:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:28:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:28:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:28:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:28:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:28:45Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:29:13Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:29:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:29:13Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:29:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:29:16Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:29:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:29:16Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:29:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:29:17Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:29:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:29:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:29:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:29:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:29:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:29:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:29:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:30:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:31:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:32:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:32:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:32:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:32:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:33:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:33:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:33:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:33:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:33:45Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:34:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:34:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:34:07Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:34:07Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:34:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:34:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:34:11Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:34:11Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1113, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:34:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:34:11Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114290, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:34:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:35:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:35:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:35:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:35:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:36:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:36:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:36:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:36:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:36:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2303490, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:37:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 136956, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:37:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4451098, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:37:55Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 705, "ip": "192.168.88.21", "user": "", "site": "http://apps.ad5001.eu", "datetime": "2022-06-14T12:38:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 38646, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:38:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6770024, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:38:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3949101, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:38:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1739382, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:38:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 885789, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:38:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1635102, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:38:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:38:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:38:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:38:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:38:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:38:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:39:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:40:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:41:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4077275, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:42:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2907044, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:42:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 371332, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:42:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 89311, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:42:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361178, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:42:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3533426, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:42:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 187601, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:43:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2160398, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:43:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 110404, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:43:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1549484, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:43:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 241483, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:43:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 207007, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:43:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:43:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 83670158, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:44:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:44:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:45:38Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2349, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:45:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:46:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:46:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:46:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:46:44Z"}, {"method": "POST", "status": 200, "action": "other", "size": 807, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:47:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:48:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:48:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:48:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:48:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:48:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T12:49:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:49:23Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:49:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114163, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:49:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:49:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 108778, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:49:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10939, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:49:43Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 454, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:49:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114289, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:49:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 269198, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:49:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:49:51Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:49:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2369, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:50:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:50:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:50:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:50:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:50:25Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:50:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:50:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:51:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2420, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:51:10Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5324, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:52:01Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:52:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114170, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:52:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:52:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 108785, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:52:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114289, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:52:07Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 455, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:52:07Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13303, "ip": "172.28.10.24", "user": "", "site": "http://repo.mysql.com", "datetime": "2022-06-14T12:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 222955, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114288, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:52:30Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 455, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:52:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3017, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:52:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:53:30Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:53:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:53:45Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:53:46Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:53:47Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1774, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:53:48Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:53:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 220581, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1618, "ip": "172.28.10.24", "user": "", "site": "http://fonts.googleapis.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 58486, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1560, "ip": "172.28.10.24", "user": "", "site": "http://2.gravatar.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10174, "ip": "172.28.10.24", "user": "", "site": "http://1.gravatar.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 805, "ip": "172.28.10.24", "user": "", "site": "http://0.gravatar.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 155264, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 17666, "ip": "172.28.10.24", "user": "", "site": "http://fonts.gstatic.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 250831, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 17306, "ip": "172.28.10.24", "user": "", "site": "http://fonts.gstatic.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 73125, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 17742, "ip": "172.28.10.24", "user": "", "site": "http://fonts.gstatic.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 111470, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 18762, "ip": "172.28.10.24", "user": "", "site": "http://fonts.gstatic.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 112759, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 30237, "ip": "172.28.10.24", "user": "", "site": "http://platform.twitter.com", "datetime": "2022-06-14T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 22313, "ip": "172.28.10.24", "user": "", "site": "http://www.bosontreinamentos.com.br", "datetime": "2022-06-14T12:53:57Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:53:58Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 850, "ip": "172.28.10.24", "user": "", "site": "http://developers.google.com", "datetime": "2022-06-14T12:53:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 228910, "ip": "172.28.10.24", "user": "", "site": "http://pagead2.googlesyndication.com", "datetime": "2022-06-14T12:53:58Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2664, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:53:58Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 4437, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:53:59Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 3552, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T12:54:00Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T12:54:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3685, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:54:01Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:54:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 222955, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:54:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114287, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:54:43Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 455, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:54:44Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:54:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 222955, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:54:47Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 455, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:54:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114287, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:54:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:54:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:54:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:54:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T12:56:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:56:06Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 371, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:56:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 222955, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T12:56:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 455, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:56:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4487, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:56:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114287, "ip": "172.28.10.24", "user": "", "site": "http://security.ubuntu.com", "datetime": "2022-06-14T12:56:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 304165, "ip": "172.28.10.24", "user": "", "site": "http://packages.microsoft.com", "datetime": "2022-06-14T12:56:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3002, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T12:57:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T12:58:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T12:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T12:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T12:59:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:01:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:01:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:01:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:01:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:01:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1358, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:01:14Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:01:16Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:01:36Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:01:37Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:01:39Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:01:43Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:01:51Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:02:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:02:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:02:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:02:17Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:02:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:03:00Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:03:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:03:45Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3858, "ip": "172.28.10.10", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T13:05:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:05:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:06:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:06:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:06:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:06:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:06:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:06:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:06:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:06:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:06:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 9004, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:06:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:08:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:08:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:08:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:08:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:08:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:08:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 310, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:08:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5899, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:10:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:11:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:12:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:12:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:12:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:12:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:13:45Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:14:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5404042, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:14:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 14694, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:14:36Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:14:37Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:14:38Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:14:40Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:14:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 132577, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:14:48Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:14:52Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:15:08Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 315, "ip": "192.168.88.21", "user": "", "site": "http://download1.rpmfusion.org", "datetime": "2022-06-14T13:15:20Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 315, "ip": "192.168.88.21", "user": "", "site": "http://download1.rpmfusion.org", "datetime": "2022-06-14T13:15:21Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 315, "ip": "172.28.10.10", "user": "", "site": "http://download1.rpmfusion.org", "datetime": "2022-06-14T13:15:29Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 315, "ip": "172.28.10.10", "user": "", "site": "http://download1.rpmfusion.org", "datetime": "2022-06-14T13:15:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2014165, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:15:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7248466, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:15:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10402812, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:15:37Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:15:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1790490, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:15:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1365963, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:15:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 237525, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:15:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:16:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 109664, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1262510, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1122220, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3686576, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 628964, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5368863, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:41Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:16:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 18443632, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3487790, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:16:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:16:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:16:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:16:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 338170, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:17:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2654294, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:17:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12368670, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:17:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12619843, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:17:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 47581220, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:17:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3287894, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:17:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:18:46Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:18:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:18:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:18:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:18:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:18:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 875, "ip": "172.28.10.24", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T13:19:38Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1051, "ip": "172.28.10.24", "user": "", "site": "http://r3.o.lencr.org", "datetime": "2022-06-14T13:19:39Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1774, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T13:19:39Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1850, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T13:19:39Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T13:19:39Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "172.28.10.24", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T13:19:40Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1050, "ip": "172.28.10.24", "user": "", "site": "http://r3.o.lencr.org", "datetime": "2022-06-14T13:19:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:20:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:20:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:20:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 467277, "ip": "172.28.10.24", "user": "", "site": "http://br.archive.ubuntu.com", "datetime": "2022-06-14T13:20:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:20:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 875, "ip": "172.28.10.24", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T13:20:38Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2060, "ip": "172.28.10.24", "user": "", "site": "http://ocsp2.globalsign.com", "datetime": "2022-06-14T13:20:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:21:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1050, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:22:02Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3722, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:22:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:22:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:22:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:22:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:22:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:23:00Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:23:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:23:45Z"}, {"method": "GET", "status": 503, "action": "accept", "size": 4043, "ip": "172.28.10.24", "user": "", "site": "http://connectivity-check.ubuntu.com", "datetime": "2022-06-14T13:24:10Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1043, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:25:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:25:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:25:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:25:37Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3280, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:25:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:26:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:28:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:28:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:28:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:28:24Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4000, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:28:28Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T13:28:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:31:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:31:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:31:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:31:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:31:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:33:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4019, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:33:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:33:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:34:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:34:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:34:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:34:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:36:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:36:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:36:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:36:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:36:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:38:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:40:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:40:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:40:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:40:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:41:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:41:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:41:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:41:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T13:41:19Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 841, "ip": "192.168.88.10", "user": "", "site": "http://h10141.www1.hp.com", "datetime": "2022-06-14T13:41:39Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4109, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:42:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:43:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:45:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:45:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:45:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:46:06Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1079, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:46:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:48:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:48:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:48:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:48:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:48:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:48:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152779, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T13:49:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:50:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:50:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:50:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:50:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:51:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:52:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:52:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:52:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:52:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:53:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:54:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:54:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:54:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:54:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:55:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:55:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:55:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:55:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T13:55:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T13:55:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T13:55:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:56:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T13:58:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1333, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:59:44Z"}, {"method": "POST", "status": 200, "action": "other", "size": 756, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T13:59:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:01:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:01:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:01:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:01:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:03:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6570, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:04:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:06:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:06:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:06:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:11:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:11:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:11:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:11:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:11:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-14T14:12:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:12:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:12:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:12:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:12:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:12:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:12:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:13:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1846, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:13:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:13:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:14:18Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:14:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:15:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:15:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:15:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:15:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:16:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:18:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:20:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:20:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:20:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:20:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:21:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:21:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:21:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:21:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:21:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:23:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:25:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:25:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:25:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:26:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T14:26:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T14:27:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:28:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:28:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:28:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:28:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:31:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:31:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:31:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:31:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:33:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:34:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-14T14:34:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:35:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:36:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:37:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-14T14:37:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:38:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1685, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:38:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:38:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:38:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:38:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:38:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:41:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:43:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:44:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:44:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:44:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:44:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:45:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:46:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:46:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:46:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:48:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:50:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:50:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:50:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:51:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:51:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:51:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:51:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:52:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T14:52:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:52:44Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4509, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:52:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T14:52:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:52:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:53:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T14:54:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1376, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:55:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2370, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:56:55Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2014, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:57:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T14:58:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2771, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T14:58:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:59:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T14:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T14:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T14:59:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:00:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:00:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:00:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:00:29Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2828, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T15:00:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:03:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T15:07:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-14T15:07:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:08:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T15:10:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:13:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1004, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T15:13:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:13:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:13:53Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 701, "ip": "192.168.88.31", "user": "", "site": "http://e.shell.com.br", "datetime": "2022-06-14T15:16:44Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 701, "ip": "192.168.88.31", "user": "", "site": "http://e.shell.com.br", "datetime": "2022-06-14T15:16:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:18:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:18:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:23:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:28:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:33:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:38:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:38:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:43:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:43:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:48:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:48:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1908, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T15:49:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:51:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:51:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:51:55Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:51:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:51:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:52:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:52:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:53:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:53:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:53:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:53:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:53:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:53:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:54:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:54:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:54:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:54:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:55:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:55:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:55:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:55:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T15:55:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:55:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:55:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:55:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:55:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:56:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:56:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:56:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:56:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:56:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:56:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:56:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:56:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:57:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:57:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:57:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:57:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:57:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:57:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:57:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:57:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:57:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:57:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:57:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:57:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:58:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:58:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:58:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:58:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:58:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T15:58:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:59:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:59:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T15:59:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T15:59:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T15:59:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:00:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:00:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:00:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:00:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:00:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:00:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:00:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:00:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:00:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:01:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:01:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:01:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:01:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:01:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:01:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:01:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:01:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:01:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:02:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:02:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:02:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:02:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:02:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:02:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:02:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:02:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:03:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:03:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:03:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:03:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:03:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:03:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:03:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:03:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:03:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:03:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:03:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:03:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:03:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T16:05:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:05:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:05:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:05:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:05:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4183, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:06:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T16:06:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:06:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:06:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:06:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:06:44Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2499, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:07:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T16:07:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:08:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:08:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:08:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:08:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:08:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:08:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:08:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:08:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:08:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:08:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2416, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:09:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T16:09:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:09:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:09:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:09:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:09:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:10:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:10:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:10:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:10:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:10:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:10:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:10:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:10:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:10:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:10:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:10:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:10:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:11:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:11:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:11:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:11:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:11:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:11:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:11:41Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152778, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T16:11:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:12:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:12:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:12:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:12:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:12:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:12:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:12:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:13:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:13:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:13:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:13:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:13:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:13:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:13:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:13:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:13:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:13:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:14:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:14:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:14:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:14:06Z"}, {"method": "POST", "status": 200, "action": "other", "size": 17964, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:14:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:15:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:15:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:15:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:15:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:16:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:16:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:16:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:16:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:17:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:17:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:17:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:17:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:17:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:17:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:17:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:17:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:17:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:17:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:17:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:17:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:18:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:18:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:18:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:18:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:18:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:18:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:18:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:19:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:19:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:19:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:19:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:19:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:19:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:19:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1824, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:19:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3300, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:20:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:23:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:23:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:23:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:23:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:23:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1221, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:23:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1627, "ip": "192.168.88.21", "user": "", "site": "http://apps.identrust.com", "datetime": "2022-06-14T16:24:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1781, "ip": "192.168.88.21", "user": "", "site": "http://r3.i.lencr.org", "datetime": "2022-06-14T16:24:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1932, "ip": "192.168.88.21", "user": "", "site": "http://x1.i.lencr.org", "datetime": "2022-06-14T16:24:04Z"}, {"method": "GET", "status": 403, "action": "accept", "size": 2638, "ip": "192.168.88.21", "user": "", "site": "http://comercialinformatica.com", "datetime": "2022-06-14T16:24:06Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 460, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T16:24:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 925, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T16:24:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2740, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:26:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 48872, "ip": "192.168.88.21", "user": "", "site": "http://capslink.com.br", "datetime": "2022-06-14T16:28:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 806797, "ip": "192.168.88.21", "user": "", "site": "http://capslink.com.br", "datetime": "2022-06-14T16:28:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1823170, "ip": "192.168.88.21", "user": "", "site": "http://capslink.com.br", "datetime": "2022-06-14T16:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 100923, "ip": "192.168.88.21", "user": "", "site": "http://capslink.com.br", "datetime": "2022-06-14T16:28:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 531288, "ip": "192.168.88.21", "user": "", "site": "http://capslink.com.br", "datetime": "2022-06-14T16:28:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 21050, "ip": "192.168.88.21", "user": "", "site": "http://capslink.com.br", "datetime": "2022-06-14T16:28:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:28:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 46465, "ip": "192.168.88.21", "user": "", "site": "http://smartlayer.net.br", "datetime": "2022-06-14T16:29:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 378399, "ip": "192.168.88.21", "user": "", "site": "http://static-public.klickpages.com.br", "datetime": "2022-06-14T16:29:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16487, "ip": "192.168.88.21", "user": "", "site": "http://static-public.klickpages.com.br", "datetime": "2022-06-14T16:29:05Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "192.168.88.21", "user": "", "site": "http://static-public.klickpages.com.br", "datetime": "2022-06-14T16:29:05Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 1147, "ip": "192.168.88.21", "user": "", "site": "http://totaltecms.com", "datetime": "2022-06-14T16:29:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 54354, "ip": "192.168.88.21", "user": "", "site": "http://wsnetwork.com.br", "datetime": "2022-06-14T16:29:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 698724, "ip": "192.168.88.21", "user": "", "site": "http://wsnetwork.com.br", "datetime": "2022-06-14T16:29:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:30:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:30:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:30:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:33:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5809, "ip": "192.168.88.21", "user": "", "site": "http://ntiamerica.inf.br", "datetime": "2022-06-14T16:34:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 268642, "ip": "192.168.88.21", "user": "", "site": "http://ntiamerica.inf.br", "datetime": "2022-06-14T16:34:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1882704, "ip": "192.168.88.21", "user": "", "site": "http://ntiamerica.inf.br", "datetime": "2022-06-14T16:34:18Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2342694, "ip": "192.168.88.21", "user": "", "site": "http://ntiamerica.inf.br", "datetime": "2022-06-14T16:34:18Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1262, "ip": "192.168.88.21", "user": "", "site": "http://ntiamerica.inf.br", "datetime": "2022-06-14T16:34:18Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 521, "ip": "192.168.88.21", "user": "", "site": "http://tvconsultoria.com.br", "datetime": "2022-06-14T16:34:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6640, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:35:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 253918, "ip": "192.168.88.21", "user": "", "site": "http://ipagility.com.br", "datetime": "2022-06-14T16:35:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1518517, "ip": "192.168.88.21", "user": "", "site": "http://ipagility.com.br", "datetime": "2022-06-14T16:35:16Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1690, "ip": "192.168.88.21", "user": "", "site": "http://ipagility.com.br", "datetime": "2022-06-14T16:35:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:38:00Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 1153, "ip": "192.168.88.21", "user": "", "site": "http://iontecnologia.com.br", "datetime": "2022-06-14T16:38:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:38:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:38:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T16:40:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:40:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:40:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:40:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:40:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 45391, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 178101, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 173595, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 104869, "ip": "192.168.88.21", "user": "", "site": "http://www.fortaleza.inf.br", "datetime": "2022-06-14T16:41:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 20114, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 116500, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 122010, "ip": "192.168.88.21", "user": "", "site": "http://www.fortaleza.inf.br", "datetime": "2022-06-14T16:41:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 502350, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 111976, "ip": "192.168.88.21", "user": "", "site": "http://fortaleza.inf.br", "datetime": "2022-06-14T16:41:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 107320, "ip": "192.168.88.21", "user": "", "site": "http://www.fortaleza.inf.br", "datetime": "2022-06-14T16:41:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 114122, "ip": "192.168.88.21", "user": "", "site": "http://www.fortaleza.inf.br", "datetime": "2022-06-14T16:41:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:41:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:41:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:41:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:41:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:41:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:41:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:41:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:41:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:43:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:43:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:43:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:43:01Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 609, "ip": "192.168.88.21", "user": "", "site": "http://wtecinfor.com.br", "datetime": "2022-06-14T16:43:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:43:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:43:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2119, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:44:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:47:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:47:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:47:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:47:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:47:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:47:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:47:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:48:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:48:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:48:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:48:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:48:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:48:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:48:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:48:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:48:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:48:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:48:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3379, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:49:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:50:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:50:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:50:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:50:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 13280, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:50:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:50:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:50:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:50:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:50:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 778, "ip": "192.168.88.21", "user": "", "site": "http://climbsolucoes.com.br", "datetime": "2022-06-14T16:50:40Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 990, "ip": "192.168.88.21", "user": "", "site": "http://marfagionato4.wixsite.com", "datetime": "2022-06-14T16:50:40Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 874, "ip": "192.168.88.21", "user": "", "site": "http://climbsolucoes.com.br", "datetime": "2022-06-14T16:50:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:50:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:50:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:50:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:51:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:51:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:51:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:51:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 34316, "ip": "192.168.88.21", "user": "", "site": "http://servpressms.com.br", "datetime": "2022-06-14T16:51:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 132522, "ip": "192.168.88.21", "user": "", "site": "http://servpressms.com.br", "datetime": "2022-06-14T16:52:00Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1262, "ip": "192.168.88.21", "user": "", "site": "http://servpressms.com.br", "datetime": "2022-06-14T16:52:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2277, "ip": "192.168.88.21", "user": "", "site": "http://servpressms.com.br", "datetime": "2022-06-14T16:52:03Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 578, "ip": "192.168.88.21", "user": "", "site": "http://tecsis.net.br", "datetime": "2022-06-14T16:52:24Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 1154, "ip": "192.168.88.21", "user": "", "site": "http://lscomputadores.com.br", "datetime": "2022-06-14T16:52:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:53:00Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 462, "ip": "192.168.88.21", "user": "", "site": "http://conttarcontabilidade.com.br", "datetime": "2022-06-14T16:53:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 109008, "ip": "192.168.88.21", "user": "", "site": "http://www.conttarcontabilidade.com.br", "datetime": "2022-06-14T16:53:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 374395, "ip": "192.168.88.21", "user": "", "site": "http://www.conttarcontabilidade.com.br", "datetime": "2022-06-14T16:53:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1887, "ip": "192.168.88.21", "user": "", "site": "http://www.conttarcontabilidade.com.br", "datetime": "2022-06-14T16:53:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:53:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:53:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3123, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T16:56:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:58:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T16:58:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:59:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:59:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:59:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:59:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T16:59:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T16:59:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T16:59:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:03:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:06:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:06:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:06:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:06:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:06:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:06:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:06:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:06:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:07:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:07:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:07:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:07:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:08:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:10:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:10:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:10:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:10:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:11:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:11:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:11:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:11:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:13:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:13:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:18:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:18:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:19:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1130, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T17:19:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:20:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:20:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:20:05Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:20:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:20:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:20:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:23:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:25:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:25:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:25:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T17:26:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:28:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:29:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:29:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:29:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:29:15Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5736, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T17:29:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:32:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:32:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:32:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:32:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:33:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:33:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:37:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:37:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:37:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:37:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:38:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:38:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1825, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T17:40:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:43:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:43:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:43:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:43:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:43:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:43:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:43:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:48:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:48:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:49:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:49:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:49:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T17:50:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T17:51:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:53:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 12163, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T17:53:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:53:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T17:53:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6287, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T17:54:24Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152778, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T17:54:24Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2382, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T17:56:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:58:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T17:58:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:59:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T17:59:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T17:59:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T17:59:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:03:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 477287, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 34051, "ip": "192.168.88.21", "user": "", "site": "http://ajax.googleapis.com", "datetime": "2022-06-14T18:04:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 382449, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 33975, "ip": "192.168.88.21", "user": "", "site": "http://code.jquery.com", "datetime": "2022-06-14T18:04:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2215526, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3305082, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:10Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 809, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 443682, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 450787, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:11Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 488, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 39361, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4379, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9504, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:04:31Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5077, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T18:04:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4483, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T18:05:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:06:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:06:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:08:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1964, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T18:08:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:08:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:12:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:12:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:12:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:12:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:12:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:12:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:12:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:13:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:13:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:13:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:13:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:13:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:13:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:13:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:13:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:13:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:13:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:14:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:14:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:14:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:18:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:18:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:20:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:20:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:23:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:26:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:26:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:26:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:26:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:26:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:26:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:26:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:26:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:27:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:28:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:28:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:29:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:29:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:29:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:29:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:32:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:32:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:32:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:32:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:33:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:33:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:33:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:33:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:33:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:33:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:33:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:33:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:33:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:34:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:34:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:34:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:34:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:35:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:35:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:35:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:35:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:36:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:36:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:36:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:36:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:36:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T18:36:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T18:36:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T18:36:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.21", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-14T18:37:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:38:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:38:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:43:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:43:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:48:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:48:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3063, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T18:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:53:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:53:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9504, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:56:59Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 799, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:56:59Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 7578, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 839274, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 399, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2086907, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 399, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2256933, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 399, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1998, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 418247, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:01Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1996, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:01Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 809, "ip": "192.168.88.21", "user": "", "site": "http://seletiva.ind.br", "datetime": "2022-06-14T18:57:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:58:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T18:58:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:03:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:08:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:13:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T19:13:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T19:13:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T19:13:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T19:13:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:13:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:13:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1798, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T19:15:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:18:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:18:52Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 497, "ip": "192.168.88.21", "user": "", "site": "http://ctvoicer.com.br", "datetime": "2022-06-14T19:20:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:23:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2852, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T19:27:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:28:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:28:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1456, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T19:29:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:33:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1853, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T19:35:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:38:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:38:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5506208, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T19:40:32Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152778, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T19:40:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 825136, "ip": "192.168.88.31", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T19:40:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T19:42:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T19:42:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T19:42:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T19:42:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:43:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:43:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:48:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:48:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:53:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:53:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T19:58:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-14T19:58:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:58:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T19:58:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T20:02:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:03:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T20:03:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:03:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 993188, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T20:04:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7594, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T20:04:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:07:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T20:07:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T20:07:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T20:07:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:08:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:08:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T20:08:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:08:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T20:08:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:08:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2261, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T20:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:13:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:13:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:18:01Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2259, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T20:18:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T20:18:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:18:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:18:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T20:21:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T20:21:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:21:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:21:39Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1469, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T20:22:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:23:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:23:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:24:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T20:24:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T20:24:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:24:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T20:25:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:25:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T20:25:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:25:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T20:28:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T20:28:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T20:28:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:28:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:28:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8792, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:50Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 270941, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 433579, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:50Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 213959, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 15511, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:50Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 14081, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:50Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2946733, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:33:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:33:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5456, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:34:00Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 65995, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:34:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 41162, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:34:00Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 3018, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:34:00Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 7151, "ip": "192.168.88.31", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-14T20:34:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.31", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T20:34:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4232, "ip": "192.168.88.31", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-14T20:34:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 347122, "ip": "192.168.88.31", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-14T20:34:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 106889, "ip": "192.168.88.31", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-14T20:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4224, "ip": "192.168.88.31", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T20:34:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 119515, "ip": "192.168.88.31", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-14T20:34:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:38:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:38:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:43:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:43:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:48:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:48:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:53:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:53:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:58:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T20:58:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8691, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T20:59:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4536, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T21:01:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:02:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:02:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:02:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:02:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:02:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:02:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:02:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-14T21:02:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:03:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:03:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:03:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:03:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:03:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:03:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:03:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 932, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:03:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-14T21:03:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:03:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:03:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:03:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:03:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:03:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:03:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:04:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:04:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:04:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:04:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:04:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:04:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:04:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:04:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:05:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:05:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:05:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:05:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T21:06:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-14T21:06:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:06:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:06:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://www.google.us", "datetime": "2022-06-14T21:06:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-14T21:07:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:08:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:08:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T21:09:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 13119, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T21:09:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:13:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:13:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8095, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T21:17:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:18:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:18:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T21:18:54Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 887, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:19:00Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:01Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:07Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:08Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2663, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:19:09Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 887, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:19:10Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1850, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:14Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:19:15Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 3549, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:19:16Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 985, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:19Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:20Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 985, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T21:19:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-14T21:19:54Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1050, "ip": "192.168.88.31", "user": "", "site": "http://r3.o.lencr.org", "datetime": "2022-06-14T21:21:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:23:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:23:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:28:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:28:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:33:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:33:52Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4472, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T21:34:26Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2070, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.globalsign.com", "datetime": "2022-06-14T21:34:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T21:34:31Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2069, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.globalsign.com", "datetime": "2022-06-14T21:34:33Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2069, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.globalsign.com", "datetime": "2022-06-14T21:34:49Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:34:51Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2070, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.globalsign.com", "datetime": "2022-06-14T21:34:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T21:35:33Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-14T21:35:36Z"}, {"method": "POST", "status": 200, "action": "other", "size": 991, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T21:37:02Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2057, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T21:37:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T21:37:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-14T21:37:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:38:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12031, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T21:40:08Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-14T21:40:36Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 7275, "ip": "192.168.88.31", "user": "", "site": "http://ocsps.ssl.com", "datetime": "2022-06-14T21:40:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:43:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:48:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:53:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7201, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-14T21:53:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3462, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-14T21:53:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T21:58:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:03:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:08:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:13:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:18:53Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 925, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-14T22:19:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-14T22:20:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:23:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:28:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:33:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:38:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:43:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:48:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:51:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5510075, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T22:54:25Z"}, {"method": "GET", "status": 200, "action": "other", "size": 6011, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T22:54:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 819123, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T22:54:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T22:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:03:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4304, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T23:03:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1018841, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T23:03:47Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152778, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T23:03:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4602, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-14T23:03:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:08:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:48:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1878, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-14T23:51:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-14T23:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:13:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2644, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T00:17:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T00:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T00:59:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-15T00:59:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3006, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T01:05:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7651, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T01:05:25Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1472, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T01:05:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T01:07:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T01:08:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T01:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:13:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T02:13:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:43:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T02:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T03:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:03:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T04:23:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T04:24:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T04:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:18:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T05:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:23:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:33:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8755, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T06:37:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T06:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5687, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T07:02:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4961, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T07:02:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1460, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T07:02:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T07:24:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T07:25:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T07:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T08:01:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:03:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9886, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T08:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T08:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:48:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T09:48:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T09:48:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T09:48:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3528, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T09:54:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1856, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T09:54:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4370, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-15T09:54:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 59337, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-15T09:55:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4379, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-15T09:55:05Z"}, {"method": "GET", "status": 200, "action": "other", "size": 111899, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-15T09:55:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8787, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:13Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 144731, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:13Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1352506, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6764, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 60953, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-15T09:55:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 134629, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-15T09:55:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4231, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-15T09:55:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 700263, "ip": "192.168.88.21", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-15T09:55:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4713, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-15T09:55:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1505, "ip": "192.168.88.21", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-15T09:55:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7176, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:24Z"}, {"method": "GET", "status": 200, "action": "other", "size": 24358, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 37176, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4218, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-15T09:55:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 74979, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-15T09:55:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4227, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-15T09:55:30Z"}, {"method": "GET", "status": 200, "action": "other", "size": 262017, "ip": "192.168.88.21", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-15T09:55:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T09:55:31Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2668, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T09:55:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4660383, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4147228, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 25021641, "ip": "192.168.88.21", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-15T09:55:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T09:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:08:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5192, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T10:08:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T10:29:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T10:30:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:43:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T10:45:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-15T10:45:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4127, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T10:45:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:48:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.11", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T10:52:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:53:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:57:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T10:57:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 397, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T10:57:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T10:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:08:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:11:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:13:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4206, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T11:13:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:18:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:21:30Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:21:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:21:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:21:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:22:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:22:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:22:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:22:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:23:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:23:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:23:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:23:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:24:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:27:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:27:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:27:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:27:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:27:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:27:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:27:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:28:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:28:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:28:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:28:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:28:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:28:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:28:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:28:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:28:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:29:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:29:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:29:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:30:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:30:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:30:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:30:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:30:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:30:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:31:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:31:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:31:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:31:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:31:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:32:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:32:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:32:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:32:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:32:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:33:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:33:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:33:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:33:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:33:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:33:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:33:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:34:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:34:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:34:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:34:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-15T11:34:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:34:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:34:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:34:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:37:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:37:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:37:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:37:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:37:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:37:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:37:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:37:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:38:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:38:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:38:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:38:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:38:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:38:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:38:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:38:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:38:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:38:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:38:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:38:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:39:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:39:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:39:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T11:39:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:40:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:40:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:40:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 12539, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T11:41:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:42:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T11:42:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:45:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T11:45:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 14929, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T11:45:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1177, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T11:45:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5752, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T11:46:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:48:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1294, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T11:49:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T11:49:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T11:49:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T11:49:53Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 415, "ip": "172.28.10.11", "user": "", "site": "http://data.mistat.intl.xiaomi.com", "datetime": "2022-06-15T11:50:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T11:58:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T11:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 993187, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T11:59:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3823, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T11:59:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3872, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T11:59:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:03:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:05:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:05:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:05:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6838, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T12:07:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:08:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2119, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T12:11:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:13:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3650, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T12:14:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:17:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2422, "ip": "192.168.88.21", "user": "", "site": "http://ocsp.godaddy.com", "datetime": "2022-06-15T12:23:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:32:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:32:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:32:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:32:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:33:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:38:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:38:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:38:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:38:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:38:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4285, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T12:41:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:42:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:45:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:45:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:45:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:48:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:49:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:49:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:49:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1796, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T12:49:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:50:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:50:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:50:36Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1623, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T12:51:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:51:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:51:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:51:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:51:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:51:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:51:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:52:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:52:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:52:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:52:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:52:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:52:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:52:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:52:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:52:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:52:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:53:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:53:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:53:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:53:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:53:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:53:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:53:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:54:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:54:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:54:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:56:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:56:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:56:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T12:58:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T12:58:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T12:58:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T12:58:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T13:02:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:03:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2994, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:03:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:03:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:03:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:03:58Z"}, {"method": "POST", "status": 200, "action": "other", "size": 28450, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:05:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:05:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:05:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:05:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:05:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:05:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:05:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:05:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:05:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:05:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:07:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:07:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:07:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:08:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:09:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:09:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:09:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:10:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:10:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 612, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:11:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:11:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:11:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:11:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:13:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:13:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:13:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:13:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:13:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:13:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:13:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:13:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:14:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:14:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:14:08Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4322, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:14:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:14:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:14:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:14:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:15:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:15:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:15:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:15:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:15:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:15:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:16:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:16:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:16:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:16:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:16:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:16:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:17:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:17:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:17:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:17:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3809, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:17:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:17:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:17:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:17:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:18:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:18:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:18:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:18:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:18:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:18:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:18:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:18:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:18:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:18:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:19:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:19:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:19:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:19:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:19:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:19:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:20:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:20:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:20:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:20:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:20:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:20:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:21:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:21:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:21:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:21:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:21:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:21:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:21:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:21:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:21:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3969, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:22:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:23:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1807, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:25:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:25:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:25:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:25:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:29:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:29:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:29:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:30:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:30:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:30:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:30:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:30:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:30:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:31:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:31:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:31:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:31:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:31:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:31:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:32:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:32:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:32:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:32:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:33:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:36:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:36:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:36:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:38:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:38:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:38:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:38:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:38:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:38:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:39:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:39:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:39:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:42:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:43:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:43:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:43:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:43:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:43:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:43:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:43:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:43:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:48:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:49:03Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4702, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:50:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:53:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152780, "ip": "192.168.88.21", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T13:54:24Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7710, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T13:57:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T13:58:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T13:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T13:59:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T13:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T13:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T13:59:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:01:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:01:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:01:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:03:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:03:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:03:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:03:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:03:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:03:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:03:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:03:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:03:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:03:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152778, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:04:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:04:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:04:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5636, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:05:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3090, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:06:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:08:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:08:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:08:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:08:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:17:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:18:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3370, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:20:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:21:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:21:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:21:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:21:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T14:22:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:23:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:26:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:26:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:26:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:27:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:27:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:27:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:27:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:28:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:28:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:28:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:29:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:29:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:29:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:29:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:29:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:29:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:30:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:30:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:30:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:30:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:31:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:31:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:31:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:32:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:32:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:32:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:32:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:32:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:32:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:32:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:33:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:33:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:33:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:33:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:34:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:34:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:34:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:34:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:34:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:34:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:35:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:35:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:35:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8060, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:35:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:37:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:37:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:37:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:37:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:37:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:37:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:37:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:38:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:42:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:46:11Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8895, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:46:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:48:57Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 477, "ip": "172.28.10.42", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-15T14:49:45Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1108, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-15T14:49:46Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1108, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-15T14:49:47Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 737, "ip": "172.28.10.42", "user": "", "site": "http://app.ys7.com", "datetime": "2022-06-15T14:49:47Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2216, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-15T14:49:47Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1108, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-15T14:49:48Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 9486, "ip": "172.28.10.42", "user": "", "site": "http://ynuf.alipay.com", "datetime": "2022-06-15T14:49:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:50:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:50:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:50:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:50:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:50:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:50:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:51:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:51:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:51:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1402, "ip": "172.28.10.12", "user": "", "site": "http://www.msftconnecttest.com", "datetime": "2022-06-15T14:51:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T14:51:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 469, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1855, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 475, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8313, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16626, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T14:51:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10116, "ip": "172.28.10.12", "user": "", "site": "http://init-p01st.push.apple.com", "datetime": "2022-06-15T14:51:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2268, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.apple.com", "datetime": "2022-06-15T14:51:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:52:30Z"}, {"method": "HEAD", "status": 200, "action": "accept", "size": 738, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:52:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:53:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:53:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:53:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:53:20Z"}, {"method": "GET", "status": 502, "action": "accept", "size": 4710, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:43Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1905, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:43Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2574, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:47Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1973, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:50Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 3254, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:52Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 22877, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:53Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 44494, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:54Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 35745, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:55Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 183463, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:53:57Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 360983, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:57Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 474530, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:53:58Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 961095, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:00Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2763835, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:01Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 659037, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:54:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:54:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:54:03Z"}, {"method": "HEAD", "status": 200, "action": "accept", "size": 734, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:09Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152778, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:54:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:54:10Z"}, {"method": "HEAD", "status": 200, "action": "other", "size": 733, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:22Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3870, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:54:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 78164, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 129919, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 148639, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 133167, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 101585, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 274011, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31600, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 140632, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 219300, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 46906, "ip": "172.28.10.12", "user": "", "site": "http://download.windowsupdate.com", "datetime": "2022-06-15T14:54:50Z"}, {"method": "HEAD", "status": 502, "action": "accept", "size": 386, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:55:02Z"}, {"method": "HEAD", "status": 200, "action": "accept", "size": 737, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:55:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 819122, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T14:55:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T14:55:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T14:55:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T14:55:25Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1240, "ip": "172.28.10.12", "user": "", "site": "http://4.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:32Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 735292, "ip": "172.28.10.12", "user": "", "site": "http://4.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3050, "ip": "172.28.10.12", "user": "", "site": "http://emdl.ws.microsoft.com", "datetime": "2022-06-15T14:55:39Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1130, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:40Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2098318, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:47Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 4196636, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:48Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1049159, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:49Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 3147477, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:50Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 4196634, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:51Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 3249989, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:52Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2230552, "ip": "172.28.10.12", "user": "", "site": "http://2.au.download.windowsupdate.com", "datetime": "2022-06-15T14:55:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3837, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:56:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:57:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T14:57:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:58:01Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3271, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T14:58:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T14:58:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T14:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1530, "ip": "172.28.10.12", "user": "", "site": "http://msedge.f.dl.delivery.mp.microsoft.com", "datetime": "2022-06-15T15:02:07Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 23114, "ip": "172.28.10.12", "user": "", "site": "http://msedge.b.tlu.dl.delivery.mp.microsoft.com", "datetime": "2022-06-15T15:02:07Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 3149070, "ip": "172.28.10.12", "user": "", "site": "http://msedge.b.tlu.dl.delivery.mp.microsoft.com", "datetime": "2022-06-15T15:02:12Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1049684, "ip": "172.28.10.12", "user": "", "site": "http://msedge.b.tlu.dl.delivery.mp.microsoft.com", "datetime": "2022-06-15T15:02:13Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2100492, "ip": "172.28.10.12", "user": "", "site": "http://msedge.b.tlu.dl.delivery.mp.microsoft.com", "datetime": "2022-06-15T15:02:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:03:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "172.28.10.11", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:04:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T15:04:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2594, "ip": "172.28.10.12", "user": "", "site": "http://oneocsp.microsoft.com", "datetime": "2022-06-15T15:04:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2371, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.msocsp.com", "datetime": "2022-06-15T15:05:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:08:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:09:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:09:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:09:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 973, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T15:09:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:11:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:11:55Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8145, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T15:11:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:12:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:12:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:12:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:13:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7573, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T15:14:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:17:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2011, "ip": "192.168.88.21", "user": "", "site": "http://trust.quovadisglobal.com", "datetime": "2022-06-15T15:27:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2283, "ip": "192.168.88.21", "user": "", "site": "http://trust.quovadisglobal.com", "datetime": "2022-06-15T15:27:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.21", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-15T15:28:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:28:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:32:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:33:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:38:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2200, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T15:40:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:42:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:43:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:46:06Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:46:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:46:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:46:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:47:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:47:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:47:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:47:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:47:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:47:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:47:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:48:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:48:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:48:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:48:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:48:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 942, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T15:49:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4151, "ip": "192.168.88.21", "user": "", "site": "http://ocsp2.globalsign.com", "datetime": "2022-06-15T15:51:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "172.28.10.11", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:51:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:53:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:53:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:53:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:53:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 928, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T15:56:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:58:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T15:58:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T15:58:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T15:58:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T15:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:03:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T16:05:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T16:05:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:05:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 701, "ip": "172.28.10.12", "user": "", "site": "http://www.msftconnecttest.com", "datetime": "2022-06-15T16:10:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 701, "ip": "172.28.10.12", "user": "", "site": "http://www.msftconnecttest.com", "datetime": "2022-06-15T16:10:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2208, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:11:09Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T16:11:22Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 469, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T16:11:22Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 475, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T16:11:23Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 415, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T16:11:23Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 475, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T16:11:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:13:00Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 415, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T16:13:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:13:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3065, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:14:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T16:15:18Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7739, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:15:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:17:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:18:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1031, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:19:19Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1866, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:21:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:23:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:23:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:24:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:24:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10116, "ip": "172.28.10.12", "user": "", "site": "http://init-p01st.push.apple.com", "datetime": "2022-06-15T16:25:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.11", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:26:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:28:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T16:28:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T16:28:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:28:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:29:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-15T16:29:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3780, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:30:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:30:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:32:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:32:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:32:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7076, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:32:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:33:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3819, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:33:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:33:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T16:34:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:34:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T16:34:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.11", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:34:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:38:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2880, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:40:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:42:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:43:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:48:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 318, "ip": "172.28.10.11", "user": "", "site": "http://portal.fb.com", "datetime": "2022-06-15T16:52:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:53:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T16:53:08Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T16:53:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4262, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T16:53:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5133, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T16:53:14Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2567, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T16:53:19Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T16:53:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T16:59:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1273, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T16:59:18Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 888, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-15T16:59:55Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1102, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:00Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2203, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:03Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2204, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sca1b.amazontrust.com", "datetime": "2022-06-15T17:00:04Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1101, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:05Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2203, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T17:00:18Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1101, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:19Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1100, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:21Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 887, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-15T17:00:24Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 957, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.securetrust.com", "datetime": "2022-06-15T17:00:25Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1776, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-15T17:00:25Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1102, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-15T17:00:30Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1102, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.sca1b.amazontrust.com", "datetime": "2022-06-15T17:00:32Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1742, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:01:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:03:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:04:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:08:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:09:16Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3045, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:10:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.21", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T17:11:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.21", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T17:12:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:13:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:14:16Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T17:15:29Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 944, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T17:15:30Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T17:15:30Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 475, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T17:15:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T17:16:19Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1720, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-15T17:16:23Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3880, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T17:16:29Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3821, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T17:16:30Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152779, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T17:16:31Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1637, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-15T17:17:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:17:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 14209, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:17:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "172.28.10.11", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-15T17:18:21Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1687, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-15T17:18:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:18:57Z"}, {"method": "GET", "status": 411, "action": "other", "size": 19424, "ip": "172.28.10.11", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-15T17:19:03Z"}, {"method": "GET", "status": 411, "action": "other", "size": 38916, "ip": "172.28.10.11", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-15T17:19:05Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 720, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-15T17:19:06Z"}, {"method": "GET", "status": 411, "action": "other", "size": 19424, "ip": "172.28.10.11", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-15T17:19:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:19:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:20:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:20:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:20:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:20:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:20:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:20:47Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 414, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T17:21:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:21:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:21:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:21:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:21:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:21:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:21:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:22:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:22:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:22:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:23:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:23:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:23:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:23:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:23:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:23:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:23:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:24:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:28:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:29:16Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T17:29:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9377, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T17:29:29Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T17:29:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T17:30:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:32:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:33:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:34:16Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 737, "ip": "172.28.10.42", "user": "", "site": "http://app.ys7.com", "datetime": "2022-06-15T17:34:39Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2216, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-15T17:34:40Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 3324, "ip": "172.28.10.42", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-15T17:34:41Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 477, "ip": "172.28.10.42", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-15T17:34:43Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 9486, "ip": "172.28.10.42", "user": "", "site": "http://ynuf.alipay.com", "datetime": "2022-06-15T17:34:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:38:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:39:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:42:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:43:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:43:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7895, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:44:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:44:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:48:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:48:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3283, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:49:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 11266, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:49:59Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4665, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:50:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4119, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:51:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:53:00Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2798, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:53:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:53:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:53:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:53:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:53:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7386, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:55:08Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1968, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:56:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T17:57:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T17:57:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T17:57:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.21", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:58:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T17:58:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1553, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:59:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1318, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T17:59:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:04:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6275, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:05:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:09:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2693, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:09:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3596, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:10:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:12:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:12:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:14:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3005, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:15:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2632, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:16:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T18:16:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:17:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:18:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1562, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:19:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:19:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 854, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:19:24Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1657, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:20:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:24:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3496, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:27:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:28:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 701, "ip": "172.28.10.12", "user": "", "site": "http://www.msftconnecttest.com", "datetime": "2022-06-15T18:29:33Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T18:29:37Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T18:29:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1419, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T18:29:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T18:29:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T18:30:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T18:30:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T18:30:55Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4868, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:31:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:32:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T18:32:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T18:32:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T18:33:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:33:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5103, "ip": "172.28.10.11", "user": "", "site": "http://t14.market.mi-img.com", "datetime": "2022-06-15T18:34:21Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5020, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:34:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:38:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:42:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T18:43:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T18:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:43:57Z"}, {"method": "GET", "status": 0, "action": "other", "size": 0, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T18:43:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:44:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4495, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T18:46:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:47:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T18:48:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T18:48:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T18:48:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:48:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 318, "ip": "172.28.10.11", "user": "", "site": "http://portal.fb.com", "datetime": "2022-06-15T18:49:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5999, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T18:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:58:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T18:59:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T18:59:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T18:59:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T18:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:04:12Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1682, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-15T19:07:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:07:30Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1750, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-15T19:07:40Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1707, "ip": "172.28.10.11", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-15T19:07:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5542, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T19:08:10Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1706, "ip": "172.28.10.11", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-15T19:08:14Z"}, {"method": "GET", "status": 411, "action": "other", "size": 19448, "ip": "172.28.10.11", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-15T19:08:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "172.28.10.11", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-15T19:08:15Z"}, {"method": "GET", "status": 411, "action": "other", "size": 38832, "ip": "172.28.10.11", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-15T19:08:15Z"}, {"method": "GET", "status": 411, "action": "other", "size": 19508, "ip": "172.28.10.11", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-15T19:08:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:14:12Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1737, "ip": "172.28.10.11", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-15T19:14:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:17:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:17:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:17:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:17:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:24:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:25:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:25:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:26:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:26:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:27:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:27:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:27:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:27:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:28:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:28:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:28:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:28:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:29:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 10601, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T19:29:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:29:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:29:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:29:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:29:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:30:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:30:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:30:23Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T19:30:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1419, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T19:30:38Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T19:30:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T19:31:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:32:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3219, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T19:33:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:33:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:34:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:34:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:34:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:34:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5724, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T19:35:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:35:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:35:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:35:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:35:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.20", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-15T19:36:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:36:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:36:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:36:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:37:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:37:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:37:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T19:37:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T19:37:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:37:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:38:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:39:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.11", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T19:39:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T19:40:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:42:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 971, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T19:42:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:43:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:44:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T19:45:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:48:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:49:12Z"}, {"method": "HEAD", "status": 200, "action": "accept", "size": 734, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T19:51:31Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1901, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T19:51:31Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2168, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T19:51:36Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1365, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T19:51:38Z"}, {"method": "HEAD", "status": 200, "action": "other", "size": 732, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T19:51:40Z"}, {"method": "GET", "status": 200, "action": "other", "size": 5997, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T19:51:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T19:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:02:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:04:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 24455, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:05:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:07:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:07:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:07:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:07:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:09:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:10:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:10:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:10:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:12:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:12:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:12:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:12:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:14:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:14:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:14:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:14:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:15:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:15:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:15:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:17:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:17:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:17:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:17:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:22:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:22:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:22:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:22:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:24:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:24:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:24:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:24:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:25:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:25:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:25:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.11", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T20:26:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:27:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:27:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:27:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:27:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:28:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:28:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:28:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:28:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2134, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.apple.com", "datetime": "2022-06-15T20:30:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1098, "ip": "172.28.10.12", "user": "", "site": "http://crl3.digicert.com", "datetime": "2022-06-15T20:30:39Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T20:30:39Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 469, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T20:30:39Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 950, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T20:30:40Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 499, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T20:30:40Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:31:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:32:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:33:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:34:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:34:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:34:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-15T20:34:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-15T20:35:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:36:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:36:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:36:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3861, "ip": "172.28.10.42", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:36:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:37:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:37:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 898, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-15T20:38:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:38:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:39:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:39:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:39:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:39:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:39:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:39:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:39:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T20:40:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T20:40:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T20:40:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1848, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:33Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:33Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:36Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:40Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:41Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 2000, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:42Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1200, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:40:43Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:41:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 985, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:41:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1846, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:41:44Z"}, {"method": "HEAD", "status": 200, "action": "accept", "size": 744, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:07Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1911, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:07Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1056, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:10Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 3159, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:12Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 9191, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:13Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 19597, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:14Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 43872, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:15Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 87128, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:16Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 117576, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:17Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 365212, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:18Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 725447, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:19Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1453598, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:20Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1582458, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:21Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1933272, "ip": "172.28.10.12", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T20:42:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:42:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:43:16Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T20:43:16Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8837, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:43:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T20:43:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T20:43:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:43:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:47:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:48:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:49:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1342, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:50:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T20:51:11Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2542, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:52:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:52:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:53:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:54:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1182, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:55:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 8848, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T20:56:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:57:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:58:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T20:59:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4490, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:01:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:02:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T21:02:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:02:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T21:02:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:03:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:04:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T21:04:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T21:04:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:04:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T21:05:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:05:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T21:06:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:07:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:08:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:09:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 499, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T21:09:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1848, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T21:10:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3091, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:11:16Z"}, {"method": "POST", "status": 200, "action": "other", "size": 10563, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:11:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:12:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1846, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T21:13:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:13:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:14:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2158, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:16:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:17:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:17:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:18:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T21:18:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:18:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T21:18:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:22:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:23:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:24:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T21:24:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 397, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T21:24:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T21:25:33Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 887, "ip": "192.168.88.31", "user": "", "site": "http://ocsp.pki.goog", "datetime": "2022-06-15T21:26:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:27:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.10", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T21:29:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:29:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T21:29:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:29:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T21:29:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:29:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T21:29:58Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 425, "ip": "172.28.10.12", "user": "", "site": "http://x1.c.lencr.org", "datetime": "2022-06-15T21:30:40Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 1419, "ip": "172.28.10.12", "user": "", "site": "http://crl.apple.com", "datetime": "2022-06-15T21:30:40Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 429, "ip": "172.28.10.12", "user": "", "site": "http://ctldl.windowsupdate.com", "datetime": "2022-06-15T21:30:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 318, "ip": "172.28.10.11", "user": "", "site": "http://portal.fb.com", "datetime": "2022-06-15T21:31:11Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2531, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:31:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:32:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1846, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T21:34:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:34:32Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3936, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:35:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:39:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1907, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T21:40:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:40:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T21:41:15Z"}, {"method": "POST", "status": 200, "action": "other", "size": 12874, "ip": "172.28.10.11", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:41:38Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T21:43:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4252, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T21:43:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5140, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-15T21:43:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:44:32Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3860, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T21:45:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:49:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2631, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:51:20Z"}, {"method": "GET", "status": 200, "action": "other", "size": 983, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T21:53:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 923, "ip": "172.28.10.12", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-15T21:53:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:54:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6770, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T21:55:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T21:59:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.42", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T22:03:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:04:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T22:04:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T22:04:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:04:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:04:51Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2460, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T22:06:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:14:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4744, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T22:16:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:24:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2506, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T22:25:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:26:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T22:26:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:26:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T22:26:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T22:28:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:28:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T22:28:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:29:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6776, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T22:30:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-15T22:31:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.42", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-15T22:31:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:31:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:34:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1602, "ip": "172.28.10.42", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T22:35:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:36:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.42", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T22:37:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T22:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:04:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1273, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T23:04:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 876, "ip": "192.168.88.31", "user": "", "site": "http://detectportal.firefox.com", "datetime": "2022-06-15T23:05:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:09:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:14:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-15T23:16:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-15T23:17:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:19:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.31", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:21:48Z"}, {"method": "POST", "status": 200, "action": "other", "size": 16271, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T23:23:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:24:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T23:27:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1310, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T23:27:22Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3861, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T23:27:54Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152779, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T23:27:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-15T23:28:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:29:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 15537, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T23:32:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 29061, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-15T23:36:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 22186, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-15T23:36:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:44:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1434, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T23:47:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:54:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3861, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-15T23:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-15T23:59:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3389, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-15T23:59:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:04:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T00:05:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9404, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T00:05:22Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T00:05:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T00:07:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T00:08:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:09:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T00:09:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.24", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T00:11:07Z"}, {"method": "GET", "status": 403, "action": "accept", "size": 1422, "ip": "192.168.88.24", "user": "", "site": "http://108.156.83.35", "datetime": "2022-06-16T00:11:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.24", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T00:14:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:14:12Z"}, {"method": "GET", "status": 403, "action": "accept", "size": 1422, "ip": "192.168.88.24", "user": "", "site": "http://108.156.83.102", "datetime": "2022-06-16T00:14:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T00:14:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1853, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:14:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 977, "ip": "192.168.88.24", "user": "", "site": "http://vas.samsungapps.com", "datetime": "2022-06-16T00:16:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1583, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:18:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:19:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1080, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:23:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:24:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.24", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T00:26:35Z"}, {"method": "GET", "status": 403, "action": "accept", "size": 1423, "ip": "192.168.88.24", "user": "", "site": "http://13.226.39.48", "datetime": "2022-06-16T00:26:54Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:28:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 993188, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:31:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6863, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:31:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5459, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:31:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12035, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:31:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3822, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:31:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 25656, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:31:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 29878, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:32:01Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152779, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:32:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16555, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T00:32:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:33:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:44:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T00:44:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-16T00:44:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T00:45:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 800, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T00:45:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1772, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:45:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 923, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T00:45:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:45:45Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T00:45:58Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 459, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T00:47:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:47:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:49:12Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 774, "ip": "192.168.88.20", "user": "", "site": "http://meli.la", "datetime": "2022-06-16T00:51:11Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:53:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:54:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T00:57:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T00:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:04:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 807, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:04:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12023, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T01:17:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1976, "ip": "192.168.88.20", "user": "", "site": "http://x.ss2.us", "datetime": "2022-06-16T01:26:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1871, "ip": "192.168.88.20", "user": "", "site": "http://crt.rootg2.amazontrust.com", "datetime": "2022-06-16T01:26:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1900, "ip": "192.168.88.20", "user": "", "site": "http://crt.rootca1.amazontrust.com", "datetime": "2022-06-16T01:26:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1828, "ip": "192.168.88.20", "user": "", "site": "http://crt.sca1b.amazontrust.com", "datetime": "2022-06-16T01:26:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1851, "ip": "192.168.88.20", "user": "", "site": "http://certificates.godaddy.com", "datetime": "2022-06-16T01:27:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T01:28:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:29:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4082, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:29:31Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:30:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:34:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T01:35:51Z"}, {"method": "POST", "status": 200, "action": "other", "size": 959, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:37:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:39:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1188, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:40:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:41:43Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:42:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:44:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T01:46:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2297, "ip": "192.168.88.20", "user": "", "site": "http://zerossl.crt.sectigo.com", "datetime": "2022-06-16T01:51:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T01:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:19:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 418, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T02:23:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5033, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T02:32:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 824, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T02:32:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T02:35:59Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3839, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T02:35:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4249, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1934, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 691726, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3517, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2761, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4244, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 50116, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 134656, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5630, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 74546, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 183132, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4397, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 15435, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7427, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4236, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13301, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 58979, "ip": "192.168.88.20", "user": "", "site": "http://ucmirror.canterbury.ac.nz", "datetime": "2022-06-16T02:36:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1488, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T02:38:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:39:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.24", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T02:43:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:44:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T02:47:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:49:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3678, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T02:50:10Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T02:53:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:54:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T02:55:41Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T02:56:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T02:59:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T02:59:48Z"}, {"method": "POST", "status": 200, "action": "other", "size": 996, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T03:02:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:04:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T03:04:37Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2626, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T03:07:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:09:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 801, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T03:09:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T03:09:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T03:11:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T03:24:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T03:25:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T03:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:04:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:09:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T04:10:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12350, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T04:19:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T04:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T05:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:04:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.24", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T06:04:55Z"}, {"method": "GET", "status": 403, "action": "accept", "size": 1422, "ip": "192.168.88.24", "user": "", "site": "http://18.64.174.63", "datetime": "2022-06-16T06:05:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T06:37:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T06:38:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T06:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:04:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T07:04:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T07:59:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T08:01:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:14:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T08:17:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2666, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T08:17:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6893, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T08:17:16Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T08:17:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:49:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 538, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T08:53:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T08:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:14:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1074, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T09:16:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9863, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T09:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T09:54:25Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1860, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T09:54:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1975, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T09:54:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4370, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-16T09:54:59Z"}, {"method": "GET", "status": 200, "action": "other", "size": 59681, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-16T09:54:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 115938, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-16T09:55:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8790, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:10Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 146183, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:10Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2164026, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6764, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4226, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-16T09:55:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 191375, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-16T09:55:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4231, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-16T09:55:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 700263, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-16T09:55:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3499, "ip": "192.168.88.20", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-16T09:55:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2719, "ip": "192.168.88.20", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-16T09:55:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31448, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5454, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31722, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:55:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 79178, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-16T09:55:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4227, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-16T09:55:28Z"}, {"method": "GET", "status": 200, "action": "other", "size": 262020, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-16T09:55:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T09:55:28Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2504, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T09:55:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3035330, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4562446, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11267927, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10285891, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2550723, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1168693, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1154924, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2126616, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 529288, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 46682978, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7337689, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:56:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2904349, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5810426, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3570006, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 55757116, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 107253303, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16378611, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 153381843, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 48255140, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-16T09:57:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T09:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:44:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T10:46:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T10:47:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 53891, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-16T10:49:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:54:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T10:54:33Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7983, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T10:54:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T10:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:04:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T11:07:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T11:08:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-16T11:08:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4664, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T11:08:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:29:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T11:31:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T11:31:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:44:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T11:45:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:54:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T11:54:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T11:59:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 807, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T12:00:59Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3868, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T12:02:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:34:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T12:34:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T12:34:31Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5901, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T12:35:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:44:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T12:45:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:49:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:54:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T12:58:36Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T12:58:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T12:59:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152773, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T13:18:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:24:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:29:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:44:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T13:48:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:49:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T13:50:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:54:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T13:56:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T13:57:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T13:59:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T14:01:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5764, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T14:04:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5503, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T14:04:49Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T14:04:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:09:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1246, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T14:11:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T14:11:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T14:11:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:14:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:19:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:24:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T14:26:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T14:27:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:29:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 894, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T14:29:39Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T14:32:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:34:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:39:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:44:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T14:48:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:49:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T14:52:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9795, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T14:52:51Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T14:52:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:54:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152772, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T14:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T14:59:12Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 841, "ip": "192.168.88.10", "user": "", "site": "http://h10141.www1.hp.com", "datetime": "2022-06-16T15:01:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1943, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T15:02:14Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3868, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T15:04:11Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152772, "ip": "192.168.88.33", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T15:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:04:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:09:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:13:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T15:16:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-16T15:16:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T15:17:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:48:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T15:49:42Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1344, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T15:51:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T15:51:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-16T15:51:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T15:51:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-16T15:52:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T15:58:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T16:02:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:08:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1240, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T16:13:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:13:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.20", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-16T16:18:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-16T16:28:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:28:51Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1637, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T16:29:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:33:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 774, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T16:38:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:43:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T16:47:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:53:49Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T16:55:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9811, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T16:55:51Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T16:55:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T16:57:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T16:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T17:01:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T17:02:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:08:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:11:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-16T17:11:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:12:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:12:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:13:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:14:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:18:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:19:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:19:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:20:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T17:20:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 661, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-16T17:20:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:33:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T17:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:38:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T18:43:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-16T18:47:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4287, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T18:48:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:48:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T18:52:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T18:58:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1681, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T19:03:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:13:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T19:14:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 985, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T19:21:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 984, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T19:21:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 984, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T19:21:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T19:22:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6594, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:28:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 346060, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:28:03Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1148, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:28:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2118, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:28:03Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 6645, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:28:11Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 562, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:28:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:28:50Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 1040, "ip": "192.168.88.20", "user": "", "site": "http://e.allin.positivocasainteligente.com.br", "datetime": "2022-06-16T19:29:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 66066, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T19:31:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 216645, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T19:31:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:33:50Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152773, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T19:34:02Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3868, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T19:34:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4504, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T19:34:05Z"}, {"method": "GET", "status": 307, "action": "virus", "size": 1342, "ip": "192.168.88.20", "user": "", "site": "http://e.savethechildren.org", "datetime": "2022-06-16T19:37:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6892, "ip": "192.168.88.20", "user": "", "site": "http://reg.cheetahmail.com", "datetime": "2022-06-16T19:37:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 43474, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31484, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 899, "ip": "192.168.88.20", "user": "", "site": "http://metrics.savethechildren.org", "datetime": "2022-06-16T19:37:46Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 551, "ip": "192.168.88.20", "user": "", "site": "http://cm.everesttech.net", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 59661, "ip": "192.168.88.20", "user": "", "site": "http://f.e.savethechildren.org", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3404, "ip": "192.168.88.20", "user": "", "site": "http://fast.stc.demdex.net", "datetime": "2022-06-16T19:37:47Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1091, "ip": "192.168.88.20", "user": "", "site": "http://savethechildrenfeder.tt.omtrdc.net", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13716, "ip": "192.168.88.20", "user": "", "site": "http://f.e.savethechildren.org", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 863, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1050389, "ip": "192.168.88.20", "user": "", "site": "http://f.e.savethechildren.org", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 978, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 27551, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 785, "ip": "192.168.88.20", "user": "", "site": "http://metrics.savethechildren.org", "datetime": "2022-06-16T19:37:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1387, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11437, "ip": "192.168.88.20", "user": "", "site": "http://f.e.savethechildren.org", "datetime": "2022-06-16T19:37:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1974, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:37:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 925, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T19:37:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 925, "ip": "192.168.88.20", "user": "", "site": "http://status.geotrust.com", "datetime": "2022-06-16T19:37:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4587, "ip": "192.168.88.20", "user": "", "site": "http://support.savethechildren.org", "datetime": "2022-06-16T19:37:50Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 5951, "ip": "192.168.88.20", "user": "", "site": "http://reg.cheetahmail.com", "datetime": "2022-06-16T19:37:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 56200, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1082, "ip": "192.168.88.20", "user": "", "site": "http://savethechildrenfeder.tt.omtrdc.net", "datetime": "2022-06-16T19:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 28477, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:38:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 785, "ip": "192.168.88.20", "user": "", "site": "http://metrics.savethechildren.org", "datetime": "2022-06-16T19:38:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4424, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:38:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 43504, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:38:07Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 5950, "ip": "192.168.88.20", "user": "", "site": "http://reg.cheetahmail.com", "datetime": "2022-06-16T19:38:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 45476, "ip": "192.168.88.20", "user": "", "site": "http://assets.adobedtm.com", "datetime": "2022-06-16T19:38:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 785, "ip": "192.168.88.20", "user": "", "site": "http://metrics.savethechildren.org", "datetime": "2022-06-16T19:38:08Z"}, {"method": "GET", "status": 307, "action": "virus", "size": 1344, "ip": "192.168.88.20", "user": "", "site": "http://e.savethechildren.org", "datetime": "2022-06-16T19:38:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T19:58:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T19:59:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 500, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-16T20:00:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T20:00:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51247, "ip": "192.168.88.23", "user": "", "site": "http://aic-ngfts.lge.com", "datetime": "2022-06-16T20:01:01Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T20:02:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9809, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T20:02:02Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T20:02:02Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2176, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:03:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:03:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:05:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:06:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:06:54Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:07:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:07:05Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:07:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:07:21Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:08:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:08:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:08:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:09:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2363855, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-16T20:09:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:10:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T20:20:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.20", "user": "", "site": "http://status.geotrust.com", "datetime": "2022-06-16T20:20:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:23:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T20:27:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2244, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T20:27:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T20:58:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T21:01:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T21:04:34Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.20", "user": "", "site": "http://status.geotrust.com", "datetime": "2022-06-16T21:04:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-16T21:29:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-16T21:30:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:33:50Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 460, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-16T21:34:34Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 400, "ip": "192.168.88.20", "user": "", "site": "http://status.geotrust.com", "datetime": "2022-06-16T21:34:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-16T21:35:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-16T21:36:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 500, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-16T21:36:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:38:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2028, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T21:39:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:48:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 852, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T21:50:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T21:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:03:50Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 460, "ip": "192.168.88.20", "user": "", "site": "http://status.geotrust.com", "datetime": "2022-06-16T22:04:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3861, "ip": "192.168.88.24", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-16T22:38:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T22:58:50Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T23:00:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9786, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T23:00:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1460, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-16T23:00:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:23:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:38:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 7419, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T23:39:35Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3912, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-16T23:40:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-16T23:58:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1247, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T00:02:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3822, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T00:34:24Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152773, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T00:34:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3876, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T00:34:28Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3860, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T00:35:01Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2479, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T00:35:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:53:50Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3860, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T00:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T00:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:08:50Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 53526, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1068439, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3091, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:13Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31166, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:13Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 328318, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 22446, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:34Z"}, {"method": "POST", "status": 200, "action": "other", "size": 756, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T01:09:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 41996, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7609, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:47Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 122179, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 400716, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 94375, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 83600, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:52Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:09:55Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 78562, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:16Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:18Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:21Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 87119, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7583, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 110771, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:54Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 49224, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:55Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 659, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:10:57Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 651, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:11:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T01:11:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1407935, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:13:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 799241, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:13:45Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 826, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:13:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:13:50Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 485543, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:13:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 174922, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:13:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 90653, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 597812, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 598173, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 138084, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 187399, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 211100, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:25Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 124402, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:25Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 177317, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:25Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 413, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 293618, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 134482, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:44Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 826, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:45Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 826, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 169770, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:46Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 442884, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 586626, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:14:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 30485, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 344239, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 820119, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:10Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 412, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 812050, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 750894, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 563322, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 363248, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 857777, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 357871, "ip": "192.168.88.23", "user": "", "site": "http://img.samsungapps.com", "datetime": "2022-06-17T01:15:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T01:16:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-17T01:16:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:18:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:21:35Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1632, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T01:22:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:23:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:24:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-17T01:24:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-17T01:25:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:25:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:26:55Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T01:27:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:28:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:28:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T01:29:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:30:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:30:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T01:32:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:33:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T01:33:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T01:34:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T01:34:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:48:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T01:52:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T01:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5722, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T02:55:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5740, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T02:55:22Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T02:55:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T02:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T03:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T04:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-17T05:21:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-17T05:23:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T05:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:03:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.24", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T06:05:10Z"}, {"method": "GET", "status": 403, "action": "accept", "size": 1422, "ip": "192.168.88.24", "user": "", "site": "http://13.35.118.93", "datetime": "2022-06-17T06:05:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:08:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:28:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T06:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:23:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T07:58:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T08:01:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:08:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:13:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:23:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:28:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:33:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:48:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T08:58:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:03:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:08:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:13:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:17:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:17:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T09:17:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:17:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:18:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 813, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T09:20:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:22:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:22:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 807, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T09:22:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 538, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T09:22:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:23:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:23:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:24:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-17T09:24:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-17T09:25:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:26:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:26:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 1345, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T09:26:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:26:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:27:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:27:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:27:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:27:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:28:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:28:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:28:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:28:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:28:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:28:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:33:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 997, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T09:35:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:38:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:43:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:48:50Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T09:52:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:53:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5384, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-17T09:54:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4370, "ip": "192.168.88.20", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-17T09:54:57Z"}, {"method": "GET", "status": 200, "action": "other", "size": 59681, "ip": "192.168.88.20", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-17T09:54:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 73537, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-17T09:55:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 42401, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-17T09:55:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8788, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:09Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 286517, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:09Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 2065565, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6764, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 12798, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-17T09:55:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 184116, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-17T09:55:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 704494, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-17T09:55:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6218, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-17T09:55:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7176, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:21Z"}, {"method": "GET", "status": 200, "action": "other", "size": 24276, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 37176, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 20225, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-17T09:55:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 58951, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-17T09:55:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 265989, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-17T09:55:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-17T09:55:28Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2668, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-17T09:55:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8625730, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3755070, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:47Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 35852563, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:55:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 16390807, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:56:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 59506172, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:56:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 257452, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:56:04Z"}, {"method": "GET", "status": 200, "action": "other", "size": 101983738, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:56:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 51098292, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:56:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 107261312, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-17T09:56:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 894, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T09:58:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T09:58:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T09:59:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:03:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:07:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:08:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:11:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:12:33Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:13:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:16:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:18:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:23:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:26:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:28:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:30:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T10:33:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:36:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:36:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:39:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:43:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T10:43:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:24:57Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:24:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:24:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:27:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:27:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:27:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:27:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1395, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T11:27:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:30:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:30:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:30:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:33:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:33:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:33:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:33:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:35:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:35:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:35:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:36:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:36:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:36:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:37:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:37:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:37:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:39:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:39:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:39:41Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:40:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:40:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:40:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:41:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:41:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:41:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:42:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:43:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:43:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:43:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:44:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:44:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:44:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:45:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:45:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:45:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:46:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:46:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:46:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:47:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:48:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:48:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:48:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:51:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:51:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:51:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:52:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:55:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:55:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:55:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T11:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:59:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:59:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T11:59:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T11:59:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T11:59:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:00:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:00:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:00:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:00:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:00:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:00:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:01:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:01:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:01:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:01:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:01:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:01:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:02:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:02:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:02:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:02:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:03:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:03:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:03:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:03:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:03:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:03:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:04:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:04:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:04:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:05:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:05:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:05:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:05:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:05:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:05:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:06:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:06:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:06:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:06:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:06:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:06:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:08:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:08:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:08:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T12:09:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:10:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:10:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:10:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:12:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:13:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:13:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:13:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:14:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:14:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:14:47Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:16:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:16:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:16:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:17:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5180, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T12:18:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:21:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:21:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:21:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:22:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:22:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:22:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:24:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:24:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:24:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:28:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:28:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:28:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:32:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:37:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:41:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:41:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:41:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:42:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:46:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:46:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:46:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:47:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:49:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:49:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:49:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:50:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:50:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:50:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:52:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:52:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:52:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T12:52:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:52:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 16344, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T12:53:20Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6576, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T12:54:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:55:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:55:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:55:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:56:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:56:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:56:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T12:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T12:58:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T12:58:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T12:58:55Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3767, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T13:01:42Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:02:23Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1920, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T13:05:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:09:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:09:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:09:43Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2354, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T13:10:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:12:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4955, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T13:12:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:13:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:13:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:13:05Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:15:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:15:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:15:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:16:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:16:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:16:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:17:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:21:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:21:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:21:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:23:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:23:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:23:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:27:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:27:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:27:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:29:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:29:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:29:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:31:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:31:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:31:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:34:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:34:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:34:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:37:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:37:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:37:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:38:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:38:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:38:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:39:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:39:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:39:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4623, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T13:42:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:42:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:42:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:42:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:42:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:44:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:44:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:44:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:47:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:47:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:47:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:47:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:50:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:50:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:50:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5024, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T13:50:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:51:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:51:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:51:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:51:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:51:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:51:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:52:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:54:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:54:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:54:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:55:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:55:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:55:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:56:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:56:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:56:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T13:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:57:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:57:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:57:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T13:59:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T13:59:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T13:59:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:01:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:01:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:01:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:02:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:02:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:02:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:02:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:07:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152778, "ip": "172.28.10.10", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T14:07:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:07:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:07:43Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:07:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:09:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:09:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:09:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:11:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:11:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:11:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:12:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:14:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:14:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:14:48Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:16:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:16:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:16:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:17:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:18:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:18:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:18:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:18:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:18:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:18:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:19:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:19:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:19:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T14:21:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6922, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T14:22:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:23:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:23:32Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:23:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:25:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:25:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:25:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:27:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:27:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:27:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:28:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:31:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:31:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:31:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:35:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:35:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:35:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:40:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:40:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:40:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:42:22Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T14:45:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1540, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T14:45:38Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10099, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T14:45:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T14:46:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T14:46:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T14:46:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:47:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T14:48:54Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6554, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T14:49:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:52:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T14:57:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:02:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:07:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:12:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:17:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:23:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:23:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:24:41Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:27:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:32:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:37:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:42:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2398, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T15:45:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:45:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:47:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T15:48:46Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:48:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:52:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:55:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:57:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T15:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:58:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T15:59:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:01:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:02:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:06:32Z"}, {"method": "POST", "status": 404, "action": "accept", "size": 616, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:06:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:06:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:06:40Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:07:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:07:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:07:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:12:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:12:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:12:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:12:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:15:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:15:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:15:37Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:17:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:21:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:24:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:24:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:24:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:25:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:25:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:25:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:25:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:25:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:25:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T16:30:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:31:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:31:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:31:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:32:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2067, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T16:36:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T16:40:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T16:40:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T16:40:46Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1231, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T16:41:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:42:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3734, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T16:42:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:47:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1258, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T16:51:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:52:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T16:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:01:06Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6453, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T17:01:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T17:01:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:01:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T17:01:13Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1002, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T17:02:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:02:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:07:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:10:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:12:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:17:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T17:20:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:20:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T17:20:03Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4414, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T17:20:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T17:20:23Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 330, "ip": "172.28.10.10", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-17T17:20:25Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 540, "ip": "172.28.10.10", "user": "", "site": "http://android.bugly.qq.com", "datetime": "2022-06-17T17:20:26Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 737, "ip": "172.28.10.10", "user": "", "site": "http://app.ys7.com", "datetime": "2022-06-17T17:20:26Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1108, "ip": "172.28.10.10", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-17T17:20:27Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 2770, "ip": "172.28.10.10", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-17T17:20:28Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 1662, "ip": "172.28.10.10", "user": "", "site": "http://devpic.ezvizlife.com", "datetime": "2022-06-17T17:20:29Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 9486, "ip": "172.28.10.10", "user": "", "site": "http://ynuf.alipay.com", "datetime": "2022-06-17T17:20:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:22:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:27:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2937, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T17:29:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T17:35:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T17:35:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:35:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T17:35:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T17:35:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:35:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:40:56Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T17:41:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T17:41:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T17:41:04Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T17:41:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T17:41:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:42:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:47:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:52:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T17:57:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:02:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T18:03:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:07:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:12:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T18:15:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T18:15:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T18:15:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:17:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:22:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3517, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T18:24:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:27:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T18:34:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:37:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:42:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1376, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T18:42:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:47:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 6188, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T18:48:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:52:22Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T18:57:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10163, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T18:57:14Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T18:57:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T18:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T18:59:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T18:59:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T18:59:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:02:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:07:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:12:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:17:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T19:22:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T19:25:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:27:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:32:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:37:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1992, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T19:37:25Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2151, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T19:41:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:42:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:47:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1171, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T19:47:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:52:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T19:52:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T19:52:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T19:52:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T19:56:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T19:57:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1842, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T19:57:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:01:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:02:23Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1268, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T20:05:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1506, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T20:06:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:07:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1636, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T20:08:30Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:11:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T20:11:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:11:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T20:11:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:12:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:17:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:22:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4435, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T20:26:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:31:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T20:31:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T20:32:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:32:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:32:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:40:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:42:23Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2912, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T20:42:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:47:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:51:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T20:51:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T20:51:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T20:51:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:52:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T20:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:00:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:00:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:01:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:02:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:07:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3206, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:09:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:11:20Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:12:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:14:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:14:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:14:55Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:16:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:16:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:16:34Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:17:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:18:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:18:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:18:29Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1773, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:21:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:22:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:22:09Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:22:10Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:22:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1642, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:23:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1825, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:24:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T21:24:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:25:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:25:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:25:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:25:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:25:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:25:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:26:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:26:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:26:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3871, "ip": "172.28.10.10", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-17T21:26:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:26:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:26:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:26:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:27:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:27:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:27:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:28:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:28:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:28:40Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:29:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:29:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:29:07Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:29:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:29:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:29:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:32:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2080, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:35:31Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:36:18Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:36:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:36:19Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1407, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:36:37Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T21:36:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:37:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:37:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 792, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:37:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:37:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:37:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:37:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:38:29Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2087, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T21:40:16Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T21:40:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:42:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T21:46:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:47:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:47:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:47:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:47:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:50:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:50:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:50:20Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:50:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:50:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:50:44Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:51:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:51:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:51:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:52:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:52:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:52:03Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:52:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:52:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:52:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:52:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:52:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:52:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:52:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:53:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:53:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:53:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:53:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:53:57Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:53:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:54:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:54:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:54:21Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:55:01Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:55:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:55:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:55:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:55:33Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:55:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:56:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:56:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:56:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T21:57:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:57:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:57:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:57:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:57:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:57:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:57:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:58:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:58:38Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:58:39Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:59:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:59:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:59:10Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:59:34Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:59:35Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:59:36Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T21:59:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T21:59:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T21:59:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T22:02:22Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1206, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T22:03:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T22:07:22Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T22:12:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T22:16:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T22:17:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T22:18:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T22:18:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T22:18:06Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1265, "ip": "172.28.10.10", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T22:19:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T22:21:14Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T22:21:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T22:21:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T22:22:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T22:22:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T22:22:24Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T22:22:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-04.allawnos.com", "datetime": "2022-06-17T22:26:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 466, "ip": "172.28.10.10", "user": "", "site": "http://conn-service-us-05.allawnos.com", "datetime": "2022-06-17T22:26:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.10", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T22:26:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "172.28.10.10", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-17T22:26:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "172.28.10.19", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-17T22:27:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-17T22:51:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11588, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T22:51:27Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-17T22:51:27Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1282, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T23:23:56Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4072, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-17T23:58:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 940, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T00:00:32Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1948, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T00:10:29Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T00:14:44Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1497, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T00:56:28Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T02:39:40Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T04:43:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 10090, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T04:43:56Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T04:44:06Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1179, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T07:03:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T07:04:58Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 528, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T08:01:50Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T09:22:49Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T09:32:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T10:30:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 11397, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T10:30:07Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T10:56:16Z"}, {"method": "POST", "status": 200, "action": "other", "size": 10178, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T11:51:28Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T11:58:13Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T11:59:27Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 500, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-18T11:59:30Z"}, {"method": "POST", "status": 200, "action": "other", "size": 934, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T11:59:48Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1933, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T12:22:58Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1006, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T12:24:57Z"}, {"method": "POST", "status": 200, "action": "other", "size": 813, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T12:32:40Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2670, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T12:36:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T13:10:49Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1578, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:14:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3487, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:25:14Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:26:21Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:26:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T13:29:43Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1457, "ip": "192.168.88.23", "user": "", "site": "http://amdc.aliexpress.com", "datetime": "2022-06-18T13:30:17Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 821, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T13:30:24Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:30:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "192.168.88.23", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-18T13:30:25Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 2334, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T13:30:29Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T13:32:10Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1454, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T13:35:24Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1494, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T13:38:23Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1534, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T13:40:30Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.236", "datetime": "2022-06-18T13:41:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4791, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:41:28Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1538, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T13:45:43Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1516, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.236", "datetime": "2022-06-18T13:47:19Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T13:48:42Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 500, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-18T13:48:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 152778, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-18T13:48:58Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3879, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-18T13:48:59Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T13:49:05Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1536, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T13:50:48Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1530, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T13:55:36Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1532, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T13:55:54Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2230, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T13:56:32Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T13:58:20Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1568, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:01:07Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1525, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:04:33Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1109, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:06:05Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1520, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.236", "datetime": "2022-06-18T14:06:24Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1530, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T14:11:37Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1521, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:12:21Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T14:13:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T14:16:22Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1536, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:16:45Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T14:16:45Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1051, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T14:17:25Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T14:21:45Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1538, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:21:51Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1527, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T14:21:53Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.168", "datetime": "2022-06-18T14:23:23Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 785, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:24:23Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T14:24:30Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 692, "ip": "192.168.88.23", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-18T14:24:50Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 692, "ip": "192.168.88.23", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-18T14:25:11Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T14:25:53Z"}, {"method": "POST", "status": 200, "action": "other", "size": 815, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T14:26:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T14:27:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-18T14:27:57Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1532, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T14:28:15Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T14:28:19Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 692, "ip": "192.168.88.23", "user": "", "site": "http://err.taobao.com", "datetime": "2022-06-18T14:28:22Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T14:30:26Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T14:30:54Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T15:58:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.23", "user": "", "site": "http://clients3.google.com", "datetime": "2022-06-18T15:59:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "192.168.88.23", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-18T16:00:33Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1663, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T16:00:35Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1726, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T16:06:53Z"}, {"method": "POST", "status": 0, "action": "other", "size": 0, "ip": "192.168.88.23", "user": "", "site": "http://47.246.136.167", "datetime": "2022-06-18T16:07:50Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1641, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.236", "datetime": "2022-06-18T16:14:51Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T16:14:52Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T16:15:00Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T16:15:38Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T16:15:46Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1235, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T16:16:58Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T16:23:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9823, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T16:23:53Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T16:23:54Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1639, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T16:36:24Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1645, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T16:36:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 2470, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T16:56:44Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1647, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.236", "datetime": "2022-06-18T18:02:39Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1133, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T18:03:36Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4162, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T18:04:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:13:11Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3528, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-18T18:20:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1856, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-18T18:20:08Z"}, {"method": "GET", "status": 200, "action": "other", "size": 152777, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-18T18:20:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 31646, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-18T18:20:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 13114, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-18T18:21:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 50593, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-18T18:21:01Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 62154, "ip": "192.168.88.20", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-18T18:21:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 53758, "ip": "192.168.88.20", "user": "", "site": "http://mirror.epn.edu.ec", "datetime": "2022-06-18T18:21:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 8784, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:16Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 167082, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:16Z"}, {"method": "GET", "status": 206, "action": "accept", "size": 1139383, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6764, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 196914, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-18T18:21:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4231, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-18T18:21:25Z"}, {"method": "GET", "status": 200, "action": "other", "size": 700521, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-18T18:21:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3499, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-18T18:21:26Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2891, "ip": "192.168.88.20", "user": "", "site": "http://mirror.cedia.org.ec", "datetime": "2022-06-18T18:21:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7176, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:27Z"}, {"method": "GET", "status": 200, "action": "other", "size": 24358, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 37176, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:21:28Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 4218, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-18T18:21:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 74979, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-18T18:21:30Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 265989, "ip": "192.168.88.20", "user": "", "site": "http://mirror.uta.edu.ec", "datetime": "2022-06-18T18:21:31Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-18T18:21:32Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2668, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-18T18:21:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:38:12Z"}, {"method": "GET", "status": 301, "action": "accept", "size": 1068, "ip": "192.168.88.20", "user": "", "site": "http://sourceforge.net", "datetime": "2022-06-18T18:40:22Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 948, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 198803, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:25Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 948, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 168595, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:26Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 943, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 246427, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:26Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 948, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 646787, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:26Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 948, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 392859, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:27Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 948, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 173707, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:27Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 948, "ip": "192.168.88.20", "user": "", "site": "http://downloads.sourceforge.net", "datetime": "2022-06-18T18:40:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 185491, "ip": "192.168.88.20", "user": "", "site": "http://ufpr.dl.sourceforge.net", "datetime": "2022-06-18T18:40:27Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 21725, "ip": "192.168.88.20", "user": "", "site": "http://dl.fedoraproject.org", "datetime": "2022-06-18T18:42:19Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2447294, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:42:36Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 6915, "ip": "192.168.88.20", "user": "", "site": "http://dl.fedoraproject.org", "datetime": "2022-06-18T18:43:02Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 83520, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:43:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:48:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3467, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T18:48:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 5513, "ip": "192.168.88.20", "user": "", "site": "http://dl.fedoraproject.org", "datetime": "2022-06-18T18:54:24Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 163608, "ip": "192.168.88.20", "user": "", "site": "http://fedora.c3sl.ufpr.br", "datetime": "2022-06-18T18:54:35Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T18:58:12Z"}, {"method": "GET", "status": 304, "action": "accept", "size": 473, "ip": "192.168.88.20", "user": "", "site": "http://zerossl.crt.sectigo.com", "datetime": "2022-06-18T18:59:35Z"}, {"method": "GET", "status": 200, "action": "other", "size": 2055, "ip": "192.168.88.20", "user": "", "site": "http://x.ss2.us", "datetime": "2022-06-18T18:59:51Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1950, "ip": "192.168.88.20", "user": "", "site": "http://crt.rootg2.amazontrust.com", "datetime": "2022-06-18T18:59:51Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1979, "ip": "192.168.88.20", "user": "", "site": "http://crt.rootca1.amazontrust.com", "datetime": "2022-06-18T18:59:51Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1907, "ip": "192.168.88.20", "user": "", "site": "http://crt.sca1b.amazontrust.com", "datetime": "2022-06-18T18:59:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:03:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.20", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-18T19:03:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-18T19:10:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-18T19:11:14Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:13:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T19:15:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:18:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1152, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T19:20:15Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:28:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1023, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T19:30:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1407, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.usertrust.com", "datetime": "2022-06-18T19:43:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1150, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.sectigo.com", "datetime": "2022-06-18T19:43:57Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:48:12Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 841, "ip": "192.168.88.10", "user": "", "site": "http://h10141.www1.hp.com", "datetime": "2022-06-18T19:50:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:53:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.20", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-18T19:53:21Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2422, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.godaddy.com", "datetime": "2022-06-18T19:57:17Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T19:58:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:13:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 4706, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T20:17:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 924, "ip": "192.168.88.20", "user": "", "site": "http://ocsp.digicert.com", "datetime": "2022-06-18T20:55:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "192.168.88.23", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-18T20:55:30Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1644, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-18T20:55:34Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1674, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T20:56:26Z"}, {"method": "POST", "status": 200, "action": "other", "size": 768, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T20:57:03Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3870, "ip": "192.168.88.23", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-18T20:57:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "192.168.88.23", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-18T20:57:45Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T20:58:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:13:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.20", "user": "", "site": "http://www.gstatic.com", "datetime": "2022-06-18T21:13:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:18:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 19692, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T21:19:16Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:23:12Z"}, {"method": "GET", "status": 302, "action": "accept", "size": 779, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 79723, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:04Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1616472, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:05Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 650417, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:06Z"}, {"method": "GET", "status": 404, "action": "accept", "size": 688, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 2830946, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 383945, "ip": "192.168.88.20", "user": "", "site": "http://www.stcruz.com.br", "datetime": "2022-06-18T21:27:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:38:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3348, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T21:42:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:53:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1365, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T21:57:29Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T21:58:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:13:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 7228, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T22:14:56Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3956, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T22:14:57Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-18T22:14:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-18T22:19:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-18T22:20:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T22:58:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 5897, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T23:02:51Z"}, {"method": "POST", "status": 200, "action": "other", "size": 774, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T23:03:06Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:13:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:18:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 3869, "ip": "192.168.88.20", "user": "", "site": "http://edgedl.me.gvt1.com", "datetime": "2022-06-18T23:20:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:48:12Z"}, {"method": "POST", "status": 200, "action": "other", "size": 3139, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T23:48:39Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:53:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T23:55:02Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "172.28.10.32", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-18T23:55:04Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1672, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T23:56:58Z"}, {"method": "POST", "status": 200, "action": "other", "size": 1754, "ip": "192.168.88.23", "user": "", "site": "http://c.whatsapp.net", "datetime": "2022-06-18T23:58:09Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-18T23:58:12Z"}, {"method": "POST", "status": 200, "action": "accept", "size": 1647, "ip": "192.168.88.23", "user": "", "site": "http://47.246.137.238", "datetime": "2022-06-19T00:00:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 550, "ip": "192.168.88.23", "user": "", "site": "http://acs.m.taobao.com", "datetime": "2022-06-19T00:00:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:08:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:13:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 564, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T00:58:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:13:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T01:58:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:13:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-19T02:14:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-19T02:15:26Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:23:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 269, "ip": "192.168.88.33", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T02:27:23Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:33:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-19T02:38:08Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T02:38:08Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T02:58:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T03:01:06Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 500, "ip": "192.168.88.23", "user": "", "site": "http://www.google.com", "datetime": "2022-06-19T03:01:07Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:13:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T03:17:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:23:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:43:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:53:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T03:57:32Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T03:58:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:03:13Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:08:12Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-19T04:11:43Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 9658, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-19T04:11:43Z"}, {"method": "GET", "status": 200, "action": "other", "size": 1471, "ip": "192.168.88.33", "user": "", "site": "http://api.accuweather.com", "datetime": "2022-06-19T04:11:44Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:13:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T04:14:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:23:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T04:23:48Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:28:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T04:33:00Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:33:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 558, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:38:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T04:41:49Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:43:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:48:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-19T04:50:53Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T04:50:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:53:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 553, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T04:58:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T04:59:50Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:03:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T05:06:25Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 557, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:13:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T05:17:51Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:18:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:23:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T05:26:52Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:28:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:33:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T05:36:18Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 559, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:38:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:43:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T05:44:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:48:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:53:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T05:53:54Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T05:58:12Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T06:02:55Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 565, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T06:03:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 552, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T06:08:12Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 3361, "ip": "192.168.88.20", "user": "", "site": "http://rpm.anydesk.com", "datetime": "2022-06-19T06:09:53Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 1553, "ip": "192.168.88.20", "user": "", "site": "http://dl.google.com", "datetime": "2022-06-19T06:10:17Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://play.googleapis.com", "datetime": "2022-06-19T06:11:59Z"}, {"method": "GET", "status": 204, "action": "accept", "size": 264, "ip": "192.168.88.23", "user": "", "site": "http://connectivitycheck.gstatic.com", "datetime": "2022-06-19T06:11:59Z"}, {"method": "GET", "status": 200, "action": "accept", "size": 560, "ip": "192.168.88.20", "user": "", "site": "http://fedoraproject.org", "datetime": "2022-06-19T06:13:12Z"}] ```Os resultados
Ao executar o script, temos o seguinte resultado:
$ python3 script.py
Número de requisições: 7419
Tipos de action: {'virus', 'accept', 'other', 'deny'}
Número de requisições 'accept': 6791
Número de requisições 'deny': 1
Número de requisições 'virus': 3
Número de requisições 'other': 624
Top 10 - Sites com mais requisições:
1 . http://fedoraproject.org : 2316
2 . http://conn-service-us-04.allawnos.com : 1115
3 . http://conn-service-us-05.allawnos.com : 792
4 . http://connectivitycheck.gstatic.com : 583
5 . http://www.google.us : 469
6 . http://c.whatsapp.net : 465
7 . http://br.archive.ubuntu.com : 204
8 . http://edgedl.me.gvt1.com : 144
9 . http://fedora.c3sl.ufpr.br : 128
10 . http://clients3.google.com : 121
Esses dados são extraídos de maneira muito simples e já suprem várias necessidades, a ideia agora é exibir isso na tela.
Em conversa com nossa equipe de Dev já tive a devolutiva que é simples de expor os dados, a questão de maior preocupação é a performance. Sugiro fazermos uma Spike pra encontrar um melhor caminho para tratar essa situação.
Links úteis
Uma sugestão do nosso Dev foi realizar a Spike sobre o Pandas, uma ferramenta com o objetivo de tratar dados em Python.