From 33455ae54fda793f39a0067d35301741c5b3e70e Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Sun, 21 Jul 2024 02:48:38 +0200 Subject: [PATCH] Added tests about http access logs. --- .../httpaccess/HttpAccessLogIteratorTest.java | 97 ++ .../HttpAccessLogsAnalyzerTest.java | 131 +++ .../metrics/httpaccess/data/empty | 0 .../metrics/httpaccess/data/lseu/README | 3 + .../lseu/www.libre-service.eu-access-anon.log | 1023 +++++++++++++++++ .../www.libre-service.eu-access-anon.log.1 | 1013 ++++++++++++++++ .../www.libre-service.eu-access-anon.log.2.gz | Bin 0 -> 9192 bytes .../www.libre-service.eu-access-anon.log.3.gz | Bin 0 -> 9442 bytes .../www.libre-service.eu-access-anon.log.4.gz | Bin 0 -> 8642 bytes .../www.libre-service.eu-access-anon.log.5.gz | Bin 0 -> 8456 bytes .../www.libre-service.eu-access-anon.log.6.gz | Bin 0 -> 9212 bytes .../metrics/httpaccess/data/notempty | 1 + 12 files changed, 2268 insertions(+) create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/empty create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.2.gz create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.3.gz create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.4.gz create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.5.gz create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.6.gz create mode 100644 test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java new file mode 100644 index 0000000..2107266 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogIteratorTest.java @@ -0,0 +1,97 @@ +/* + * Copyright (C) 2021-2024 Christian Pierre MOMON + * + * This file is part of StatoolInfos, simple key value database. + * + * StatoolInfos is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * StatoolInfos is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with StatoolInfos. If not, see . + */ +package fr.devinsy.statoolinfos.metrics.httpaccess; + +import java.io.File; + +import org.apache.logging.log4j.Level; +import org.apache.logging.log4j.core.config.Configurator; +import org.apache.logging.log4j.core.config.DefaultConfiguration; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; + +import fr.devinsy.statoolinfos.core.StatoolInfosException; +import fr.devinsy.statoolinfos.util.Files; +import fr.devinsy.statoolinfos.util.FilesUtils; + +/** + * The Class HttpAccessLogIteratorTest. + */ +public class HttpAccessLogIteratorTest +{ + private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(HttpAccessLogIteratorTest.class); + + /** + * Test 01. + * + * @throws Exception + * the exception + */ + @Test + public void test01() throws Exception + { + System.out.println(System.getProperty("user.dir")); + + String source = "./test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www*"; + Files files = FilesUtils.searchByWildcard(source); + for (File file : files) + { + System.out.println(file); + } + HttpAccessLogs logs = new HttpAccessLogs(files); + HttpAccessLogIterator iterator = (HttpAccessLogIterator) logs.iterator(); + while (iterator.hasNext()) + { + HttpAccessLog log = iterator.next(); + // System.out.println(log.toStringLog()); + } + + System.out.println(iterator.getLogCount()); + System.out.println(iterator.getFailedLogCount()); + + Assert.assertEquals(7146, iterator.getLogCount()); + Assert.assertEquals(0, iterator.getFailedLogCount()); + } + + /** + * After class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @AfterClass + public static void afterClass() throws StatoolInfosException + { + } + + /** + * Before class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @BeforeClass + public static void beforeClass() throws StatoolInfosException + { + Configurator.initialize(new DefaultConfiguration()); + Configurator.setRootLevel(Level.DEBUG); + } +} diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java new file mode 100644 index 0000000..c0c7b7d --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/HttpAccessLogsAnalyzerTest.java @@ -0,0 +1,131 @@ +/* + * Copyright (C) 2021-2024 Christian Pierre MOMON + * + * This file is part of StatoolInfos, simple key value database. + * + * StatoolInfos is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * StatoolInfos is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with StatoolInfos. If not, see . + */ +package fr.devinsy.statoolinfos.metrics.httpaccess; + +import org.apache.logging.log4j.Level; +import org.apache.logging.log4j.core.config.Configurator; +import org.apache.logging.log4j.core.config.DefaultConfiguration; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; + +import fr.devinsy.statoolinfos.core.Configuration; +import fr.devinsy.statoolinfos.core.StatoolInfosException; +import fr.devinsy.statoolinfos.metrics.PathCounters; +import fr.devinsy.statoolinfos.metrics.Prober; +import fr.devinsy.statoolinfos.util.Files; +import fr.devinsy.statoolinfos.util.FilesUtils; + +/** + * The Class HttpAccessLogsAnalyzerTest. + */ +public class HttpAccessLogsAnalyzerTest +{ + private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(HttpAccessLogsAnalyzerTest.class); + + /** + * @throws Exception + */ + @Test + public void test01() throws Exception + { + // System.out.println(System.getProperty("user.dir")); + + Files files = FilesUtils.searchByWildcard("./test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www*"); + // for (File file : files) + // { + // System.out.println(file); + // } + HttpAccessLogs logs = new HttpAccessLogs(files); + + PathCounters counters = HttpAccessLogAnalyzer.probe(logs); + + // for (String prefix : counters.getPrefixes()) + // { + // System.out.println(prefix); + // } + + System.out.println("Prefix count: " + counters.getPrefixes().size()); + + Assert.assertEquals(41, counters.getPrefixes().size()); + Assert.assertEquals(1035, counters.getCount("metrics.http.hits", "2022-11")); + Assert.assertEquals(1031, counters.getCount("metrics.http.hits", "2022-W44")); + Assert.assertEquals(964, counters.getCount("metrics.http.hits", "2022-11-01")); + Assert.assertEquals(1016, counters.getCount("metrics.http.hits", "2023-01")); + } + + /** + * @throws Exception + */ + @Test + public void test02() throws Exception + { + // System.out.println(System.getProperty("user.dir")); + + Configuration configuration = new Configuration(); + configuration.add("conf.probe.types", "HttpAccessLog"); + configuration.add("conf.probe.httpaccesslog.file", "./test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www*"); + // configuration.add("conf.probe.httperrorlog.pattern", ""); + // configuration.add("conf.probe.httperrorlog.dateTimePattern", ""); + + PathCounters counters = Prober.probeHttpAccessLog(configuration); + + // for (String counter : counters.keySet()) + // { + // System.out.println(counter + " " + + // counters.get(counter).getCounter()); + // } + + Assert.assertEquals(983, counters.size()); + + // + Assert.assertEquals(2056, counters.getCount("metrics.http.hits", "2022")); + Assert.assertEquals(1035, counters.getCount("metrics.http.hits", "2022-11")); + Assert.assertEquals(1031, counters.getCount("metrics.http.hits", "2022-W44")); + Assert.assertEquals(964, counters.getCount("metrics.http.hits", "2022-11-01")); + + Assert.assertEquals(",,,,,,,,,,1035,1021", counters.getMonthsValuesLine("metrics.http.hits", "2022")); + Assert.assertEquals(",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1031,,4,,1021,,,,1014", counters.getWeeksValuesLine("metrics.http.hits", "2022")); + } + + /** + * After class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @AfterClass + public static void afterClass() throws StatoolInfosException + { + } + + /** + * Before class. + * + * @throws StatoolInfosException + * the Juga exception + */ + @BeforeClass + public static void beforeClass() throws StatoolInfosException + { + Configurator.initialize(new DefaultConfiguration()); + Configurator.setRootLevel(Level.DEBUG); + } +} diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/empty b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/empty new file mode 100644 index 0000000..e69de29 diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README new file mode 100644 index 0000000..8b8a084 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/README @@ -0,0 +1,3 @@ +From Apache server. + +Anonymize with Logar. diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log new file mode 100644 index 0000000..625b646 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log @@ -0,0 +1,1023 @@ +131.226.91.104 - - [01/May/2023:00:01:09 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:09 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:09 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:10 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:10 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:00:01:10 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:00:02:04 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:05 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:11 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:17 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 46158 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:20 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:20 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:22 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:27 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:33 +0200] "GET / HTTP/1.1" 302 911 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:35 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:46 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:00:02:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +231.172.109.6 - - [01/May/2023:00:03:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11023 "-" "Mozilla (X Linux x rv) Gecko Firefox " +231.172.109.6 - - [01/May/2023:00:03:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11078 "-" "Mozilla (X Linux x rv) Gecko Firefox " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138051 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138051 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24417 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:51 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +200.157.70.140 - - [01/May/2023:00:12:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10946 "https://145.239.49.5:443/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:42 +0200] "GET / HTTP/1.1" 302 5171 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:44 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10977 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +234.196.97.0 - - [01/May/2023:00:45:45 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15112 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +229.189.8.12 - - [01/May/2023:00:45:47 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10976 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +229.189.8.12 - - [01/May/2023:00:45:48 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:48 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:48 +0200] "GET / HTTP/1.1" 302 307 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +240.92.147.221 - - [01/May/2023:00:45:48 +0200] "GET /favicon.ico HTTP/1.1" 404 5821 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:48 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10248 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:49 +0200] "GET / HTTP/1.1" 302 307 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:50 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10248 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +191.14.82.85 - - [01/May/2023:00:45:50 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +24.236.162.74 - - [01/May/2023:00:45:51 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +240.92.147.221 - - [01/May/2023:00:45:51 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +229.189.8.12 - - [01/May/2023:00:45:51 +0200] "GET /favicon.ico HTTP/1.1" 404 957 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +200.157.70.140 - - [01/May/2023:00:45:54 +0200] "GET /services/audio.xhtml?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1" 200 10947 "https://145.239.49.5:443/index.php?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:55 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:56 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:01:00:56 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138087 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138087 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:01:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67892 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:01 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48066 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET / HTTP/1.1" 302 5195 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:01:05:02 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +41.120.86.14 - - [01/May/2023:01:20:58 +0200] "GET /robots.txt HTTP/1.1" 200 5545 "-" "Mozilla (compatible; AhrefsBot +) " +164.214.116.7 - - [01/May/2023:01:40:03 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10927 "-" "Mozilla (compatible; CensysInspect +) " +164.214.116.7 - - [01/May/2023:01:40:03 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +164.214.116.7 - - [01/May/2023:01:40:03 +0200] "GET /favicon.ico HTTP/1.1" 404 5791 "-" "Mozilla (compatible; CensysInspect +) " +139.191.179.197 - - [01/May/2023:01:52:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10928 "https://145.239.49.5/favicon.ico" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +139.191.179.197 - - [01/May/2023:01:52:18 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10928 "https://145.239.49.5/robots.txt" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +139.191.179.197 - - [01/May/2023:01:52:20 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10929 "https://145.239.49.5/sitemap.xml" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138117 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138117 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101187 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:02:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +193.7.34.185 - - [01/May/2023:02:11:57 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +236.244.235.84 - - [01/May/2023:02:28:26 +0200] "GET / HTTP/1.1" 302 5275 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:26 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:27 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15215 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:28 +0200] "GET /accueil.xhtml/contact HTTP/1.1" 404 5924 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET / HTTP/1.1" 302 5275 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15214 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +236.244.235.84 - - [01/May/2023:02:28:30 +0200] "GET /accueil.xhtml/contact HTTP/1.1" 404 5924 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +112.235.224.5 - - [01/May/2023:02:43:46 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +160.162.96.9 - - [01/May/2023:02:59:23 +0200] "GET /.git/config HTTP/1.1" 302 4752 "-" "curl (x-redhat-linux-gnu) libcurl NSS zlib libidn libssh " +160.162.96.9 - - [01/May/2023:02:59:23 +0200] "GET /.git/config HTTP/1.1" 404 5136 "-" "curl (x-redhat-linux-gnu) libcurl NSS zlib libidn libssh " +131.226.91.104 - - [01/May/2023:03:03:52 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:03:03:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +217.132.143.85 - - [01/May/2023:03:04:41 +0200] "GET / HTTP/1.1" 302 5354 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138144 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138144 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:03:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +192.58.45.160 - - [01/May/2023:03:21:56 +0200] "GET /robots.txt HTTP/1.1" 200 5682 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +192.58.45.160 - - [01/May/2023:03:21:57 +0200] "GET /robots.txt HTTP/1.1" 200 1351 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.85.113.84 - - [01/May/2023:03:47:53 +0200] "GET / HTTP/1.1" 302 553 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +248.67.15.58 - - [01/May/2023:03:49:55 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:01 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:04:01:02 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:37 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:39 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50473 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:45 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:45 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11393 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48066 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:04:04:46 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11032 "-" "StatoolInfos Uptime Bot" +114.178.163.2 - - [01/May/2023:04:49:29 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +114.178.163.2 - - [01/May/2023:04:49:29 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +114.178.163.2 - - [01/May/2023:04:49:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15166 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:05:00:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138153 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101186 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11000 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +200.157.70.140 - - [01/May/2023:05:15:33 +0200] "GET /services/audio.xhtml?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 200 10946 "https://145.239.49.5:443/?XDEBUG_SESSION_START=phpstorm" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +150.193.234.240 - - [01/May/2023:05:53:56 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10928 "-" "Mozilla (compatible; CensysInspect +) " +150.193.234.240 - - [01/May/2023:05:53:57 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +150.193.234.240 - - [01/May/2023:05:53:57 +0200] "GET /favicon.ico HTTP/1.1" 404 5791 "-" "Mozilla (compatible; CensysInspect +) " +15.229.94.190 - - [01/May/2023:05:58:08 +0200] "GET /.env HTTP/1.1" 404 5923 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +15.229.94.190 - - [01/May/2023:05:58:29 +0200] "GET /.env HTTP/1.1" 404 5924 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +231.116.148.8 - - [01/May/2023:05:59:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10994 "-" "-" +131.226.91.104 - - [01/May/2023:06:00:55 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:55 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:06:00:56 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:06:01:40 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:42 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:54 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:01:57 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:01 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:01 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:02 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:09 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:11 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:06:02:11 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138156 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138156 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:06:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15135 "-" "StatoolInfos Uptime Bot" +176.252.42.10 - - [01/May/2023:06:27:37 +0200] "GET /public/plugins/elfinder/connectors/php/connector.php HTTP/1.1" 404 5876 "-" "ALittle Client" +176.252.42.10 - - [01/May/2023:06:27:38 +0200] "GET /public/plugins/elfinder/connectors/php/connector.php HTTP/1.1" 404 5877 "-" "ALittle Client" +100.201.199.108 - - [01/May/2023:06:30:05 +0200] "GET /wp-login.php HTTP/1.1" 404 5155 "http://www.libre-service.club/wp-login.php" "Mozilla (Windows NT Win x rv) Gecko Firefox " +74.190.131.239 - - [01/May/2023:06:41:32 +0200] "GET /wp-login.php HTTP/1.1" 302 540 "-" "Mozilla (Windows NT Win x rv) Gecko Firefox " +74.190.131.239 - - [01/May/2023:06:41:33 +0200] "GET /wp-login.php HTTP/1.1" 404 5155 "http://www.libre-service.eu/wp-login.php" "Mozilla (Windows NT Win x rv) Gecko Firefox " +200.157.70.140 - - [01/May/2023:06:54:58 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10946 "https://145.239.49.5:443/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:03 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:07:03:04 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:07:04:07 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:09 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:12 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:15 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:18 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:18 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:18 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:21 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:24 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:25 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:31 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:33 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:07:04:33 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138159 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138159 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67893 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +200.157.70.140 - - [01/May/2023:07:45:37 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:50 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:08:00:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:08:01:29 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:33 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:35 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:37 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:38 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:40 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:42 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:42 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:43 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:48 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:49 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:08:01:50 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24448 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET / HTTP/1.1" 302 5196 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:08:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +34.173.134.155 - - [01/May/2023:08:10:51 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10344 "-" "Mozilla (Windows NT WOW) AppleWebKit (KHTML, like Gecko) Chrome Safari QIHU " +200.157.70.140 - - [01/May/2023:08:19:39 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10946 "https://145.239.49.5:443/actuator/gateway/routes" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +103.166.240.43 - - [01/May/2023:08:26:41 +0200] "GET /wp-login.php HTTP/1.1" 404 5156 "http://www.libreservice.club/wp-login.php" "Mozilla (Windows NT Win x rv) Gecko Firefox " +80.102.227.2 - - [01/May/2023:08:45:14 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://audio.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +21.149.250.113 - - [01/May/2023:08:55:57 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10574 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:09:00:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:09:01:35 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:36 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:39 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:42 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:43 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:44 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:48 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:48 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:49 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:55 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:57 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:09:01:57 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:36 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138162 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:37 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:09:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +83.161.189.228 - - [01/May/2023:09:06:38 +0200] "GET /robots.txt HTTP/1.1" 302 5455 "-" "Mozilla (compatible;PetalBot;+) " +83.161.189.228 - - [01/May/2023:09:06:51 +0200] "GET /robots.txt HTTP/1.1" 200 5517 "-" "Mozilla (compatible;PetalBot;+) " +247.29.200.49 - - [01/May/2023:09:15:04 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15159 "-" "Mozilla (compatible; AhrefsBot +) " +108.30.217.51 - - [01/May/2023:09:15:05 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 9372 "-" "Mozilla (compatible; AhrefsBot +) " +154.241.61.8 - - [01/May/2023:09:15:05 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 18410 "-" "Mozilla (compatible; AhrefsBot +) " +100.12.155.135 - - [01/May/2023:09:51:13 +0200] "GET / HTTP/1.1" 302 5171 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +104.156.91.7 - - [01/May/2023:09:56:57 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11528 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 9586 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 23509 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 23153 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +86.244.161.61 - - [01/May/2023:09:56:58 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 21472 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /services/minetest-soleil-800x.jpg HTTP/1.1" 200 68654 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +171.120.157.119 - - [01/May/2023:09:56:58 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:58 +0200] "GET /services/minetest-lapin-800x.jpg HTTP/1.1" 200 135160 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +171.120.157.119 - - [01/May/2023:09:56:58 +0200] "GET /services/minetest-vache-800x.jpg HTTP/1.1" 200 134383 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +104.156.91.7 - - [01/May/2023:09:56:59 +0200] "GET /services/minetest-pyramide-800x.jpg HTTP/1.1" 200 103141 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 9586 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:33 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 24057 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +193.128.4.0 - - [01/May/2023:09:57:33 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 25788 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +30.199.182.124 - - [01/May/2023:09:57:33 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 23153 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +125.83.149.160 - - [01/May/2023:09:57:33 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-soleil-800x.jpg HTTP/1.1" 200 68654 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-lapin-800x.jpg HTTP/1.1" 200 135160 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +125.83.149.160 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-vache-800x.jpg HTTP/1.1" 200 134383 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +254.128.168.7 - - [01/May/2023:09:57:34 +0200] "GET /services/minetest-pyramide-800x.jpg HTTP/1.1" 200 103141 "https://www.libre-service.eu/services/minetest.xhtml" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) CriOS Mobile Safari " +131.226.91.104 - - [01/May/2023:10:00:44 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:10:00:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:10:01:19 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:24 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:28 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:30 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:30 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:31 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:33 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:36 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:37 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:42 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:43 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:10:01:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78443 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48624 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:10:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +11.129.28.115 - - [01/May/2023:10:43:59 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11521 "-" "Mozilla (compatible; AhrefsBot +) " +236.28.37.35 - - [01/May/2023:10:47:03 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +97.31.237.214 - - [01/May/2023:10:48:12 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:50 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:11:00:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +148.117.130.145 - - [01/May/2023:11:01:09 +0200] "GET /robots.txt HTTP/1.1" 302 536 "-" "Mozilla (compatible; DataForSeoBot +) " +148.117.130.145 - - [01/May/2023:11:01:09 +0200] "GET /robots.txt HTTP/1.1" 200 5565 "-" "Mozilla (compatible; DataForSeoBot +) " +131.226.91.104 - - [01/May/2023:11:01:29 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:33 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:36 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:38 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:39 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:40 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:42 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:43 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:43 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:49 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:50 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:11:01:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11000 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:11:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15136 "-" "StatoolInfos Uptime Bot" +170.42.136.136 - - [01/May/2023:11:07:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10363 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +102.196.199.7 - - [01/May/2023:11:11:13 +0200] "GET / HTTP/1.1" 302 5219 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari Edg " +102.196.199.7 - - [01/May/2023:11:11:13 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10248 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari Edg " +235.88.59.109 - - [01/May/2023:11:26:56 +0200] "GET / HTTP/1.1" 302 5142 "http://www.libreservice.club" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +235.88.59.109 - - [01/May/2023:11:26:57 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15083 "https://www.libre-service.eu/" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +148.179.152.34 - - [01/May/2023:11:34:41 +0200] "GET / HTTP/1.1" 302 5274 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +148.179.152.34 - - [01/May/2023:11:34:41 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +148.179.152.34 - - [01/May/2023:11:34:43 +0200] "GET / HTTP/1.1" 302 5274 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +148.179.152.34 - - [01/May/2023:11:34:43 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +11.11.146.29 - - [01/May/2023:11:42:26 +0200] "GET /robots.txt HTTP/1.1" 200 5507 "-" "Mozilla (compatible; Googlebot +) " +11.11.146.29 - - [01/May/2023:11:42:27 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Googlebot-Image " +131.226.91.104 - - [01/May/2023:12:00:40 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:40 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:12:00:41 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:12:01:25 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:26 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:29 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:31 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:32 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:33 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:33 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:35 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:38 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:38 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:38 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:45 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:12:01:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24417 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78443 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48625 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +161.205.5.185 - - [01/May/2023:12:27:26 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48051 "-" "Googlebot-Image " +17.200.160.22 - - [01/May/2023:12:27:27 +0200] "GET /services/minetest-vache-800x.jpg HTTP/1.1" 200 139201 "-" "Googlebot-Image " +194.184.170.187 - - [01/May/2023:12:58:19 +0200] "GET / HTTP/1.1" 302 5227 "-" "Mozilla (compatible; MSIE Windows NT Trident " +194.184.170.187 - - [01/May/2023:12:58:19 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (compatible; MSIE Windows NT Trident " +19.187.238.147 - - [01/May/2023:12:58:40 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (compatible; MSIE Windows NT Trident " +19.187.238.147 - - [01/May/2023:12:58:41 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (compatible; MSIE Windows NT Trident " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:37 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:13:01:19 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:20 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:23 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:25 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:27 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:27 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:28 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:30 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:32 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:32 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:39 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:40 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:13:01:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138189 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:44 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:13:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +207.138.81.60 - - [01/May/2023:13:18:18 +0200] "GET / HTTP/1.1" 302 5439 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 9586 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 23509 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 23153 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:19 +0200] "GET /charter/line.png HTTP/1.1" 404 5955 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 21472 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /commons/logo_chatons2-128x.png HTTP/1.1" 200 21771 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +207.138.81.60 - - [01/May/2023:13:18:20 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 17514 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +133.249.100.251 - - [01/May/2023:13:18:54 +0200] "GET /.git/config HTTP/1.1" 302 5409 "-" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +217.132.143.85 - - [01/May/2023:13:50:02 +0200] "GET / HTTP/1.1" 302 5355 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:59 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:14:00:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:14:01:33 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:34 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:40 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:41 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:42 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:47 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:47 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:47 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:54 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:14:01:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:37 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:38 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24417 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48065 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:14:04:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +254.67.93.25 - - [01/May/2023:14:20:52 +0200] "GET / HTTP/1.1" 302 5275 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +254.67.93.25 - - [01/May/2023:14:20:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +254.67.93.25 - - [01/May/2023:14:20:54 +0200] "GET / HTTP/1.1" 302 5274 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +254.67.93.25 - - [01/May/2023:14:20:55 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (Windows NT Win x)AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.85.113.84 - - [01/May/2023:14:33:20 +0200] "GET / HTTP/1.1" 302 553 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:15:01:00 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:15:01:42 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:43 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:48 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:50 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:50 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:51 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:55 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:55 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:01:56 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:02:01 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:02:02 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:15:02:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24418 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48097 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET / HTTP/1.1" 302 5226 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48594 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:15:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +187.227.193.166 - - [01/May/2023:15:39:24 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11079 "-" "python-requests " +38.80.18.162 - - [01/May/2023:15:51:08 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11023 "-" "Mozilla (compatible; AhrefsBot +) " +5.230.161.254 - - [01/May/2023:15:54:25 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10927 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/May/2023:15:54:26 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/May/2023:15:54:26 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:16:00:42 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:16:01:23 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:24 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:26 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:29 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:31 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:31 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:32 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:34 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:36 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:37 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:41 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:42 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:16:01:42 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6385 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138198 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18356 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24416 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET / HTTP/1.1" 302 5227 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:16:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48625 "-" "StatoolInfos Uptime Bot" +220.246.46.232 - - [01/May/2023:16:54:57 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10929 "-" "Mozilla (compatible; CensysInspect +) " +220.246.46.232 - - [01/May/2023:16:54:58 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +220.246.46.232 - - [01/May/2023:16:54:58 +0200] "GET /favicon.ico HTTP/1.1" 404 5792 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:01 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:02 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:17:01:40 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:41 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:49 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:49 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:50 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:54 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:01:59 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:02:00 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:17:02:00 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET / HTTP/1.1" 302 5381 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET / HTTP/1.1" 302 5189 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET /accueil.xhtml HTTP/1.1" 421 5525 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:20 +0200] "GET / HTTP/1.1" 302 5434 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:03:21 +0200] "GET / HTTP/1.1" 421 5525 "-" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +106.94.54.2 - - [01/May/2023:17:04:11 +0200] "GET / HTTP/1.1" 302 5190 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +106.94.54.2 - - [01/May/2023:17:04:26 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11493 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +106.94.54.2 - - [01/May/2023:17:04:30 +0200] "GET / HTTP/1.1" 302 5190 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:44 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138213 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 138213 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9872 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11424 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101187 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11529 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11394 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/May/2023:17:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +216.114.229.8 - - [01/May/2023:17:20:12 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (compatible; CensysInspect +) " +216.114.229.8 - - [01/May/2023:17:20:13 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15064 "-" "Mozilla (compatible; CensysInspect +) " +216.114.229.8 - - [01/May/2023:17:20:13 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +216.114.229.8 - - [01/May/2023:17:20:14 +0200] "GET /favicon.ico HTTP/1.1" 404 5792 "-" "Mozilla (compatible; CensysInspect +) " +243.135.202.39 - - [01/May/2023:17:51:48 +0200] "GET /robots.txt HTTP/1.1" 200 5683 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +177.28.5.222 - - [01/May/2023:17:59:05 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11159 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +177.28.5.222 - - [01/May/2023:17:59:05 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6828 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7354 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/May/2023:18:00:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/May/2023:18:01:32 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:40 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:40 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:41 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:45 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:45 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:45 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:50 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:51 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/May/2023:18:01:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 new file mode 100644 index 0000000..3e1e809 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.1 @@ -0,0 +1,1013 @@ +131.226.91.104 - - [01/Apr/2023:00:01:22 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:23 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:26 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:28 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:30 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:30 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:31 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:33 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:36 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:37 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:43 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:44 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:00:01:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132165 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132165 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101155 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15170 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:00:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +115.100.28.150 - - [01/Apr/2023:00:25:16 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5878 "https://www.agendadulibre.org/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +47.199.137.3 - - [01/Apr/2023:00:48:36 +0200] "GET /apropos.xhtml HTTP/1.1" 200 10915 "-" "Mozilla (compatible; AhrefsBot +) " +138.147.204.9 - - [01/Apr/2023:00:48:39 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 9375 "-" "Mozilla (compatible; AhrefsBot +) " +86.194.99.179 - - [01/Apr/2023:00:48:39 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 18410 "-" "Mozilla (compatible; AhrefsBot +) " +4.140.224.178 - - [01/Apr/2023:00:55:14 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11658 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +140.73.178.62 - - [01/Apr/2023:00:55:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11659 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:01:00:49 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:49 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:49 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:50 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:50 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:01:00:50 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:57 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132197 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132197 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:59 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:04:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:06 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:07 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:07 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15137 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:01:05:07 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +144.221.135.153 - - [01/Apr/2023:01:41:34 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11388 "https://infos.libre-service.eu/servicesaupublic-metrics-web-weeks-full.xhtml" "Mozilla (Linux; Android ) AppleWebKit (KHTML, like Gecko) Mobile Safari (compatible; PetalBot;+) " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:58 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:02:00:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132223 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132223 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET / HTTP/1.1" 302 5196 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:02:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +74.183.118.5 - - [01/Apr/2023:02:11:08 +0200] "GET /robots.txt HTTP/1.1" 200 5508 "-" "Mozilla (compatible; Googlebot +) " +170.151.101.162 - - [01/Apr/2023:02:47:08 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11390 "https://infos.libre-service.eu/infra-www-metrics-web-years-full.xhtml" "Mozilla (Linux; Android ) AppleWebKit (KHTML, like Gecko) Mobile Safari (compatible; PetalBot;+) " +131.206.150.51 - - [01/Apr/2023:02:47:49 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +58.122.223.106 - - [01/Apr/2023:02:48:34 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:03:00:42 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:42 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:03:00:43 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132239 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132239 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:48 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24451 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101187 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:55 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15169 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:03:04:55 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +118.199.39.9 - - [01/Apr/2023:03:07:03 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5878 "https://www.agendadulibre.org/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +161.104.81.1 - - [01/Apr/2023:03:15:39 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +49.28.198.197 - - [01/Apr/2023:03:21:48 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5821 "-" "Mozilla scpitspi-rs " +75.255.85.4 - - [01/Apr/2023:03:33:46 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11522 "-" "Mozilla (compatible; AhrefsBot +) " +239.220.0.1 - - [01/Apr/2023:03:35:15 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10326 "https://145.239.49.5/" "Mozilla (Macintosh; Intel Mac OS X ) AppleWebKit (KHTML, like Gecko) Version Safari " +66.114.254.67 - - [01/Apr/2023:03:36:08 +0200] "GET /services/audio.xhtml?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1" 200 10947 "https://145.239.49.5:443/index.php?s=/Index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +210.114.193.0 - - [01/Apr/2023:03:47:16 +0200] "GET /wp-content/plugins/woocommerce-payments/dist/blocks-checkout.css HTTP/1.1" 404 5137 "-" "Mozilla (Linux; Android PRA-TL) AppleWebKit (KHTML, like Gecko) Chrome Mobile Safari " +210.114.193.0 - - [01/Apr/2023:03:47:16 +0200] "GET /wp-content/plugins/woocommerce-payments/dist/blocks-checkout.css HTTP/1.1" 404 5137 "-" "Mozilla (iPhone; CPU iPhone OS like Mac OS X) AppleWebKit (KHTML, like Gecko) Version Mobile Safari " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:55 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:56 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:04:00:56 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132263 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132263 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48067 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48593 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:04:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6167 "-" "StatoolInfos Uptime Bot" +26.159.158.164 - - [01/Apr/2023:04:05:12 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10503 "-" "Mozilla (X Linux x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +26.159.158.164 - - [01/Apr/2023:04:05:18 +0200] "GET /robots.txt HTTP/1.1" 200 4947 "-" "-" +26.159.158.164 - - [01/Apr/2023:04:05:18 +0200] "GET /sitemap.xml HTTP/1.1" 404 5348 "-" "-" +26.159.158.164 - - [01/Apr/2023:04:05:18 +0200] "GET /.well-known/security.txt HTTP/1.1" 404 5348 "-" "-" +26.159.158.164 - - [01/Apr/2023:04:05:19 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22428 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +61.121.32.205 - - [01/Apr/2023:04:23:26 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 18410 "-" "facebookexternalhit (+) " +123.34.126.215 - - [01/Apr/2023:04:53:49 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10363 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:05:00:48 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:48 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:49 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:49 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:05:00:49 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132277 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132277 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78446 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67895 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:05:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +56.133.220.132 - - [01/Apr/2023:05:25:42 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +56.133.220.132 - - [01/Apr/2023:05:25:42 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15064 "-" "Mozilla (compatible; CensysInspect +) " +56.133.220.132 - - [01/Apr/2023:05:25:43 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +56.133.220.132 - - [01/Apr/2023:05:25:43 +0200] "GET /favicon.ico HTTP/1.1" 404 5794 "-" "Mozilla (compatible; CensysInspect +) " +66.114.254.67 - - [01/Apr/2023:05:45:21 +0200] "GET /services/audio.xhtml?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 200 10948 "https://145.239.49.5:443/?XDEBUG_SESSION_START=phpstorm" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:02 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:03 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:03 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:06:01:39 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:40 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:48 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:49 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:51 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:54 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:01:55 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:02:00 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:02:02 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:06:02:02 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132281 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132281 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101155 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24418 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11002 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15137 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:06:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +51.53.179.22 - - [01/Apr/2023:06:36:26 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:36:28 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 1012 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:36:36 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:37:09 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5876 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:37:11 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 1012 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +51.53.179.22 - - [01/Apr/2023:06:37:28 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (X Ubuntu; Linux x rv) Gecko Firefox " +66.114.254.67 - - [01/Apr/2023:06:42:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10949 "https://145.239.49.5:443/mifs/.;/services/LogService" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +82.121.119.232 - - [01/Apr/2023:06:58:14 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10930 "-" "Mozilla (compatible; CensysInspect +) " +82.121.119.232 - - [01/Apr/2023:06:58:15 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22296 "-" "Mozilla (compatible; CensysInspect +) " +82.121.119.232 - - [01/Apr/2023:06:58:15 +0200] "GET /favicon.ico HTTP/1.1" 404 5792 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:03 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:04 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:04 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:07:01:43 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:44 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:50 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:51 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:53 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:57 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:57 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:01:58 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:02:03 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:02:05 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:07:02:05 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132283 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132283 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78446 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:07:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11000 "-" "StatoolInfos Uptime Bot" +126.202.249.227 - - [01/Apr/2023:07:07:58 +0200] "GET / HTTP/1.1" 302 5419 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +126.202.249.227 - - [01/Apr/2023:07:07:58 +0200] "GET / HTTP/1.1" 302 5172 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +138.202.44.5 - - [01/Apr/2023:07:22:43 +0200] "GET / HTTP/1.0" 302 516 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +138.202.44.5 - - [01/Apr/2023:07:22:49 +0200] "GET / HTTP/1.0" 302 4734 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +138.202.44.5 - - [01/Apr/2023:07:22:56 +0200] "GET /accueil.xhtml HTTP/1.0" 200 14620 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +122.82.8.9 - - [01/Apr/2023:07:24:12 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +122.82.8.9 - - [01/Apr/2023:07:24:12 +0200] "GET / HTTP/1.1" 302 5276 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +122.82.8.9 - - [01/Apr/2023:07:24:12 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "https://www.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +66.114.254.67 - - [01/Apr/2023:07:27:03 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/console/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +126.158.4.45 - - [01/Apr/2023:07:33:00 +0200] "GET /services/audio.xhtml HTTP/1.0" 200 10539 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +235.169.114.19 - - [01/Apr/2023:07:40:46 +0200] "GET / HTTP/1.1" 302 493 "-" "-" +235.169.114.19 - - [01/Apr/2023:07:40:47 +0200] "GET / HTTP/1.1" 302 4519 "http://145.239.49.5:80/" "-" +235.169.114.19 - - [01/Apr/2023:07:40:48 +0200] "GET /accueil.xhtml HTTP/1.1" 200 14481 "-" "-" +111.20.0.4 - - [01/Apr/2023:07:58:09 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11081 "-" "python-requests " +131.226.91.104 - - [01/Apr/2023:08:00:35 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:35 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:00:36 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:08:01:14 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:15 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:18 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:20 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:22 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:22 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:23 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:25 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:27 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:27 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:28 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:33 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:34 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:08:01:35 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132291 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132291 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11499 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15168 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:08:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 6665 "-" "StatoolInfos Uptime Bot" +51.228.135.100 - - [01/Apr/2023:08:41:58 +0200] "GET / HTTP/1.1" 302 4772 "http://libreservice.club" "Mozilla (X Fedora; Linux x rv) Gecko Firefox " +51.228.135.100 - - [01/Apr/2023:08:41:58 +0200] "GET /accueil.xhtml HTTP/1.1" 200 14733 "https://www.libre-service.eu/" "Mozilla (X Fedora; Linux x rv) Gecko Firefox " +51.228.135.100 - - [01/Apr/2023:08:42:20 +0200] "GET /accueil.xhtml HTTP/1.1" 200 14733 "-" "Mozilla (Linux x rv) Gecko Firefox " +51.228.135.100 - - [01/Apr/2023:08:42:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9417 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (Linux x rv) Gecko Firefox " +252.42.234.231 - - [01/Apr/2023:08:46:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11079 "-" "Mozilla (Macintosh; Intel Mac OS X rv) Gecko Firefox " +167.83.170.83 - - [01/Apr/2023:08:59:25 +0200] "GET /services/minetest.xhtml HTTP/1.0" 200 11038 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +29.66.107.160 - - [01/Apr/2023:08:59:36 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://audio.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:42 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:43 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:00:43 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:09:01:15 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:19 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:22 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:23 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:23 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:24 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:26 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:29 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:30 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:35 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:36 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:09:01:37 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67895 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET / HTTP/1.1" 302 5228 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11499 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:09:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +5.230.161.254 - - [01/Apr/2023:09:16:32 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/Apr/2023:09:16:32 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15065 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/Apr/2023:09:16:33 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +5.230.161.254 - - [01/Apr/2023:09:16:33 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +196.110.218.8 - - [01/Apr/2023:09:18:10 +0200] "GET / HTTP/1.1" 302 553 "-" "Mozilla AppleWebKit (KHTML, like Gecko; compatible; bingbot +) Chrome Safari " +66.114.254.67 - - [01/Apr/2023:09:19:27 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/Autodiscover/Autodiscover.xml" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +38.80.18.162 - - [01/Apr/2023:09:44:46 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +54.123.174.146 - - [01/Apr/2023:09:46:04 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10884 "https://145.239.49.5" "Mozilla (compatible; InternetMeasurement +) " +248.234.147.28 - - [01/Apr/2023:09:46:06 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22343 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:10:00:54 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:55 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:55 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:00:55 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:10:01:29 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:30 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:33 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:36 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:37 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:37 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:39 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:40 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:43 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:43 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:49 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:50 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:10:01:51 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44277 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:10:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +102.165.138.217 - - [01/Apr/2023:10:18:25 +0200] "GET /services/paste.xhtml HTTP/1.1" 200 10375 "https://www.libre-service.eu/services.xhtml" "Mozilla (Linux; Android ) AppleWebKit (KHTML, like Gecko) Mobile Safari (compatible; PetalBot;+) " +214.111.148.21 - - [01/Apr/2023:10:28:28 +0200] "GET / HTTP/1.1" 302 4519 "-" "-" +180.16.120.5 - - [01/Apr/2023:10:44:10 +0200] "GET /services/audio.xhtml HTTP/1.0" 200 10540 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +15.210.155.36 - - [01/Apr/2023:10:46:24 +0200] "GET / HTTP/1.1" 302 5227 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 10134 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /commons/logo_chatons2-128x.png HTTP/1.1" 200 22319 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 14101 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 24057 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 21472 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 28017 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:10:46:25 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 18062 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +19.40.124.225 - - [01/Apr/2023:10:52:30 +0200] "GET / HTTP/1.1" 302 549 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:31 +0200] "GET /wordpress/ HTTP/1.1" 302 568 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:31 +0200] "GET /wp/ HTTP/1.1" 302 554 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:31 +0200] "GET /blog/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:32 +0200] "GET /new/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:32 +0200] "GET /old/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:32 +0200] "GET /test/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:33 +0200] "GET /main/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:33 +0200] "GET /site/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:33 +0200] "GET /backup/ HTTP/1.1" 302 562 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:34 +0200] "GET /demo/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:34 +0200] "GET /home/ HTTP/1.1" 302 558 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:35 +0200] "GET /tmp/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:35 +0200] "GET /cms/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:35 +0200] "GET /dev/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:36 +0200] "GET /portal/ HTTP/1.1" 302 562 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +19.40.124.225 - - [01/Apr/2023:10:52:36 +0200] "GET /web/ HTTP/1.1" 302 556 "-" "Mozilla (Windows NT ) AppleWebKit (KHTML, like Gecko) Chrome Safari " +240.106.150.1 - - [01/Apr/2023:10:58:25 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5877 "https://www.agendadulibre.org/" "Mozilla (Linux; Android ONEPLUS A) AppleWebKit (KHTML, like Gecko) Chrome Mobile Safari " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:00:48 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:11:01:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:24 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:26 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:28 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:28 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:29 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:31 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:33 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:34 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:40 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:41 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:11:01:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132299 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101157 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET / HTTP/1.1" 302 5229 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48068 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48625 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:11:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +101.166.219.60 - - [01/Apr/2023:11:17:04 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://145.239.49.5/ab2g" "Mozilla zgrab " +101.166.219.60 - - [01/Apr/2023:11:17:04 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10324 "https://145.239.49.5/ab2h" "Mozilla zgrab " +15.210.155.36 - - [01/Apr/2023:11:18:24 +0200] "GET / HTTP/1.1" 302 5226 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10303 "-" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/libreserviceeu.css HTTP/1.1" 200 4517 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css HTTP/1.1" 200 10134 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/libreserviceeu-logo.png HTTP/1.1" 200 13553 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /commons/logo_chatons2-128x.png HTTP/1.1" 200 22319 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 18062 "https://www.libre-service.eu/accueil.xhtml" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/fonts/Raleway/Raleway-SemiBold.woff2 HTTP/1.1" 200 24057 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/fonts/Raleway/Raleway-Bold.woff2 HTTP/1.1" 200 28018 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /charter/fonts/Raleway/Raleway-Regular.woff2 HTTP/1.1" 200 25788 "https://www.libre-service.eu/charter/libreserviceeu.css" "Mozilla (X Linux x rv) Gecko Firefox " +15.210.155.36 - - [01/Apr/2023:11:18:25 +0200] "GET /commons/Fork-Awesome-1.2.0/fonts/forkawesome-webfont.woff2?v=1.2.0 HTTP/1.1" 200 111275 "https://www.libre-service.eu/commons/Fork-Awesome-1.2.0/css/fork-awesome.min.css" "Mozilla (X Linux x rv) Gecko Firefox " +193.121.136.149 - - [01/Apr/2023:11:45:22 +0200] "GET / HTTP/1.1" 302 5172 "-" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:00:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:12:01:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:23 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:26 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:27 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:27 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:28 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:30 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:33 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:34 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +151.222.210.7 - - [01/Apr/2023:12:01:37 +0200] "GET / HTTP/1.0" 302 4733 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +131.226.91.104 - - [01/Apr/2023:12:01:39 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +151.222.210.7 - - [01/Apr/2023:12:01:40 +0200] "GET /accueil.xhtml HTTP/1.0" 200 14618 "-" "Mozilla (compatible; NetcraftSurveyAgent +info@netcraft.com) " +131.226.91.104 - - [01/Apr/2023:12:01:41 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:12:01:41 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:12:04:51 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50474 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96839 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67925 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48594 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15137 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11032 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:12:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11530 "-" "StatoolInfos Uptime Bot" +66.114.254.67 - - [01/Apr/2023:12:09:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10948 "https://145.239.49.5:443/_ignition/execute-solution" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:39 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:00:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:13:01:11 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:12 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:15 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:17 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:19 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:19 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:20 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:22 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:24 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:24 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:25 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:30 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:31 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:13:01:32 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18359 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24449 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78445 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101156 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6684 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET / HTTP/1.1" 302 5228 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48594 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:13:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +99.107.160.0 - - [01/Apr/2023:13:19:37 +0200] "GET /robots.txt HTTP/1.1" 200 5507 "-" "Mozilla (compatible; Googlebot +) " +49.151.155.5 - - [01/Apr/2023:13:19:37 +0200] "GET /accueil.xhtml/favicon.ico HTTP/1.1" 404 5831 "-" "Googlebot-Image " +115.167.159.114 - - [01/Apr/2023:13:31:35 +0200] "GET /robots.txt HTTP/1.1" 302 5457 "-" "Mozilla (compatible;PetalBot;+) " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:48 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:49 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:00:49 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:14:01:25 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:26 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:29 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:31 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:33 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:33 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:34 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:36 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:38 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:38 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:39 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:44 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:46 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:14:01:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6386 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132301 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 2547 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11427 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78444 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101155 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11532 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24418 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:53 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:14:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +228.94.0.141 - - [01/Apr/2023:14:14:42 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11024 "-" "Mozilla (Windows; U; Windows NT rv) Gecko Firefox " +26.174.19.135 - - [01/Apr/2023:14:28:28 +0200] "GET / HTTP/1.1" 302 5125 "-" "Mozilla (compatible; CensysInspect +) " +26.174.19.135 - - [01/Apr/2023:14:28:29 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15065 "-" "Mozilla (compatible; CensysInspect +) " +26.174.19.135 - - [01/Apr/2023:14:28:29 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +26.174.19.135 - - [01/Apr/2023:14:28:29 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7356 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:58 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:00:59 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:15:01:32 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:33 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:36 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:39 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:41 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:41 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:42 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:44 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:47 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:47 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:48 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:54 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:15:01:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:45 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:15:04:51 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50476 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63577 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 20101 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 78477 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11500 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48626 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48098 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11498 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:15:04:52 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +75.66.233.121 - - [01/Apr/2023:15:32:30 +0200] "GET /robots.txt HTTP/1.1" 200 5546 "-" "Mozilla (compatible; AhrefsBot +) " +213.158.166.229 - - [01/Apr/2023:15:33:15 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +213.158.166.229 - - [01/Apr/2023:15:33:15 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15066 "-" "Mozilla (compatible; CensysInspect +) " +213.158.166.229 - - [01/Apr/2023:15:33:16 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +213.158.166.229 - - [01/Apr/2023:15:33:16 +0200] "GET /favicon.ico HTTP/1.1" 404 5793 "-" "Mozilla (compatible; CensysInspect +) " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7357 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:43 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:44 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:00:44 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:16:01:15 +0200] "GET /contact.xhtml HTTP/1.1" 200 9874 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:16 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:19 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:21 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:23 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:23 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:24 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:25 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:28 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:28 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:29 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:34 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:35 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:16:01:36 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:47 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:47 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:47 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:16:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11425 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18357 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24451 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67926 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 7077 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43750 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET / HTTP/1.1" 302 5196 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:16:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11001 "-" "StatoolInfos Uptime Bot" +218.85.180.254 - - [01/Apr/2023:16:41:37 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10362 "https://145.239.49.5/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +49.151.155.5 - - [01/Apr/2023:16:45:18 +0200] "GET /robots.txt HTTP/1.1" 200 5507 "-" "Mozilla (compatible; Googlebot +) " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:00:54 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:17:01:27 +0200] "GET /contact.xhtml HTTP/1.1" 200 9875 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:28 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:31 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:33 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:35 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:35 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:36 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:38 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:41 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:41 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:41 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:47 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:48 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:17:01:48 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +121.167.173.172 - - [01/Apr/2023:17:04:40 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 10326 "https://audio.libre-service.eu/" "Mozilla (Windows NT Win x) AppleWebKit (KHTML, like Gecko) Chrome Safari " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6388 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/infra.properties HTTP/1.1" 200 2159 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 43233 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 96322 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu.properties HTTP/1.1" 200 1941 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/www.libre-service.eu-metrics.properties HTTP/1.1" 200 132305 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/services.properties HTTP/1.1" 200 3064 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 19584 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 50475 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 18358 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 11426 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74128 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-public.png HTTP/1.1" 200 24450 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7182 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/infos.libre-service.eu-logo.png HTTP/1.1" 200 101188 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 67894 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET / HTTP/1.1" 302 879 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:53 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10820 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-infra.png HTTP/1.1" 200 48099 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /mentions-legales.xhtml HTTP/1.1" 200 11394 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 48627 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 11033 "-" "StatoolInfos Uptime Bot" +14.96.175.21 - - [01/Apr/2023:17:04:54 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 11531 "-" "StatoolInfos Uptime Bot" +107.200.222.5 - - [01/Apr/2023:17:22:35 +0200] "GET / HTTP/1.1" 302 5123 "-" "Mozilla (compatible; CensysInspect +) " +107.200.222.5 - - [01/Apr/2023:17:22:36 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15064 "-" "Mozilla (compatible; CensysInspect +) " +107.200.222.5 - - [01/Apr/2023:17:22:36 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22295 "-" "Mozilla (compatible; CensysInspect +) " +107.200.222.5 - - [01/Apr/2023:17:22:37 +0200] "GET /favicon.ico HTTP/1.1" 404 5794 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:32 +0200] "GET / HTTP/1.1" 302 5124 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:33 +0200] "GET /accueil.xhtml HTTP/1.1" 200 15065 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:33 +0200] "GET /charter/favicon.ico HTTP/1.1" 200 22294 "-" "Mozilla (compatible; CensysInspect +) " +219.177.137.218 - - [01/Apr/2023:17:24:34 +0200] "GET /favicon.ico HTTP/1.1" 404 5794 "-" "Mozilla (compatible; CensysInspect +) " +101.130.81.168 - - [01/Apr/2023:17:53:41 +0200] "GET /robots.txt HTTP/1.1" 200 5519 "-" "Mozilla (compatible;PetalBot;+) " +25.200.111.74 - - [01/Apr/2023:17:58:33 +0200] "GET /plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg HTTP/1.1" 302 677 "-" "ALittle Client" +25.200.111.74 - - [01/Apr/2023:17:59:11 +0200] "GET /plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg HTTP/1.1" 404 5877 "-" "ALittle Client" +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/chatonsinfos/libre-service.eu.properties HTTP/1.1" 200 7355 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 13492 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 73611 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63060 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:45 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 43760 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:00:46 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "Java " +131.226.91.104 - - [01/Apr/2023:18:01:20 +0200] "GET /contact.xhtml HTTP/1.1" 200 9873 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:21 +0200] "GET /services/audio.xhtml HTTP/1.1" 200 6716 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:23 +0200] "GET /.well-known/statoolinfos/libre-service.eu-logo-carre.png HTTP/1.1" 200 14041 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:26 +0200] "GET /.well-known/statoolinfos/qrcode.libre-service.eu-logo.png HTTP/1.1" 200 45609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:28 +0200] "GET /mentions_legales.xhtml HTTP/1.1" 200 6560 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:28 +0200] "GET /.well-known/statoolinfos/audio.libre-service.eu-logo.png HTTP/1.1" 200 74160 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:29 +0200] "GET /mentions_legales.html HTTP/1.1" 404 1012 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:31 +0200] "GET /.well-known/statoolinfos/minetest.libre-service.eu-logo.png HTTP/1.1" 200 63609 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:34 +0200] "GET / HTTP/1.1" 302 362 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:34 +0200] "GET /accueil.xhtml HTTP/1.1" 200 10852 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:35 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:41 +0200] "GET /services/minetest.xhtml HTTP/1.1" 200 7214 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:42 +0200] "GET /contact.html HTTP/1.1" 404 1561 "-" "StatoolInfos Uptime Bot" +131.226.91.104 - - [01/Apr/2023:18:01:42 +0200] "GET /.well-known/statoolinfos/paste.libre-service.eu-logo.png HTTP/1.1" 200 44309 "-" "StatoolInfos Uptime Bot" +209.141.57.46 - - [28/Apr/2023:13:46:34 +0200] "GET /?\"\" HTTP/1.1" 302 5143 "https://www.google.com/\"\"" "Mozilliqa\"\"" +209.141.57.46 - - [28/Apr/2023:13:46:36 +0200] "GET /?\"{${print(9347655345-4954366)}}\" HTTP/1.1" 302 5143 "https://www.google.com/\"{${print(9347655345-4954366)}}\"" "Mozilliqa\"{${print(9347655345-4954366)}}\"" +45.61.187.81 - - [28/Apr/2023:22:13:08 +0200] "GET /?\"\" HTTP/1.1" 302 5470 "https://www.google.com/\"\"" "Mozilliqa\"\"" +45.61.187.81 - - [28/Apr/2023:22:13:17 +0200] "GET /?\"{${print(9347655345-4954366)}}\" HTTP/1.1" 302 5465 "https://www.google.com/\"{${print(9347655345-4954366)}}\"" "Mozilliqa\"{${print(9347655345-4954366)}}\"" diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.2.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.2.gz new file mode 100644 index 0000000000000000000000000000000000000000..36a1d31293600859e75dff40bfdc29abe977b47b GIT binary patch literal 9192 zcmYj#Wl&vB(=8I5V8ICoOK^90cXx+_ySoGp2X}XOg1ZKHcbDLDaJ@WleLwDxS-WTL zo~fzoJ-b&o5eOb0Lpsw83fkS>o!-XM*a=AI40Lj{Gy&2BUFnQWOn}bLbVhdecJwy( z=Jd=EXL=vbYwXD%o>7Srb3%nZ$hH5+|Bg>{dORE$ioQSKBi(2(+Ar0|c*p`7a@jaft_@5TJ1}9P-~Ewn#ENe%~M>8-Q@?OHre}8;m~wzd&X}p|#o}lu>y6{d%{_gT2cBG+K|vl^ zv|t;&BOnIO_FcQXJ;mraSwJ6}gDjqh%MCp5vxEy_;6#mtK~E4QRuNQUk(VHarCVIq zcs_4T(7~=T66Sy?DO_p(0`CYE9s5`6XuMz)MZKS(mPpVa7RFE!Yyd>0+n1)u2qUb zFqL+gf}4C7q3;*=A8te_xkPuDls&NqoD<=EDf@1z%RbCnA|6}^avX`6jHAO7e>*Ba zeL6loB>xAPRm89$j30~TH%*nV-ep!W6YF;%Y4pCCB3R!juoXbN14xM@mLHtZ%9*v5 z#;Y#Fv8j?9O3FeXLWTyjsbYVcK?e}r0jqv^m$&S2BtkX;{pca$$8c7?`-%!kfn^Q| zQ;gyklIti2F$eNo%>lJ*G-$z?{n!20m(I}W!Xhb; zBCEeHVVkAjl){{EpanUro*jS#$7RhTEAO;8L^S(0*9Y&nxm|fs83te8>%3@|yS`sJ z!N@hHmC@^zP_J)7niqETt#5Ed%R1^ML6ALYi7Zf-cDp{~hJygZWCYiV+k{W~kI!qs zR?e(C5u)BM%hp6|>@rkebU7_$EX-as#*mrH+{TIgHCS)3^B^0 ziQbi|2f@2@cJX2^6TlyKcl3QoM6Dh%;?_kpg)Rh;XD~1u{>r2%-LKDl?=gLx)65a)6=pmWDRRLz*#MXC zO-ipMoB<2|qeQ;2D7{qTQ7pooYiGeVb}2LY;W>fu9Z|E$9kOG{uV^V8TJK#Drwwnr z{Va+DO8o7r3~n>DQxQ;!DNHSr_4Sl6CH6H4l*u!+uo@K&vWaWC5jjw$DME}f{1A7) zM>rvw64$|;k!Jg*;RYRC6T^-EnL|NMRarho&?tT-owC^^~|X@cTdq0Uuk=FNtOj)6XPLm0075riCcjHp$$f_8<2uk^pRQ{wprtt--ir1AL_?Lxx<48DXntb;|y2I?^yHdeK1uBI95Tr`<=MC>VgHa zAhS~4xKH>V4>IfdwAiQ*HEvJ{3o8K~#IT;4e1@STD6O2IAG{nrehdiO3H?a}&H0sN zBd7cHC*xyqj}{qDTnr4;aQ`pdeRCn?n_A-HK~X;591q>V!1bl^Tqf(_*n?k$7Z};j zPUtJu4-OGEIGz%NF#;J_eE(v-D4Zz$gSas{;OQltuN~eo@8~Jl&obN4 zQ8nc?`(pX=`obnWY6*s@Wqsugo-h*%=x{zsD-+a&)#d&|_Irjh-&Yb}!A;H2 z+rFBx8XjMFKhpbu?^w#B_++h2h(4#jv$#5wYtkuKUWHF-Fh12z7t2J{ z$I=Wjf)8b&7bP;9nD*C>=NNgW#d1(s3YJV~Wy?45L-;-ZBzAPjDlapba0fa`P2Y2B zKXYT6sZHHH@ONHWr<|W4klavtb_fq08y~f*h^iRf!W7(Qm2?Xk&LWNZx2~^K=#C%K z$2$;$1B=iB;mBySQ|#&_E6NtIm-Nn-l;cp?)b-qjo>EDNfBT4}3$Ugs6GQQ+HU5LJ zPhiwY6pxaAPGTnZQ^FtUe`UB1m?Z`%;}3{P2R%wye)pGrF#r1FwWC*S?)V!K)z@8; zBB9qp)^K#+?a*0b{!d5n7ye_RRx~8?H%mG3!9rH6z2Vt3QNv@5P29vlJYi=--hJ#V zt^(F^@gXjrZzvX?H7bZ`jw%G=rgoRu(1Zu6yx7UR&GY!LI&c;YIf-jR6KZuRX<=wEruyA8X?Q>O=bg_UK#Ca7TfO?)C-?lz2e zYP8ezmaT~SJ`<_A6xs5Wl(YJcH5~8?a~Jzo1c1jc4f_Rql9wC!Oku(K9(z%RxBb6# zi-2Dm^9$B$AiN!&HPy(8+#(l%_&@5T_0xAFJm!8{#}J8}2MND)?AT$`Bi8G`!O)VM z41p5MoiPd84a_+>6->X3ewINwm2U&J&j&B;9 zMmF+AthTUfZy;btC`8IwS1=c<83+!0c}Bg`(b>pk{kf|m&HI`ja5s9;^rsFOOk;Hfd zyeLC#-4w3HNS>p)SQ$Z`Vte-f}`*-3VnTjLcs0v$fL z_;hMr1Q*=$eb2}$y+`qJKfm3qGV#;}WKZx1T0Rf|mY;KB=V3GG@RA7+*PlHgF&v2#hUI5CeN8yg#4zE)UFCdeYMcut$?usLi`Gcfi$%)3eRBtA3; zL_DR1eNJ;yKORNey7d9zDS}KkCIPV0_!RG%{O~I#m<9Fk>$t=x^>R;U*1i~^-DBSD zNm@?}KXj`IWUyAgZ%QUuX1plZ!2!3o1L~J`oWix?%-Z9L8v^YAT?AL!_d=NZyzXp$ zU<_16c2)ceBwJMRYNIHh>JyLHveCkr|1xW8e&#}2X! zjUf7EJJ#N4R{06)8^;yaU>{v@Us*?c6V*_HI|or!tHCYFL#*`WWyzxB@HHix3$X1q~e%UHep0R%FG##F+NBnIV~Ph)aB2ryCC;xAKoK zZ-8pfNxw0oQI2=R1$}jyRoh)j{D^Bus`-C{Mwc%B=6#AZN6wEv!R6-uZcWOEu!us8 zO94CZ`9q>Y6Fw~>I=4*-YXgtS{B)f zKT-B!7|pxceKC^y8tXwzi{92{KN3h%TJ zV}>%lzWS_mV$N}brKB%@mHa_Xlk^Nh<~h+95mn1$C$Lu3gOU~`j%J)K5YpmHU`Djp1`w8;6dO@nTUwl+x}zXRuE4bcMgZ_uZBh=BXd z30SC~(vu1>uE?drJKXpv*rLWOxd9A_#za+ikI7PqfIIHo6>`hJwWR_yEcz<*4l`k) z-oRs`&PMGDMdy3O?ok8wTO#1Ne(eh3-vOMeJ!1W+0EJ<3`oOt+s?(far9qMZ-{&QiC@yBRPJIC3E0E@)!PHj%bgW- zEFtxAHVu4v8Z4g`pAZrtcLIALmC0QOmkbD&NaHfj4;RjvwK1<*&;py4(gRa0(*lWh zZ^*~CaM-BY9=n42+-f*h^C zWpqK(vu&9ZpHhOO0}VCy`Ku?c;@k2l71o3k(ty?}TMqWvvA4%`M@)!p^pOJA8KokD zhvGqv%e!H@?ny3^=G51RX0AbpY_Bc2FFO!4g=(n@OloaR@$&>+xIXae>dSW3|(d?X}y5bd)aW46df!}=+9S1{(0F;qp6 ztdNDc(C2ZDoqm=w1s{n1=NXk-3@cVwLPvwV!-X^d?^+9M{+}H8Ne{DRi>3{Uarl(x zm9rt-7ZDG#^(>R{X-`yaK7Ne|{LZ^TEViIZChsh2_N(v`Iq};o?&CNQi@$D5+dq_- z8#ZaH5a?3vPDy6dcPlIudZB`$`x?a2SK{Vbl`i)!UTi51%AQyA^hPyiK;V{4J^pGG z66zC!SD>nZQ=93Nk{5(WJVV0ve}EcRu$C-{7>#J}t!_tCnho%R{`=8hc+p2n-1 z%KoCIS%fE7snp_A+x-V9Wfq^>uJj*%(p6MM=qWprSrNjm;!Q4lgm_-Q_1b^|HU3HU z^HoGdXqzALWT{1!Yfh;}>8b8+M1($pMBb7r>wKdIUUtM{dY!!3lKQo#u7hoMjI};z zQNDG?tOhmy>gjopmuYsMf5=s6>Y3uqboVC8;ofdQMCj(7+v6AERi?EUgh1<(eDt3_ zg}L~d5uxvQZp(%@=j=!#ns%iY|BURz@KrD6A$>l3T!fr&)BXDa^E~bdQ%^vG(8oxF z?l@e3w+!uX(+==H!&{r*Lg6RMEJ*0KPvyl#G8XCdadVqHRP6Z1pX=t$gla`xF{aHj zV8*K|FDCW4Y-rc9*>MwQuuZ}aQQ$*QXN^Xo>nOneB`!LvI1JV9qXnKiGyMOl^CJ5ocd0_;yGR)>YCM%yUzaEX5?cBDq%PSu^B z$;Xb=UgC_+WrspWxO;Sotgc%ETa#=)=*FsNE!=6Z!*QEmFwcxD;chOTI8cVGhKAF; zv@hA)aGlFZ?8N^GvD&e$fgX#mY|zA5go$7sPla#~fXp&`8*FkCUt0TZE`Hq_DqS+> zrL4@>c&uCgt__*Cqwb1jhS1KyQT7YRm1#pq=l_pK~$ytd~#h; zK`CV*TEUz_@t3we8a&eP|7Bqz57qDFdX1N+UMsol@lN35^txHg?c-8lhOzxOc$ZmT z4z{TtnBgH&(NJoKh;>?D%`YQ!oaoYppA>3*`s2Em{HUF_U2;!OEm|(%1vBrVbTJDv zCnyEvnf=ol!Y|xj0|vsp;zyP{;OxJOa5Ls9FB`vU@Uv(BSUbLZjjEjS{;kS>LiC-r z!3Ks^8cQh((OX^2G<4JmEAF$3RueTV%~V4t(Nl^#4^3`V;+DojXQrOT%Zq@=TL_F) z5({=Yz?&=&kDbBlCR6?NBm7-KO={}WeZ{FJD!DY}_DD_osYujBE!LR%Aj@@lO*NRm*sPI)zidB&kc6MZY2C)|~vcyONB){VJ&Yqs)OerkWfd0VKM{sh_{ zGnY-uizN>hP^smrCXjpf&|sYa9$K>|<36@FT3uUh2^?Q5_Un9!VRrjue4LceSE~(X z&wj7X%~23li&|Q$?JuykoFbVf? zqhzOlrm;}YtNp5~#ZmO=~0`eQI@&bG8QUpI^oH#X7jV-*jmTMq> zTrLuLVI$J&A;-sDzvP0u{RM8N7AK&7Z=3ZtNu^Fxk~GFznxfjVoJ^CpM5SvKI}otd zAn&qUMW^-I&UY|}uEnPF3z>;||CXg%Mza&K!8!lA2)d6K`;YmyM7|z6>_Mf{B4@H* zkKatf3_t)h$ED9iuc6^xnnt^mFfZuN9g-Eae67=INLdb9Lql>TFov`fp&hUd5BX#j z8XgWx8jSJ};GEV6g0nm=nQ z)fP;-#~L2e1)E{WJ!(U5Bzg3Jw!SnGJ)uOv!{uR#l|@x@ty=$C)xwDUW=A!Wd0 z6nI5@ju)qmGQFIMW)#;qKJ7^EfXNgp4+y?nw>^fF;XFh4Oa8oW=I28S@p#exE=l-u(f$wy8=+DCb4 zp296>W~rs52*&ER({vneS}_H_(#B>C20=qIpn$t&YnvL;X+BS^#el6w*0I}4A8+4} zU?>&1UX!jd*kYiqlGvq{#z!rp^VP9i6@fr6;H5~K*-6HsTQ!s&f6uQhK6V{yogrzY zJ#E*oEb^rx@}-EGiqqpl!%CdzK?ay_f7r7&=+jc^S-)O0U(C18faS}C@o(F&pN28V z^WtCNj|HFE{x{)qB-V!tUIy6DW8_3SbTbGP)ks*^?4tS;A2m33qe;O`zLj$ULtoUu zBe)M0hsk&s8WR*E>kMkUO%u+wsz=S-hhw`^8*?<6lx&vLxN#?gujWCGsz)hgrC}lo z7iG@fMzybA1fOS&hB1$PA=LE_GPDh7_;H_T783?PW7r0|)mA)V6JD^oz+1veY%58V z%C5tu5L_NVQr{qUAZxYk250-=gJl$_qWq^g=`WVHoF!hV%oB=y0y)CU5a?&Db^DBB zWVW8Cmb@_oyi|+ToWd1w?pV`g^oi|)BX#o?K0$t$0Y6@VERClDgX{~=r z%#0woi7k-=MH3-T@veXt_^YkRD~6|hLTCr$Vmftz`PL&1F8|&to|6ht=w|aYz@w^R z`V%xkgwKOaYuvY1`a*nJD)ZZX;UChztvZ`i+3`;H{|vGj#n_xcFFEfw1Udaa8AK%; zrChduo?-M|9HASPeqryxrp^N8ksP3-g2s*Qa<3UR!wF)wn|~7+{#mS|vdd+ck6Tz5 z+$(VFWGurwUl%lSW$LW`zd#DwCXnc~LKZ79oZ;IAXi-)V&`u+nV4s9AA>H+*`g$3C zhVN_h;s0U>JucqKXqKmsTMzc)|KC%IA<}ZO1Q8-yL1QfKn9&YhrFVR+iYaOdykL7d zUFbjRWtN!cVvlh4i>_>FfOQMN+3Y$lt2;GR-DPOUpV8x@|CO`bb*jP2{7G}@%+hY7 zUX0-fP@_CV&PYq#yF=FHZ(NNOy-m*kuDev7rbddV-F9nmTbIuX-~5x`YC{<+gOY%6 zHQ=T|<;Mpf_&ZfebJT0wQ0RH#1 zCZ*48wkBz_Epb;(sMu?Pmo1JKQ(XVax!Iw+G4)nICJDq0^A%2Am$q+hfl6%zTvMN9 zo^2<^?rl*u-hH@YVs`jn=o!j6MP7-}=cD5pp}r6LzdzwNef2rlI!&d(AZ+1Liv3(?VB4@J=U{0zHr(* zNv(niQ70#VYe?qxw1B3x8ruZy`G2Z$oL(b?&J&nS)2#jP+x;sqJM4;kJ+|5rVi_)P zh(j4uM=>F_)3yD4zL?j`H($JpIbc5{q0DBQjIuJR2aN^(C(d z>7y!G{eV>&dVU(|`@yl({|E-utb8st|x7%L5al>!9wX(M0KnaM0x(01f4u&0By;13+qBMY*cEJO^1eC9C3 zKeEGp?(TMQcPF?9cZURb2^@k;aEIUocRrr`{x_Q}}TQXaEGMSp2Te`b5nL0T;F*`V0 zGjjmW3?1Fqxxc*^7>8UhIZc5InqXMqVuTuGCca; z`-@6t2$LmT;L%%me>H=fDhgr0pnNa9fE{KPjfTO5Wu-JJdVje@FL)Ia77-&GtT5FH zP(|oPHN|^J^Zu9QycL$Z&2Q9zOEQ1PFQjWEZJB{1>zjg2bGk2>ge#R7B$wfe?i{9A z;JDkZunXz`@cyZx6URY}TVl0kjdp0;$4Ps)+S2WJ^o=l&y zL@+5#@wo^B(TqF=N@Lb5-68}h7Z!UASsbpi{u?LrUhx@9{7!O&M2Og34^5+@Mw+X$ z2DCd(<$EeiOF9JOgg74|&Y`j?Q%h@nhNX+Uu2CI9ap`tz#;rQaqazI7Yd2kL4PN*7 z#HRR&dJ#x(lb}(FdoMYGJXcgeJ}(?P5h_`q9SB>62SetFyrY?y5p%uRSGR{Y%g=m^ zC3C4g-87d%$jMAyA~m18u@%pS^CH@ zvqTCAbF(jOsI1hrO~rsu$OJnB1sw6}uINuoaPdDunRc19k>ULj+^}qkCmtFNvjbPm zqjWSh!$K||?GfV~EKr=+C28YT9Yz+O);?_AJ`T?{gtL9uwNu?RP&9JT`&aKmu+@w= zp*?2X?fGsa5N($;&*eU*l?@6`TrLWVaLi_%m@!I@+rt(q(wcT)MvNR{96(kNCFPosD6Z%brme&EZCQR~)-Gc_x@8+W7PIpik2Or~vg>)bp!lRbE0soL(xd{H#c7lgH-X;l zXlqF*Dk+v@HThBxu&R%PE=`?Mj!z7#UNb4&FHe&=NG6s&DX2>g zw^OisN}EZ55z(|O7rKGv=CRmYonhIW-kTI#&C(tHxah*~>QF(@qVUniF5os57LKsE z{_(vNy{ueCr-n(ap-vEmz+mH=eFDtekn{s|l;usp7-waoI;Y}W)4@N-cA(anbDB{? zl!fbZTxMES6N5%-iz?u9->NoQtNX;2ouSlJ%*3H$#a4BxwAMS_Zi z0&0Oo>%U4Z)PDzk!`0Qpq4`K$`seB4_i?(b_`?Whd1VB~ZuCL2(xSVa5v=IyTWp!Z z|LS~-|2k$|kk{Y0L_DxX8|9ZVR`~5v?=+S%eyDE`ZOt?7G%D2XUwq_l#UuSOE7D|2 zg}E!KBxDj|rl%DMnGC*2k=>dU8&z>{1E*Qw`(ou`;~A<=3LIX}hH2!utk>A9qOUjP z$amz1Y54V>GgL{0!e5or(-*Mp;u5VL`p~Iv1bTOgPXS^-U&AQ#bWZQQ{-FHVD)V<;M3OmIN#rY{~O=3vaNDzoWy70Ky^K0J0Y* zqC6ThPNKn(V|lN{R&#zwQAsgB+9(Xp%6*$AOHR8&0tsE7g=K&8H1wZ(q+5?85>7#T zXXewK!ZjZufZPn^qPV@OYyg&|)lX8Z5YjJP>wbL1ghUF#tl*%=Ix%bEC{hb?&p`kg zCOn2q&j7{0?0rrR1_CiI9|LGwpq^z6FG|X0S8FGyKdI9CZoy%T6}~Dg+NlD2bw!Mg zcWluUF}~b&v}>?r9UUVSIh3y)JTceMcz9L)qmL!UqLt{~$#su-UStya$-ZhsxU)02 zs@^b*81z)JC#+Ee82J@Fb6NMjsq$Q;CjcRqcOo;>E-X63M+^A9JANR_(~G!nV68=*gi` z|6f3T^0Y`x+>SNokvO0gjf%G$jE9#zAxtFtF@l^*1nC;@ik~aWNsJ2zU5rmn1HJp% zcC24%W;o!i>jeFgOTOfbN)l&8QHX$t>~+=|AZL+N!8fv(UiugK{2cyM;N`Zf#PbFo z(Ncz~IS2mut`@Q#%z_S{U2$KN>3rmZc?`n-;8oWC_t(aRS^O@^F8z_j`)mbtq;Fl| zFmGDM&X$M+SOW9fQQ~D`o+|~U)+$M(1}Q2WL`+h0{p*Ev|3JABwz8WGiQSAl#G~?M zsnUgsIne<7^GtpcN8)PAR=soT7o@CxK3xI6?x||E-T4&FQVuB+}R68(8bQJdBq=wX4W!1l*V}3j-X01!#H2^B1PjbWc6;hKdw0ufHzPpguNQ1@7U!%AX;47`yI{lU_!!cSHl z3A{e3FrusKolc1HKlDxUNd^Vka6r*tb7-ELU{ecI-2&&tG_z`Z5O4O?Ydt2FxifPe zbJEcIaGtLBkJxn!^8!F#m_e~iam5Byw%^}BG#rR6A*$sbpgirD64289ek*_WKOkZ;>O^i9~;q_U|2w-(fYYvv2QULOccaKCVpTslUOsIlxwoI_8- z2-(#edh#xz3g<$-N+t>2VhU_N2yn3bHAlVw^coB6(FnPynz4H?=u}$r$gg>nc9xuz ze@%$Hrl)6~ZlN{ybTaqT?J_!18*tX2E6`KlBm9}2%CR8=%e1zjGxgZb?;#;(k5Iom-+!Qy;x zbLs6-R0zkCRH2AdbYpdSkYaNQGrFkx&1(%KKZ*D}b?3+|`9**rCq;j-=&&Bj+GE9* z`=;yH^|@vg_7fkH%xPLDZd+jvr_vY8dp4z`R$>`8A{wx^xJte@iA~e&r)Jo5dn8zHI*`h>@xebO`c~L7uo``n9ic_%+!gi1lKs)=(S{p$LjR`nFX8r9)ZHN# zDrtpj`$O!aA*wV@`h}rK^O9uW+Kx|n)~ZJEjSN%mP6;>eS`KC8s|NI?CM50(|3$By z3=7xndh58L84*`tHAtCb^~_GFeY5z`onx_j_QFI$8@CKtDwI{qW9x3!he@39Z$KpS5q;lu#@&KOT^g}!ovScKdvmLc>h^SdHl2F3Kwf; zyvCn1Krpj}q1(UQHAen}blpi=w&jUcC>5U3aFF2k7okVYO#3P20P{}A^5;mp1%aj&hfGi8%zhtN}ZTME)1RH~@Qxz4NI4 zZmUPbZPoIO=+ZBelfN>W97X{QHJ)z zpJGwpG+bma!x?@8um?aa6Z_RB5k79TG8{riZnvYZ*7LIZhPiBBMv^$Zu(3qdW5w>5Nv2wGd$Lie{*U z-GxVweF?4*@tT6Cbv^P>;}bck9sX`i!fVm|J;qIv(u>ryf{&J(?*4l}sWUi^Bi%sL zFc|?-i!S1KCjK_=1HeaJNHCIJ`s)Ad9gNXae49lUkoIoT?A^64^)rpClFUla(zbos zrLVC0!G~mP)1kOE+Bg(GPwEu8+b9$Nk&L;a<<(sEhUNHNUS(Ldw_8KI$|l=d3St6` z=dWXZH2bAn=tWYrDJFxheYGB3O5a#%RSP(IhS8d3QYp-;rO)kahXFgPR?q&5>w86T zxNeVDhrzZuzQDRPe}eG#gK%nLYM=UXswtFpA~9u-zQwq_rr8aNYo{Rgy6m&kJK)bs?}F_#h%;ESA>2nYvx~kk5icTXwM^eMk);QU z!&!8=@P2bJvyNd9K^%jittFU9fzNf+@EaM%vn;|sHusT$9D{^MLssU{J{sq!9z*jc?2Rt-Zn)uIOufkzX6XdmhUYIK(-mub?jSdHZW!b_G zsA)dkQAr+hs6zQllixJn?39(>4QszNjOX5omSgot1)<^rx=z~+qq)TV$$zZMCFtZF z6*4DWgj3=m_P>xU!U=U4D^jb9u=OZWZ(ieY6Q%d*#6Ka(e;3U@c-Z_s`7|2e`n5=_ zQ~8x_nN6ntaY(QIHb-RL)S*|AOE{+CAZJRbb#mFyu|WdHqN)Vjob@{7W3fb=%%O;j|daEfZe6p0(!lf;F! zqQFCAdH##ed@qz#N`plmbpG!ms@x7OWY=<5DPZev;a^0Oftn$_lu1Ej*QmFUAUjxpoe-8nW z>NE!7uziM-x9GY%m{?joQpP@3s>d0gv1rW3j!X#FsfdU7386U=K(>(+*dW~!@^{zF zPY?DPD)U@31$4akC&vQC$0^q>nR1`NhD(65vGuaQn(NkaT|nvm8|d}2nRJrQU1s~8 zKlT@D?NtH5)CJ*KTYHj-#70jhVu1tZHukq2=7^rvul%GMbb^$=;c#t9gF~xdcgR3= zuY1f#pK^38Ml9^?vSddRk+fcRmD~jkToOh^`+P>yC-qWXWXGq=#Z`lhyy;WnIb3!E zM4U`B3--7VCw0#Y8Vv~OE9Lz!#^qf##w;Dg9{)sS4mxK{4jt?rHmU7^7~D+X%UJ{_ zDWikus^z)GHCR$FUFicHLsWx|k}hWpeQ;; zj^lqKFp8p)d1&D5{v0((L>#3KU)cRip?gyW}$#aJSKQD_dzh&sUKG{9ETz{z)0f@Xq2f}!5mTCyf=+{_{s6jmb2)KQnJNXk4_MvO9PxgHQ>tx)J!7 zzL0wu#q&%+>oZz$4j(;>DG3Q`Gs)l0ePxCg{BA~rfct4j>o({`dmOqJts+M+o_%Ij z{iU>DOoUhT&TasIAT8P z+=@n<&WUlGg&Ty`rST2LiY_g<;L^w5NvEqQ5#5!4Zn-oEjuHt1vV$6!T+=G#ek&Rj zRvzd;4ZZ>$=o85@DU^qm{r5G&GZ_QlfGPlvb8~^LJUqq0n+&N7U@aJv)1pP%TQZHT z{#hTcF*N3G6SFD6y@0Z=o<)bBvJTZRq>ZBvH4#a5j{mq}wLB$|E#>XL-mgta^QujI zK+DZ5y9|4wrBLkcWddR0{e6>ya1-<5=BnT#sRtAp$j?!N^9)Y_^m}AQ)U>4*x5F!4 zs8H4(3P#24=c(8{$`+A<7xyFDj5>f6ClTl-D0WLnf)_f!a)O`KWG20B9`Zv0yGA_- z6wU8Lif_3?6kQT+UZN{~k^-h-!qpEU2l4kI2R~RY*ZtPH>uKMEL|}FR(oo(V`;+Tr zbi=Z#)Sf83iL(G%C}`StOrn;>*ji$v^PiW<9rg{SDZh$%K^IOCM>`gEevvFGf_;9> zs7QEzrV!>02$!G(tiA(PtW8hFL4-@aO?)=n5_8KYaQ{LGvXVpY#4&&&&aiw1Wq86Y z%C=0RiCsXER%c~Tq;#6}=l;h}UTYoQGxl+BS}mNecsSzd^btz9qOEZ`SyM}|oaDx4 zX&`*FPIkVq$K(X)1qaKg7Aq(obFEAPJt4b^gC9Yvb*F`|KN(C$rXI=#m<-$lUj~K3f%|!%h0DgwQjS*(JK<{CtA=a7flD% zY9f%@P}>S4G`AO4dP;Fjbc&B77~?r`*iAPN(TU)kl;GB8483Y|LyGX&{>JyDHm)hv!+;M7nj3S^~)2hC4!ZRly7|8 zQ?%E_OLA@$g&M9`ESr8eELs^D{^&zHMZ4RaN`63kyjScnnvUCUxKRsG_KKTjai_r` zQB(-K_CLA*qdouRo6R-KR02ikfp`r`_or$w6nLgVCXQIgs)Vf8s2%}J$Ju;O)6pIY zTrHkNDxFz^?M#N`Fr_FZg|XTdocWAW+1|lGy^u+?(*D}r`d3lJNlDjuG&(#mZxnE~ zx{5{aJDo@)fo|$1Vi~oC`ipWmDYs$ zIH6(-3G_>kOpilMPPC~Lr1%89|IKquk{$0Y^;I+9q8Ta>NVHUx4BnkqW_7W0J(0#$ zs3+s9&nsbPRM}P_&Mr7aAefbx=hJhlr{*f4FPBsEaN$y9=d4?Js<3krgrH+^b9Gde zVgFv(FJID#eX|h_X!l2YcsVxhL1dygR>OixQr7ojX31pL2&OOrb3BXG`vs8Ogi z=AgZI))(`?{RyV_gT(y)qmXOft{Bt?1apTl)Ty)tW>Tj{oAX*8eaBc%oeg)g#Y@C3 z$sBD6llE|d+u8TI<%8-hLI-xLC*9gxc|{81J{F3{V(#`Iq=24sk{_PEI@m0sg5H_a zHQQ@Xors$_r@3}dg_<)Sc`Q!G&^6@7N+OkTul}92S~VtbMey%g+S*To-ftHr@LHb2 zOrfX0{SB+n(f=Zi(^tk>vVxtV?qUuUf{?oVP|9-`^&F!QPM&bZ>gG>zH5csGWLfeW$%=Y}dA6Q0L+Lb4G=!wa}I!2UhnuG&fj`*{y<< zWj#Efp3!Mg37ee9lm3CLH5l9ZZ%7ededzjeJ-jL2-AVlMeAEeC5eVL+ULvq3cf;bVv;V_@9k zrHlp1P?+N>%NX!b3~mR`usn-#@l%k)vy+Ef?RAmCR<*=D+uu>Aln&^@ zAaGGxccc~7|JEfz2v8^CA2Oqvh8r@gZ~>I>h?8XCIx%h{iT=I8aTGmodP-xv4@?>( zCG-jFTihVbrFpw#yz$bLp))k_m_GMQ^4#j0VQJSewW|F>gT-8^qYyx2QS`$@@N8oR z)k1X%J>yP_aXa+inYe{t^vG0B(DULzY~dTiEf7*A$o9wJYXSOWm3=`$8-P6EO77~) z)-%ZEZ7A)qn{CQc>C2)Ua2JYMOg(%m?h7w*z5gOG|CHR}Yp7fC{eVXljUgR{Sp;F)NW`-Ryoxs=Tbi&s<1Dwm6a~u9WBmP{n zd$#ouwn%s9BecZcj47V&Z+fhul=$(aval2~HA+E}iGxabIA6(ZKacYYUdx11`kXg| zsxmcXr^LL7wg=%a+q8NSb68(ZYn5V3lBsEk;!2XsHDJvMBRGBD_S}J^>{EP*$2@pq z&-vD5LeLa4(*y8CEEEtg7?S21}U($#bF{Jv(R(y~4%wop{IA^){qLNsQo&N27^yhpOv6abZ2Wy*D z%xvbse!MJG`IuCoi4YA`PQTl(zA3r=Lc=?_i_A7K_`be+I{GcZ==;Qit>u`|u{BVn zFqs_(L@?=g-RMQAXbKu#>(w;PH@0JUdj91Jv_P)XHSxM4ehe1;!(&V06&sY9+48%Z z*?MHITH^J6w7Oz=KGUkmDMk3HrTi;X-^l}qmvXPjLALO?Zz`I3eWaA^5N9RW2T%US zEyuVbDf1;nV*aaQD^&SgA}0EmFoaMdb^al`kZ~xJ<`?-T14=L)zno z*ISVuw2$twP_OyxLseQ{?ZS5?y0}g`&t^uq!4g?yAwXIF>99yx;fdM5jp;48vJx?( zp|nC-;vMFuo5g^+tldzhWa&>014Msn7@$-W<`#f1V5;-qkrP14W~tX+5I>8PZUjgk zhAvcr6vbo^AAtkR(eD=k(9J#N05WFe-i?6dAH2!1qL}mB-~K_Mo8uq-ckOZoA7B3Z zE@*c4X%d24xynQUr5zF0C)r=$ur4?*|0o^iC&TS1mS1)`8#PQUPS0EFHW(XK(d;!> z-y9!kcC^3VcDd*)6;9V1y}zHGHfa4;4y?NfYdF0tv|jWmVc{?p=(_+nFkim+k#Vu| zvAdf8{QLWdLBz-p@2kQM+SgYDHw4qxp+X6~OThvINM&))OP5!=gKuEgISL}OwDAoJ z@J8WDOG{2-Qv275WuB8Pt<2j@y@5sFe+|AJ0f8Tv9|74PZzQv~FDH8hKkD4?<@x-m zxcizM-VS|xvwNNo?tdC@Nju{>*K8HydnE}r`#GJ&`Ijs0f)6iopZadOs33gtSpMCi&j+%@dL!$p-eM<#hYO6Vuse|7MuY3u~34eyb>69*3 zIHfV~@#aE1Emg-j+Bij|t94`k)w<60giD9<)b#{5-MgVI5ErJFY#9CR^aXzQ6RV-R zOZd1e5tYJm)^NWB9g$oxT4KJ0KZWYRsYipLU*AMsW@@qO4>qHTOj|=PLq@r;k+Jum z^QnnH2k{k@S#*kj{B&g4{xKh&bF(*4Osk9HNYaCYU7ix1K%~^rwv|$g2^j{1sN_vLv9fk6MXxaYI+$bn z;ejZ-*Fb;tI^CnbTRO@bC&Yz+>Ci5F-?yqmI%QvvJSc)&yR%MO96e=ocj{EUX3p-?!;akKxJs&DTMO7=8}WX7jM06Ys6 z*zh20#wk3%4e(c&6%bJ{Q4)HLYYO=lpCg(F_c`BSb(#vu+m62g z69G03nUaS12a?Z6ag^&7ot~{mR^Vb#wQY)9xwSW8Z*2 zkwweO>!U_c{MTIZ1Mg(hPHG`m6S!ucajlO#)xUzThv{DRK6&=$S})06&aKgC2IByG zG4t#6VsDmiZa}`|0r!KkZQ!6MVS|aS^8Ra&2k}RiKj(DQL{+K#Y~x2#M_`3uE74D` z75U^vGr}SJTm$SoA|C_CQX%(jVkuf4gfF%W0W8s3BO<1~%4OHqUx`T*!!jYJ^)CjGcqPB|aQ;D*lyLqql#bGG2cn#G zxnhnki|_!ps-LMdHihOXGd5Y@;ZXlSZF`DY^%=(ZzB*z_$YPR>?Cu?X&9H5zBmhe( zaV_ulWV{`|7bKo$$OW6cfZFg@k;U435Qme$BO{iLkG?Mp1%#oNgaQUpe8pGP!s07J$;MW*`%h_Q3rQ}e zDtVhnjCAlUu~V0qv_*M*F6mI%#VeHAo3?K%kWoyGdY}l&lMwI1#dsC_e%LY$t2SBv zW0XD5;N96`J*z1B9fZMr~p;BpR}Xx4ON zKf8Rma#m!1Thu+4q2T+l)$-9#?sDUF5;s)sO?yckLWH(2esq%TN9KA*(f;dSysWYH z-S54pS>qb>;%<1mj2RD}Jd(w6@=fI-~*W4;4qP!-Ly5X0yI z_B#3aWJA&Ir4)kO!*a6*Y1lHsqELC-}!H0Sre@-YY2Z(A6l`|+lcu& z(~sBu<8FJbfW)&lBzK>GQd8;x4v2^R4(4M`>t*CDh2H4)^OPHYKzDeGMAN`uO}CtX zujYE0t1*IGj!l-NTaI_I60YLgM$qdzv9@S(;sla~;|?|GPA(Dj2rd@DIc&oH`=Me% z|7{4xS&>Am#caulher~1t|ZzhuWyAok>Pjr#lk5zVUCfwELvV5q5!Wa5Dl#0Hiy>R z@F5P}*#+{vJJR0Aeh6#6WGfe#lt#+G66@Yup-kX02cOLptM_9q7!AoU$5qU)Dm;(@jiYECyp5K519D8s-MyX;ul_4CojNx?rA@`P)4*l&Ym}h`Pfl>i zAlv{8L*S9l8%0(EaaQ6LQ=R-w^C6Op&cY<`j%lM z>t&uf#ilkwkM_u>C7W;E$7n(XVCFcDuo?lSP`u~{)V-4QcS%3oDD}>i06Tuy6V0Q- zx(NUlYa?ZEv!g`&O|QBqzjUTyVU219TpD^tR8*cR@WnS z&X{I4roZo*Y_H`yP1zeiwRQl1%q)uxYB-^$H51Mhd%^{##qU!;#3*OEd`;|QW6yL6A+DPV z7-#q3f)k^H*1VXZ^*CmwccK6{IxvU=-Qu}xs!3L2w0S(rn15Eo?02`>TlmD9*S~abQ9@c$h1dYHQo-g=RP+B zDV|$^6me$5@fAdambYsv$J-OB=sG}fDWI=w2f^hZKVX4!C1_A*^1A%Y4e6@vhAc(Qx& zs7&(>lCCak6QpmkxCmGz{Sil;Xk{L0<2kpXSpJg6PJ&++cB85zigL|=iZe%1mWCvu zXklGf&IZj@l7UCsipcbl+kg9sDxQ2NmjY3~+%IiAi5KY7jX_QC_YXE9M7pza_5y5jFQm@2CfkE_KMh+mX44PlE)Gxc+tiROV56 zOGcY5J&~XWzQvf4205mo7$Pyx^El|zO4dIYEHP_N?N>{!k)_yzS_M)4Dc<(}E$rjZ zFG3_v*=%;tMF4_msS{lIH~b$ULUA3;dp)xRWKhc_h{SF{0Tq^|{4sgQxDIRcX3rL{ zHGOI%h=d~;vR*XFPI#!`_K*e&_(imBJAb}iB#U->E?SK9gab=1LOnm{dUj^vgG{Yj z@D0e4Uif>jM-v6wXo3L*JC*8rhs>4SDAAwJ4{S`^qxOqN+sn*Aa`t1o6g49JNBi)#H^&I^RlVqq4-`>INqI z#hJub&Lo=j6URFUM(Y?h2Xc&;2rR9!p)a`3)Fip-M|UOQ6~ z&`MvVL2SglE8H$QOn(Ajdjq5zmNs4IzT_*)6Z83?n`na%hWF!zyUdv10)r)ll{k;K zY+?<4^78U_M%IjnR$FtPjWV|q`jn=ZVi}emZ z`CG}|BQIZ1qGs@Nav^nc%i%ZXKxoVG;L{bqWg(!BP8Y&)d%?^Aj7!%GDjGM;p2|j= za5~>VYw=?>48YhdwMQ3yut;XNT@ZRvN%j3vLcjh=CUGA6&A3^Z~+C*dIO zgsV{=yr@pDvuIcU%<^?A(^}716vvbU;(=fB7Db`}r4Mx^&&Vh}>dNK;04w*jf^TKF zY&I2zP(yp2aJ-)I^6xrP$K zMzE$iIW02k0<@5vI0Ka~uwA*Qxk zDiW`I$|jC6xPD4rdiPWdYH5Wiy?{83=gHp?rk&{{>4Y2YM0RIu=kd#%UHw-hq3wE; zY!&kG%$ewLaVvlPSo@L%*h){KeYr-?*~#@#mL6Sz?+2%R z%eKQ;rJc&oa}=JssM96De&ij4paWi;pLQcfL zG<~akW33fmTgQ!pT3p9Hgz~L!bpU1$sH0`d0`?ne{tlOQjN41SX)&s&HnYViYcTI- z^rxo*gCdqLxOToexG=PZ;3|e$k>yfbIa_1L%oy)RWDR#c7cMKv)_dod+!>!#E-K)H zS4>ldx_UqwI=}{C(`n=8&Gsh>9Q;J-aM>tNF%OpNMvbrhF}w2g3)3Cb7qiw^MLr#D zdMC|Vd%cbPckscX8m)H}tP2j!MY`SF<4*q*QnLYg2nMn_Uyx_|m`(iTb; ziKh-!X)#k)R0DmAkhmZmsrTBnQwajWZL9u&oxd5YrIkZ!ON!iXe#;?VL0_0?M^_7Z z+*CD3+2@t}GSo4y3iSj-&aCmOw3m`4&a77vh43Y_ib4tCfJ7t-KL-;?&Q}CDaDEtE zr4j<%5O?Ni?aLy3iTmS@juiE#aC9%F4I_dc5rsQD0V;`5go?o!vP@QPny9jA*(}Ck z=sePifOK-~BZw;Pl;6e2DT#{LqUKB}GscOC0!w0-r^cX30wH01lFjPJpqT)Cfdh>c z$LHPhk!|WPO-vzVR$B2KApm4l`Ve@hf+<9j8j~g|5eZ|zV*ufveMSl@Mra9CKYvW%MOTz!`NvTmW7n4(H?)A?;5(n9uTT zu45CEIVT8s^oBc8YEs1KT^b}&ae3DxpG5ZA)J!5lCyK6NLeXk-owEtojzbx#1D!yXMvbA3!vhe+I-unjNQRqE- z+N?@~xoVYah|08zT+I4Hso*c^$JGFD$JpUcXi9yC1EM|dLhRm4WIpM|(ezp8I4@))xuPkLZ z)QMHp3RkaeW&JxklIi#twwxsX4sqO^PJVrccp=4y9cBfp;2Zp;;17^D9$BO&8%34$ zH;;TJ>+f=x$qVQSPW;~DfD7oVokKR$DRID^knD%g5%2{*vt$M&`G28`{*r9&k0q1^ zl=x>TrUsItnW1>G`#}?o(X>0a$9|kNSGVR%R;&)x_BBWim5#}2s|HV2`o9Q4Vfay7 zspwIz4gpn`me)aoqOTBcfG%k(_1{D_FRp0Iw8jPuoO1+b9lPuaW4sv9%w9;I+&WD& zPDlF_uMZxW+PNHMdxbPTrR0q~0CX^v6{)khBt4|%?AelDKKF7{{{KXNV;nKs0$$Gy z0dAYViY%!00ex>RWIo*MEP*Mb$TpYDs7b#qA$%Pj0xWoHpwUNGYF*f%54pSsc*$Tp z$MNj*aT!~cwnkgjlAjK_IHh-3+I${PkzcO$UH<&LMGbm-O4y=+efRlLUF_4(3Uv5g zlE})a2?pmSEdTt=_48YJuIr_#2Qoxfg5ciN|GWy8S)G)l>d!XcPX4xe1G`+;B*}U& zKHvehnkCszzYmUm&i-9Y+VKj8fQIR-??qywlCuD$q95zZOzBoS`^Km>n?y)2=|;Gm zT|iW+_;gr6ju;sMA$K)1DxgoDJXx3(;x^vrI9ORbjJWJ$XTJ9P@?&l+;NZ25`jaft+fyUBbF(ue>f%23K$6r)q2CHt;0Uim)Rb+_gC*@9y_#a~Lo*VWTmaX9L0eXNAq^8ot)I1f&pHKRr- z78}kc+O1U*(29^>Q2s`oYil+;R~IR~H<(D2#(4YNq2{h$QeeR@8iQOD&AQ;1xS=AryWu~> z4BHe3hMS8Nypvx{WO!*m4|33M%^~m?PNbdIee2oPan;{{)b5`Z*l>2U(iSmlU@|Dg z)1I4)Z-_Kb`H;juYsu^Q*6lk#9lx85Cs%)19M?K|bpci;tmgHpw&iBKka|w`7z^IW zHa_KT`dJ0)73~aNw&j9`iVFTzKw7RVULdnW;}y^iTbxz?XO*dx>7SZB7X5%$ zUB=@pLlKL*f7CXhH95T$m}4s-RZ!Cy1F`*<{(2d?zzHQL2~d#E#96~5z9ye|0y8X; z)DO_hc5EE_<5-Pfe_z9eEnMJKQr3%5>8RQ@>+Iw5!#1Al%5Izki+W@_Pq3`*pfpXt` z0y3trUedIk@}1HIT9B8clIs3A5(Zpeh2x4ll)K3Ob&M{Y){U_18h6D7pWO(7%{Kxs z0RFZb27Ggq6(ifDIG^L*AwN26)Masvjz~7!u8lVxjgeKmSBV+%Zmz$J_nep~;}!Pe z_T)S5kyx!2_%T-f7JNVRlD!Vhrk0J8BP(q&G(^+>N`Fc3Kb8!YdCpjEqj2Or1^!&9 zGtNMzn6LJ!!0!4&?WZ3{vfyyIST$RYt1z0=aa+A<3f?(e@oa@SH;MFM+&y^R!+b^? z&%5d}X>cupo3#y;2N#J0`!9s9-#coAaR;YJy_Y=t^pi+Coy&g^Z#e5%^d2UDd-NJG z{uwBuJ9XS!Wufz{UCfh$_e%P1Z8?Qw!x^BZ~rxnT;>RvHT@;=pp-(B;)*9%`BEKsRbpCzCxHzEC+5^tz)0DwE*d?@UyLu5 zfAeo`WUK|VEVgIGc9GWnXgb^Nd5Ie%S!=9XJ`bF#TRO0AwQ=5jh8VVtlL&RKfW50H zg>73_V@@=1TPM!5dUx#&oinRNT9@^^U`$(j5`V||Jr_=;H85FY4`ZBTOnMjQ2$6^vJ`L{on6LTKGG$pw+~C+TPYS*X z;DqEj>e>w-_+B^N7XPs-0cD>gliVS{zLCsX8t`RmQ~KJ@dHx*YC*$)waO&vm^|`I8 zkKo9?_!91+aA>_c5TiJYBB!PLT2TB)vu`f?^|!dLhSmOqs`g$=z0>W}B?B_F%Xmk}S`TOJoYRX1xS(m_Z;Z^bNyU<34bppgw4J1i{C9!O*OIjm z(WGD8xC~trYn5(UTZnK4d6MHgzDBmAwr&dzmGhoT&5^Boi}Iezd_itQAqYJSsv-!v zK&Xb2P{TybHC?evpKt&zddwMHh`=g=kWA?7?KVGT-f!69TbDmR2cgf@Z6Y+oL_%n= z(UI<{BmsTM7>C{nJx>YF!Ac_PMLzPoGjOkE5IWw(1wuAFqTUZ#6Rz%miZnDW7-8aJ z!010xmF=Gat@$F19eE?Ty`Ts#*qWIXbfpQZ=RHeG`e_O4f9#uern{*b5{i2jYP5=)U16Kj6Ue#zRmXUbtJ(90FJcB-FqR<-<` z!ep!@MrE7})47!WVP@9*^1QnbS+5cQBoh>n$yzx&V8G$}JU0ni$r ZP;_f@zBA?*`~dokK#3$%Nv4B@@PAdm_bUJZ literal 0 HcmV?d00001 diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.5.gz b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/lseu/www.libre-service.eu-access-anon.log.5.gz new file mode 100644 index 0000000000000000000000000000000000000000..9d21793a0f154435ca1cead6b6811bdefd6cbff6 GIT binary patch literal 8456 zcmXY0Wmp_dkj6E*F9AZ30KwVd5G2^*?#|+Fiw1Xh2oAx5FYX>BSa5fD56V9f!-kza~LPOI7Wtk%&LLd-UTPqW1FpCS=+1<(%%nEj6F*Y>?yST6z+dJ5^ z+B#UUet|pDw{cnKO?_GG3QSSVJ|dE6hi_|aT&ezPv2|wq>7{gO>8Jp_q#=R-C7Dp* z>6nCYw_aY1Ruun3o*eyfzy0#R_w7y-108SyxMBbd+(0x`f`_iRi0+#wGwu+)U<>8s zH+tH8dIaU0uAV5(ukAR+o4!yjIpK<_r&(8b5{Kzo^UhWop6P*SCRzGS+9%#zI%6p2 zymqSs^i*&Wsd~N3PawtI0Es;kAruYMK+XV(?G?{2I;gLj#4upZpIaB5LBAAUp7_v? zKVv{UHTZbe4xLa$O9ZoYYxPzTD`kPOl(Ya&OQa#II?)cg*oY#j{EY^)d+yRavtBX; z?>Ho~@!M^+ZK{Dy_eUVUzHtE8P;TFkqH;UIAA-D*>)hSraD3{M zfwW${JSREeQiz%who}Y4RFOofjmgVkj4d3rKfs)P7CDTn0h*@{TMMMw+!{vha2wE) zyP@JEL~Bu5f9V$)4-tin4BcaFz)t;&@eK~!Dom5u!B7&N*2Ts|tUrsRd zH1R>Kqki~|>Nf*FwBFa=A;lAg6!2S+e7;@joc>f=`ZidAmi_@kOyxj=Hl%gxEKhP4`c?^qCE z1dpAz7=9Jb&WQStfhMbnR8Xg1@*Itt%n$-Tvh4YxAC_ zodU5{QMjfiM7i+i-SHPUnzHmC8X}a=C(%E`g+~zELi$pEQv;1Uc3L;&7ES^a?CX0c z)g#EX;VCtDWL_epnf-_Hbu=h2R%`;_G_$OP?dXg=Tl$v9P!5E3m1#4$So#*74rmX!vGXmC1O}pfZ zUDI)$6}W&;iZ9Ta6kaAXSR~ey4(uFScBh4aM_e&8>^G`8fA~Uw|KN)|!F@XO`X4mi9vq&p-Xa^_U`-mWfHx8(0Yqctz>5 z^&6c}=RAp1U>dqJcDmvMS0+8;S7*j2nRZ%beuurV^6Q0dVN)M1R zvD#0ez9)Z~YVYs#@h$2E;`RZRdK9#;yCwHJ2B^OLBQlgVz1vsQAz^|bsi~$klJ5js zY^KQYC+q=J%8v_Xju~Qy_ny9P(MV3|-wwN5o@pV96OZ{~J%c@J{MyCGX6nr>&#TP$ zwemP#b3D%rRj5M8cuvtnNRJJ+0j0fW&}ZPKBfJLt!^)>C!no%jOmH*M{G8f=FSa`n zuiq%M(4J2Np>og+hnFC7GS5aQ1eJ-Q>eaf4F|!W1oKvCtRJ>b9>{?05&TLlzsps#| zd8lzt47c*c-caPmXBvQHl1FW4)C<6c-MVkMu97GaMMZO%8|AxQO(n0V`)+7WKoUfk z`CCl%#xTd#2>{zkh-P9TKJ@j{KGUvesEO|zIoShum=+6-quDOK0oRq?%%zuP$-v$a z|NhmX6p-`Ewm-i#0q?3j4nQjUHphnqAf;#{Zy7~*KcY*sPj+iB>Cf@fD`g;ZsTPFUYMZy&N^Tac0YGvqL}DOSUk+G@bkIN zzNV^>CG#(!;EAku0T!c$Zs`tp@i4M{Ny(g5>K~+@+*?OyIPK>8ju`}28#}8k?Z`9} z3L@!qTvyRp*vlonggamf=i)4MZuCD7dpE(bO?TFZ&R{XevGf9}!H(@<4!YfkoW zihs?!PzrOXSh}`<-U2$T@PhpaWQ)@Vl({}i;s|&01`ymg~0y=_Ym-pYY zSY4lA{oxSt+FFc{mP~B6ZOPn|zaX~d$&Hjux<&Q3O4`gt`f#SPDN}Re;Idfa1(M$G zs+orq)ImArZ$fhBM?TnpS;glcX6#8Y-Gp!1wacy#-{Q~oK&t)+e^4wc#`kf9tS|U; zz4A_G9%lN?D#tD0qj=T#RdJHWu4NVnInA;sazgrVF0`w!%Yroxt&=bi>FrX8XOCmC zr?YQZ#7o1JToQIj1=w@si9zaHHil9J%eE9ROob~uE9ER7hd)}I9H}$Cp`-pT>0!zN zd0>SAL;f-*fq2deox3W`)uH7Ht^Z}weCRqP^FcF?xFyTzQ}6mI}A4tDG67$}y3 z@(Zp?1zh90l7FqL8g#6WYPN-4ZgPUkX=TV?hSJA0%@!Y z`{)Vlc%zKQdrh4EBr}q6?#xIMxYP18mZoMEu~V@b2*>lo^safm9MfA@8}50Y3%5{g}Fi` z2ou@Jvp8DZ!$rR|!@NggVcx?(^e`LL%mkb(De24i35-G5bV9dybnRYzHyq#Hm6F6U z7DnMZ=bTw6x;-FYaL8(eH%$7PKXBt6)E4$F-qGqMoRfqTaB+W=KT4X#*x&1f%5I#)wQ-U>{*Pw zBL*;kcy*Buyinsqvxr)qU0>&(TdsDuHIA^eq6-R~alDDrS-pzbiMH+vZJxNj&-0~y zT*yySC2jb3jIS76(Av@>Tq(o%@UP+~@OW0vCf#66!H!s=JttI?>ZbKPX!%Ad!$9z< zW?EM|%HcA~ytR35i=k_cEwFsYAS&-aq-v=v<2=jE4>lPFpR}_CgyK9xM5`ue)+lB_mVZ5yix!6)Hm>;KhN&Uz zHeY^<=H`e?^)p~1XX|Ol8k%f=#!Y~ZbU#-WlTbFKN639j$P|?YBU9qw<KmDFY0) zJ7$F3&Kwxzr>5rqpOqJ0Hqz0xXZy_PF}%aw$@npJ+w_^g86O)%@k35w#ewo5x<3u8 ziVuSve^e5n79?eS8~`N<(KiaLk}y8*fvJ^Y!$%Lne3?Mmh-$Y{4lbjWY+N@w!8)=w zjHH##pW0q%0%k=B+?Q6UV#{`&*jDAu@II%x@FIwFveax@5tmXmJ^p(+LjHE#v9~}K zkVmDsLD_IlS&S_4kpE%vH<_60Z^1x}T?%G1P?Cra`1bE@Bva1V(^0|JA zK1$^KM;Ir%u*lOsw!!t8eMi5&H7)1DNvqXMr$!tYP8kqY``p&IA*o1^563LUj!#WY zodGDs$0rnfAHu7`Wt`H^Ix?gCMBRHdb=(e`UY7XS^~JK1vHcz+(MN4)kA6_6m9F!J zELU(%AQW+-7~ZL`jTnJ^isdCs@Pu2mI#|{><0wK%FZkVws~pxzh-F zJQh%r{q$}*3@WGa$e!O6-AsA!7cPb_`XWhOpCurjaxw1=IFeh^4GwvrxOTQ56kE!EM){#MC>w z8rT?|D*(~zY7IKO`}O8QVz!QJ2_4t5t=CJ%c#{mVM+ihNqso=AvRJ4CTeMUIC6g?P zXn~u+th1U6Y~3EWH|!ZsYB;bLnZU1x<$*xhv?L;_hBxsgDBFE-H<^nX4o4{pL=Bdv z+okmO{J$cCVy(9d3V$@8meSv43-&v$^O8-YOJqSt2?}E$UaRfGwFd>axi=U6?8GH+ zrI{*mUY3e;3S^orPNz6Ip6i{$BfM`ge$!YJ<-BrH5nLDib0INxsZA+q?O7N9x2PU2 zAle+`FL`Nqln>oqW>!-E=acExZTrA|tAynav4qD|JF>bF%4y=lh(3uswKe5ZeJ_H~ ztg!(mCFQWb{f5l6Rbh86l_m6lr>E&`73Y~1fi%`DYPSnzIJb>#Ot*{w$9ZASiRCKV20>Jd@BQ$ih9kj#b5_l|4E-9#tTdR1II$aLA%D7mz9Va zBi1H(P~fz(YKwAT#yc_+*XJ@#-K3SHi>B9uh^3)fDfv#ltt$(F9;JLqVPUJH<Wz9;Jet;!o7WV?=yI7)=W+qVH4I9OEbP=x z$tvbLKaLOMz~`s8MXRlzos;gs?T2m6Y$|5Y8U^_8R{@?Hk7M;>D9B%PZ4A2Z3kcu zeSXhaY3fDX!z!`j-1GW3;^!KCF;DHYW-G?7p`wtiAIcL3kE9^Tj?qOt`K`)ix@u*9 zQr;-_tHVxLhC>p#9h)i@bH25GAn>1Sf2z;ORik#*-~yd429SDYkP}B{o&bC#!dCss64URfgxh%v4-G5?r71V&R=>9bSdgx??D`OU8yZ*CW%f4 zar8THq1~dy=G%gOPj=a~V-JBY9oqe#Ss%C0evTLN`>2^P;+n>uvG5jf!l154wH=8D zNi`}YQ9Rk@2#eGNA^;>Xh;?=Y?PPkqN|`}DuuAivRw2`4QaysvrgE`nnRy|Bs8Tbj zq9YX_7?L`}7fQ&i=3MxNvAJe^B_%Kg4(2NMxnqh~#W6rRJvA_dDIv*l3rJ%e}g^WAxm6{r)PkIY9`tmz8FA0NT} zBHV4}@2GWf@;h*nA)i(IzY&COu7kqKF zzrNPxIZtcaC_W__9QQhhp2woMl0uA-V1OC$+Whf70&{HwE(4uAI)=L5EjU7Goy(ew z1!-|GEu@|DnRg;F^CrJYcn#a&C6f_hlX`Jw+*-qlYf^x7a9$}I)=Y!OkS1S?$Uf#;0y3b``lafD zn<_tQpfj_G??D;boKWtNC_fK5UTK4Z%$I?fyHY8m>~T$DQ9ReD8e*^Z9BKO(PBjbHY?fC0-89LZX02@I!#Kh z(vqD!g3a&QhBABQQ|xRS=I%Fey9|7Dkt@bR@SSzCb;oY0w%iTb;R|Kcg02=jd=sCC zD;q!MLxhHxxo#Q=JUs`>&c$4z&soRa#jv{dMS@Z{7V3ZkluYiRXOdOE`%!u#v1o%( zM+mNt7|}@f#V!Z9+VhUQ8WG0ff&FU6vSOfYaIJc~xBj@%1mNn%Go@tTKYJVmU_bU) zy;$g1qyEsslUeh3Qj1j4i3zC-VO49)D1%7H+HB*X5gG~Dw+TFWGep& z6=Thz;lXJa7RmEpeW*N{b;f|Jo-C_}1d@OkKYCkwAEYT$^ZFSSx(mWgND7CTbkrYa}#y2xS7Atf|IL&EK>I6v{rC&D;_)TBj zYjJN;vt%uN5X4)hj3^$VJ!Dajh}gwkb4cJ%M>xFNiy8!}*|5n*;AKRHGu!A){M^Nw zuO0NYlxSta7G>#G=F8FXN?HW@rz4Hl9;er$rkOF*`Bkh`en%8>a>-u_NxOMmSEvqh z)|>nem>l`LssRS#{u%x#wvDlUgxpVkB08JGrVX9A&eOyGQSrkL{(`hhRsbkh@3KZC z9bPp$oKH$|Q`F8ceYlN%H9iWs#sof*7Rl3j?~FUaW-Wb-!)Jc9?+TRenID>$#z^KX z8NHG+el; z1ZW@(QeJT9T}(k@@N3ID`6YrT71^Vt17Sod)W0T;>|uy*%Rc$lEiE@_#4wf~3$v%* z*v?NyE9(LpJzH;D#+REd>X&mD$2-e^4k-$t--_P>lEeh z5eq_1dXjr(xKY2)2KJzg6Zd*yuBEhnaYc(9A`I{PiMm?#6DV?i29lEdgQ01b(S3Qph67^!itod-By?<{vbH2t`{MlGUotzBk{W3J*+8yPx!bMvBu=sx{PQov#t)IB zTA6NegJs$$bzo$r)xIg?P`)yY0t4xebT=FT8Rahnd$?qP5b)^M;Slpi*=u>Lf0CgF z)+GwWuq{wF!i_#vaUv$OPGn7`|5WWW1dBqh9YmEA}P zkZA7TZIV{U+9B|+ap;hNIO0%fB!|OMeA%Y2gh^3|1r2GKVTje61d7QBEfQ}TaQ&EV zZmP;~XQK!KExGdZqPh%@d)A;~+P_L!6s?XCxn_ONYQp|TlJ=I67W}%`hes9a>mr~q z5=q2E!@!4yht9oU#VBeH_}D-%g2K!oxD-xb>?CbIDN|;pXQq^qOO8iDyzl9`JKpH^ zd?B6Vn$YF)NX2Kg%tmNGkKglCD3RSW>@Tv`eRDr{=oXf$xIIa*#TfqsNeV~JIT;g@ zrWW$)4VC~Q5NY(6Y7w&eY?%sD9k;RByZ=lSb81v)=^*VPY66fEv2(T?bAYxMG9VhR zjyuE(H+?{(3CY|JLASdCJAFh$FcYPYJ4OO9YVrr>VxxRfI8<6G7|jy*%ZONa8aq9t zv6~qvU7H8bj)@hhZHYT7=4~{0ygoH@GVMpJ@NQHr%7_?%RCfd{3;5qrn7M?KJITuv zO4GwUb6ys@$5lSby&Uv=m?L?-0t4Z3hO=BLXjE)@Q_Uk_HL#*p2({zXVz$wI0Zppt zkNzvGUKHbBWAVS~t3Jc6;TxQ~*;lL7{S>HAV8W21<}}Z6YALCz3q%&4K;lPv0f&PX zrSU55aEK=Z@oiH>U=r2v-!xSn7MU8;E-DOwN!NVY6mT_0!wd>xavJOujUIv6G|M=yZ z?w(*f9P+!)%eC}4@`roMa-4i{gJS?Uk$tVBR2|XE~gdVWJ<_`T? zJeLv4tw0=4opF9Xo)h0V)&0(Mo-vqjd1S-BPS;qc^Cz=)kt|`km+1r+n1q?Y+sT^h z&uyinRDGeR!a*T08{dGe0d!ut7;}yJBA$Q9lU0^g#HpobH^@Oo6X!a{`6%tF_I!Sd zWsm%^D%a15uM+2RfAhMX2g0*XPAwneGcX!vt-QC??7Yh!--C5i%xH~L?Ai;CU`+Vm|-_>P3 zHPcpg4M_|Ff}=vN1q`f*hX=DQ(8SrC$;I5+9cXIKZ0^QnY-(!m;=*KX?_ket>tM;u z1$Cisld{g0{+e$X^jl3nj=?_C6D?4$B9`Nva%-%Z!JVsOZB3@0%Dr_txty%R|KKMJ zZKZ%6qHiFju&Yg8TV7kI>kK@zFzWG!51I(-KB^3yvT%Ra({V2>=ObNv)(+G@5LFJA zvlP=84@CMva<$jlO40|nH9T>+I^yQsnQ!KmN;BqM-y_!`-IT|I-lnHla;=SB#vP-L zyboDrZU_0#0q=R;^OEWTE(Zjm@wL zvVVg?mWr&&jIwC7>(UzN47p~>P01}1iEY?%DSmeHMHbCY8BeeLd;(r36~i6mS(7xT*wvlLk~F(iIz8xx?}O&V0l7}F$1yji zS&kKU$dY>&3)ciLrl6S-Mwt=uChT2Qj90y^{#M8;*F=hXu0_Br(n^UFb{&>lVzo!X zgMHpe#V1OHE&bqUGbH;Ii1X+4m;|S5G90$ZUltRPulXSpoZ3NVIl;EyuXNO%$PA@HE#-5%f+VSZWfBHxkI%7hCOoB!6M2GN(%B}l= zv+U%bO`+}Qzr{)SC=rv``-`UDTo=sA!`=5X4z7kBtuo3iXkmaNm7;1)RSXx(z4cg4 zoJ*WmDfkWA;4t<~^pdOZEXc)zAu~%52$LieW3Qj(u4rtVGJGfz!q*o{e2cRN2ICcQTQ+zllO6|vMBoo0)5{FwQcHl5rK zO^f|ulf=h(@VxL|IFc4!e&q1;aKu_0yjLa__Z2ctEPQGN_LV@_wv{0ryd-nP&_hRv zY{u2a1~+ol?1fYWOlT-!fV76-18eD|1XN3>iV{J3lkw(DZFxx2S`K+^1$+uXF{rVl z3<@9$AckQw=-TKbcoQAj@&X^= z_!S`ZnmxjuLScJBR>b}1(XByHc0a&w3D;tWzxjed(&ggKzmrfY+y3fW8D9_Gv$VFXkmTTm%*}bL}49?rZUJt zhOOhMRw;7%gN`;MjL%2^_>nqCfj-})fSO?~9S|FlG2U3^NmK^@TU9*i=Kg&aG(TxN z>sK95@NsnO9iNrd`Q==qjE?Ic{3s9a;Kj#Y3iObK z1R9UDN)8q|y9R{1O9~$$buIzoiRk-~Q;6JcBAxKEH`$4CK3=5bQPW&3F91$!kyWG$ zXj&X?-H}$i4$jBz$#OI&h*p`*o(0T(Yq}|L~W#l#n7Z3*}kfjyprEKOY=0}kW z*p7!w;5};}q#EnlHiBsfxOSQk1+@(0`)nO2vlxc;_c*qz+7oSGN;OAnv=RTpy30Be zAa&J!?ik5;UT!KIox`>xKxul7tn!6moN?$6aC{w!M2+AotIglC&TdN-rHnx;5UtX8 zTE|deJ2S}@+%rH`pGHHh2(^`=%lg{$@@iL~Pt%I`a0&}`*4wXtbLTKZaEoJzTI+~P zo7x);d=-B=dGY-5$m%T&>wDQh(;IYqWFCd-+bOj_abQoXSA>moIEi6&#||C-Q8J1r zm@Gn6xB?tGNGF)qT>T@wLHNCey0Q$H(Z0-Evfa=9{C44Nv(Wf%yhf(0>p*(nEfMc&qW)rHl-zzLH zGDx#Pbai5GzHaDjS5j=ekT1O37NFTi<@fy~?Bv5+7k21LhBY zL;#&v203|cQ!jQyr8q+l*h`Y^8sZ~p;%c&_hGKswiCR07&mpH0yh92HIhs! z%HXAH&5zB4ww`Z9EqR0^j5{vklqMAHzOi39IYN(Y^O5!TTnZw-gMa47fSDyny3W+B zptokf6)j8IXv_@%uITiY`Bp;CT517|H@*~lERjY;VKc=cNG-gi3{6hT5)6%9>w z!o#fK);W(7W+t$taMt>TZVtLcRyHRGq&6%At&xG?zI<5(0Heo^M(s8ctp=H1yQjm(UDpc5`>m3#8#m8_pXaPdozEX{nRIpayD zIrVhUvsG}l5u-Wva4K^t!iZON2`f0;HE$VLa2rUWIq(cDRQpTc%e(x%+1+J4dS(`$ zFiwh6CQi-oM}1%Rra%EwZW?`G7Qmz_CEi8y9B7wPaW1hhnXFU?sAyfXmBMm>s_!Ec zQ{+{YUvV=o-Fk-dr(0u!<2=i6sEAK|qayeWO-hhmif^diPXEX4Nyst`qzqfs7@=M( zAIpASd_)&=>!D)2NSpqNoI;VuQm+lRf>LL|6Na^@Hx0)&=$7M4#g=PXess=Qm@A}K zI6*IHS6BpcCXl62r<;$i398*0WjFFUbPVbuVGCGT85MHz?0|8BGaJ-aoH?PVNZ zR}g(NNFYaLy31YS!Jnw4CAE?{XrwC$T^ijNJtZnHqjI(3?DtEy^z$#mDtO3 z*Hx3l6|ye5OiTAd1)zTJUSRidzKF8U%3*#yy-Y566tnsQgC91_E_N6_ORpUEhNknr z&)%V&aIeod z(f{N$Lf-@qBFYn9P@AU!cU^TQM{si6;W$k=&=icgf6AmjH_MQe1H`efc&kiAnHGdz z`MH#49tF-kh;Yw}J|o|CGJb-n(0$O|NG9Ot=GW(#_F`Bo#zZ2pYqb+W{h~tNMC+fR zO(O%hq(pvZRj-~oKc=2K(mMA_Dc>@lG?$4!P#7%b)vtCM5ybtQGPL+QGTfbbr%aO5 z_5H2UQMByfM4=Cj#VO#Lu@dPp{HoYbNzPKTnMvGpHJCZt*Pj>L@z{(0@Z^3dnpln* z2swPEx{24e|XMr_2NXd01f=+P58WrcYQXTv#slpDB zmN^PVIDi%c+Ab%rWF}Bj-6WQn`6s7N4!%1`CMRoCgT0;ICj}(Oyq!|#gPjt1OppAq zu^XjbltaU0J&za*f1m|UYZ)AQ(Ezwi&~j&?O=aOajmN*>Gi{k(lOJ0!&i!!3;Bo4qv#=ttR90kF@dZ zS2}YtMJLWC!VCiU2b+8es#pXa6L|Y7@Ahm^6YbSJR*R zOuQch!BzwOYgk1^<7TBCU9y~WXdI|H%oBrq4PBSc_55seU-*Wv2iMZ^r zNB??XR+eOuv`)%bHMSKBA+gy)w}U_0NtGGaSLWpfP+)kGg{=jYp2#oet2oVUGk5wa zwrZPTY4O94jak_rWJGPja@*PTkXRL6KZ5nFjN)t|-%)|D z@~&tzKblMyNT5BeSVX#zR?)qs)FOx}BO{2ZBO@ei^9Uee@A<+S5{DGC7{2aL?$P&C zMc#+)n-ofIH!JL+gpYCfSk^uHEvv}aTV)@#4jk@K|DSN5M;K=bylcB@uMrcPadbkb z=_j+}5}blLaF}=7Spc@-bz*NFan~*--MA)~m0*;hRO}rh2IRI05mqb^E6~)ZNf+Ge z-&=L=X>ZPk+`3>g4gx6&s4h8lKRS+U+4U*62SEINTBDY=Up{@?`Km*`GsUjhr|9IL zQ$o_nu4(W0_mi1Z>U8ar>^Dx?6h_!bH{{y%G4Uq2U(*h>qg->0AF3eihPLT!w0#!B z-JXG7u7E`v<|D9yqZhzpol#N4Df{(~1!Of%RJW8FXx9Ba^sxgs*dt>{a5Z?{tTQ(w zw(2P{26xD#^C-~8F^ifZ(N;Ba3iC}KNsYq%{_zdvk$y~9buff%CC_$c zFvZdlp_ zr{z5m6#+EQ;$@RB@>$c>p@F;FH6k0*UoUhvQe3th9NROr+cqW`^)79&ng6gOWhA78 zt;3{C3@_cZl;$b(Mz5Gy5*P=7vGr&Iu4QbM$uTLSn3|UT&~-1M_KXPY;koD0<0x8a z*>rGpt)^D6bsh86#`D&K&YQU6r!ZPgkZR-uhOjs4tY0?7>f!$g+x81!>N*0z*c(Fc ztded2CIUVx@B7j4ZY24i?o_rRRFrwmYk!E1Un8_AHxlA(6f6+*~gP6gL(JrYmTH%*ntg)B{r& z6VeiJ&+(z^%&!lbnp~Gvzn3if>-! z_>uoVr}LtUi!Rk?lkPmb2r0JjQpLFUZgZaq#xb~e#FBsr>7z9c{3Na&m>{k-$tA93 zGAbGV}-+{Whl}PqtOJ} zM8js0h=bl03s)~ELm^7rSnW?gFB`+lnK0?si}!Z&f7CXG`Q`k*zle{(t^S54@cs!S zwRcTF!t5HqH_QJhhg^K*D*9rd_!VE~E$xDC%na5Ikc($p77n5J{26J6VFl^eb2-uk z5qe1+ltLkY zve-j(pmaE;EPXT7rYnQS!?*5Y0UP)rjOwTB!RFv_g;yj|Xmc_%rKIu^Tm{&ox`$pL zD~P6IS6Ji4$zD)lA%Rz@HAXU+stI39f&r}+#L@fqDzxQ)bM6t)74ZD_+F20rwEr5x z-Rt{c?b1E=n^K=h*3xQr<+%8bLJ}A-8}6QdpGsm(L#*dr@xm&0DD!9>K3@1+?43(2 zrWJ}-;NnpdDg%WD5o^fjWC|d6>oFb_kAe?y#o-Pjb+Ar5HN?H^)RT&>)k}WqVDWy} z5El$0hf&F}66(?rw;68HDCHaN5> zBwe~mSS+wfpg}W^>F@(73P?(vv18Q2zH&v$@TVs>HH-tdX z-xJ{2yD2_lGDp^=U?=Aqvi%dJf6@`G0oaGF)@i=QKe zX0}GEz}#cbpB+*rWPRHN9HpJ~J)R2!o?|y&RVFU|8?_Ac%C4u#dzNAlm7v0$qp)0G zSq+vvhrU^D7ek2=vPQx{xBC~JI0YQxE#KSxP#iSl5@tQfE;xX z>RJH32AbOc>azWRb(!&pldHonA<((CusqH_EiKRQj)hcH0Vxg;+bwB$IpL`YvU2-E z$VHG-?>}Bo9fr<`$g);fL-QhTo^27!XMI4|O&l?iG++tKC)AeEEo`ep@+>-i&{R^t zo_pF)Lo*c@phzB4#c*rE_zn_zV+8j{t8GVO8E2om#XpzMLn8oX`PSkvpbo;Q9NNbR}ULum3!abDN+^t*#UY ziH4IEiM~>M2ky}-{!YYw!%VG>G@ixh1%jGLmK*+z+Wb;W$dTi5ghkW}{bDXo-n5Jo z9G~3CFp;k$ea2qUyIK45`ZsyDpYQ6(%N%?gY)&&r1Rj@2;G%^}Cd;i7`7A}BByh0S zr;?LuG=rAy*Zhsd%4mW^rC1S^DxY~Z(hhkw0exIKPFBqtXyHA*{q;>B*r0w4FqDlY zT~u=~>?{fOAYVyRCPL6mMn5oh!4p&aOhq+1f==P1wk0i-SnDpaU7esIq0AaxQqm;< znwFXhWd|>#MaUB_?77l6lvM(U*Q|&qq7v--g+uS%L4o|}U3MC+gUmuVmtD_9M;8}v z3gkm9&?VYEoGWN6zFu`;dVEh;R<6%vGC&9H_Z zcXTEsRF(bm(~#F zAV4t6q3BRMeFn#-yhms`)Y)LNI9sutfhWYV|0DUDTb=M<;^I9NKgHBR%I@q%KIHkF zj8dDOb#Z({YLELa;3isl!=BO8N&y8>3_SX10TY7VhZz#gg7$FcJla6suCafB@G^cq`UVmcUvLem*@Zj zCv>gMD%ezBobBr_DAaqb*_o#Qh%JLlF=L-juq~S8OWo+p=TK-tafQ4sI`v_vy*nHC z>*C+PnOn{|ws#-?>g7i$9z#l$Z@X_&lmgg45^z=p(X1R?2NUswPD^ z)TY@#*4OfSZ9B_AVt*^MfAnZU`_1iwN>IubuN>R)4L3fOx4ijM^@w!2)W2h#a7ZF< zc4Ulj=&$D1(p`(4*jz8UQC}c53XQ*>jI-f#4Mf9;;HfR5o2O+R&kfS2uy(Yaketj_ zkE>kbHI{>E^)#>c=PJ2~GT&vUIZb1@j<6}bzn1VKBwDZ3$M1pO;eii$2)a6BPV914 zO0>T7BPYydXAtR&)j{Pf#)g|JhwmO25&7Y)L|Hjq)nj9OIW7WSIo?!Kr1|+%a9T*P z#UY4Pi(|ON*kIO^@$wbnF%Bj$UTRwQ#vW<%W;yz?sAq#Tk>e9-XOzaE_A!g zN?I^ndBPK{SnUPN{%CBWYO13E&-><2f%Refy9rj6?654qT&d+wxwOWV)`H_jC}~l0HunHiejG!qV`X~L?t3ZDYj*VNAF;IP)eJR(AS!7^BO$f1Ouwu_3@wXW zxb($$StX4lvPG}tikZoM%^V%uvvaaJJ9;CF-6T7kh2dJq)oD!(t8{67`- zf24@!2jwLqBe1nUofpO1Jdn&O%b72kF0I4W^jYY!vYT%!ri0Z7 z(6x=pHkLk1wz(BzOhytl9|g9lxA$?M!dv>CQ0#1ssr&qeX^fP<^4S$NHLSy0<`8p8 z%(d)rk+%CO%iuN%7FdLRr5Aj(YZlNW*|G)TRDnw#5kt>f0H_uOOT3B1HD3G!_eyw` zL6Q640`(XyS||#wKiu0XEpcdntZ|gK4db6#SC=$H;&Vq<5Z3-i;9ss1#pSJ*oNqM< z(4wCUC#kfutdwn63749%*()pDeGo@RF7ENMNZxW=?&#q~ z>TE^lOmpH-6)62H21c|6D?44Yvx;@EfZX~F=?xYqPjve;35ohsqg%KpR{)L~Uiug6 zyg_9*^kNeI@KOY84a}hBi)bSocX6fg(vz_t#D9}Nr}H7c>6?nB7}G_wGyaoXjsL(D z!Amcq9aL%3EvU+6r%5w7Dv7Mx!>mjm(Mv5GI^NFgRzPIw>-knTgkuI366Dx1t3YZm zX;}*?7eOFi-xA-wTT}SaOv)9e*+iu^t{DtgU;QR6P2|jC4cV&Pko02(wRguq+0$6m zxAT>GE`JPmD%IMIZfN=f+m%b__z=CpWfgFDXwoB4osV_12k~uWFtBCz0B=`K%yhm+ zh|MWSuAf_ijlXQOym4$R-+=u+crY{m)?ecn-#)^n}G*S2MTGOkQ$BuUI z`5g9mPoI8sKA`8+ZQDBN@e{mv<_MhsA@uSf<}^p`W1}HnzwWN-+t{rKnR+q;=Xikc zE-N3pI@cJV8M9+@>!O!%IG84u8ayqNwJ&P#!N$f{LJV??kH+SX_8A|P*$kPdzyOPW zCJ&P1^BR$^9Jk)}t*BnT%);p@sa9@Sa|;l6Jk6K=4&wo{_Llem1Cgo3?pJenXmtEN zQu#O@yz4i2_pe@c{zz&wx$aiTo&)#@Dnd}w#wdxH%MXPzwAIkb1Nfs9)mcz6IUjX4 z9HxLGZrD-qN*P*EkAgIb%`=Efzg%E=sjznru~H;Wpt&jqdxi$^Kdhs`+lmIde&soU zxWM2&uh%^i#&H;X~ zRmDvrAt5J0q0z1dZEcp@Ns1CT!lmtnzA z3}1?{s>&SQkU_yJXUL^yBc6MP5uWgnR8%1xW1SPS!tIOdeneUVB|4WRp~PY-{(U;G z3i#gHB`4uw%h%nb=a&mOATcD-LM$Z0dE6A{AKyUf;-mih6If#poUN||EgImzZ(P~{ zA+?HsfJhf0WK==>mpBb1@o1wP$L9`!B7>x!N3&>>Db;`h%c+5q{)-#_90 zNB&I9!i;YNRME%(UbCD!>byP=hf6$;XsOJ-2cQIe4@GY5KYL8Nzr?A-`-^U|tu#bZ zj@$_SPKbWJk5}nNCnZk z;mcW(b62IkFYrI3srKyNs@sC}$dR@Zq#U=11GGlq??A}FN$esU1T(k5yPGfs{HXKL z=CjH)0_1Fik4fq8Q)lJ95%}~ulRj$h*1tS??lx`8nxvDxw*jkwrs%YDCD_s2 z|Iqy5qEpGW>Nq-Rc1+B4?soYk)#{0ubVh99Pd^nfyQe{U^&05?K7ZLgW1QSfn`pc&ItE-+)X&U-}oINsP?G zh=Gc-)sv%==RcKNwm*WbS=s3z8`=D=m{Jqr>fkk%(`ST;j7k;1$RER%SekrPT~HGb zC8tQFEfX&f)Lkv#gEB(z+y-KH;dVACs2Sp{LwByzB&JIg=Goqu zc%%#*Z$@YY%_kV4X*_<%#^jjswU}jPZpR`!Zu}jU>0&i~*5G1Lk?K}01IVo2ck`|4 z^phsLRv;9B|BF?9Eugg<25$>M%LQVD;-iS zETG{xOJbZ>@S9ff=V|6?mK?*=W=XLSVtxMy4N?vW)nugeNRnan^Zdc!2t!E(@@`|L zB)Jmq*cxEeZ8#Kxi2)yM=!l=RlDPNuNxQhWSRi|zlmjl|=(`q|0Xb=lRW6QY-sJ;W zeGFwlHjVo$DCRboO*Q(K-Z&AuD(H)OLIU^pmD|+Xhl7{<{TGwQ=PqmhaArZrn)9_6 zbAyM39`;3u`|U4C=i^M@cpoU><#msV#CK$atMM+uQE~I{NEHrCL>Zdl7j_X%k6h02 SY+aT&Asu(Dq;XpqsQ(8{PNSUw literal 0 HcmV?d00001 diff --git a/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty new file mode 100644 index 0000000..e77d7e6 --- /dev/null +++ b/test/fr/devinsy/statoolinfos/metrics/httpaccess/data/notempty @@ -0,0 +1 @@ +10.222.42.55 - - [01/Dec/2021:01:01:03 +0100] "GET /.well-known/statoolinfos/libre-service.eu.properties HTTP/1.1" 200 6387 "-" "Java/11.0.13"