diff --git a/testsrc/gatling/records/HistoryRecord.java b/testsrc/gatling/records/HistoryRecord.java new file mode 100644 index 00000000..19b8dc91 --- /dev/null +++ b/testsrc/gatling/records/HistoryRecord.java @@ -0,0 +1,135 @@ + +import java.time.Duration; +import java.util.*; + +import io.gatling.javaapi.core.*; +import io.gatling.javaapi.http.*; +import io.gatling.javaapi.jdbc.*; + +import static io.gatling.javaapi.core.CoreDsl.*; +import static io.gatling.javaapi.http.HttpDsl.*; +import static io.gatling.javaapi.jdbc.JdbcDsl.*; + +public class HistoryRecord extends Simulation { + + private HttpProtocolBuilder httpProtocol = http + .baseUrl("http://20.90.117.30:8000") + .inferHtmlResources() + .acceptHeader("*/*") + .acceptEncodingHeader("gzip, deflate") + .acceptLanguageHeader("es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3") + .userAgentHeader("Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0"); + + private Map headers_0 = Map.ofEntries( + Map.entry("Cache-Control", "no-cache"), + Map.entry("Content-Type", "application/ocsp-request"), + Map.entry("Pragma", "no-cache") + ); + + private Map headers_1 = Map.ofEntries( + Map.entry("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8"), + Map.entry("If-None-Match", "\"57b6aa454590cf8b6775a507b1e36e553221d799\""), + Map.entry("Upgrade-Insecure-Requests", "1") + ); + + private Map headers_2 = Map.of("Origin", "http://20.90.117.30:3000"); + + private Map headers_3 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"c1028168af42477a2e41c1eff9fc3ef2a7e17be0\"") + ); + + private Map headers_4 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"f64d1c4090a4330a4dc9c5b29c6c8595fdfc5eb1\"") + ); + + private Map headers_5 = Map.ofEntries( + Map.entry("Content-type", "text/plain;charset=UTF-8"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_7 = Map.ofEntries( + Map.entry("Access-Control-Request-Headers", "content-type"), + Map.entry("Access-Control-Request-Method", "POST"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_8 = Map.ofEntries( + Map.entry("Accept", "application/json, text/plain, */*"), + Map.entry("Content-Type", "application/json"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_9 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"7d8add571a6b815ecdab7f3efcca0baf44ba9ec0\"") + ); + + private String uri1 = "20.90.117.30"; + + private String uri2 = "http://r3.o.lencr.org"; + + private ScenarioBuilder scn = scenario("HistoryRecord") + .exec( + http("request_0") + .post(uri2 + "/") + .headers(headers_0) + .body(RawFileBody("historyrecord/0000_request.dat")), + pause(4), + http("request_1") + .get("http://" + uri1 + ":3000/") + .headers(headers_1) + .resources( + http("request_2") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMfpyJ") + .headers(headers_2), + http("request_3") + .get("http://" + uri1 + ":3000/logoEii.png") + .headers(headers_3), + http("request_4") + .get("http://" + uri1 + ":3000/logoGitHub.png") + .headers(headers_4), + http("request_5") + .post("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMfpzv&sid=o67mn_LmUVu75EzWAAAe") + .headers(headers_5) + .body(RawFileBody("historyrecord/0005_request.html")), + http("request_6") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMfpzw&sid=o67mn_LmUVu75EzWAAAe") + .headers(headers_2) + ), + pause(17), + http("request_7") + .options("/login") + .headers(headers_7) + .resources( + http("request_8") + .post("/login") + .headers(headers_8) + .body(RawFileBody("historyrecord/0008_request.json")), + http("request_9") + .get("http://" + uri1 + ":3000/icon.jpg") + .headers(headers_9) + ), + pause(2), + http("request_10") + .get("/getHistoryTotal?usuario=Gatling") + .headers(headers_2) + .resources( + http("request_11") + .get("/getHistoryDetallado?usuario=Gatling") + .headers(headers_2), + http("request_12") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMfp_H&sid=o67mn_LmUVu75EzWAAAe") + .headers(headers_2), + http("request_13") + .post("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMfw4e&sid=o67mn_LmUVu75EzWAAAe") + .headers(headers_5) + .body(RawFileBody("historyrecord/0013_request.html")) + ) + ); + + { + setUp(scn.injectOpen(constantUsersPerSec(5).during(60).randomized())).protocols(httpProtocol); + } +} diff --git a/testsrc/gatling/records/LoginRecord.java b/testsrc/gatling/records/LoginRecord.java new file mode 100644 index 00000000..4dc8aea3 --- /dev/null +++ b/testsrc/gatling/records/LoginRecord.java @@ -0,0 +1,87 @@ + +import java.time.Duration; +import java.util.*; + +import io.gatling.javaapi.core.*; +import io.gatling.javaapi.http.*; +import io.gatling.javaapi.jdbc.*; + +import static io.gatling.javaapi.core.CoreDsl.*; +import static io.gatling.javaapi.http.HttpDsl.*; +import static io.gatling.javaapi.jdbc.JdbcDsl.*; + +public class LoginRecord extends Simulation { + + private HttpProtocolBuilder httpProtocol = http + .baseUrl("http://20.90.117.30:3000") + .inferHtmlResources() + .acceptHeader("image/avif,image/webp,*/*") + .acceptEncodingHeader("gzip, deflate") + .acceptLanguageHeader("es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3") + .userAgentHeader("Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0"); + + private Map headers_0 = Map.ofEntries( + Map.entry("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8"), + Map.entry("Upgrade-Insecure-Requests", "1") + ); + + private Map headers_4 = Map.ofEntries( + Map.entry("Accept", "*/*"), + Map.entry("Cache-Control", "no-cache"), + Map.entry("Content-Type", "application/ocsp-request"), + Map.entry("Pragma", "no-cache") + ); + + private Map headers_5 = Map.ofEntries( + Map.entry("Accept", "*/*"), + Map.entry("Access-Control-Request-Headers", "content-type"), + Map.entry("Access-Control-Request-Method", "POST"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_6 = Map.ofEntries( + Map.entry("Accept", "application/json, text/plain, */*"), + Map.entry("Content-Type", "application/json"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private String uri1 = "20.90.117.30"; + + private String uri2 = "http://ocsp.digicert.com"; + + private ScenarioBuilder scn = scenario("LoginRecord") + .exec( + http("request_0") + .get("/") + .headers(headers_0) + .resources( + http("request_1") + .get("/logoEii.png"), + http("request_2") + .get("/logoGitHub.png"), + http("request_3") + .get("/logo192.png") + ), + pause(18), + http("request_4") + .post(uri2 + "/") + .headers(headers_4) + .body(RawFileBody("loginrecord/0004_request.dat")), + pause(9), + http("request_5") + .options("http://" + uri1 + ":8000/login") + .headers(headers_5) + .resources( + http("request_6") + .post("http://" + uri1 + ":8000/login") + .headers(headers_6) + .body(RawFileBody("loginrecord/0006_request.json")), + http("request_7") + .get("/icon.jpg") + ) + ); + + { + setUp(scn.injectOpen(constantUsersPerSec(5).during(60).randomized())).protocols(httpProtocol); + } +} diff --git a/testsrc/gatling/records/PlayGameRecord.java b/testsrc/gatling/records/PlayGameRecord.java new file mode 100644 index 00000000..c3ee8e75 --- /dev/null +++ b/testsrc/gatling/records/PlayGameRecord.java @@ -0,0 +1,158 @@ + +import java.time.Duration; +import java.util.*; + +import io.gatling.javaapi.core.*; +import io.gatling.javaapi.http.*; +import io.gatling.javaapi.jdbc.*; + +import static io.gatling.javaapi.core.CoreDsl.*; +import static io.gatling.javaapi.http.HttpDsl.*; +import static io.gatling.javaapi.jdbc.JdbcDsl.*; + +public class PlayGameRecord extends Simulation { + + private HttpProtocolBuilder httpProtocol = http + .baseUrl("http://20.90.117.30:8000") + .inferHtmlResources() + .acceptHeader("*/*") + .acceptEncodingHeader("gzip, deflate") + .acceptLanguageHeader("es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3") + .userAgentHeader("Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0"); + + private Map headers_0 = Map.ofEntries( + Map.entry("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8"), + Map.entry("If-None-Match", "\"b740a4b71ab2c4535560cd4f326aaaedd88a5747\""), + Map.entry("Upgrade-Insecure-Requests", "1") + ); + + private Map headers_1 = Map.of("If-None-Match", "\"2394e1c10ab2dd020399a4b5af724f68e7284c54\""); + + private Map headers_2 = Map.ofEntries( + Map.entry("Accept", "text/css,*/*;q=0.1"), + Map.entry("If-None-Match", "\"d74f3146ca1eaa6ce070e1568ebc6ad5d75128f1\"") + ); + + private Map headers_3 = Map.of("Origin", "http://20.90.117.30:3000"); + + private Map headers_4 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"f64d1c4090a4330a4dc9c5b29c6c8595fdfc5eb1\"") + ); + + private Map headers_5 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"c1028168af42477a2e41c1eff9fc3ef2a7e17be0\"") + ); + + private Map headers_6 = Map.ofEntries( + Map.entry("Content-type", "text/plain;charset=UTF-8"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_8 = Map.ofEntries( + Map.entry("Access-Control-Request-Headers", "content-type"), + Map.entry("Access-Control-Request-Method", "POST"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_9 = Map.ofEntries( + Map.entry("Accept", "application/json, text/plain, */*"), + Map.entry("Content-Type", "application/json"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_10 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"7d8add571a6b815ecdab7f3efcca0baf44ba9ec0\"") + ); + + private Map headers_11 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"44d93fd3452c72b5640086e8d1d9f35da691b288\"") + ); + + private Map headers_12 = Map.ofEntries( + Map.entry("If-None-Match", "W/\"b82-zLEmJVxmgBAj+vFkBGGUsQUF4Gc\""), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private String uri1 = "20.90.117.30"; + + private ScenarioBuilder scn = scenario("PlayGameRecord") + .exec( + http("request_0") + .get("http://" + uri1 + ":3000/") + .headers(headers_0) + .resources( + http("request_1") + .get("http://" + uri1 + ":3000/static/js/main.4a961c5c.js") + .headers(headers_1), + http("request_2") + .get("http://" + uri1 + ":3000/static/css/main.18e3ef94.css") + .headers(headers_2), + http("request_3") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyQRsGC") + .headers(headers_3), + http("request_4") + .get("http://" + uri1 + ":3000/logoGitHub.png") + .headers(headers_4), + http("request_5") + .get("http://" + uri1 + ":3000/logoEii.png") + .headers(headers_5), + http("request_6") + .post("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyQRsHp&sid=-VrpSNQ-UX0zUamsAALA") + .headers(headers_6) + .body(RawFileBody("playgamerecord/0006_request.html")), + http("request_7") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyQRsHp.0&sid=-VrpSNQ-UX0zUamsAALA") + .headers(headers_3) + ), + pause(15), + http("request_8") + .options("/login") + .headers(headers_8) + .resources( + http("request_9") + .post("/login") + .headers(headers_9) + .body(RawFileBody("playgamerecord/0009_request.json")), + http("request_10") + .get("http://" + uri1 + ":3000/icon.jpg") + .headers(headers_10) + ), + pause(5), + http("request_11") + .get("http://" + uri1 + ":3000/wiq3.jpg") + .headers(headers_11), + pause(1), + http("request_12") + .get("/getQuestionModoBasico?idioma=es") + .headers(headers_12) + .resources( + http("request_13") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyQRsJf&sid=-VrpSNQ-UX0zUamsAALA") + .headers(headers_3), + http("request_14") + .post("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyQRyOI&sid=-VrpSNQ-UX0zUamsAALA") + .headers(headers_6) + .body(RawFileBody("playgamerecord/0014_request.html")) + ), + pause(4), + http("request_15") + .options("/updateHistory") + .headers(headers_8) + .resources( + http("request_16") + .options("/updateHistory") + .headers(headers_8), + http("request_17") + .options("/updateHistory") + .headers(headers_8) + ) + ); + + { + setUp(scn.injectOpen(constantUsersPerSec(5).during(60).randomized())).protocols(httpProtocol); + } +} diff --git a/testsrc/gatling/records/RankingRecord.java b/testsrc/gatling/records/RankingRecord.java new file mode 100644 index 00000000..bc07b406 --- /dev/null +++ b/testsrc/gatling/records/RankingRecord.java @@ -0,0 +1,115 @@ + +import java.time.Duration; +import java.util.*; + +import io.gatling.javaapi.core.*; +import io.gatling.javaapi.http.*; +import io.gatling.javaapi.jdbc.*; + +import static io.gatling.javaapi.core.CoreDsl.*; +import static io.gatling.javaapi.http.HttpDsl.*; +import static io.gatling.javaapi.jdbc.JdbcDsl.*; + +public class RankingRecord extends Simulation { + + private HttpProtocolBuilder httpProtocol = http + .baseUrl("http://20.90.117.30:8000") + .inferHtmlResources() + .acceptHeader("*/*") + .acceptEncodingHeader("gzip, deflate") + .acceptLanguageHeader("es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3") + .userAgentHeader("Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0"); + + private Map headers_0 = Map.ofEntries( + Map.entry("Content-type", "text/plain;charset=UTF-8"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_1 = Map.ofEntries( + Map.entry("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8"), + Map.entry("Upgrade-Insecure-Requests", "1") + ); + + private Map headers_2 = Map.of("Origin", "http://20.90.117.30:3000"); + + private Map headers_3 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"f64d1c4090a4330a4dc9c5b29c6c8595fdfc5eb1\"") + ); + + private Map headers_4 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"c1028168af42477a2e41c1eff9fc3ef2a7e17be0\"") + ); + + private Map headers_7 = Map.ofEntries( + Map.entry("Access-Control-Request-Headers", "content-type"), + Map.entry("Access-Control-Request-Method", "POST"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_8 = Map.ofEntries( + Map.entry("Accept", "application/json, text/plain, */*"), + Map.entry("Content-Type", "application/json"), + Map.entry("Origin", "http://20.90.117.30:3000") + ); + + private Map headers_9 = Map.ofEntries( + Map.entry("Accept", "image/avif,image/webp,*/*"), + Map.entry("If-None-Match", "\"7d8add571a6b815ecdab7f3efcca0baf44ba9ec0\"") + ); + + private String uri1 = "20.90.117.30"; + + private ScenarioBuilder scn = scenario("RankingRecord") + .exec( + http("request_0") + .post("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMfx5N&sid=o67mn_LmUVu75EzWAAAe") + .headers(headers_0) + .body(RawFileBody("rankingrecord/0000_request.json")) + .check(status().is(400)), + pause(1), + http("request_1") + .get("http://" + uri1 + ":3000/login") + .headers(headers_1) + .resources( + http("request_2") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMf_OG") + .headers(headers_2), + http("request_3") + .get("http://" + uri1 + ":3000/logoGitHub.png") + .headers(headers_3), + http("request_4") + .get("http://" + uri1 + ":3000/logoEii.png") + .headers(headers_4), + http("request_5") + .post("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMf_P7&sid=9Y4MTrOWhztmUmbvAAAg") + .headers(headers_0) + .body(RawFileBody("rankingrecord/0005_request.html")), + http("request_6") + .get("http://" + uri1 + ":8005/socket.io/?EIO=4&transport=polling&t=OyMf_P7.0&sid=9Y4MTrOWhztmUmbvAAAg") + .headers(headers_2) + ), + pause(11), + http("request_7") + .options("/login") + .headers(headers_7) + .resources( + http("request_8") + .post("/login") + .headers(headers_8) + .body(RawFileBody("rankingrecord/0008_request.json")), + http("request_9") + .get("http://" + uri1 + ":3000/icon.jpg") + .headers(headers_9) + ), + pause(3), + http("request_10") + .get("/getRankingDiarias") + .headers(headers_2) + ); + + { + setUp(scn.injectOpen(constantUsersPerSec(5).during(60).randomized())).protocols(httpProtocol); + } +} diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/index.html b/testsrc/gatling/results/historyrecord-20240426122318467/index.html new file mode 100644 index 00000000..3b8cff01 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/index.html @@ -0,0 +1,1139 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - Global Information + + + +
+
+
+
+ + + Documentation +
+ + Try + Gatling Enterprise + Gatling Enterprise + + +
+
+ +
+
+
+
+ HistoryRecord +
+
+
+ + +
+
+
+
+
+
+ + +
+ +
+
+ +
+
+
+
+
+ Gatling Version + + Version: + 3.10.5 + + + Released: + 2024-03-22 + +
+
+ Run Information +
+ + Date: + 2024-04-26 12:23:18 GMT + + + Duration: + 1m 23s + + + Description: + + + +
+
+
+
+ +
+ +
+ +
+
+
+
+
+ + + +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+
+
+
+ +
+ + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/all_sessions.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/all_sessions.js new file mode 100644 index 00000000..3a524146 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/all_sessions.js @@ -0,0 +1,11 @@ +allUsersData = { + +color: '#FFA900', +name: 'Active Users', +data: [ + [1714134199000,3],[1714134200000,9],[1714134201000,18],[1714134202000,22],[1714134203000,26],[1714134204000,30],[1714134205000,32],[1714134206000,40],[1714134207000,44],[1714134208000,47],[1714134209000,50],[1714134210000,54],[1714134211000,60],[1714134212000,64],[1714134213000,66],[1714134214000,71],[1714134215000,74],[1714134216000,78],[1714134217000,82],[1714134218000,86],[1714134219000,92],[1714134220000,95],[1714134221000,104],[1714134222000,111],[1714134223000,112],[1714134224000,115],[1714134225000,110],[1714134226000,111],[1714134227000,111],[1714134228000,113],[1714134229000,118],[1714134230000,121],[1714134231000,122],[1714134232000,121],[1714134233000,121],[1714134234000,121],[1714134235000,123],[1714134236000,124],[1714134237000,125],[1714134238000,128],[1714134239000,129],[1714134240000,131],[1714134241000,134],[1714134242000,134],[1714134243000,133],[1714134244000,136],[1714134245000,134],[1714134246000,129],[1714134247000,129],[1714134248000,137],[1714134249000,132],[1714134250000,135],[1714134251000,134],[1714134252000,133],[1714134253000,131],[1714134254000,124],[1714134255000,121],[1714134256000,122],[1714134257000,121],[1714134258000,127],[1714134259000,123],[1714134260000,117],[1714134261000,110],[1714134262000,107],[1714134263000,101],[1714134264000,95],[1714134265000,90],[1714134266000,83],[1714134267000,80],[1714134268000,74],[1714134269000,68],[1714134270000,65],[1714134271000,61],[1714134272000,53],[1714134273000,45],[1714134274000,42],[1714134275000,35],[1714134276000,30],[1714134277000,28],[1714134278000,24],[1714134279000,21],[1714134280000,16],[1714134281000,12],[1714134282000,6] +], +tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 } + , zIndex: 20 + , yAxis: 1 +}; \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/assertions.xml b/testsrc/gatling/results/historyrecord-20240426122318467/js/assertions.xml new file mode 100644 index 00000000..bf11eacf --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/assertions.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/bootstrap.min.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/bootstrap.min.js new file mode 100644 index 00000000..ea41042e --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/** +* Bootstrap.js by @fat & @mdo +* plugins: bootstrap-tooltip.js, bootstrap-popover.js +* Copyright 2012 Twitter, Inc. +* http://www.apache.org/licenses/LICENSE-2.0.txt +*/ +!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}},a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
',trigger:"hover",title:"",delay:0,html:!1}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content > *")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}}),a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

'})}(window.jQuery) \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/ellipsis.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/ellipsis.js new file mode 100644 index 00000000..781d0dec --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/ellipsis.js @@ -0,0 +1,26 @@ +function parentId(name) { + return "parent-" + name; +} + +function isEllipsed(name) { + const child = document.getElementById(name); + const parent = document.getElementById(parentId(name)); + const emptyData = parent.getAttribute("data-content") === ""; + const hasOverflow = child.clientWidth < child.scrollWidth; + + if (hasOverflow) { + if (emptyData) { + parent.setAttribute("data-content", name); + } + } else { + if (!emptyData) { + parent.setAttribute("data-content", ""); + } + } +} + +function ellipsedLabel ({ name, parentClass = "", childClass = "" }) { + const child = "" + name + ""; + + return "" + child + ""; +} diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/gatling.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/gatling.js new file mode 100644 index 00000000..5b9e992f --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/gatling.js @@ -0,0 +1,137 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +(function ($) { + $.fn.expandable = function () { + var scope = this; + + this.find('.expand-button:not([class*=hidden])').addClass('collapse').on('click', function () { + var $this = $(this); + + if ($this.hasClass('expand')) + $this.expand(scope); + else + $this.collapse(scope); + }); + + this.find('.expand-all-button').on('click', function () { + $(this).expandAll(scope); + }); + + this.find('.collapse-all-button').on('click', function () { + $(this).collapseAll(scope); + }); + + this.collapseAll(this); + + return this; + }; + + $.fn.expand = function (scope, recursive) { + return this.each(function () { + var $this = $(this); + + if (recursive) { + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + } + + if ($this.hasClass('expand')) { + $('*[data-parent=' + $this.attr('id') + ']').toggle(true); + $this.toggleClass('expand').toggleClass('collapse'); + } + }); + }; + + $.fn.expandAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.expand').expand(scope, true); + $('*[data-parent=ROOT]').find('.expand-button.collapse').expand(scope, true); + }; + + $.fn.collapse = function (scope) { + return this.each(function () { + var $this = $(this); + + scope.find('*[data-parent=' + $this.attr('id') + '] .expand-button.collapse').collapse(scope); + scope.find('*[data-parent=' + $this.attr('id') + ']').toggle(false); + $this.toggleClass('expand').toggleClass('collapse'); + }); + }; + + $.fn.collapseAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.collapse').collapse(scope); + }; + + $.fn.sortable = function (target) { + var table = this; + + this.find('thead .sortable').on('click', function () { + var $this = $(this); + + if ($this.hasClass('sorted-down')) { + var desc = false; + var style = 'sorted-up'; + } + else { + var desc = true; + var style = 'sorted-down'; + } + + $(target).sortTable($this.attr('id'), desc); + + table.find('thead .sortable').removeClass('sorted-up sorted-down'); + $this.addClass(style); + + return false; + }); + + return this; + }; + + $.fn.sortTable = function (col, desc) { + function getValue(line) { + var cell = $(line).find('.' + col); + + if (cell.hasClass('value')) + var value = cell.text(); + else + var value = cell.find('.value').text(); + + return parseFloat(value); + } + + function sortLines (lines, group) { + var notErrorTable = col.search("error") == -1; + var linesToSort = notErrorTable ? lines.filter('*[data-parent=' + group + ']') : lines; + + var sortedLines = linesToSort.sort(function (a, b) { + return desc ? getValue(b) - getValue(a): getValue(a) - getValue(b); + }).toArray(); + + var result = []; + $.each(sortedLines, function (i, line) { + result.push(line); + if (notErrorTable) + result = result.concat(sortLines(lines, $(line).attr('id'))); + }); + + return result; + } + + this.find('tbody').append(sortLines(this.find('tbody tr').detach(), 'ROOT')); + + return this; + }; +})(jQuery); diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/global_stats.json b/testsrc/gatling/results/historyrecord-20240426122318467/js/global_stats.json new file mode 100644 index 00000000..1f7583ee --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/global_stats.json @@ -0,0 +1,77 @@ +{ + "name": "All Requests", + "numberOfRequests": { + "total": 5049, + "ok": 3861, + "ko": 1188 + }, + "minResponseTime": { + "total": 16, + "ok": 16, + "ko": 40 + }, + "maxResponseTime": { + "total": 306, + "ok": 306, + "ko": 122 + }, + "meanResponseTime": { + "total": 96, + "ok": 101, + "ko": 82 + }, + "standardDeviation": { + "total": 55, + "ok": 61, + "ko": 18 + }, + "percentiles1": { + "total": 86, + "ok": 95, + "ko": 84 + }, + "percentiles2": { + "total": 98, + "ok": 101, + "ko": 96 + }, + "percentiles3": { + "total": 247, + "ok": 251, + "ko": 98 + }, + "percentiles4": { + "total": 291, + "ok": 292, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3861, + "percentage": 76 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 1188, + "percentage": 24 +}, + "meanNumberOfRequestsPerSecond": { + "total": 60.107142857142854, + "ok": 45.964285714285715, + "ko": 14.142857142857142 + } +} \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/highcharts-more.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/highcharts-more.js new file mode 100644 index 00000000..2d788932 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/highcharts-more.js @@ -0,0 +1,60 @@ +/* + Highcharts JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(x){"object"===typeof module&&module.exports?module.exports=x:x(Highcharts)})(function(x){(function(b){function r(b,a,d){this.init(b,a,d)}var t=b.each,w=b.extend,m=b.merge,q=b.splat;w(r.prototype,{init:function(b,a,d){var f=this,h=f.defaultOptions;f.chart=a;f.options=b=m(h,a.angular?{background:{}}:void 0,b);(b=b.background)&&t([].concat(q(b)).reverse(),function(a){var c,h=d.userOptions;c=m(f.defaultBackgroundOptions,a);a.backgroundColor&&(c.backgroundColor=a.backgroundColor);c.color=c.backgroundColor; +d.options.plotBands.unshift(c);h.plotBands=h.plotBands||[];h.plotBands!==d.options.plotBands&&h.plotBands.unshift(c)})},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{className:"highcharts-pane",shape:"circle",borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"}});b.Pane=r})(x);(function(b){var r=b.CenteredSeriesMixin, +t=b.each,w=b.extend,m=b.map,q=b.merge,e=b.noop,a=b.Pane,d=b.pick,f=b.pInt,h=b.splat,u=b.wrap,c,l,k=b.Axis.prototype;b=b.Tick.prototype;c={getOffset:e,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:e,setCategories:e,setTitle:e};l={defaultRadialGaugeOptions:{labels:{align:"center",x:0,y:null},minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2}, +defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(a){a=this.options=q(this.defaultOptions,this.defaultRadialOptions,a);a.plotBands||(a.plotBands=[])},getOffset:function(){k.getOffset.call(this);this.chart.axisOffset[this.side]=0;this.center=this.pane.center= +r.getCenter.call(this.pane)},getLinePath:function(a,g){a=this.center;var c=this.chart,f=d(g,a[2]/2-this.offset);this.isCircular||void 0!==g?g=this.chart.renderer.symbols.arc(this.left+a[0],this.top+a[1],f,f,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}):(g=this.postTranslate(this.angleRad,f),g=["M",a[0]+c.plotLeft,a[1]+c.plotTop,"L",g.x,g.y]);return g},setAxisTranslation:function(){k.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/ +(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===d(this.userMax,this.options.max)&&this.endAngleRad-this.startAngleRad===2*Math.PI)this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){k.setAxisSize.call(this);this.isRadial&&(this.center=this.pane.center=r.getCenter.call(this.pane),this.isCircular&& +(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*d(this.sector,1)/2)},getPosition:function(a,g){return this.postTranslate(this.isCircular?this.translate(a):this.angleRad,d(this.isCircular?g:this.translate(a),this.center[2]/2)-this.offset)},postTranslate:function(a,g){var d=this.chart,c=this.center;a=this.startAngleRad+a;return{x:d.plotLeft+c[0]+Math.cos(a)*g,y:d.plotTop+c[1]+Math.sin(a)*g}},getPlotBandPath:function(a,g,c){var h=this.center,p=this.startAngleRad, +k=h[2]/2,n=[d(c.outerRadius,"100%"),c.innerRadius,d(c.thickness,10)],b=Math.min(this.offset,0),l=/%$/,u,e=this.isCircular;"polygon"===this.options.gridLineInterpolation?h=this.getPlotLinePath(a).concat(this.getPlotLinePath(g,!0)):(a=Math.max(a,this.min),g=Math.min(g,this.max),e||(n[0]=this.translate(a),n[1]=this.translate(g)),n=m(n,function(a){l.test(a)&&(a=f(a,10)*k/100);return a}),"circle"!==c.shape&&e?(a=p+this.translate(a),g=p+this.translate(g)):(a=-Math.PI/2,g=1.5*Math.PI,u=!0),n[0]-=b,n[2]-= +b,h=this.chart.renderer.symbols.arc(this.left+h[0],this.top+h[1],n[0],n[0],{start:Math.min(a,g),end:Math.max(a,g),innerR:d(n[1],n[0]-n[2]),open:u}));return h},getPlotLinePath:function(a,g){var d=this,c=d.center,f=d.chart,h=d.getPosition(a),k,b,p;d.isCircular?p=["M",c[0]+f.plotLeft,c[1]+f.plotTop,"L",h.x,h.y]:"circle"===d.options.gridLineInterpolation?(a=d.translate(a))&&(p=d.getLinePath(0,a)):(t(f.xAxis,function(a){a.pane===d.pane&&(k=a)}),p=[],a=d.translate(a),c=k.tickPositions,k.autoConnect&&(c= +c.concat([c[0]])),g&&(c=[].concat(c).reverse()),t(c,function(g,d){b=k.getPosition(g,a);p.push(d?"L":"M",b.x,b.y)}));return p},getTitlePosition:function(){var a=this.center,g=this.chart,d=this.options.title;return{x:g.plotLeft+a[0]+(d.x||0),y:g.plotTop+a[1]-{high:.5,middle:.25,low:0}[d.align]*a[2]+(d.y||0)}}};u(k,"init",function(f,g,k){var b=g.angular,p=g.polar,n=k.isX,u=b&&n,e,A=g.options,m=k.pane||0;if(b){if(w(this,u?c:l),e=!n)this.defaultRadialOptions=this.defaultRadialGaugeOptions}else p&&(w(this, +l),this.defaultRadialOptions=(e=n)?this.defaultRadialXOptions:q(this.defaultYAxisOptions,this.defaultRadialYOptions));b||p?(this.isRadial=!0,g.inverted=!1,A.chart.zoomType=null):this.isRadial=!1;f.call(this,g,k);u||!b&&!p||(f=this.options,g.panes||(g.panes=[]),this.pane=g=g.panes[m]=g.panes[m]||new a(h(A.pane)[m],g,this),g=g.options,this.angleRad=(f.angle||0)*Math.PI/180,this.startAngleRad=(g.startAngle-90)*Math.PI/180,this.endAngleRad=(d(g.endAngle,g.startAngle+360)-90)*Math.PI/180,this.offset=f.offset|| +0,this.isCircular=e)});u(k,"autoLabelAlign",function(a){if(!this.isRadial)return a.apply(this,[].slice.call(arguments,1))});u(b,"getPosition",function(a,d,c,f,h){var g=this.axis;return g.getPosition?g.getPosition(c):a.call(this,d,c,f,h)});u(b,"getLabelPosition",function(a,g,c,f,h,k,b,l,u){var n=this.axis,p=k.y,e=20,y=k.align,v=(n.translate(this.pos)+n.startAngleRad+Math.PI/2)/Math.PI*180%360;n.isRadial?(a=n.getPosition(this.pos,n.center[2]/2+d(k.distance,-25)),"auto"===k.rotation?f.attr({rotation:v}): +null===p&&(p=n.chart.renderer.fontMetrics(f.styles.fontSize).b-f.getBBox().height/2),null===y&&(n.isCircular?(this.label.getBBox().width>n.len*n.tickInterval/(n.max-n.min)&&(e=0),y=v>e&&v<180-e?"left":v>180+e&&v<360-e?"right":"center"):y="center",f.attr({align:y})),a.x+=k.x,a.y+=p):a=a.call(this,g,c,f,h,k,b,l,u);return a});u(b,"getMarkPath",function(a,d,c,f,h,k,b){var g=this.axis;g.isRadial?(a=g.getPosition(this.pos,g.center[2]/2+f),d=["M",d,c,"L",a.x,a.y]):d=a.call(this,d,c,f,h,k,b);return d})})(x); +(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.Series,q=b.seriesType,e=b.seriesTypes;q("arearange","area",{lineWidth:1,marker:null,threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{series.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0},states:{hover:{halo:!1}}},{pointArrayMap:["low","high"],dataLabelCollections:["dataLabel", +"dataLabelUpper"],toYData:function(a){return[a.low,a.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(a){var d=this.chart,f=this.xAxis.postTranslate(a.rectPlotX,this.yAxis.len-a.plotHigh);a.plotHighX=f.x-d.plotLeft;a.plotHigh=f.y-d.plotTop},translate:function(){var a=this,d=a.yAxis,f=!!a.modifyValue;e.area.prototype.translate.apply(a);r(a.points,function(h){var b=h.low,c=h.high,l=h.plotY;null===c||null===b?h.isNull=!0:(h.plotLow=l,h.plotHigh=d.translate(f?a.modifyValue(c,h):c,0,1, +0,1),f&&(h.yBottom=h.plotHigh))});this.chart.polar&&r(this.points,function(d){a.highToXY(d)})},getGraphPath:function(a){var d=[],f=[],h,b=e.area.prototype.getGraphPath,c,l,k;k=this.options;var p=k.step;a=a||this.points;for(h=a.length;h--;)c=a[h],c.isNull||k.connectEnds||a[h+1]&&!a[h+1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1}),l={polarPlotY:c.polarPlotY,rectPlotX:c.rectPlotX,yBottom:c.yBottom,plotX:w(c.plotHighX,c.plotX),plotY:c.plotHigh,isNull:c.isNull},f.push(l),d.push(l),c.isNull|| +k.connectEnds||a[h-1]&&!a[h-1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1});a=b.call(this,a);p&&(!0===p&&(p="left"),k.step={left:"right",center:"center",right:"left"}[p]);d=b.call(this,d);f=b.call(this,f);k.step=p;k=[].concat(a,d);this.chart.polar||"M"!==f[0]||(f[0]="L");this.graphPath=k;this.areaPath=this.areaPath.concat(a,f);k.isArea=!0;k.xMap=a.xMap;this.areaPath.xMap=a.xMap;return k},drawDataLabels:function(){var a=this.data,d=a.length,f,h=[],b=m.prototype,c=this.options.dataLabels, +l=c.align,k=c.verticalAlign,p=c.inside,g,n,e=this.chart.inverted;if(c.enabled||this._hasPointLabels){for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.y=g.high,g._plotY=g.plotY,g.plotY=g.plotHigh,h[f]=g.dataLabel,g.dataLabel=g.dataLabelUpper,g.below=n,e?l||(c.align=n?"right":"left"):k||(c.verticalAlign=n?"top":"bottom"),c.x=c.xHigh,c.y=c.yHigh;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments);for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.dataLabelUpper= +g.dataLabel,g.dataLabel=h[f],g.y=g.low,g.plotY=g._plotY,g.below=!n,e?l||(c.align=n?"left":"right"):k||(c.verticalAlign=n?"bottom":"top"),c.x=c.xLow,c.y=c.yLow;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments)}c.align=l;c.verticalAlign=k},alignDataLabel:function(){e.column.prototype.alignDataLabel.apply(this,arguments)},setStackedPoints:t,getSymbol:t,drawPoints:t})})(x);(function(b){var r=b.seriesType;r("areasplinerange","arearange",null,{getPointSpline:b.seriesTypes.spline.prototype.getPointSpline})})(x); +(function(b){var r=b.defaultPlotOptions,t=b.each,w=b.merge,m=b.noop,q=b.pick,e=b.seriesType,a=b.seriesTypes.column.prototype;e("columnrange","arearange",w(r.column,r.arearange,{lineWidth:1,pointRange:null}),{translate:function(){var d=this,f=d.yAxis,b=d.xAxis,u=b.startAngleRad,c,l=d.chart,k=d.xAxis.isRadial,p;a.translate.apply(d);t(d.points,function(a){var g=a.shapeArgs,h=d.options.minPointLength,e,v;a.plotHigh=p=f.translate(a.high,0,1,0,1);a.plotLow=a.plotY;v=p;e=q(a.rectPlotY,a.plotY)-p;Math.abs(e)< +h?(h-=e,e+=h,v-=h/2):0>e&&(e*=-1,v-=e);k?(c=a.barX+u,a.shapeType="path",a.shapeArgs={d:d.polarArc(v+e,v,c,c+a.pointWidth)}):(g.height=e,g.y=v,a.tooltipPos=l.inverted?[f.len+f.pos-l.plotLeft-v-e/2,b.len+b.pos-l.plotTop-g.x-g.width/2,e]:[b.left-l.plotLeft+g.x+g.width/2,f.pos-l.plotTop+v+e/2,e])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:m,crispCol:a.crispCol,drawPoints:a.drawPoints,drawTracker:a.drawTracker,getColumnMetrics:a.getColumnMetrics,animate:function(){return a.animate.apply(this, +arguments)},polarArc:function(){return a.polarArc.apply(this,arguments)},pointAttribs:a.pointAttribs})})(x);(function(b){var r=b.each,t=b.isNumber,w=b.merge,m=b.pick,q=b.pInt,e=b.Series,a=b.seriesType,d=b.TrackerMixin;a("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2,borderWidth:1,borderColor:"#cccccc"},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:b.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0, +trackerGroups:["group","dataLabelsGroup"],translate:function(){var a=this.yAxis,d=this.options,b=a.center;this.generatePoints();r(this.points,function(c){var f=w(d.dial,c.dial),k=q(m(f.radius,80))*b[2]/200,h=q(m(f.baseLength,70))*k/100,g=q(m(f.rearLength,10))*k/100,n=f.baseWidth||3,u=f.topWidth||1,e=d.overshoot,v=a.startAngleRad+a.translate(c.y,null,null,null,!0);t(e)?(e=e/180*Math.PI,v=Math.max(a.startAngleRad-e,Math.min(a.endAngleRad+e,v))):!1===d.wrap&&(v=Math.max(a.startAngleRad,Math.min(a.endAngleRad, +v)));v=180*v/Math.PI;c.shapeType="path";c.shapeArgs={d:f.path||["M",-g,-n/2,"L",h,-n/2,k,-u/2,k,u/2,h,n/2,-g,n/2,"z"],translateX:b[0],translateY:b[1],rotation:v};c.plotX=b[0];c.plotY=b[1]})},drawPoints:function(){var a=this,d=a.yAxis.center,b=a.pivot,c=a.options,l=c.pivot,k=a.chart.renderer;r(a.points,function(d){var g=d.graphic,b=d.shapeArgs,f=b.d,h=w(c.dial,d.dial);g?(g.animate(b),b.d=f):(d.graphic=k[d.shapeType](b).attr({rotation:b.rotation,zIndex:1}).addClass("highcharts-dial").add(a.group),d.graphic.attr({stroke:h.borderColor|| +"none","stroke-width":h.borderWidth||0,fill:h.backgroundColor||"#000000"}))});b?b.animate({translateX:d[0],translateY:d[1]}):(a.pivot=k.circle(0,0,m(l.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(d[0],d[1]).add(a.group),a.pivot.attr({"stroke-width":l.borderWidth||0,stroke:l.borderColor||"#cccccc",fill:l.backgroundColor||"#000000"}))},animate:function(a){var d=this;a||(r(d.points,function(a){var c=a.graphic;c&&(c.attr({rotation:180*d.yAxis.startAngleRad/Math.PI}),c.animate({rotation:a.shapeArgs.rotation}, +d.options.animation))}),d.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);e.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,d){e.prototype.setData.call(this,a,!1);this.processData();this.generatePoints();m(d,!0)&&this.chart.redraw()},drawTracker:d&&d.drawTrackerPoint},{setState:function(a){this.state=a}})})(x);(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.seriesType, +q=b.seriesTypes;m("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,states:{hover:{brightness:-.3}},whiskerWidth:2},{pointArrayMap:["low","q1","median", +"q3","high"],toYData:function(b){return[b.low,b.q1,b.median,b.q3,b.high]},pointValKey:"high",pointAttribs:function(b){var a=this.options,d=b&&b.color||this.color;return{fill:b.fillColor||a.fillColor||d,stroke:a.lineColor||d,"stroke-width":a.lineWidth||0}},drawDataLabels:t,translate:function(){var b=this.yAxis,a=this.pointArrayMap;q.column.prototype.translate.apply(this);r(this.points,function(d){r(a,function(a){null!==d[a]&&(d[a+"Plot"]=b.translate(d[a],0,1,0,1))})})},drawPoints:function(){var b= +this,a=b.options,d=b.chart.renderer,f,h,u,c,l,k,p=0,g,n,m,q,v=!1!==b.doQuartiles,t,x=b.options.whiskerLength;r(b.points,function(e){var r=e.graphic,y=r?"animate":"attr",I=e.shapeArgs,z={},B={},G={},H=e.color||b.color;void 0!==e.plotY&&(g=I.width,n=Math.floor(I.x),m=n+g,q=Math.round(g/2),f=Math.floor(v?e.q1Plot:e.lowPlot),h=Math.floor(v?e.q3Plot:e.lowPlot),u=Math.floor(e.highPlot),c=Math.floor(e.lowPlot),r||(e.graphic=r=d.g("point").add(b.group),e.stem=d.path().addClass("highcharts-boxplot-stem").add(r), +x&&(e.whiskers=d.path().addClass("highcharts-boxplot-whisker").add(r)),v&&(e.box=d.path(void 0).addClass("highcharts-boxplot-box").add(r)),e.medianShape=d.path(void 0).addClass("highcharts-boxplot-median").add(r),z.stroke=e.stemColor||a.stemColor||H,z["stroke-width"]=w(e.stemWidth,a.stemWidth,a.lineWidth),z.dashstyle=e.stemDashStyle||a.stemDashStyle,e.stem.attr(z),x&&(B.stroke=e.whiskerColor||a.whiskerColor||H,B["stroke-width"]=w(e.whiskerWidth,a.whiskerWidth,a.lineWidth),e.whiskers.attr(B)),v&&(r= +b.pointAttribs(e),e.box.attr(r)),G.stroke=e.medianColor||a.medianColor||H,G["stroke-width"]=w(e.medianWidth,a.medianWidth,a.lineWidth),e.medianShape.attr(G)),k=e.stem.strokeWidth()%2/2,p=n+q+k,e.stem[y]({d:["M",p,h,"L",p,u,"M",p,f,"L",p,c]}),v&&(k=e.box.strokeWidth()%2/2,f=Math.floor(f)+k,h=Math.floor(h)+k,n+=k,m+=k,e.box[y]({d:["M",n,h,"L",n,f,"L",m,f,"L",m,h,"L",n,h,"z"]})),x&&(k=e.whiskers.strokeWidth()%2/2,u+=k,c+=k,t=/%$/.test(x)?q*parseFloat(x)/100:x/2,e.whiskers[y]({d:["M",p-t,u,"L",p+t,u, +"M",p-t,c,"L",p+t,c]})),l=Math.round(e.medianPlot),k=e.medianShape.strokeWidth()%2/2,l+=k,e.medianShape[y]({d:["M",n,l,"L",m,l]}))})},setStackedPoints:t})})(x);(function(b){var r=b.each,t=b.noop,w=b.seriesType,m=b.seriesTypes;w("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},whiskerWidth:null},{type:"errorbar", +pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:m.arearange?function(){var b=this.pointValKey;m.arearange.prototype.drawDataLabels.call(this);r(this.data,function(e){e.y=e[b]})}:t,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||m.column.prototype.getColumnMetrics.call(this)}})})(x);(function(b){var r=b.correctFloat,t=b.isNumber,w=b.pick,m=b.Point,q=b.Series,e=b.seriesType,a=b.seriesTypes; +e("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",translate:function(){var d=this.options,b=this.yAxis,h,e,c,l,k,p,g,n,m,q=w(d.minPointLength,5),v=d.threshold,t=d.stacking;a.column.prototype.translate.apply(this);this.minPointLengthOffset=0;g=n=v;e=this.points;h=0;for(d=e.length;hl.height&&(l.y+=l.height,l.height*=-1),c.plotY=l.y=Math.round(l.y)- +this.borderWidth%2/2,l.height=Math.max(Math.round(l.height),.001),c.yBottom=l.y+l.height,l.height<=q&&(l.height=q,this.minPointLengthOffset+=q),l.y-=this.minPointLengthOffset,l=c.plotY+(c.negative?l.height:0)-this.minPointLengthOffset,this.chart.inverted?c.tooltipPos[0]=b.len-l:c.tooltipPos[1]=l},processData:function(a){var b=this.yData,d=this.options.data,e,c=b.length,l,k,p,g,n,m;k=l=p=g=this.options.threshold||0;for(m=0;ma[k-1].y&&(l[2]+=c.height,l[5]+=c.height),e=e.concat(l);return e},drawGraph:function(){q.prototype.drawGraph.call(this);this.graph.attr({d:this.getCrispPath()})},getExtremes:b.noop},{getClassName:function(){var a=m.prototype.getClassName.call(this);this.isSum?a+=" highcharts-sum":this.isIntermediateSum&&(a+=" highcharts-intermediate-sum"); +return a},isValid:function(){return t(this.y,!0)||this.isSum||this.isIntermediateSum}})})(x);(function(b){var r=b.Series,t=b.seriesType,w=b.seriesTypes;t("polygon","scatter",{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var b=r.prototype.getGraphPath.call(this),q=b.length+1;q--;)(q===b.length||"M"===b[q])&&0=this.minPxSize/2?(d.shapeType="circle",d.shapeArgs={x:d.plotX,y:d.plotY,r:c},d.dlBox={x:d.plotX-c,y:d.plotY-c,width:2*c,height:2*c}):d.shapeArgs=d.plotY=d.dlBox=void 0},drawLegendSymbol:function(a,b){var d=this.chart.renderer,c=d.fontMetrics(a.itemStyle.fontSize).f/2;b.legendSymbol=d.circle(c,a.baseline-c,c).attr({zIndex:3}).add(b.legendGroup);b.legendSymbol.isMarker= +!0},drawPoints:l.column.prototype.drawPoints,alignDataLabel:l.column.prototype.alignDataLabel,buildKDTree:a,applyZones:a},{haloPath:function(a){return h.prototype.haloPath.call(this,this.shapeArgs.r+a)},ttBelow:!1});w.prototype.beforePadding=function(){var a=this,b=this.len,c=this.chart,h=0,l=b,u=this.isXAxis,m=u?"xData":"yData",w=this.min,x={},A=Math.min(c.plotWidth,c.plotHeight),C=Number.MAX_VALUE,D=-Number.MAX_VALUE,E=this.max-w,z=b/E,F=[];q(this.series,function(b){var g=b.options;!b.bubblePadding|| +!b.visible&&c.options.chart.ignoreHiddenSeries||(a.allowZoomOutside=!0,F.push(b),u&&(q(["minSize","maxSize"],function(a){var b=g[a],d=/%$/.test(b),b=f(b);x[a]=d?A*b/100:b}),b.minPxSize=x.minSize,b.maxPxSize=Math.max(x.maxSize,x.minSize),b=b.zData,b.length&&(C=d(g.zMin,Math.min(C,Math.max(t(b),!1===g.displayNegative?g.zThreshold:-Number.MAX_VALUE))),D=d(g.zMax,Math.max(D,r(b))))))});q(F,function(b){var d=b[m],c=d.length,f;u&&b.getRadii(C,D,b.minPxSize,b.maxPxSize);if(0f&&(f+=360),a.clientX=f):a.clientX=a.plotX};m.spline&&q(m.spline.prototype,"getPointSpline",function(a,b,f,h){var d,c,e,k,p,g,n;this.chart.polar?(d=f.plotX, +c=f.plotY,a=b[h-1],e=b[h+1],this.connectEnds&&(a||(a=b[b.length-2]),e||(e=b[1])),a&&e&&(k=a.plotX,p=a.plotY,b=e.plotX,g=e.plotY,k=(1.5*d+k)/2.5,p=(1.5*c+p)/2.5,e=(1.5*d+b)/2.5,n=(1.5*c+g)/2.5,b=Math.sqrt(Math.pow(k-d,2)+Math.pow(p-c,2)),g=Math.sqrt(Math.pow(e-d,2)+Math.pow(n-c,2)),k=Math.atan2(p-c,k-d),p=Math.atan2(n-c,e-d),n=Math.PI/2+(k+p)/2,Math.abs(k-n)>Math.PI/2&&(n-=Math.PI),k=d+Math.cos(n)*b,p=c+Math.sin(n)*b,e=d+Math.cos(Math.PI+n)*g,n=c+Math.sin(Math.PI+n)*g,f.rightContX=e,f.rightContY=n), +h?(f=["C",a.rightContX||a.plotX,a.rightContY||a.plotY,k||d,p||c,d,c],a.rightContX=a.rightContY=null):f=["M",d,c]):f=a.call(this,b,f,h);return f});q(e,"translate",function(a){var b=this.chart;a.call(this);if(b.polar&&(this.kdByAngle=b.tooltip&&b.tooltip.shared,!this.preventPostTranslate))for(a=this.points,b=a.length;b--;)this.toXY(a[b])});q(e,"getGraphPath",function(a,b){var d=this,e,m;if(this.chart.polar){b=b||this.points;for(e=0;eb.center[1]}),q(m,"alignDataLabel",function(a,b,f,h,m,c){this.chart.polar?(a=b.rectPlotX/Math.PI*180,null===h.align&&(h.align=20a?"left":200a?"right":"center"),null===h.verticalAlign&&(h.verticalAlign=45>a||315a?"top":"middle"),e.alignDataLabel.call(this,b,f,h,m,c)):a.call(this, +b,f,h,m,c)}));q(b,"getCoordinates",function(a,b){var d=this.chart,e={xAxis:[],yAxis:[]};d.polar?t(d.axes,function(a){var c=a.isXAxis,f=a.center,h=b.chartX-f[0]-d.plotLeft,f=b.chartY-f[1]-d.plotTop;e[c?"xAxis":"yAxis"].push({axis:a,value:a.translate(c?Math.PI-Math.atan2(h,f):Math.sqrt(Math.pow(h,2)+Math.pow(f,2)),!0)})}):e=a.call(this,b);return e})})(x)}); diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/highstock.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/highstock.js new file mode 100644 index 00000000..34a3f91c --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/highstock.js @@ -0,0 +1,496 @@ +/* + Highstock JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(N,a){"object"===typeof module&&module.exports?module.exports=N.document?a(N):a:N.Highcharts=a(N)})("undefined"!==typeof window?window:this,function(N){N=function(){var a=window,D=a.document,B=a.navigator&&a.navigator.userAgent||"",G=D&&D.createElementNS&&!!D.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,H=/(edge|msie|trident)/i.test(B)&&!window.opera,p=!G,l=/Firefox/.test(B),r=l&&4>parseInt(B.split("Firefox/")[1],10);return a.Highcharts?a.Highcharts.error(16,!0):{product:"Highstock", +version:"5.0.3",deg2rad:2*Math.PI/360,doc:D,hasBidiBug:r,hasTouch:D&&void 0!==D.documentElement.ontouchstart,isMS:H,isWebKit:/AppleWebKit/.test(B),isFirefox:l,isTouchDevice:/(Mobile|Android|Windows Phone)/.test(B),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:G,vml:p,win:a,charts:[],marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){}}}();(function(a){var D=[],B=a.charts,G=a.doc,H=a.win;a.error=function(a,l){a="Highcharts error #"+ +a+": www.highcharts.com/errors/"+a;if(l)throw Error(a);H.console&&console.log(a)};a.Fx=function(a,l,r){this.options=l;this.elem=a;this.prop=r};a.Fx.prototype={dSetter:function(){var a=this.paths[0],l=this.paths[1],r=[],w=this.now,t=a.length,k;if(1===w)r=this.toD;else if(t===l.length&&1>w)for(;t--;)k=parseFloat(a[t]),r[t]=isNaN(k)?a[t]:w*parseFloat(l[t]-k)+k;else r=l;this.elem.attr("d",r)},update:function(){var a=this.elem,l=this.prop,r=this.now,w=this.options.step;if(this[l+"Setter"])this[l+"Setter"](); +else a.attr?a.element&&a.attr(l,r):a.style[l]=r+this.unit;w&&w.call(a,r,this)},run:function(a,l,r){var p=this,t=function(a){return t.stopped?!1:p.step(a)},k;this.startTime=+new Date;this.start=a;this.end=l;this.unit=r;this.now=this.start;this.pos=0;t.elem=this.elem;t()&&1===D.push(t)&&(t.timerId=setInterval(function(){for(k=0;k=k+this.startTime){this.now=this.end;this.pos=1;this.update();a=m[this.prop]=!0;for(e in m)!0!==m[e]&&(a=!1);a&&t&&t.call(p);p=!1}else this.pos=w.easing((l-this.startTime)/k),this.now=this.start+(this.end-this.start)*this.pos,this.update(),p=!0;return p},initPath:function(p,l,r){function w(a){for(b=a.length;b--;)"M"!==a[b]&&"L"!==a[b]||a.splice(b+1,0,a[b+1],a[b+2],a[b+1],a[b+2])}function t(a,c){for(;a.lengthm?"AM":"PM",P:12>m?"am":"pm",S:q(t.getSeconds()),L:q(Math.round(l%1E3),3)},a.dateFormats);for(k in w)for(;-1!==p.indexOf("%"+k);)p= +p.replace("%"+k,"function"===typeof w[k]?w[k](l):w[k]);return r?p.substr(0,1).toUpperCase()+p.substr(1):p};a.formatSingle=function(p,l){var r=/\.([0-9])/,w=a.defaultOptions.lang;/f$/.test(p)?(r=(r=p.match(r))?r[1]:-1,null!==l&&(l=a.numberFormat(l,r,w.decimalPoint,-1=r&&(l=[1/r])));for(w=0;w=p||!t&&k<=(l[w]+(l[w+1]||l[w]))/ +2);w++);return m*r};a.stableSort=function(a,l){var r=a.length,p,t;for(t=0;tr&&(r=a[l]);return r};a.destroyObjectProperties=function(a,l){for(var r in a)a[r]&&a[r]!==l&&a[r].destroy&&a[r].destroy(),delete a[r]};a.discardElement=function(p){var l= +a.garbageBin;l||(l=a.createElement("div"));p&&l.appendChild(p);l.innerHTML=""};a.correctFloat=function(a,l){return parseFloat(a.toPrecision(l||14))};a.setAnimation=function(p,l){l.renderer.globalAnimation=a.pick(p,l.options.chart.animation,!0)};a.animObject=function(p){return a.isObject(p)?a.merge(p):{duration:p?500:0}};a.timeUnits={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5,month:24192E5,year:314496E5};a.numberFormat=function(p,l,r,w){p=+p||0;l=+l;var t=a.defaultOptions.lang, +k=(p.toString().split(".")[1]||"").length,m,e,g=Math.abs(p);-1===l?l=Math.min(k,20):a.isNumber(l)||(l=2);m=String(a.pInt(g.toFixed(l)));e=3p?"-":"")+(e?m.substr(0,e)+w:"");p+=m.substr(e).replace(/(\d{3})(?=\d)/g,"$1"+w);l&&(w=Math.abs(g-m+Math.pow(10,-Math.max(l,k)-1)),p+=r+w.toFixed(l).slice(2));return p};Math.easeInOutSine=function(a){return-.5*(Math.cos(Math.PI*a)-1)};a.getStyle=function(p,l){return"width"===l?Math.min(p.offsetWidth, +p.scrollWidth)-a.getStyle(p,"padding-left")-a.getStyle(p,"padding-right"):"height"===l?Math.min(p.offsetHeight,p.scrollHeight)-a.getStyle(p,"padding-top")-a.getStyle(p,"padding-bottom"):(p=H.getComputedStyle(p,void 0))&&a.pInt(p.getPropertyValue(l))};a.inArray=function(a,l){return l.indexOf?l.indexOf(a):[].indexOf.call(l,a)};a.grep=function(a,l){return[].filter.call(a,l)};a.map=function(a,l){for(var r=[],p=0,t=a.length;pl;l++)w[l]+=p(255*a),0>w[l]&&(w[l]=0),255z.width)z={width:0,height:0}}else z=this.htmlGetBBox();b.isSVG&&(a=z.width, +b=z.height,c&&L&&"11px"===L.fontSize&&"16.9"===b.toPrecision(3)&&(z.height=b=14),v&&(z.width=Math.abs(b*Math.sin(d))+Math.abs(a*Math.cos(d)),z.height=Math.abs(b*Math.cos(d))+Math.abs(a*Math.sin(d))));if(g&&0]*>/g,"")))},textSetter:function(a){a!==this.textStr&&(delete this.bBox,this.textStr=a,this.added&&this.renderer.buildText(this))},fillSetter:function(a,c,v){"string"===typeof a?v.setAttribute(c, +a):a&&this.colorGradient(a,c,v)},visibilitySetter:function(a,c,v){"inherit"===a?v.removeAttribute(c):v.setAttribute(c,a)},zIndexSetter:function(a,c){var v=this.renderer,z=this.parentGroup,b=(z||v).element||v.box,d,n=this.element,f;d=this.added;var e;k(a)&&(n.zIndex=a,a=+a,this[c]===a&&(d=!1),this[c]=a);if(d){(a=this.zIndex)&&z&&(z.handleZ=!0);c=b.childNodes;for(e=0;ea||!k(a)&&k(d)||0>a&&!k(d)&&b!==v.box)&&(b.insertBefore(n,z),f=!0);f||b.appendChild(n)}return f}, +_defaultSetter:function(a,c,v){v.setAttribute(c,a)}};D.prototype.yGetter=D.prototype.xGetter;D.prototype.translateXSetter=D.prototype.translateYSetter=D.prototype.rotationSetter=D.prototype.verticalAlignSetter=D.prototype.scaleXSetter=D.prototype.scaleYSetter=function(a,c){this[c]=a;this.doTransform=!0};D.prototype["stroke-widthSetter"]=D.prototype.strokeSetter=function(a,c,v){this[c]=a;this.stroke&&this["stroke-width"]?(D.prototype.fillSetter.call(this,this.stroke,"stroke",v),v.setAttribute("stroke-width", +this["stroke-width"]),this.hasStroke=!0):"stroke-width"===c&&0===a&&this.hasStroke&&(v.removeAttribute("stroke"),this.hasStroke=!1)};B=a.SVGRenderer=function(){this.init.apply(this,arguments)};B.prototype={Element:D,SVG_NS:K,init:function(a,c,v,b,d,n){var z;b=this.createElement("svg").attr({version:"1.1","class":"highcharts-root"}).css(this.getStyle(b));z=b.element;a.appendChild(z);-1===a.innerHTML.indexOf("xmlns")&&p(z,"xmlns",this.SVG_NS);this.isSVG=!0;this.box=z;this.boxWrapper=b;this.alignedObjects= +[];this.url=(E||A)&&g.getElementsByTagName("base").length?R.location.href.replace(/#.*?$/,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(g.createTextNode("Created with Highstock 5.0.3"));this.defs=this.createElement("defs").add();this.allowHTML=n;this.forExport=d;this.gradients={};this.cache={};this.cacheKeys=[];this.imgCount=0;this.setSize(c,v,!1);var f;E&&a.getBoundingClientRect&&(c=function(){w(a,{left:0,top:0});f=a.getBoundingClientRect(); +w(a,{left:Math.ceil(f.left)-f.left+"px",top:Math.ceil(f.top)-f.top+"px"})},c(),this.unSubPixelFix=G(R,"resize",c))},getStyle:function(a){return this.style=C({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},a)},setStyle:function(a){this.boxWrapper.css(this.getStyle(a))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();e(this.gradients||{});this.gradients= +null;a&&(this.defs=a.destroy());this.unSubPixelFix&&this.unSubPixelFix();return this.alignedObjects=null},createElement:function(a){var c=new this.Element;c.init(this,a);return c},draw:J,getRadialAttr:function(a,c){return{cx:a[0]-a[2]/2+c.cx*a[2],cy:a[1]-a[2]/2+c.cy*a[2],r:c.r*a[2]}},buildText:function(a){for(var c=a.element,z=this,b=z.forExport,n=y(a.textStr,"").toString(),f=-1!==n.indexOf("\x3c"),e=c.childNodes,q,F,x,A,I=p(c,"x"),m=a.styles,k=a.textWidth,C=m&&m.lineHeight,M=m&&m.textOutline,J=m&& +"ellipsis"===m.textOverflow,E=e.length,O=k&&!a.added&&this.box,t=function(a){var v;v=/(px|em)$/.test(a&&a.style.fontSize)?a.style.fontSize:m&&m.fontSize||z.style.fontSize||12;return C?u(C):z.fontMetrics(v,a.getAttribute("style")?a:c).h};E--;)c.removeChild(e[E]);f||M||J||k||-1!==n.indexOf(" ")?(q=/<.*class="([^"]+)".*>/,F=/<.*style="([^"]+)".*>/,x=/<.*href="(http[^"]+)".*>/,O&&O.appendChild(c),n=f?n.replace(/<(b|strong)>/g,'\x3cspan style\x3d"font-weight:bold"\x3e').replace(/<(i|em)>/g,'\x3cspan style\x3d"font-style:italic"\x3e').replace(//g,"\x3c/span\x3e").split(//g):[n],n=d(n,function(a){return""!==a}),h(n,function(d,n){var f,e=0;d=d.replace(/^\s+|\s+$/g,"").replace(//g,"\x3c/span\x3e|||");f=d.split("|||");h(f,function(d){if(""!==d||1===f.length){var u={},y=g.createElementNS(z.SVG_NS,"tspan"),L,h;q.test(d)&&(L=d.match(q)[1],p(y,"class",L));F.test(d)&&(h=d.match(F)[1].replace(/(;| |^)color([ :])/,"$1fill$2"),p(y,"style",h));x.test(d)&&!b&&(p(y, +"onclick",'location.href\x3d"'+d.match(x)[1]+'"'),w(y,{cursor:"pointer"}));d=(d.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"\x3c").replace(/>/g,"\x3e");if(" "!==d){y.appendChild(g.createTextNode(d));e?u.dx=0:n&&null!==I&&(u.x=I);p(y,u);c.appendChild(y);!e&&n&&(!v&&b&&w(y,{display:"block"}),p(y,"dy",t(y)));if(k){u=d.replace(/([^\^])-/g,"$1- ").split(" ");L="nowrap"===m.whiteSpace;for(var C=1k,void 0===A&&(A=M),J&&A?(Q/=2,""===l||!M&&.5>Q?u=[]:(l=d.substring(0,l.length+(M?-1:1)*Math.ceil(Q)),u=[l+(3k&&(k=P)),u.length&&y.appendChild(g.createTextNode(u.join(" ").replace(/- /g, +"-")));a.rotation=R}e++}}})}),A&&a.attr("title",a.textStr),O&&O.removeChild(c),M&&a.applyTextOutline&&a.applyTextOutline(M)):c.appendChild(g.createTextNode(n.replace(/</g,"\x3c").replace(/>/g,"\x3e")))},getContrast:function(a){a=r(a).rgba;return 510v?d>c+f&&de?d>c+f&&db&&e>a+f&&ed&&e>a+f&&ea?a+3:Math.round(1.2*a);return{h:c,b:Math.round(.8*c),f:a}},rotCorr:function(a, +c,v){var b=a;c&&v&&(b=Math.max(b*Math.cos(c*m),4));return{x:-a/3*Math.sin(c*m),y:b}},label:function(a,c,v,b,d,n,f,e,K){var q=this,u=q.g("button"!==K&&"label"),y=u.text=q.text("",0,0,f).attr({zIndex:1}),g,F,z=0,A=3,L=0,m,M,J,E,O,t={},l,R,r=/^url\((.*?)\)$/.test(b),p=r,P,w,Q,S;K&&u.addClass("highcharts-"+K);p=r;P=function(){return(l||0)%2/2};w=function(){var a=y.element.style,c={};F=(void 0===m||void 0===M||O)&&k(y.textStr)&&y.getBBox();u.width=(m||F.width||0)+2*A+L;u.height=(M||F.height||0)+2*A;R= +A+q.fontMetrics(a&&a.fontSize,y).b;p&&(g||(u.box=g=q.symbols[b]||r?q.symbol(b):q.rect(),g.addClass(("button"===K?"":"highcharts-label-box")+(K?" highcharts-"+K+"-box":"")),g.add(u),a=P(),c.x=a,c.y=(e?-R:0)+a),c.width=Math.round(u.width),c.height=Math.round(u.height),g.attr(C(c,t)),t={})};Q=function(){var a=L+A,c;c=e?0:R;k(m)&&F&&("center"===O||"right"===O)&&(a+={center:.5,right:1}[O]*(m-F.width));if(a!==y.x||c!==y.y)y.attr("x",a),void 0!==c&&y.attr("y",c);y.x=a;y.y=c};S=function(a,c){g?g.attr(a,c): +t[a]=c};u.onAdd=function(){y.add(u);u.attr({text:a||0===a?a:"",x:c,y:v});g&&k(d)&&u.attr({anchorX:d,anchorY:n})};u.widthSetter=function(a){m=a};u.heightSetter=function(a){M=a};u["text-alignSetter"]=function(a){O=a};u.paddingSetter=function(a){k(a)&&a!==A&&(A=u.padding=a,Q())};u.paddingLeftSetter=function(a){k(a)&&a!==L&&(L=a,Q())};u.alignSetter=function(a){a={left:0,center:.5,right:1}[a];a!==z&&(z=a,F&&u.attr({x:J}))};u.textSetter=function(a){void 0!==a&&y.textSetter(a);w();Q()};u["stroke-widthSetter"]= +function(a,c){a&&(p=!0);l=this["stroke-width"]=a;S(c,a)};u.strokeSetter=u.fillSetter=u.rSetter=function(a,c){"fill"===c&&a&&(p=!0);S(c,a)};u.anchorXSetter=function(a,c){d=a;S(c,Math.round(a)-P()-J)};u.anchorYSetter=function(a,c){n=a;S(c,a-E)};u.xSetter=function(a){u.x=a;z&&(a-=z*((m||F.width)+2*A));J=Math.round(a);u.attr("translateX",J)};u.ySetter=function(a){E=u.y=Math.round(a);u.attr("translateY",E)};var T=u.css;return C(u,{css:function(a){if(a){var c={};a=x(a);h(u.textProps,function(v){void 0!== +a[v]&&(c[v]=a[v],delete a[v])});y.css(c)}return T.call(u,a)},getBBox:function(){return{width:F.width+2*A,height:F.height+2*A,x:F.x-A,y:F.y-A}},shadow:function(a){a&&(w(),g&&g.shadow(a));return u},destroy:function(){I(u.element,"mouseenter");I(u.element,"mouseleave");y&&(y=y.destroy());g&&(g=g.destroy());D.prototype.destroy.call(u);u=q=w=Q=S=null}})}};a.Renderer=B})(N);(function(a){var D=a.attr,B=a.createElement,G=a.css,H=a.defined,p=a.each,l=a.extend,r=a.isFirefox,w=a.isMS,t=a.isWebKit,k=a.pInt,m= +a.SVGRenderer,e=a.win,g=a.wrap;l(a.SVGElement.prototype,{htmlCss:function(a){var e=this.element;if(e=a&&"SPAN"===e.tagName&&a.width)delete a.width,this.textWidth=e,this.updateTransform();a&&"ellipsis"===a.textOverflow&&(a.whiteSpace="nowrap",a.overflow="hidden");this.styles=l(this.styles,a);G(this.element,a);return this},htmlGetBBox:function(){var a=this.element;"text"===a.nodeName&&(a.style.position="absolute");return{x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var a= +this.renderer,e=this.element,f=this.translateX||0,d=this.translateY||0,b=this.x||0,q=this.y||0,g=this.textAlign||"left",c={left:0,center:.5,right:1}[g],F=this.styles;G(e,{marginLeft:f,marginTop:d});this.shadows&&p(this.shadows,function(a){G(a,{marginLeft:f+1,marginTop:d+1})});this.inverted&&p(e.childNodes,function(c){a.invertChild(c,e)});if("SPAN"===e.tagName){var n=this.rotation,A=k(this.textWidth),x=F&&F.whiteSpace,m=[n,g,e.innerHTML,this.textWidth,this.textAlign].join();m!==this.cTT&&(F=a.fontMetrics(e.style.fontSize).b, +H(n)&&this.setSpanRotation(n,c,F),G(e,{width:"",whiteSpace:x||"nowrap"}),e.offsetWidth>A&&/[ \-]/.test(e.textContent||e.innerText)&&G(e,{width:A+"px",display:"block",whiteSpace:x||"normal"}),this.getSpanCorrection(e.offsetWidth,F,c,n,g));G(e,{left:b+(this.xCorr||0)+"px",top:q+(this.yCorr||0)+"px"});t&&(F=e.offsetHeight);this.cTT=m}}else this.alignOnAdd=!0},setSpanRotation:function(a,g,f){var d={},b=w?"-ms-transform":t?"-webkit-transform":r?"MozTransform":e.opera?"-o-transform":"";d[b]=d.transform= +"rotate("+a+"deg)";d[b+(r?"Origin":"-origin")]=d.transformOrigin=100*g+"% "+f+"px";G(this.element,d)},getSpanCorrection:function(a,e,f){this.xCorr=-a*f;this.yCorr=-e}});l(m.prototype,{html:function(a,e,f){var d=this.createElement("span"),b=d.element,q=d.renderer,h=q.isSVG,c=function(a,c){p(["opacity","visibility"],function(b){g(a,b+"Setter",function(a,b,d,n){a.call(this,b,d,n);c[d]=b})})};d.textSetter=function(a){a!==b.innerHTML&&delete this.bBox;b.innerHTML=this.textStr=a;d.htmlUpdateTransform()}; +h&&c(d,d.element.style);d.xSetter=d.ySetter=d.alignSetter=d.rotationSetter=function(a,c){"align"===c&&(c="textAlign");d[c]=a;d.htmlUpdateTransform()};d.attr({text:a,x:Math.round(e),y:Math.round(f)}).css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize,position:"absolute"});b.style.whiteSpace="nowrap";d.css=d.htmlCss;h&&(d.add=function(a){var n,f=q.box.parentNode,e=[];if(this.parentGroup=a){if(n=a.div,!n){for(;a;)e.push(a),a=a.parentGroup;p(e.reverse(),function(a){var b,d=D(a.element, +"class");d&&(d={className:d});n=a.div=a.div||B("div",d,{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px",display:a.display,opacity:a.opacity,pointerEvents:a.styles&&a.styles.pointerEvents},n||f);b=n.style;l(a,{translateXSetter:function(c,d){b.left=c+"px";a[d]=c;a.doTransform=!0},translateYSetter:function(c,d){b.top=c+"px";a[d]=c;a.doTransform=!0}});c(a,b)})}}else n=f;n.appendChild(b);d.added=!0;d.alignOnAdd&&d.htmlUpdateTransform();return d});return d}})})(N);(function(a){var D, +B,G=a.createElement,H=a.css,p=a.defined,l=a.deg2rad,r=a.discardElement,w=a.doc,t=a.each,k=a.erase,m=a.extend;D=a.extendClass;var e=a.isArray,g=a.isNumber,h=a.isObject,C=a.merge;B=a.noop;var f=a.pick,d=a.pInt,b=a.SVGElement,q=a.SVGRenderer,E=a.win;a.svg||(B={docMode8:w&&8===w.documentMode,init:function(a,b){var c=["\x3c",b,' filled\x3d"f" stroked\x3d"f"'],d=["position: ","absolute",";"],f="div"===b;("shape"===b||f)&&d.push("left:0;top:0;width:1px;height:1px;");d.push("visibility: ",f?"hidden":"visible"); +c.push(' style\x3d"',d.join(""),'"/\x3e');b&&(c=f||"span"===b||"img"===b?c.join(""):a.prepVML(c),this.element=G(c));this.renderer=a},add:function(a){var c=this.renderer,b=this.element,d=c.box,f=a&&a.inverted,d=a?a.element||a:d;a&&(this.parentGroup=a);f&&c.invertChild(b,d);d.appendChild(b);this.added=!0;this.alignOnAdd&&!this.deferUpdateTransform&&this.updateTransform();if(this.onAdd)this.onAdd();this.className&&this.attr("class",this.className);return this},updateTransform:b.prototype.htmlUpdateTransform, +setSpanRotation:function(){var a=this.rotation,b=Math.cos(a*l),d=Math.sin(a*l);H(this.element,{filter:a?["progid:DXImageTransform.Microsoft.Matrix(M11\x3d",b,", M12\x3d",-d,", M21\x3d",d,", M22\x3d",b,", sizingMethod\x3d'auto expand')"].join(""):"none"})},getSpanCorrection:function(a,b,d,e,q){var c=e?Math.cos(e*l):1,n=e?Math.sin(e*l):0,u=f(this.elemHeight,this.element.offsetHeight),g;this.xCorr=0>c&&-a;this.yCorr=0>n&&-u;g=0>c*n;this.xCorr+=n*b*(g?1-d:d);this.yCorr-=c*b*(e?g?d:1-d:1);q&&"left"!== +q&&(this.xCorr-=a*d*(0>c?-1:1),e&&(this.yCorr-=u*d*(0>n?-1:1)),H(this.element,{textAlign:q}))},pathToVML:function(a){for(var c=a.length,b=[];c--;)g(a[c])?b[c]=Math.round(10*a[c])-5:"Z"===a[c]?b[c]="x":(b[c]=a[c],!a.isArc||"wa"!==a[c]&&"at"!==a[c]||(b[c+5]===b[c+7]&&(b[c+7]+=a[c+7]>a[c+5]?1:-1),b[c+6]===b[c+8]&&(b[c+8]+=a[c+8]>a[c+6]?1:-1)));return b.join(" ")||"x"},clip:function(a){var c=this,b;a?(b=a.members,k(b,c),b.push(c),c.destroyClip=function(){k(b,c)},a=a.getCSS(c)):(c.destroyClip&&c.destroyClip(), +a={clip:c.docMode8?"inherit":"rect(auto)"});return c.css(a)},css:b.prototype.htmlCss,safeRemoveChild:function(a){a.parentNode&&r(a)},destroy:function(){this.destroyClip&&this.destroyClip();return b.prototype.destroy.apply(this)},on:function(a,b){this.element["on"+a]=function(){var a=E.event;a.target=a.srcElement;b(a)};return this},cutOffPath:function(a,b){var c;a=a.split(/[ ,]/);c=a.length;if(9===c||11===c)a[c-4]=a[c-2]=d(a[c-2])-10*b;return a.join(" ")},shadow:function(a,b,e){var c=[],n,q=this.element, +g=this.renderer,u,I=q.style,F,v=q.path,K,h,m,z;v&&"string"!==typeof v.value&&(v="x");h=v;if(a){m=f(a.width,3);z=(a.opacity||.15)/m;for(n=1;3>=n;n++)K=2*m+1-2*n,e&&(h=this.cutOffPath(v.value,K+.5)),F=['\x3cshape isShadow\x3d"true" strokeweight\x3d"',K,'" filled\x3d"false" path\x3d"',h,'" coordsize\x3d"10 10" style\x3d"',q.style.cssText,'" /\x3e'],u=G(g.prepVML(F),null,{left:d(I.left)+f(a.offsetX,1),top:d(I.top)+f(a.offsetY,1)}),e&&(u.cutOff=K+1),F=['\x3cstroke color\x3d"',a.color||"#000000",'" opacity\x3d"', +z*n,'"/\x3e'],G(g.prepVML(F),null,null,u),b?b.element.appendChild(u):q.parentNode.insertBefore(u,q),c.push(u);this.shadows=c}return this},updateShadows:B,setAttr:function(a,b){this.docMode8?this.element[a]=b:this.element.setAttribute(a,b)},classSetter:function(a){(this.added?this.element:this).className=a},dashstyleSetter:function(a,b,d){(d.getElementsByTagName("stroke")[0]||G(this.renderer.prepVML(["\x3cstroke/\x3e"]),null,null,d))[b]=a||"solid";this[b]=a},dSetter:function(a,b,d){var c=this.shadows; +a=a||[];this.d=a.join&&a.join(" ");d.path=a=this.pathToVML(a);if(c)for(d=c.length;d--;)c[d].path=c[d].cutOff?this.cutOffPath(a,c[d].cutOff):a;this.setAttr(b,a)},fillSetter:function(a,b,d){var c=d.nodeName;"SPAN"===c?d.style.color=a:"IMG"!==c&&(d.filled="none"!==a,this.setAttr("fillcolor",this.renderer.color(a,d,b,this)))},"fill-opacitySetter":function(a,b,d){G(this.renderer.prepVML(["\x3c",b.split("-")[0],' opacity\x3d"',a,'"/\x3e']),null,null,d)},opacitySetter:B,rotationSetter:function(a,b,d){d= +d.style;this[b]=d[b]=a;d.left=-Math.round(Math.sin(a*l)+1)+"px";d.top=Math.round(Math.cos(a*l))+"px"},strokeSetter:function(a,b,d){this.setAttr("strokecolor",this.renderer.color(a,d,b,this))},"stroke-widthSetter":function(a,b,d){d.stroked=!!a;this[b]=a;g(a)&&(a+="px");this.setAttr("strokeweight",a)},titleSetter:function(a,b){this.setAttr(b,a)},visibilitySetter:function(a,b,d){"inherit"===a&&(a="visible");this.shadows&&t(this.shadows,function(c){c.style[b]=a});"DIV"===d.nodeName&&(a="hidden"===a?"-999em": +0,this.docMode8||(d.style[b]=a?"visible":"hidden"),b="top");d.style[b]=a},xSetter:function(a,b,d){this[b]=a;"x"===b?b="left":"y"===b&&(b="top");this.updateClipping?(this[b]=a,this.updateClipping()):d.style[b]=a},zIndexSetter:function(a,b,d){d.style[b]=a}},B["stroke-opacitySetter"]=B["fill-opacitySetter"],a.VMLElement=B=D(b,B),B.prototype.ySetter=B.prototype.widthSetter=B.prototype.heightSetter=B.prototype.xSetter,B={Element:B,isIE8:-1l[0]&&c.push([1,l[1]]);t(c,function(c,b){q.test(c[1])?(n=a.color(c[1]),v=n.get("rgb"),K=n.get("a")):(v=c[1],K=1);r.push(100*c[0]+"% "+v);b?(m=K,k=v):(z=K,E=v)});if("fill"===d)if("gradient"===g)d=A.x1||A[0]||0,c=A.y1||A[1]||0,F=A.x2||A[2]||0,A=A.y2||A[3]||0,C='angle\x3d"'+(90-180*Math.atan((A-c)/(F-d))/Math.PI)+'"',p();else{var h=A.r,w=2*h,B=2*h,D=A.cx,H=A.cy,V=b.radialReference,U,h=function(){V&&(U=f.getBBox(),D+=(V[0]- +U.x)/U.width-.5,H+=(V[1]-U.y)/U.height-.5,w*=V[2]/U.width,B*=V[2]/U.height);C='src\x3d"'+a.getOptions().global.VMLRadialGradientURL+'" size\x3d"'+w+","+B+'" origin\x3d"0.5,0.5" position\x3d"'+D+","+H+'" color2\x3d"'+E+'" ';p()};f.added?h():f.onAdd=h;h=k}else h=v}else q.test(c)&&"IMG"!==b.tagName?(n=a.color(c),f[d+"-opacitySetter"](n.get("a"),d,b),h=n.get("rgb")):(h=b.getElementsByTagName(d),h.length&&(h[0].opacity=1,h[0].type="solid"),h=c);return h},prepVML:function(a){var c=this.isIE8;a=a.join(""); +c?(a=a.replace("/\x3e",' xmlns\x3d"urn:schemas-microsoft-com:vml" /\x3e'),a=-1===a.indexOf('style\x3d"')?a.replace("/\x3e",' style\x3d"display:inline-block;behavior:url(#default#VML);" /\x3e'):a.replace('style\x3d"','style\x3d"display:inline-block;behavior:url(#default#VML);')):a=a.replace("\x3c","\x3chcv:");return a},text:q.prototype.html,path:function(a){var c={coordsize:"10 10"};e(a)?c.d=a:h(a)&&m(c,a);return this.createElement("shape").attr(c)},circle:function(a,b,d){var c=this.symbol("circle"); +h(a)&&(d=a.r,b=a.y,a=a.x);c.isCircle=!0;c.r=d;return c.attr({x:a,y:b})},g:function(a){var c;a&&(c={className:"highcharts-"+a,"class":"highcharts-"+a});return this.createElement("div").attr(c)},image:function(a,b,d,f,e){var c=this.createElement("img").attr({src:a});1f&&m-d*bg&&(F=Math.round((e-m)/Math.cos(f*w)));else if(e=m+(1-d)*b,m-d*bg&&(E=g-a.x+E*d,c=-1),E=Math.min(q, +E),EE||k.autoRotation&&(C.styles||{}).width)F=E;F&&(n.width=F,(k.options.labels.style||{}).textOverflow||(n.textOverflow="ellipsis"),C.css(n))},getPosition:function(a,k,m,e){var g=this.axis,h=g.chart,l=e&&h.oldChartHeight||h.chartHeight;return{x:a?g.translate(k+m,null,null,e)+g.transB:g.left+g.offset+(g.opposite?(e&&h.oldChartWidth||h.chartWidth)-g.right-g.left:0),y:a?l-g.bottom+g.offset-(g.opposite?g.height:0):l-g.translate(k+m,null, +null,e)-g.transB}},getLabelPosition:function(a,k,m,e,g,h,l,f){var d=this.axis,b=d.transA,q=d.reversed,E=d.staggerLines,c=d.tickRotCorr||{x:0,y:0},F=g.y;B(F)||(F=0===d.side?m.rotation?-8:-m.getBBox().height:2===d.side?c.y+8:Math.cos(m.rotation*w)*(c.y-m.getBBox(!1,0).height/2));a=a+g.x+c.x-(h&&e?h*b*(q?-1:1):0);k=k+F-(h&&!e?h*b*(q?1:-1):0);E&&(m=l/(f||1)%E,d.opposite&&(m=E-m-1),k+=d.labelOffset/E*m);return{x:a,y:Math.round(k)}},getMarkPath:function(a,k,m,e,g,h){return h.crispLine(["M",a,k,"L",a+(g? +0:-m),k+(g?m:0)],e)},render:function(a,k,m){var e=this.axis,g=e.options,h=e.chart.renderer,C=e.horiz,f=this.type,d=this.label,b=this.pos,q=g.labels,E=this.gridLine,c=f?f+"Tick":"tick",F=e.tickSize(c),n=this.mark,A=!n,x=q.step,p={},y=!0,u=e.tickmarkOffset,I=this.getPosition(C,b,u,k),M=I.x,I=I.y,v=C&&M===e.pos+e.len||!C&&I===e.pos?-1:1,K=f?f+"Grid":"grid",O=g[K+"LineWidth"],R=g[K+"LineColor"],z=g[K+"LineDashStyle"],K=l(g[c+"Width"],!f&&e.isXAxis?1:0),c=g[c+"Color"];m=l(m,1);this.isActive=!0;E||(p.stroke= +R,p["stroke-width"]=O,z&&(p.dashstyle=z),f||(p.zIndex=1),k&&(p.opacity=0),this.gridLine=E=h.path().attr(p).addClass("highcharts-"+(f?f+"-":"")+"grid-line").add(e.gridGroup));if(!k&&E&&(b=e.getPlotLinePath(b+u,E.strokeWidth()*v,k,!0)))E[this.isNew?"attr":"animate"]({d:b,opacity:m});F&&(e.opposite&&(F[0]=-F[0]),A&&(this.mark=n=h.path().addClass("highcharts-"+(f?f+"-":"")+"tick").add(e.axisGroup),n.attr({stroke:c,"stroke-width":K})),n[A?"attr":"animate"]({d:this.getMarkPath(M,I,F[0],n.strokeWidth()* +v,C,h),opacity:m}));d&&H(M)&&(d.xy=I=this.getLabelPosition(M,I,d,C,q,u,a,x),this.isFirst&&!this.isLast&&!l(g.showFirstLabel,1)||this.isLast&&!this.isFirst&&!l(g.showLastLabel,1)?y=!1:!C||e.isRadial||q.step||q.rotation||k||0===m||this.handleOverflow(I),x&&a%x&&(y=!1),y&&H(I.y)?(I.opacity=m,d[this.isNew?"attr":"animate"](I)):(r(d),d.attr("y",-9999)),this.isNew=!1)},destroy:function(){G(this,this.axis)}}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.AxisPlotLineOrBandExtension, +l=a.color,r=a.correctFloat,w=a.defaultOptions,t=a.defined,k=a.deg2rad,m=a.destroyObjectProperties,e=a.each,g=a.error,h=a.extend,C=a.fireEvent,f=a.format,d=a.getMagnitude,b=a.grep,q=a.inArray,E=a.isArray,c=a.isNumber,F=a.isString,n=a.merge,A=a.normalizeTickInterval,x=a.pick,J=a.PlotLineOrBand,y=a.removeEvent,u=a.splat,I=a.syncTimeout,M=a.Tick;a.Axis=function(){this.init.apply(this,arguments)};a.Axis.prototype={defaultOptions:{dateTimeLabelFormats:{millisecond:"%H:%M:%S.%L",second:"%H:%M:%S",minute:"%H:%M", +hour:"%H:%M",day:"%e. %b",week:"%e. %b",month:"%b '%y",year:"%Y"},endOnTick:!1,labels:{enabled:!0,style:{color:"#666666",cursor:"default",fontSize:"11px"},x:0},minPadding:.01,maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:!1,tickLength:10,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb", +lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},maxPadding:.05,minPadding:.05,startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{enabled:!1,formatter:function(){return a.numberFormat(this.total,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"#000000",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15}, +title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},init:function(a,c){var b=c.isX;this.chart=a;this.horiz=a.inverted?!b:b;this.isXAxis=b;this.coll=this.coll||(b?"xAxis":"yAxis");this.opposite=c.opposite;this.side=c.side||(this.horiz?this.opposite?0:2:this.opposite?1:3);this.setOptions(c);var d=this.options,v=d.type;this.labelFormatter=d.labels.formatter||this.defaultLabelFormatter; +this.userOptions=c;this.minPixelPadding=0;this.reversed=d.reversed;this.visible=!1!==d.visible;this.zoomEnabled=!1!==d.zoomEnabled;this.hasNames="category"===v||!0===d.categories;this.categories=d.categories||this.hasNames;this.names=this.names||[];this.isLog="logarithmic"===v;this.isDatetimeAxis="datetime"===v;this.isLinked=t(d.linkedTo);this.ticks={};this.labelEdge=[];this.minorTicks={};this.plotLinesAndBands=[];this.alternateBands={};this.len=0;this.minRange=this.userMinRange=d.minRange||d.maxZoom; +this.range=d.range;this.offset=d.offset||0;this.stacks={};this.oldStacks={};this.stacksTouched=0;this.min=this.max=null;this.crosshair=x(d.crosshair,u(a.options.tooltip.crosshairs)[b?0:1],!1);var f;c=this.options.events;-1===q(this,a.axes)&&(b?a.axes.splice(a.xAxis.length,0,this):a.axes.push(this),a[this.coll].push(this));this.series=this.series||[];a.inverted&&b&&void 0===this.reversed&&(this.reversed=!0);this.removePlotLine=this.removePlotBand=this.removePlotBandOrLine;for(f in c)D(this,f,c[f]); +this.isLog&&(this.val2lin=this.log2lin,this.lin2val=this.lin2log)},setOptions:function(a){this.options=n(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],n(w[this.coll],a))},defaultLabelFormatter:function(){var c=this.axis,b=this.value,d=c.categories,e=this.dateTimeLabelFormat,q=w.lang,u=q.numericSymbols,q=q.numericSymbolMagnitude||1E3,n=u&&u.length,g,y=c.options.labels.format, +c=c.isLog?b:c.tickInterval;if(y)g=f(y,this);else if(d)g=b;else if(e)g=a.dateFormat(e,b);else if(n&&1E3<=c)for(;n--&&void 0===g;)d=Math.pow(q,n+1),c>=d&&0===10*b%d&&null!==u[n]&&0!==b&&(g=a.numberFormat(b/d,-1)+u[n]);void 0===g&&(g=1E4<=Math.abs(b)?a.numberFormat(b,-1):a.numberFormat(b,-1,void 0,""));return g},getSeriesExtremes:function(){var a=this,d=a.chart;a.hasVisibleSeries=!1;a.dataMin=a.dataMax=a.threshold=null;a.softThreshold=!a.isXAxis;a.buildStacks&&a.buildStacks();e(a.series,function(v){if(v.visible|| +!d.options.chart.ignoreHiddenSeries){var f=v.options,e=f.threshold,q;a.hasVisibleSeries=!0;a.isLog&&0>=e&&(e=null);if(a.isXAxis)f=v.xData,f.length&&(v=H(f),c(v)||v instanceof Date||(f=b(f,function(a){return c(a)}),v=H(f)),a.dataMin=Math.min(x(a.dataMin,f[0]),v),a.dataMax=Math.max(x(a.dataMax,f[0]),G(f)));else if(v.getExtremes(),q=v.dataMax,v=v.dataMin,t(v)&&t(q)&&(a.dataMin=Math.min(x(a.dataMin,v),v),a.dataMax=Math.max(x(a.dataMax,q),q)),t(e)&&(a.threshold=e),!f.softThreshold||a.isLog)a.softThreshold= +!1}})},translate:function(a,b,d,f,e,q){var v=this.linkedParent||this,u=1,n=0,g=f?v.oldTransA:v.transA;f=f?v.oldMin:v.min;var K=v.minPixelPadding;e=(v.isOrdinal||v.isBroken||v.isLog&&e)&&v.lin2val;g||(g=v.transA);d&&(u*=-1,n=v.len);v.reversed&&(u*=-1,n-=u*(v.sector||v.len));b?(a=(a*u+n-K)/g+f,e&&(a=v.lin2val(a))):(e&&(a=v.val2lin(a)),a=u*(a-f)*g+n+u*K+(c(q)?g*q:0));return a},toPixels:function(a,c){return this.translate(a,!1,!this.horiz,null,!0)+(c?0:this.pos)},toValue:function(a,c){return this.translate(a- +(c?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a,b,d,f,e){var v=this.chart,q=this.left,u=this.top,n,g,K=d&&v.oldChartHeight||v.chartHeight,y=d&&v.oldChartWidth||v.chartWidth,z;n=this.transB;var h=function(a,c,b){if(ab)f?a=Math.min(Math.max(c,a),b):z=!0;return a};e=x(e,this.translate(a,null,null,d));a=d=Math.round(e+n);n=g=Math.round(K-e-n);c(e)?this.horiz?(n=u,g=K-this.bottom,a=d=h(a,q,q+this.width)):(a=q,d=y-this.right,n=g=h(n,u,u+this.height)):z=!0;return z&&!f?null:v.renderer.crispLine(["M", +a,n,"L",d,g],b||1)},getLinearTickPositions:function(a,b,d){var v,f=r(Math.floor(b/a)*a),e=r(Math.ceil(d/a)*a),q=[];if(b===d&&c(b))return[b];for(b=f;b<=e;){q.push(b);b=r(b+a);if(b===v)break;v=b}return q},getMinorTickPositions:function(){var a=this.options,c=this.tickPositions,b=this.minorTickInterval,d=[],f,e=this.pointRangePadding||0;f=this.min-e;var e=this.max+e,q=e-f;if(q&&q/b=this.minRange,q,u,n,g,y,h;this.isXAxis&&void 0===this.minRange&&!this.isLog&&(t(a.min)||t(a.max)?this.minRange=null:(e(this.series,function(a){g=a.xData;for(u=y=a.xIncrement? +1:g.length-1;0=E?(p=E,m=0):b.dataMax<=E&&(J=E,I=0)),b.min=x(w,p,b.dataMin),b.max=x(B,J,b.dataMax));q&&(!a&&0>=Math.min(b.min, +x(b.dataMin,b.min))&&g(10,1),b.min=r(u(b.min),15),b.max=r(u(b.max),15));b.range&&t(b.max)&&(b.userMin=b.min=w=Math.max(b.min,b.minFromRange()),b.userMax=B=b.max,b.range=null);C(b,"foundExtremes");b.beforePadding&&b.beforePadding();b.adjustForMinRange();!(l||b.axisPointRange||b.usePercentage||h)&&t(b.min)&&t(b.max)&&(u=b.max-b.min)&&(!t(w)&&m&&(b.min-=u*m),!t(B)&&I&&(b.max+=u*I));c(f.floor)?b.min=Math.max(b.min,f.floor):c(f.softMin)&&(b.min=Math.min(b.min,f.softMin));c(f.ceiling)?b.max=Math.min(b.max, +f.ceiling):c(f.softMax)&&(b.max=Math.max(b.max,f.softMax));M&&t(b.dataMin)&&(E=E||0,!t(w)&&b.min=E?b.min=E:!t(B)&&b.max>E&&b.dataMax<=E&&(b.max=E));b.tickInterval=b.min===b.max||void 0===b.min||void 0===b.max?1:h&&!k&&F===b.linkedParent.options.tickPixelInterval?k=b.linkedParent.tickInterval:x(k,this.tickAmount?(b.max-b.min)/Math.max(this.tickAmount-1,1):void 0,l?1:(b.max-b.min)*F/Math.max(b.len,F));y&&!a&&e(b.series,function(a){a.processData(b.min!==b.oldMin||b.max!==b.oldMax)});b.setAxisTranslation(!0); +b.beforeSetTickPositions&&b.beforeSetTickPositions();b.postProcessTickInterval&&(b.tickInterval=b.postProcessTickInterval(b.tickInterval));b.pointRange&&!k&&(b.tickInterval=Math.max(b.pointRange,b.tickInterval));a=x(f.minTickInterval,b.isDatetimeAxis&&b.closestPointRange);!k&&b.tickIntervalb.tickInterval&&1E3b.max)),!!this.tickAmount));this.tickAmount||(b.tickInterval= +b.unsquish());this.setTickPositions()},setTickPositions:function(){var a=this.options,b,c=a.tickPositions,d=a.tickPositioner,f=a.startOnTick,e=a.endOnTick,q;this.tickmarkOffset=this.categories&&"between"===a.tickmarkPlacement&&1===this.tickInterval?.5:0;this.minorTickInterval="auto"===a.minorTickInterval&&this.tickInterval?this.tickInterval/5:a.minorTickInterval;this.tickPositions=b=c&&c.slice();!b&&(b=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,a.units), +this.min,this.max,a.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),b.length>this.len&&(b=[b[0],b.pop()]),this.tickPositions=b,d&&(d=d.apply(this,[this.min,this.max])))&&(this.tickPositions=b=d);this.isLinked||(this.trimTicks(b,f,e),this.min===this.max&&t(this.min)&&!this.tickAmount&&(q=!0,this.min-=.5,this.max+=.5),this.single=q,c||d||this.adjustTickAmount())}, +trimTicks:function(a,b,c){var d=a[0],f=a[a.length-1],v=this.minPointOffset||0;if(b)this.min=d;else for(;this.min-v>a[0];)a.shift();if(c)this.max=f;else for(;this.max+vb&&(this.finalTickAmt=b,b=5);this.tickAmount=b},adjustTickAmount:function(){var a=this.tickInterval,b=this.tickPositions,c=this.tickAmount,d=this.finalTickAmt,f=b&&b.length;if(fc&&(this.tickInterval*= +2,this.setTickPositions());if(t(d)){for(a=c=b.length;a--;)(3===d&&1===a%2||2>=d&&0=f&&(b=f)),this.displayBtn=void 0!==a||void 0!==b,this.setExtremes(a,b,!1,void 0,{trigger:"zoom"});return!0},setAxisSize:function(){var a=this.chart,b=this.options,c=b.offsetLeft||0,d=this.horiz,f=x(b.width,a.plotWidth-c+(b.offsetRight||0)),e=x(b.height,a.plotHeight),q=x(b.top,a.plotTop),b=x(b.left,a.plotLeft+c),c=/%$/;c.test(e)&&(e=Math.round(parseFloat(e)/ +100*a.plotHeight));c.test(q)&&(q=Math.round(parseFloat(q)/100*a.plotHeight+a.plotTop));this.left=b;this.top=q;this.width=f;this.height=e;this.bottom=a.chartHeight-e-q;this.right=a.chartWidth-f-b;this.len=Math.max(d?f:e,0);this.pos=d?b:q},getExtremes:function(){var a=this.isLog,b=this.lin2log;return{min:a?r(b(this.min)):this.min,max:a?r(b(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var b=this.isLog,c=this.lin2log, +d=b?c(this.min):this.min,b=b?c(this.max):this.max;null===a?a=d:d>a?a=d:ba?"right":195a?"left":"center"},tickSize:function(a){var b=this.options,c=b[a+"Length"],d=x(b[a+"Width"],"tick"===a&&this.isXAxis?1:0);if(d&&c)return"inside"===b[a+"Position"]&&(c=-c),[c,d]},labelMetrics:function(){return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize, +this.ticks[0]&&this.ticks[0].label)},unsquish:function(){var a=this.options.labels,b=this.horiz,c=this.tickInterval,d=c,f=this.len/(((this.categories?1:0)+this.max-this.min)/c),q,u=a.rotation,n=this.labelMetrics(),g,y=Number.MAX_VALUE,h,I=function(a){a/=f||1;a=1=a)g=I(Math.abs(n.h/Math.sin(k*a))),b=g+Math.abs(a/360),b(c.step||0)&&!c.rotation&&(this.staggerLines||1)*a.plotWidth/d||!b&&(f&&f-a.spacing[3]||.33*a.chartWidth)},renderUnsquish:function(){var a=this.chart,b=a.renderer,c=this.tickPositions,d=this.ticks,f=this.options.labels,q=this.horiz,u=this.getSlotWidth(),g=Math.max(1, +Math.round(u-2*(f.padding||5))),y={},h=this.labelMetrics(),I=f.style&&f.style.textOverflow,A,x=0,m,k;F(f.rotation)||(y.rotation=f.rotation||0);e(c,function(a){(a=d[a])&&a.labelLength>x&&(x=a.labelLength)});this.maxLabelLength=x;if(this.autoRotation)x>g&&x>h.h?y.rotation=this.labelRotation:this.labelRotation=0;else if(u&&(A={width:g+"px"},!I))for(A.textOverflow="clip",m=c.length;!q&&m--;)if(k=c[m],g=d[k].label)g.styles&&"ellipsis"===g.styles.textOverflow?g.css({textOverflow:"clip"}):d[k].labelLength> +u&&g.css({width:u+"px"}),g.getBBox().height>this.len/c.length-(h.h-h.f)&&(g.specCss={textOverflow:"ellipsis"});y.rotation&&(A={width:(x>.5*a.chartHeight?.33*a.chartHeight:a.chartHeight)+"px"},I||(A.textOverflow="ellipsis"));if(this.labelAlign=f.align||this.autoLabelAlign(this.labelRotation))y.align=this.labelAlign;e(c,function(a){var b=(a=d[a])&&a.label;b&&(b.attr(y),A&&b.css(n(A,b.specCss)),delete b.specCss,a.rotation=y.rotation)});this.tickRotCorr=b.rotCorr(h.b,this.labelRotation||0,0!==this.side)}, +hasData:function(){return this.hasVisibleSeries||t(this.min)&&t(this.max)&&!!this.tickPositions},getOffset:function(){var a=this,b=a.chart,c=b.renderer,d=a.options,f=a.tickPositions,q=a.ticks,u=a.horiz,n=a.side,g=b.inverted?[1,0,3,2][n]:n,y,h,I=0,A,m=0,k=d.title,F=d.labels,E=0,l=a.opposite,C=b.axisOffset,b=b.clipOffset,p=[-1,1,1,-1][n],r,J=d.className,w=a.axisParent,B=this.tickSize("tick");y=a.hasData();a.showAxis=h=y||x(d.showEmpty,!0);a.staggerLines=a.horiz&&F.staggerLines;a.axisGroup||(a.gridGroup= +c.g("grid").attr({zIndex:d.gridZIndex||1}).addClass("highcharts-"+this.coll.toLowerCase()+"-grid "+(J||"")).add(w),a.axisGroup=c.g("axis").attr({zIndex:d.zIndex||2}).addClass("highcharts-"+this.coll.toLowerCase()+" "+(J||"")).add(w),a.labelGroup=c.g("axis-labels").attr({zIndex:F.zIndex||7}).addClass("highcharts-"+a.coll.toLowerCase()+"-labels "+(J||"")).add(w));if(y||a.isLinked)e(f,function(b){q[b]?q[b].addLabel():q[b]=new M(a,b)}),a.renderUnsquish(),!1===F.reserveSpace||0!==n&&2!==n&&{1:"left",3:"right"}[n]!== +a.labelAlign&&"center"!==a.labelAlign||e(f,function(a){E=Math.max(q[a].getLabelSize(),E)}),a.staggerLines&&(E*=a.staggerLines,a.labelOffset=E*(a.opposite?-1:1));else for(r in q)q[r].destroy(),delete q[r];k&&k.text&&!1!==k.enabled&&(a.axisTitle||((r=k.textAlign)||(r=(u?{low:"left",middle:"center",high:"right"}:{low:l?"right":"left",middle:"center",high:l?"left":"right"})[k.align]),a.axisTitle=c.text(k.text,0,0,k.useHTML).attr({zIndex:7,rotation:k.rotation||0,align:r}).addClass("highcharts-axis-title").css(k.style).add(a.axisGroup), +a.axisTitle.isNew=!0),h&&(I=a.axisTitle.getBBox()[u?"height":"width"],A=k.offset,m=t(A)?0:x(k.margin,u?5:10)),a.axisTitle[h?"show":"hide"](!0));a.renderLine();a.offset=p*x(d.offset,C[n]);a.tickRotCorr=a.tickRotCorr||{x:0,y:0};c=0===n?-a.labelMetrics().h:2===n?a.tickRotCorr.y:0;m=Math.abs(E)+m;E&&(m=m-c+p*(u?x(F.y,a.tickRotCorr.y+8*p):F.x));a.axisTitleMargin=x(A,m);C[n]=Math.max(C[n],a.axisTitleMargin+I+p*a.offset,m,y&&f.length&&B?B[0]:0);d=d.offset?0:2*Math.floor(a.axisLine.strokeWidth()/2);b[g]= +Math.max(b[g],d)},getLinePath:function(a){var b=this.chart,c=this.opposite,d=this.offset,f=this.horiz,e=this.left+(c?this.width:0)+d,d=b.chartHeight-this.bottom-(c?this.height:0)+d;c&&(a*=-1);return b.renderer.crispLine(["M",f?this.left:e,f?d:this.top,"L",f?b.chartWidth-this.right:e,f?d:b.chartHeight-this.bottom],a)},renderLine:function(){this.axisLine||(this.axisLine=this.chart.renderer.path().addClass("highcharts-axis-line").add(this.axisGroup),this.axisLine.attr({stroke:this.options.lineColor, +"stroke-width":this.options.lineWidth,zIndex:7}))},getTitlePosition:function(){var a=this.horiz,b=this.left,c=this.top,d=this.len,f=this.options.title,e=a?b:c,q=this.opposite,u=this.offset,n=f.x||0,g=f.y||0,y=this.chart.renderer.fontMetrics(f.style&&f.style.fontSize,this.axisTitle).f,d={low:e+(a?0:d),middle:e+d/2,high:e+(a?d:0)}[f.align],b=(a?c+this.height:b)+(a?1:-1)*(q?-1:1)*this.axisTitleMargin+(2===this.side?y:0);return{x:a?d+n:b+(q?this.width:0)+u+n,y:a?b+g-(q?this.height:0)+u:d+g}},render:function(){var a= +this,b=a.chart,d=b.renderer,f=a.options,q=a.isLog,u=a.lin2log,n=a.isLinked,g=a.tickPositions,y=a.axisTitle,h=a.ticks,A=a.minorTicks,x=a.alternateBands,m=f.stackLabels,k=f.alternateGridColor,F=a.tickmarkOffset,E=a.axisLine,l=b.hasRendered&&c(a.oldMin),C=a.showAxis,p=B(d.globalAnimation),r,t;a.labelEdge.length=0;a.overlap=!1;e([h,A,x],function(a){for(var b in a)a[b].isActive=!1});if(a.hasData()||n)a.minorTickInterval&&!a.categories&&e(a.getMinorTickPositions(),function(b){A[b]||(A[b]=new M(a,b,"minor")); +l&&A[b].isNew&&A[b].render(null,!0);A[b].render(null,!1,1)}),g.length&&(e(g,function(b,c){if(!n||b>=a.min&&b<=a.max)h[b]||(h[b]=new M(a,b)),l&&h[b].isNew&&h[b].render(c,!0,.1),h[b].render(c)}),F&&(0===a.min||a.single)&&(h[-1]||(h[-1]=new M(a,-1,null,!0)),h[-1].render(-1))),k&&e(g,function(c,d){t=void 0!==g[d+1]?g[d+1]+F:a.max-F;0===d%2&&c=e.second?0:A*Math.floor(c.getMilliseconds()/A));if(n>=e.second)c[B.hcSetSeconds](n>=e.minute?0:A*Math.floor(c.getSeconds()/ +A));if(n>=e.minute)c[B.hcSetMinutes](n>=e.hour?0:A*Math.floor(c[B.hcGetMinutes]()/A));if(n>=e.hour)c[B.hcSetHours](n>=e.day?0:A*Math.floor(c[B.hcGetHours]()/A));if(n>=e.day)c[B.hcSetDate](n>=e.month?1:A*Math.floor(c[B.hcGetDate]()/A));n>=e.month&&(c[B.hcSetMonth](n>=e.year?0:A*Math.floor(c[B.hcGetMonth]()/A)),g=c[B.hcGetFullYear]());if(n>=e.year)c[B.hcSetFullYear](g-g%A);if(n===e.week)c[B.hcSetDate](c[B.hcGetDate]()-c[B.hcGetDay]()+m(f,1));g=c[B.hcGetFullYear]();f=c[B.hcGetMonth]();var C=c[B.hcGetDate](), +y=c[B.hcGetHours]();if(B.hcTimezoneOffset||B.hcGetTimezoneOffset)x=(!q||!!B.hcGetTimezoneOffset)&&(k-h>4*e.month||t(h)!==t(k)),c=c.getTime(),c=new B(c+t(c));q=c.getTime();for(h=1;qr&&(!t||b<=w)&&void 0!==b&&h.push(b),b>w&&(q=!0),b=d;else r=e(r),w= +e(w),a=k[t?"minorTickInterval":"tickInterval"],a=p("auto"===a?null:a,this._minorAutoInterval,k.tickPixelInterval/(t?5:1)*(w-r)/((t?m/this.tickPositions.length:m)||1)),a=H(a,null,B(a)),h=G(this.getLinearTickPositions(a,r,w),g),t||(this._minorAutoInterval=a/5);t||(this.tickInterval=a);return h};D.prototype.log2lin=function(a){return Math.log(a)/Math.LN10};D.prototype.lin2log=function(a){return Math.pow(10,a)}})(N);(function(a){var D=a.dateFormat,B=a.each,G=a.extend,H=a.format,p=a.isNumber,l=a.map,r= +a.merge,w=a.pick,t=a.splat,k=a.stop,m=a.syncTimeout,e=a.timeUnits;a.Tooltip=function(){this.init.apply(this,arguments)};a.Tooltip.prototype={init:function(a,e){this.chart=a;this.options=e;this.crosshairs=[];this.now={x:0,y:0};this.isHidden=!0;this.split=e.split&&!a.inverted;this.shared=e.shared||this.split},cleanSplit:function(a){B(this.chart.series,function(e){var g=e&&e.tt;g&&(!g.isActive||a?e.tt=g.destroy():g.isActive=!1)})},getLabel:function(){var a=this.chart.renderer,e=this.options;this.label|| +(this.split?this.label=a.g("tooltip"):(this.label=a.label("",0,0,e.shape||"callout",null,null,e.useHTML,null,"tooltip").attr({padding:e.padding,r:e.borderRadius}),this.label.attr({fill:e.backgroundColor,"stroke-width":e.borderWidth}).css(e.style).shadow(e.shadow)),this.label.attr({zIndex:8}).add());return this.label},update:function(a){this.destroy();this.init(this.chart,r(!0,this.options,a))},destroy:function(){this.label&&(this.label=this.label.destroy());this.split&&this.tt&&(this.cleanSplit(this.chart, +!0),this.tt=this.tt.destroy());clearTimeout(this.hideTimer);clearTimeout(this.tooltipTimeout)},move:function(a,e,m,f){var d=this,b=d.now,q=!1!==d.options.animation&&!d.isHidden&&(1h-q?h:h-q);else if(v)b[a]=Math.max(g,e+q+f>c?e:e+q);else return!1},x=function(a,c,f,e){var q;ec-d?q=!1:b[a]=ec-f/2?c-f-2:e-f/2;return q},k=function(a){var b=c;c=h;h=b;g=a},y=function(){!1!==A.apply(0,c)?!1!==x.apply(0,h)||g||(k(!0),y()):g?b.x=b.y=0:(k(!0),y())};(f.inverted||1y&&(q=!1);a=(e.series&&e.series.yAxis&&e.series.yAxis.pos)+(e.plotY||0);a-=d.plotTop;f.push({target:e.isHeader?d.plotHeight+c:a,rank:e.isHeader?1:0,size:n.tt.getBBox().height+1,point:e,x:y,tt:A})});this.cleanSplit(); +a.distribute(f,d.plotHeight+c);B(f,function(a){var b=a.point;a.tt.attr({visibility:void 0===a.pos?"hidden":"inherit",x:q||b.isHeader?a.x:b.plotX+d.plotLeft+w(m.distance,16),y:a.pos+d.plotTop,anchorX:b.plotX+d.plotLeft,anchorY:b.isHeader?a.pos+d.plotTop-15:b.plotY+d.plotTop})})},updatePosition:function(a){var e=this.chart,g=this.getLabel(),g=(this.options.positioner||this.getPosition).call(this,g.width,g.height,a);this.move(Math.round(g.x),Math.round(g.y||0),a.plotX+e.plotLeft,a.plotY+e.plotTop)}, +getXDateFormat:function(a,h,m){var f;h=h.dateTimeLabelFormats;var d=m&&m.closestPointRange,b,q={millisecond:15,second:12,minute:9,hour:6,day:3},g,c="millisecond";if(d){g=D("%m-%d %H:%M:%S.%L",a.x);for(b in e){if(d===e.week&&+D("%w",a.x)===m.options.startOfWeek&&"00:00:00.000"===g.substr(6)){b="week";break}if(e[b]>d){b=c;break}if(q[b]&&g.substr(q[b])!=="01-01 00:00:00.000".substr(q[b]))break;"week"!==b&&(c=b)}b&&(f=h[b])}else f=h.day;return f||h.year},tooltipFooterHeaderFormatter:function(a,e){var g= +e?"footer":"header";e=a.series;var f=e.tooltipOptions,d=f.xDateFormat,b=e.xAxis,q=b&&"datetime"===b.options.type&&p(a.key),g=f[g+"Format"];q&&!d&&(d=this.getXDateFormat(a,f,b));q&&d&&(g=g.replace("{point.key}","{point.key:"+d+"}"));return H(g,{point:a,series:e})},bodyFormatter:function(a){return l(a,function(a){var e=a.series.tooltipOptions;return(e.pointFormatter||a.point.tooltipFormatter).call(a.point,e.pointFormat)})}}})(N);(function(a){var D=a.addEvent,B=a.attr,G=a.charts,H=a.color,p=a.css,l= +a.defined,r=a.doc,w=a.each,t=a.extend,k=a.fireEvent,m=a.offset,e=a.pick,g=a.removeEvent,h=a.splat,C=a.Tooltip,f=a.win;a.Pointer=function(a,b){this.init(a,b)};a.Pointer.prototype={init:function(a,b){this.options=b;this.chart=a;this.runChartClick=b.chart.events&&!!b.chart.events.click;this.pinchDown=[];this.lastValidTouch={};C&&b.tooltip.enabled&&(a.tooltip=new C(a,b.tooltip),this.followTouchMove=e(b.tooltip.followTouchMove,!0));this.setDOMEvents()},zoomOption:function(a){var b=this.chart,d=b.options.chart, +f=d.zoomType||"",b=b.inverted;/touch/.test(a.type)&&(f=e(d.pinchType,f));this.zoomX=a=/x/.test(f);this.zoomY=f=/y/.test(f);this.zoomHor=a&&!b||f&&b;this.zoomVert=f&&!b||a&&b;this.hasZoom=a||f},normalize:function(a,b){var d,e;a=a||f.event;a.target||(a.target=a.srcElement);e=a.touches?a.touches.length?a.touches.item(0):a.changedTouches[0]:a;b||(this.chartPosition=b=m(this.chart.container));void 0===e.pageX?(d=Math.max(a.x,a.clientX-b.left),b=a.y):(d=e.pageX-b.left,b=e.pageY-b.top);return t(a,{chartX:Math.round(d), +chartY:Math.round(b)})},getCoordinates:function(a){var b={xAxis:[],yAxis:[]};w(this.chart.axes,function(d){b[d.isXAxis?"xAxis":"yAxis"].push({axis:d,value:d.toValue(a[d.horiz?"chartX":"chartY"])})});return b},runPointActions:function(d){var b=this.chart,f=b.series,g=b.tooltip,c=g?g.shared:!1,h=!0,n=b.hoverPoint,m=b.hoverSeries,x,k,y,u=[],I;if(!c&&!m)for(x=0;xb.series.index?-1:1}));if(c)for(x=u.length;x--;)(u[x].x!==u[0].x||u[x].series.noSharedTooltip)&&u.splice(x,1);if(u[0]&&(u[0]!==this.prevKDPoint||g&&g.isHidden)){if(c&& +!u[0].series.noSharedTooltip){for(x=0;xh+k&&(f=h+k),cm+y&&(c=m+y),this.hasDragged=Math.sqrt(Math.pow(l-f,2)+Math.pow(v-c,2)),10x.max&&(l=x.max-c,v=!0);v?(u-=.8*(u-g[f][0]),J||(M-=.8*(M-g[f][1])),p()):g[f]=[u,M];A||(e[f]=F-E,e[q]=c);e=A?1/n:n;m[q]=c;m[f]=l;k[A?a?"scaleY":"scaleX":"scale"+d]=n;k["translate"+d]=e* +E+(u-e*y)},pinch:function(a){var r=this,t=r.chart,k=r.pinchDown,m=a.touches,e=m.length,g=r.lastValidTouch,h=r.hasZoom,C=r.selectionMarker,f={},d=1===e&&(r.inClass(a.target,"highcharts-tracker")&&t.runTrackerClick||r.runChartClick),b={};1b-6&&n(u||d.chartWidth- +2*x-v-e.x)&&(this.itemX=v,this.itemY+=p+this.lastLineHeight+I,this.lastLineHeight=0);this.maxItemWidth=Math.max(this.maxItemWidth,c);this.lastItemY=p+this.itemY+I;this.lastLineHeight=Math.max(g,this.lastLineHeight);a._legendItemPos=[this.itemX,this.itemY];f?this.itemX+=c:(this.itemY+=p+g+I,this.lastLineHeight=g);this.offsetWidth=u||Math.max((f?this.itemX-v-l:c)+x,this.offsetWidth)},getAllItems:function(){var a=[];l(this.chart.series,function(d){var b=d&&d.options;d&&m(b.showInLegend,p(b.linkedTo)? +!1:void 0,!0)&&(a=a.concat(d.legendItems||("point"===b.legendType?d.data:d)))});return a},adjustMargins:function(a,d){var b=this.chart,e=this.options,f=e.align.charAt(0)+e.verticalAlign.charAt(0)+e.layout.charAt(0);e.floating||l([/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/],function(c,g){c.test(f)&&!p(a[g])&&(b[t[g]]=Math.max(b[t[g]],b.legend[(g+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][g]*e[g%2?"x":"y"]+m(e.margin,12)+d[g]))})},render:function(){var a=this,d=a.chart,b=d.renderer, +e=a.group,h,c,m,n,k=a.box,x=a.options,p=a.padding;a.itemX=a.initialItemX;a.itemY=a.initialItemY;a.offsetWidth=0;a.lastItemY=0;e||(a.group=e=b.g("legend").attr({zIndex:7}).add(),a.contentGroup=b.g().attr({zIndex:1}).add(e),a.scrollGroup=b.g().add(a.contentGroup));a.renderTitle();h=a.getAllItems();g(h,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});x.reversed&&h.reverse();a.allItems=h;a.display=c=!!h.length;a.lastLineHeight=0;l(h,function(b){a.renderItem(b)}); +m=(x.width||a.offsetWidth)+p;n=a.lastItemY+a.lastLineHeight+a.titleHeight;n=a.handleOverflow(n);n+=p;k||(a.box=k=b.rect().addClass("highcharts-legend-box").attr({r:x.borderRadius}).add(e),k.isNew=!0);k.attr({stroke:x.borderColor,"stroke-width":x.borderWidth||0,fill:x.backgroundColor||"none"}).shadow(x.shadow);0b&&!1!==h.enabled?(this.clipHeight=g=Math.max(b-20-this.titleHeight-I,0),this.currentPage=m(this.currentPage,1),this.fullHeight=a,l(v,function(a,b){var c=a._legendItemPos[1];a=Math.round(a.legendItem.getBBox().height);var d=u.length;if(!d||c-u[d-1]>g&&(r||c)!==u[d-1])u.push(r||c),d++;b===v.length-1&&c+a-u[d-1]>g&&u.push(c);c!==r&&(r=c)}),n||(n=d.clipRect= +e.clipRect(0,I,9999,0),d.contentGroup.clip(n)),t(g),y||(this.nav=y=e.g().attr({zIndex:1}).add(this.group),this.up=e.symbol("triangle",0,0,p,p).on("click",function(){d.scroll(-1,k)}).add(y),this.pager=e.text("",15,10).addClass("highcharts-legend-navigation").css(h.style).add(y),this.down=e.symbol("triangle-down",0,0,p,p).on("click",function(){d.scroll(1,k)}).add(y)),d.scroll(0),a=b):y&&(t(),y.hide(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0);return a},scroll:function(a,d){var b=this.pages, +f=b.length;a=this.currentPage+a;var g=this.clipHeight,c=this.options.navigation,h=this.pager,n=this.padding;a>f&&(a=f);0f&&(g=typeof a[0],"string"===g?e.name=a[0]:"number"===g&&(e.x=a[0]),d++);b=h.value;)h=e[++g];h&&h.color&&!this.options.color&&(this.color=h.color);return h},destroy:function(){var a=this.series.chart,e=a.hoverPoints,g;a.pointCount--;e&&(this.setState(),H(e,this),e.length||(a.hoverPoints=null));if(this===a.hoverPoint)this.onMouseOut();if(this.graphic||this.dataLabel)k(this), +this.destroyElements();this.legendItem&&a.legend.destroyItem(this);for(g in this)this[g]=null},destroyElements:function(){for(var a=["graphic","dataLabel","dataLabelUpper","connector","shadowGroup"],e,g=6;g--;)e=a[g],this[e]&&(this[e]=this[e].destroy())},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(a){var e=this.series,g= +e.tooltipOptions,h=t(g.valueDecimals,""),k=g.valuePrefix||"",f=g.valueSuffix||"";B(e.pointArrayMap||["y"],function(d){d="{point."+d;if(k||f)a=a.replace(d+"}",k+d+"}"+f);a=a.replace(d+"}",d+":,."+h+"f}")});return l(a,{point:this,series:this.series})},firePointEvent:function(a,e,g){var h=this,k=this.series.options;(k.point.events[a]||h.options&&h.options.events&&h.options.events[a])&&this.importEvents();"click"===a&&k.allowPointSelect&&(g=function(a){h.select&&h.select(null,a.ctrlKey||a.metaKey||a.shiftKey)}); +p(this,a,e,g)},visible:!0}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.correctFloat,l=a.Date,r=a.defaultOptions,w=a.defaultPlotOptions,t=a.defined,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.fireEvent,C=a.grep,f=a.isArray,d=a.isNumber,b=a.isString,q=a.merge,E=a.pick,c=a.removeEvent,F=a.splat,n=a.stableSort,A=a.SVGElement,x=a.syncTimeout,J=a.win;a.Series=a.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{}, +marker:{lineWidth:0,lineColor:"#ffffff",radius:4,states:{hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":a.numberFormat(this.y,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0,padding:5},cropThreshold:300,pointRange:0,softThreshold:!0,states:{hover:{lineWidthPlus:1, +marker:{},halo:{size:10,opacity:.25}},select:{marker:{}}},stickyTracking:!0,turboThreshold:1E3},{isCartesian:!0,pointClass:a.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",init:function(a,b){var c=this,d,e,f=a.series,u,y=function(a,b){return E(a.options.index,a._i)-E(b.options.index,b._i)};c.chart=a;c.options=b=c.setOptions(b);c.linkedSeries=[];c.bindAxes();g(c,{name:b.name,state:"",visible:!1!==b.visible,selected:!0=== +b.selected});e=b.events;for(d in e)D(c,d,e[d]);if(e&&e.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=!0;c.getColor();c.getSymbol();k(c.parallelArrays,function(a){c[a+"Data"]=[]});c.setData(b.data,!1);c.isCartesian&&(a.hasCartesianSeries=!0);f.length&&(u=f[f.length-1]);c._i=E(u&&u._i,-1)+1;f.push(c);n(f,y);this.yAxis&&n(this.yAxis.series,y);k(f,function(a,b){a.index=b;a.name=a.name||"Series "+(b+1)})},bindAxes:function(){var a=this,b=a.options,c=a.chart, +d;k(a.axisTypes||[],function(f){k(c[f],function(c){d=c.options;if(b[f]===d.index||void 0!==b[f]&&b[f]===d.id||void 0===b[f]&&0===d.index)c.series.push(a),a[f]=c,c.isDirty=!0});a[f]||a.optionalAxis===f||e(18,!0)})},updateParallelArrays:function(a,b){var c=a.series,e=arguments,f=d(b)?function(d){var e="y"===d&&c.toYData?c.toYData(a):a[d];c[d+"Data"][b]=e}:function(a){Array.prototype[b].apply(c[a+"Data"],Array.prototype.slice.call(e,2))};k(c.parallelArrays,f)},autoIncrement:function(){var a=this.options, +b=this.xIncrement,c,d=a.pointIntervalUnit,b=E(b,a.pointStart,0);this.pointInterval=c=E(this.pointInterval,a.pointInterval,1);d&&(a=new l(b),"day"===d?a=+a[l.hcSetDate](a[l.hcGetDate]()+c):"month"===d?a=+a[l.hcSetMonth](a[l.hcGetMonth]()+c):"year"===d&&(a=+a[l.hcSetFullYear](a[l.hcGetFullYear]()+c)),c=a-b);this.xIncrement=b+c;return b},setOptions:function(a){var b=this.chart,c=b.options.plotOptions,b=b.userOptions||{},d=b.plotOptions||{},e=c[this.type];this.userOptions=a;c=q(e,c.series,a);this.tooltipOptions= +q(r.tooltip,r.plotOptions[this.type].tooltip,b.tooltip,d.series&&d.series.tooltip,d[this.type]&&d[this.type].tooltip,a.tooltip);null===e.marker&&delete c.marker;this.zoneAxis=c.zoneAxis;a=this.zones=(c.zones||[]).slice();!c.negativeColor&&!c.negativeFillColor||c.zones||a.push({value:c[this.zoneAxis+"Threshold"]||c.threshold||0,className:"highcharts-negative",color:c.negativeColor,fillColor:c.negativeFillColor});a.length&&t(a[a.length-1].value)&&a.push({color:this.color,fillColor:this.fillColor}); +return c},getCyclic:function(a,b,c){var d,e=this.userOptions,f=a+"Index",g=a+"Counter",u=c?c.length:E(this.chart.options.chart[a+"Count"],this.chart[a+"Count"]);b||(d=E(e[f],e["_"+f]),t(d)||(e["_"+f]=d=this.chart[g]%u,this.chart[g]+=1),c&&(b=c[d]));void 0!==d&&(this[f]=d);this[a]=b},getColor:function(){this.options.colorByPoint?this.options.color=null:this.getCyclic("color",this.options.color||w[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol, +this.chart.options.symbols)},drawLegendSymbol:a.LegendSymbolMixin.drawLineMarker,setData:function(a,c,g,n){var u=this,q=u.points,h=q&&q.length||0,y,m=u.options,x=u.chart,A=null,I=u.xAxis,l=m.turboThreshold,p=this.xData,r=this.yData,F=(y=u.pointArrayMap)&&y.length;a=a||[];y=a.length;c=E(c,!0);if(!1!==n&&y&&h===y&&!u.cropped&&!u.hasGroupedData&&u.visible)k(a,function(a,b){q[b].update&&a!==m.data[b]&&q[b].update(a,!1,null,!1)});else{u.xIncrement=null;u.colorCounter=0;k(this.parallelArrays,function(a){u[a+ +"Data"].length=0});if(l&&y>l){for(g=0;null===A&&gh||this.forceCrop))if(b[d-1]l)b=[],c=[];else if(b[0]l)f=this.cropData(this.xData,this.yData,A,l),b=f.xData,c=f.yData,f=f.start,g=!0;for(h=b.length||1;--h;)d=x?y(b[h])-y(b[h-1]):b[h]-b[h-1],0d&&this.requireSorting&&e(15);this.cropped=g;this.cropStart=f;this.processedXData=b;this.processedYData=c;this.closestPointRange=n},cropData:function(a,b,c,d){var e=a.length,f=0,g=e,n=E(this.cropShoulder,1),u;for(u=0;u=c){f=Math.max(0,u- +n);break}for(c=u;cd){g=c+n;break}return{xData:a.slice(f,g),yData:b.slice(f,g),start:f,end:g}},generatePoints:function(){var a=this.options.data,b=this.data,c,d=this.processedXData,e=this.processedYData,f=this.pointClass,g=d.length,n=this.cropStart||0,q,h=this.hasGroupedData,k,m=[],x;b||h||(b=[],b.length=a.length,b=this.data=b);for(x=0;x=q&&(c[x-1]||k)<=h,y&&k)if(y=m.length)for(;y--;)null!==m[y]&&(g[n++]=m[y]);else g[n++]=m;this.dataMin=H(g);this.dataMax=G(g)},translate:function(){this.processedXData||this.processData();this.generatePoints();var a=this.options,b=a.stacking,c=this.xAxis,e=c.categories,f=this.yAxis,g=this.points,n=g.length,q=!!this.modifyValue,h=a.pointPlacement,k="between"===h||d(h),m=a.threshold,x=a.startFromThreshold?m:0,A,l,r,F,J=Number.MAX_VALUE;"between"===h&&(h=.5);d(h)&&(h*=E(a.pointRange||c.pointRange)); +for(a=0;a=B&&(C.isNull=!0);C.plotX=A=p(Math.min(Math.max(-1E5,c.translate(w,0,0,0,1,h,"flags"===this.type)),1E5));b&&this.visible&&!C.isNull&&D&&D[w]&&(F=this.getStackIndicator(F,w,this.index),G=D[w],B=G.points[F.key],l=B[0],B=B[1],l===x&&F.key===D[w].base&&(l=E(m,f.min)),f.isLog&&0>=l&&(l=null),C.total=C.stackTotal=G.total,C.percentage=G.total&&C.y/G.total*100,C.stackY= +B,G.setOffset(this.pointXOffset||0,this.barW||0));C.yBottom=t(l)?f.translate(l,0,1,0,1):null;q&&(B=this.modifyValue(B,C));C.plotY=l="number"===typeof B&&Infinity!==B?Math.min(Math.max(-1E5,f.translate(B,0,1,0,1)),1E5):void 0;C.isInside=void 0!==l&&0<=l&&l<=f.len&&0<=A&&A<=c.len;C.clientX=k?p(c.translate(w,0,0,0,1,h)):A;C.negative=C.y<(m||0);C.category=e&&void 0!==e[C.x]?e[C.x]:C.x;C.isNull||(void 0!==r&&(J=Math.min(J,Math.abs(A-r))),r=A)}this.closestPointRangePx=J},getValidPoints:function(a,b){var c= +this.chart;return C(a||this.points||[],function(a){return b&&!c.isInsidePlot(a.plotX,a.plotY,c.inverted)?!1:!a.isNull})},setClip:function(a){var b=this.chart,c=this.options,d=b.renderer,e=b.inverted,f=this.clipBox,g=f||b.clipBox,n=this.sharedClipKey||["_sharedClip",a&&a.duration,a&&a.easing,g.height,c.xAxis,c.yAxis].join(),q=b[n],h=b[n+"m"];q||(a&&(g.width=0,b[n+"m"]=h=d.clipRect(-99,e?-b.plotLeft:-b.plotTop,99,e?b.chartWidth:b.chartHeight)),b[n]=q=d.clipRect(g),q.count={length:0});a&&!q.count[this.index]&& +(q.count[this.index]=!0,q.count.length+=1);!1!==c.clip&&(this.group.clip(a||f?q:b.clipRect),this.markerGroup.clip(h),this.sharedClipKey=n);a||(q.count[this.index]&&(delete q.count[this.index],--q.count.length),0===q.count.length&&n&&b[n]&&(f||(b[n]=b[n].destroy()),b[n+"m"]&&(b[n+"m"]=b[n+"m"].destroy())))},animate:function(a){var b=this.chart,c=B(this.options.animation),d;a?this.setClip(c):(d=this.sharedClipKey,(a=b[d])&&a.animate({width:b.plotSizeX},c),b[d+"m"]&&b[d+"m"].animate({width:b.plotSizeX+ +99},c),this.animate=null)},afterAnimate:function(){this.setClip();h(this,"afterAnimate")},drawPoints:function(){var a=this.points,b=this.chart,c,e,f,g,n=this.options.marker,q,h,k,m,x=this.markerGroup,A=E(n.enabled,this.xAxis.isRadial?!0:null,this.closestPointRangePx>2*n.radius);if(!1!==n.enabled||this._hasPointMarkers)for(e=a.length;e--;)f=a[e],c=f.plotY,g=f.graphic,q=f.marker||{},h=!!f.marker,k=A&&void 0===q.enabled||q.enabled,m=f.isInside,k&&d(c)&&null!==f.y?(c=E(q.symbol,this.symbol),f.hasImage= +0===c.indexOf("url"),k=this.markerAttribs(f,f.selected&&"select"),g?g[m?"show":"hide"](!0).animate(k):m&&(0e&&b.shadow));g&&(g.startX=c.xMap, +g.isArea=c.isArea)})},applyZones:function(){var a=this,b=this.chart,c=b.renderer,d=this.zones,e,f,g=this.clips||[],n,q=this.graph,h=this.area,m=Math.max(b.chartWidth,b.chartHeight),x=this[(this.zoneAxis||"y")+"Axis"],A,l,p=b.inverted,r,F,C,t,J=!1;d.length&&(q||h)&&x&&void 0!==x.min&&(l=x.reversed,r=x.horiz,q&&q.hide(),h&&h.hide(),A=x.getExtremes(),k(d,function(d,u){e=l?r?b.plotWidth:0:r?0:x.toPixels(A.min);e=Math.min(Math.max(E(f,e),0),m);f=Math.min(Math.max(Math.round(x.toPixels(E(d.value,A.max), +!0)),0),m);J&&(e=f=x.toPixels(A.max));F=Math.abs(e-f);C=Math.min(e,f);t=Math.max(e,f);x.isXAxis?(n={x:p?t:C,y:0,width:F,height:m},r||(n.x=b.plotHeight-n.x)):(n={x:0,y:p?t:C,width:m,height:F},r&&(n.y=b.plotWidth-n.y));p&&c.isVML&&(n=x.isXAxis?{x:0,y:l?C:t,height:n.width,width:b.chartWidth}:{x:n.y-b.plotLeft-b.spacingBox.x,y:0,width:n.height,height:b.chartHeight});g[u]?g[u].animate(n):(g[u]=c.clipRect(n),q&&a["zone-graph-"+u].clip(g[u]),h&&a["zone-area-"+u].clip(g[u]));J=d.value>A.max}),this.clips= +g)},invertGroups:function(a){function b(){var b={width:c.yAxis.len,height:c.xAxis.len};k(["group","markerGroup"],function(d){c[d]&&c[d].attr(b).invert(a)})}var c=this,d;c.xAxis&&(d=D(c.chart,"resize",b),D(c,"destroy",d),b(a),c.invertGroups=b)},plotGroup:function(a,b,c,d,e){var f=this[a],g=!f;g&&(this[a]=f=this.chart.renderer.g(b).attr({zIndex:d||.1}).add(e),f.addClass("highcharts-series-"+this.index+" highcharts-"+this.type+"-series highcharts-color-"+this.colorIndex+" "+(this.options.className|| +"")));f.attr({visibility:c})[g?"attr":"animate"](this.getPlotBox());return f},getPlotBox:function(){var a=this.chart,b=this.xAxis,c=this.yAxis;a.inverted&&(b=c,c=this.xAxis);return{translateX:b?b.left:a.plotLeft,translateY:c?c.top:a.plotTop,scaleX:1,scaleY:1}},render:function(){var a=this,b=a.chart,c,d=a.options,e=!!a.animate&&b.renderer.isSVG&&B(d.animation).duration,f=a.visible?"inherit":"hidden",g=d.zIndex,n=a.hasRendered,q=b.seriesGroup,h=b.inverted;c=a.plotGroup("group","series",f,g,q);a.markerGroup= +a.plotGroup("markerGroup","markers",f,g,q);e&&a.animate(!0);c.inverted=a.isCartesian?h:!1;a.drawGraph&&(a.drawGraph(),a.applyZones());a.drawDataLabels&&a.drawDataLabels();a.visible&&a.drawPoints();a.drawTracker&&!1!==a.options.enableMouseTracking&&a.drawTracker();a.invertGroups(h);!1===d.clip||a.sharedClipKey||n||c.clip(b.clipRect);e&&a.animate();n||(a.animationTimeout=x(function(){a.afterAnimate()},e));a.isDirty=a.isDirtyData=!1;a.hasRendered=!0},redraw:function(){var a=this.chart,b=this.isDirty|| +this.isDirtyData,c=this.group,d=this.xAxis,e=this.yAxis;c&&(a.inverted&&c.attr({width:a.plotWidth,height:a.plotHeight}),c.animate({translateX:E(d&&d.left,a.plotLeft),translateY:E(e&&e.top,a.plotTop)}));this.translate();this.render();b&&delete this.kdTree},kdDimensions:1,kdAxisArray:["clientX","plotY"],searchPoint:function(a,b){var c=this.xAxis,d=this.yAxis,e=this.chart.inverted;return this.searchKDTree({clientX:e?c.len-a.chartY+c.pos:a.chartX-c.pos,plotY:e?d.len-a.chartX+d.pos:a.chartY-d.pos},b)}, +buildKDTree:function(){function a(c,d,e){var f,g;if(g=c&&c.length)return f=b.kdAxisArray[d%e],c.sort(function(a,b){return a[f]-b[f]}),g=Math.floor(g/2),{point:c[g],left:a(c.slice(0,g),d+1,e),right:a(c.slice(g+1),d+1,e)}}var b=this,c=b.kdDimensions;delete b.kdTree;x(function(){b.kdTree=a(b.getValidPoints(null,!b.directTouch),c,c)},b.options.kdNow?0:1)},searchKDTree:function(a,b){function c(a,b,n,q){var h=b.point,u=d.kdAxisArray[n%q],k,m,x=h;m=t(a[e])&&t(h[e])?Math.pow(a[e]-h[e],2):null;k=t(a[f])&& +t(h[f])?Math.pow(a[f]-h[f],2):null;k=(m||0)+(k||0);h.dist=t(k)?Math.sqrt(k):Number.MAX_VALUE;h.distX=t(m)?Math.sqrt(m):Number.MAX_VALUE;u=a[u]-h[u];k=0>u?"left":"right";m=0>u?"right":"left";b[k]&&(k=c(a,b[k],n+1,q),x=k[g]A;)l--;this.updateParallelArrays(h,"splice",l,0,0);this.updateParallelArrays(h,l);n&&h.name&&(n[A]=h.name);q.splice(l,0,a);m&&(this.data.splice(l,0,null),this.processData());"point"===c.legendType&&this.generatePoints();d&&(f[0]&&f[0].remove?f[0].remove(!1):(f.shift(),this.updateParallelArrays(h,"shift"),q.shift()));this.isDirtyData=this.isDirty=!0;b&&g.redraw(e)},removePoint:function(a, +b,d){var c=this,e=c.data,f=e[a],g=c.points,n=c.chart,h=function(){g&&g.length===e.length&&g.splice(a,1);e.splice(a,1);c.options.data.splice(a,1);c.updateParallelArrays(f||{series:c},"splice",a,1);f&&f.destroy();c.isDirty=!0;c.isDirtyData=!0;b&&n.redraw()};q(d,n);b=C(b,!0);f?f.firePointEvent("remove",null,h):h()},remove:function(a,b,d){function c(){e.destroy();f.isDirtyLegend=f.isDirtyBox=!0;f.linkSeries();C(a,!0)&&f.redraw(b)}var e=this,f=e.chart;!1!==d?k(e,"remove",null,c):c()},update:function(a, +d){var c=this,e=this.chart,f=this.userOptions,g=this.type,q=a.type||f.type||e.options.chart.type,u=b[g].prototype,m=["group","markerGroup","dataLabelsGroup"],k;if(q&&q!==g||void 0!==a.zIndex)m.length=0;r(m,function(a){m[a]=c[a];delete c[a]});a=h(f,{animation:!1,index:this.index,pointStart:this.xData[0]},{data:this.options.data},a);this.remove(!1,null,!1);for(k in u)this[k]=void 0;t(this,b[q||g].prototype);r(m,function(a){c[a]=m[a]});this.init(e,a);e.linkSeries();C(d,!0)&&e.redraw(!1)}});t(G.prototype, +{update:function(a,b){var c=this.chart;a=c.options[this.coll][this.options.index]=h(this.userOptions,a);this.destroy(!0);this.init(c,t(a,{events:void 0}));c.isDirtyBox=!0;C(b,!0)&&c.redraw()},remove:function(a){for(var b=this.chart,c=this.coll,d=this.series,e=d.length;e--;)d[e]&&d[e].remove(!1);w(b.axes,this);w(b[c],this);b.options[c].splice(this.options.index,1);r(b[c],function(a,b){a.options.index=b});this.destroy();b.isDirtyBox=!0;C(a,!0)&&b.redraw()},setTitle:function(a,b){this.update({title:a}, +b)},setCategories:function(a,b){this.update({categories:a},b)}})})(N);(function(a){var D=a.color,B=a.each,G=a.map,H=a.pick,p=a.Series,l=a.seriesType;l("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(){var a=[],l=[],p=this.xAxis,k=this.yAxis,m=k.stacks[this.stackKey],e={},g=this.points,h=this.index,C=k.series,f=C.length,d,b=H(k.options.reversedStacks,!0)?1:-1,q,E;if(this.options.stacking){for(q=0;qa&&t>l?(t=Math.max(a,l),m=2*l-t):tH&& +m>l?(m=Math.max(H,l),t=2*l-m):m=Math.abs(g)&&.5a.closestPointRange*a.xAxis.transA,k=a.borderWidth=r(h.borderWidth,k?0:1),f=a.yAxis,d=a.translatedThreshold=f.getThreshold(h.threshold),b=r(h.minPointLength,5),q=a.getColumnMetrics(),m=q.width,c=a.barW=Math.max(m,1+2*k),l=a.pointXOffset= +q.offset;g.inverted&&(d-=.5);h.pointPadding&&(c=Math.ceil(c));w.prototype.translate.apply(a);G(a.points,function(e){var n=r(e.yBottom,d),q=999+Math.abs(n),q=Math.min(Math.max(-q,e.plotY),f.len+q),h=e.plotX+l,k=c,u=Math.min(q,n),p,t=Math.max(q,n)-u;Math.abs(t)b?n-b:d-(p?b:0));e.barX=h;e.pointWidth=m;e.tooltipPos=g.inverted?[f.len+f.pos-g.plotLeft-q,a.xAxis.len-h-k/2,t]:[h+k/2,q+f.pos-g.plotTop,t];e.shapeType="rect";e.shapeArgs= +a.crispCol.apply(a,e.isNull?[e.plotX,f.len/2,0,0]:[h,u,k,t])})},getSymbol:a.noop,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(a,g){var e=this.options,k=this.pointAttrToOptions||{},f=k.stroke||"borderColor",d=k["stroke-width"]||"borderWidth",b=a&&a.color||this.color,q=a[f]||e[f]||this.color||b,k=e.dashStyle,m;a&&this.zones.length&&(b=(b=a.getZone())&&b.color||a.options.color|| +this.color);g&&(g=e.states[g],m=g.brightness,b=g.color||void 0!==m&&B(b).brighten(g.brightness).get()||b,q=g[f]||q,k=g.dashStyle||k);a={fill:b,stroke:q,"stroke-width":a[d]||e[d]||this[d]||0};e.borderRadius&&(a.r=e.borderRadius);k&&(a.dashstyle=k);return a},drawPoints:function(){var a=this,g=this.chart,h=a.options,m=g.renderer,f=h.animationLimit||250,d;G(a.points,function(b){var e=b.graphic;p(b.plotY)&&null!==b.y?(d=b.shapeArgs,e?(k(e),e[g.pointCountt;++t)k=r[t],a=2>t||2===t&&/%$/.test(k),r[t]=B(k,[l,H,w,r[2]][t])+(a?p:0);r[3]>r[2]&&(r[3]=r[2]);return r}}})(N);(function(a){var D=a.addEvent,B=a.defined,G=a.each,H=a.extend,p=a.inArray,l=a.noop,r=a.pick,w=a.Point,t=a.Series,k=a.seriesType,m=a.setAnimation;k("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{distance:30,enabled:!0,formatter:function(){return null===this.y? +void 0:this.point.name},x:0},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1,shadow:!1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:a.seriesTypes.column.prototype.pointAttribs,animate:function(a){var e=this,h=e.points,k=e.startAngleRad;a||(G(h,function(a){var d= +a.graphic,b=a.shapeArgs;d&&(d.attr({r:a.startR||e.center[3]/2,start:k,end:k}),d.animate({r:b.r,start:b.start,end:b.end},e.options.animation))}),e.animate=null)},updateTotals:function(){var a,g=0,h=this.points,k=h.length,f,d=this.options.ignoreHiddenPoint;for(a=0;af.y&&(f.y=null),g+=d&&!f.visible?0:f.y;this.total=g;for(a=0;a1.5*Math.PI?q-=2*Math.PI:q<-Math.PI/2&&(q+=2*Math.PI);t.slicedTranslation={translateX:Math.round(Math.cos(q)*k),translateY:Math.round(Math.sin(q)*k)};d=Math.cos(q)*a[2]/2;b=Math.sin(q)*a[2]/2;t.tooltipPos=[a[0]+.7*d,a[1]+.7*b];t.half=q<-Math.PI/2||q>Math.PI/2?1:0;t.angle=q;f=Math.min(f,n/5);t.labelPos=[a[0]+d+Math.cos(q)*n,a[1]+b+Math.sin(q)*n,a[0]+d+Math.cos(q)*f,a[1]+b+Math.sin(q)* +f,a[0]+d,a[1]+b,0>n?"center":t.half?"right":"left",q]}},drawGraph:null,drawPoints:function(){var a=this,g=a.chart.renderer,h,k,f,d,b=a.options.shadow;b&&!a.shadowGroup&&(a.shadowGroup=g.g("shadow").add(a.group));G(a.points,function(e){if(null!==e.y){k=e.graphic;d=e.shapeArgs;h=e.sliced?e.slicedTranslation:{};var q=e.shadowGroup;b&&!q&&(q=e.shadowGroup=g.g("shadow").add(a.shadowGroup));q&&q.attr(h);f=a.pointAttribs(e,e.selected&&"select");k?k.setRadialReference(a.center).attr(f).animate(H(d,h)):(e.graphic= +k=g[e.shapeType](d).addClass(e.getClassName()).setRadialReference(a.center).attr(h).add(a.group),e.visible||k.attr({visibility:"hidden"}),k.attr(f).attr({"stroke-linejoin":"round"}).shadow(b,q))}})},searchPoint:l,sortByAngle:function(a,g){a.sort(function(a,e){return void 0!==a.angle&&(e.angle-a.angle)*g})},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,getCenter:a.CenteredSeriesMixin.getCenter,getSymbol:l},{init:function(){w.prototype.init.apply(this,arguments);var a=this,g;a.name=r(a.name,"Slice"); +g=function(e){a.slice("select"===e.type)};D(a,"select",g);D(a,"unselect",g);return a},setVisible:function(a,g){var e=this,k=e.series,f=k.chart,d=k.options.ignoreHiddenPoint;g=r(g,d);a!==e.visible&&(e.visible=e.options.visible=a=void 0===a?!e.visible:a,k.options.data[p(e,k.data)]=e.options,G(["graphic","dataLabel","connector","shadowGroup"],function(b){if(e[b])e[b][a?"show":"hide"](!0)}),e.legendItem&&f.legend.colorizeItem(e,a),a||"hover"!==e.state||e.setState(""),d&&(k.isDirty=!0),g&&f.redraw())}, +slice:function(a,g,h){var e=this.series;m(h,e.chart);r(g,!0);this.sliced=this.options.sliced=a=B(a)?a:!this.sliced;e.options.data[p(this,e.data)]=this.options;a=a?this.slicedTranslation:{translateX:0,translateY:0};this.graphic.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)},haloPath:function(a){var e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+a,e.r+a,{innerR:this.shapeArgs.r,start:e.start,end:e.end})}})})(N);(function(a){var D= +a.addEvent,B=a.arrayMax,G=a.defined,H=a.each,p=a.extend,l=a.format,r=a.map,w=a.merge,t=a.noop,k=a.pick,m=a.relativeLength,e=a.Series,g=a.seriesTypes,h=a.stableSort,C=a.stop;a.distribute=function(a,d){function b(a,b){return a.target-b.target}var e,f=!0,c=a,g=[],n;n=0;for(e=a.length;e--;)n+=a[e].size;if(n>d){h(a,function(a,b){return(b.rank||0)-(a.rank||0)});for(n=e=0;n<=d;)n+=a[e].size,e++;g=a.splice(e-1,a.length)}h(a,b);for(a=r(a,function(a){return{size:a.size,targets:[a.target]}});f;){for(e=a.length;e--;)f= +a[e],n=(Math.min.apply(0,f.targets)+Math.max.apply(0,f.targets))/2,f.pos=Math.min(Math.max(0,n-f.size/2),d-f.size);e=a.length;for(f=!1;e--;)0a[e].pos&&(a[e-1].size+=a[e].size,a[e-1].targets=a[e-1].targets.concat(a[e].targets),a[e-1].pos+a[e-1].size>d&&(a[e-1].pos=d-a[e-1].size),a.splice(e,1),f=!0)}e=0;H(a,function(a){var b=0;H(a.targets,function(){c[e].pos=a.pos+b;b+=c[e].size;e++})});c.push.apply(c,g);h(c,b)};e.prototype.drawDataLabels=function(){var a=this,d=a.options, +b=d.dataLabels,e=a.points,g,c,h=a.hasRendered||0,n,m,x=k(b.defer,!0),r=a.chart.renderer;if(b.enabled||a._hasPointLabels)a.dlProcessOptions&&a.dlProcessOptions(b),m=a.plotGroup("dataLabelsGroup","data-labels",x&&!h?"hidden":"visible",b.zIndex||6),x&&(m.attr({opacity:+h}),h||D(a,"afterAnimate",function(){a.visible&&m.show(!0);m[d.animation?"animate":"attr"]({opacity:1},{duration:200})})),c=b,H(e,function(e){var f,q=e.dataLabel,h,x,A=e.connector,y=!0,t,z={};g=e.dlOptions||e.options&&e.options.dataLabels; +f=k(g&&g.enabled,c.enabled)&&null!==e.y;if(q&&!f)e.dataLabel=q.destroy();else if(f){b=w(c,g);t=b.style;f=b.rotation;h=e.getLabelConfig();n=b.format?l(b.format,h):b.formatter.call(h,b);t.color=k(b.color,t.color,a.color,"#000000");if(q)G(n)?(q.attr({text:n}),y=!1):(e.dataLabel=q=q.destroy(),A&&(e.connector=A.destroy()));else if(G(n)){q={fill:b.backgroundColor,stroke:b.borderColor,"stroke-width":b.borderWidth,r:b.borderRadius||0,rotation:f,padding:b.padding,zIndex:1};"contrast"===t.color&&(z.color=b.inside|| +0>b.distance||d.stacking?r.getContrast(e.color||a.color):"#000000");d.cursor&&(z.cursor=d.cursor);for(x in q)void 0===q[x]&&delete q[x];q=e.dataLabel=r[f?"text":"label"](n,0,-9999,b.shape,null,null,b.useHTML,null,"data-label").attr(q);q.addClass("highcharts-data-label-color-"+e.colorIndex+" "+(b.className||""));q.css(p(t,z));q.add(m);q.shadow(b.shadow)}q&&a.alignDataLabel(e,q,b,null,y)}})};e.prototype.alignDataLabel=function(a,d,b,e,g){var c=this.chart,f=c.inverted,n=k(a.plotX,-9999),q=k(a.plotY, +-9999),h=d.getBBox(),m,l=b.rotation,u=b.align,r=this.visible&&(a.series.forceDL||c.isInsidePlot(n,Math.round(q),f)||e&&c.isInsidePlot(n,f?e.x+1:e.y+e.height-1,f)),t="justify"===k(b.overflow,"justify");r&&(m=b.style.fontSize,m=c.renderer.fontMetrics(m,d).b,e=p({x:f?c.plotWidth-q:n,y:Math.round(f?c.plotHeight-n:q),width:0,height:0},e),p(b,{width:h.width,height:h.height}),l?(t=!1,f=c.renderer.rotCorr(m,l),f={x:e.x+b.x+e.width/2+f.x,y:e.y+b.y+{top:0,middle:.5,bottom:1}[b.verticalAlign]*e.height},d[g? +"attr":"animate"](f).attr({align:u}),n=(l+720)%360,n=180n,"left"===u?f.y-=n?h.height:0:"center"===u?(f.x-=h.width/2,f.y-=h.height/2):"right"===u&&(f.x-=h.width,f.y-=n?0:h.height)):(d.align(b,null,e),f=d.alignAttr),t?this.justifyDataLabel(d,b,f,h,e,g):k(b.crop,!0)&&(r=c.isInsidePlot(f.x,f.y)&&c.isInsidePlot(f.x+h.width,f.y+h.height)),b.shape&&!l&&d.attr({anchorX:a.plotX,anchorY:a.plotY}));r||(C(d),d.attr({y:-9999}),d.placed=!1)};e.prototype.justifyDataLabel=function(a,d,b,e,g,c){var f=this.chart, +n=d.align,h=d.verticalAlign,q,k,m=a.box?0:a.padding||0;q=b.x+m;0>q&&("right"===n?d.align="left":d.x=-q,k=!0);q=b.x+e.width-m;q>f.plotWidth&&("left"===n?d.align="right":d.x=f.plotWidth-q,k=!0);q=b.y+m;0>q&&("bottom"===h?d.verticalAlign="top":d.y=-q,k=!0);q=b.y+e.height-m;q>f.plotHeight&&("top"===h?d.verticalAlign="bottom":d.y=f.plotHeight-q,k=!0);k&&(a.placed=!c,a.align(d,null,g))};g.pie&&(g.pie.prototype.drawDataLabels=function(){var f=this,d=f.data,b,g=f.chart,h=f.options.dataLabels,c=k(h.connectorPadding, +10),m=k(h.connectorWidth,1),n=g.plotWidth,l=g.plotHeight,x,p=h.distance,y=f.center,u=y[2]/2,t=y[1],w=0k-2?A:P,e),v._attr={visibility:S,align:D[6]},v._pos={x:L+h.x+({left:c,right:-c}[D[6]]||0),y:P+h.y-10},D.x=L,D.y=P,null===f.options.size&&(C=v.width,L-Cn-c&&(T[1]=Math.max(Math.round(L+ +C-n+c),T[1])),0>P-G/2?T[0]=Math.max(Math.round(-P+G/2),T[0]):P+G/2>l&&(T[2]=Math.max(Math.round(P+G/2-l),T[2])))}),0===B(T)||this.verifyDataLabelOverflow(T))&&(this.placeDataLabels(),w&&m&&H(this.points,function(a){var b;x=a.connector;if((v=a.dataLabel)&&v._pos&&a.visible){S=v._attr.visibility;if(b=!x)a.connector=x=g.renderer.path().addClass("highcharts-data-label-connector highcharts-color-"+a.colorIndex).add(f.dataLabelsGroup),x.attr({"stroke-width":m,stroke:h.connectorColor||a.color||"#666666"}); +x[b?"attr":"animate"]({d:f.connectorPath(a.labelPos)});x.attr("visibility",S)}else x&&(a.connector=x.destroy())}))},g.pie.prototype.connectorPath=function(a){var d=a.x,b=a.y;return k(this.options.dataLabels.softConnector,!0)?["M",d+("left"===a[6]?5:-5),b,"C",d,b,2*a[2]-a[4],2*a[3]-a[5],a[2],a[3],"L",a[4],a[5]]:["M",d+("left"===a[6]?5:-5),b,"L",a[2],a[3],"L",a[4],a[5]]},g.pie.prototype.placeDataLabels=function(){H(this.points,function(a){var d=a.dataLabel;d&&a.visible&&((a=d._pos)?(d.attr(d._attr), +d[d.moved?"animate":"attr"](a),d.moved=!0):d&&d.attr({y:-9999}))})},g.pie.prototype.alignDataLabel=t,g.pie.prototype.verifyDataLabelOverflow=function(a){var d=this.center,b=this.options,e=b.center,f=b.minSize||80,c,g;null!==e[0]?c=Math.max(d[2]-Math.max(a[1],a[3]),f):(c=Math.max(d[2]-a[1]-a[3],f),d[0]+=(a[3]-a[1])/2);null!==e[1]?c=Math.max(Math.min(c,d[2]-Math.max(a[0],a[2])),f):(c=Math.max(Math.min(c,d[2]-a[0]-a[2]),f),d[1]+=(a[0]-a[2])/2);ck(this.translatedThreshold,f.yAxis.len)),m=k(b.inside,!!this.options.stacking);n&&(g=w(n),0>g.y&&(g.height+=g.y,g.y=0),n=g.y+g.height-f.yAxis.len,0a+e||c+nb+f||g+hthis.pointCount))},pan:function(a,b){var c=this,d=c.hoverPoints, +e;d&&r(d,function(a){a.setState()});r("xy"===b?[1,0]:[1],function(b){b=c[b?"xAxis":"yAxis"][0];var d=b.horiz,f=a[d?"chartX":"chartY"],d=d?"mouseDownX":"mouseDownY",g=c[d],n=(b.pointRange||0)/2,h=b.getExtremes(),q=b.toValue(g-f,!0)+n,n=b.toValue(g+b.len-f,!0)-n,g=g>f;b.series.length&&(g||q>Math.min(h.dataMin,h.min))&&(!g||n=p(k.minWidth,0)&&this.chartHeight>=p(k.minHeight,0)};void 0===l._id&&(l._id=a.uniqueKey());m=m.call(this);!r[l._id]&&m?l.chartOptions&&(r[l._id]=this.currentOptions(l.chartOptions),this.update(l.chartOptions,w)):r[l._id]&&!m&&(this.update(r[l._id],w),delete r[l._id])};D.prototype.currentOptions=function(a){function p(a,m,e){var g,h;for(g in a)if(-1< +G(g,["series","xAxis","yAxis"]))for(a[g]=l(a[g]),e[g]=[],h=0;hd.length||void 0===h)return a.call(this,g,h,k,f);x=d.length;for(c=0;ck;d[c]5*b||w){if(d[c]>u){for(r=a.call(this,g,d[e],d[c],f);r.length&&r[0]<=u;)r.shift();r.length&&(u=r[r.length-1]);y=y.concat(r)}e=c+1}if(w)break}a= +r.info;if(q&&a.unitRange<=m.hour){c=y.length-1;for(e=1;ek?a-1:a;for(M=void 0;q--;)e=c[q],k=M-e,M&&k<.8*C&&(null===t||k<.8*t)?(n[y[q]]&&!n[y[q+1]]?(k=q+1,M=e):k=q,y.splice(k,1)):M=e}return y});w(B.prototype,{beforeSetTickPositions:function(){var a, +g=[],h=!1,k,f=this.getExtremes(),d=f.min,b=f.max,q,m=this.isXAxis&&!!this.options.breaks,f=this.options.ordinal,c=this.chart.options.chart.ignoreHiddenSeries;if(f||m){r(this.series,function(b,d){if(!(c&&!1===b.visible||!1===b.takeOrdinalPosition&&!m)&&(g=g.concat(b.processedXData),a=g.length,g.sort(function(a,b){return a-b}),a))for(d=a-1;d--;)g[d]===g[d+1]&&g.splice(d,1)});a=g.length;if(2k||b-g[g.length- +1]>k)&&(h=!0)}h?(this.ordinalPositions=g,k=this.val2lin(Math.max(d,g[0]),!0),q=Math.max(this.val2lin(Math.min(b,g[g.length-1]),!0),1),this.ordinalSlope=b=(b-d)/(q-k),this.ordinalOffset=d-k*b):this.ordinalPositions=this.ordinalSlope=this.ordinalOffset=void 0}this.isOrdinal=f&&h;this.groupIntervalFactor=null},val2lin:function(a,g){var e=this.ordinalPositions;if(e){var k=e.length,f,d;for(f=k;f--;)if(e[f]===a){d=f;break}for(f=k-1;f--;)if(a>e[f]||0===f){a=(a-e[f])/(e[f+1]-e[f]);d=f+a;break}g=g?d:this.ordinalSlope* +(d||0)+this.ordinalOffset}else g=a;return g},lin2val:function(a,g){var e=this.ordinalPositions;if(e){var k=this.ordinalSlope,f=this.ordinalOffset,d=e.length-1,b;if(g)0>a?a=e[0]:a>d?a=e[d]:(d=Math.floor(a),b=a-d);else for(;d--;)if(g=k*d+f,a>=g){k=k*(d+1)+f;b=(a-g)/(k-g);break}return void 0!==b&&void 0!==e[d]?e[d]+(b?b*(e[d+1]-e[d]):0):a}return a},getExtendedPositions:function(){var a=this.chart,g=this.series[0].currentDataGrouping,h=this.ordinalIndex,k=g?g.count+g.unitName:"raw",f=this.getExtremes(), +d,b;h||(h=this.ordinalIndex={});h[k]||(d={series:[],chart:a,getExtremes:function(){return{min:f.dataMin,max:f.dataMax}},options:{ordinal:!0},val2lin:B.prototype.val2lin},r(this.series,function(e){b={xAxis:d,xData:e.xData,chart:a,destroyGroupedData:t};b.options={dataGrouping:g?{enabled:!0,forced:!0,approximation:"open",units:[[g.unitName,[g.count]]]}:{enabled:!1}};e.processData.apply(b);d.series.push(b)}),this.beforeSetTickPositions.apply(d),h[k]=d.ordinalPositions);return h[k]},getGroupIntervalFactor:function(a, +g,h){var e;h=h.processedXData;var f=h.length,d=[];e=this.groupIntervalFactor;if(!e){for(e=0;ed?(l=p,t=e.ordinalPositions?e:p):(l=e.ordinalPositions?e:p,t=p),p=t.ordinalPositions,q>p[p.length-1]&&p.push(q),this.fixedRange=c-m,d=e.toFixedRange(null,null,n.apply(l,[x.apply(l,[m,!0])+d,!0]),n.apply(t,[x.apply(t, +[c,!0])+d,!0])),d.min>=Math.min(b.dataMin,m)&&d.max<=Math.max(q,c)&&e.setExtremes(d.min,d.max,!0,!1,{trigger:"pan"}),this.mouseDownX=k,H(this.container,{cursor:"move"})):f=!0}else f=!0;f&&a.apply(this,Array.prototype.slice.call(arguments,1))});k.prototype.gappedPath=function(){var a=this.options.gapSize,g=this.points.slice(),h=g.length-1;if(a&&0this.closestPointRange*a&&g.splice(h+1,0,{isNull:!0});return this.getGraphPath(g)}})(N);(function(a){function D(){return Array.prototype.slice.call(arguments, +1)}function B(a){a.apply(this);this.drawBreaks(this.xAxis,["x"]);this.drawBreaks(this.yAxis,G(this.pointArrayMap,["y"]))}var G=a.pick,H=a.wrap,p=a.each,l=a.extend,r=a.fireEvent,w=a.Axis,t=a.Series;l(w.prototype,{isInBreak:function(a,m){var e=a.repeat||Infinity,g=a.from,h=a.to-a.from;m=m>=g?(m-g)%e:e-(g-m)%e;return a.inclusive?m<=h:m=a)break;else if(g.isInBreak(f,a)){e-=a-f.from;break}return e};this.lin2val=function(a){var e,f;for(f=0;f=a);f++)e.toh;)m-=b;for(;mb.to||l>b.from&&db.from&&db.from&&d>b.to&&d=c[0]);A++);for(A;A<=q;A++){for(;(void 0!==c[w+1]&&a[A]>=c[w+1]||A===q)&&(l=c[w],this.dataGroupInfo={start:p,length:t[0].length},p=d.apply(this,t),void 0!==p&&(g.push(l),h.push(p),m.push(this.dataGroupInfo)),p=A,t[0]=[],t[1]=[],t[2]=[],t[3]=[],w+=1,A!==q););if(A===q)break;if(x){l=this.cropStart+A;l=e&&e[l]|| +this.pointClass.prototype.applyOptions.apply({series:this},[f[l]]);var E,C;for(E=0;Ethis.chart.plotSizeX/d||b&&f.forced)&&(e=!0);return e?d:0};G.prototype.setDataGrouping=function(a,b){var c;b=e(b,!0);a||(a={forced:!1,units:null});if(this instanceof G)for(c=this.series.length;c--;)this.series[c].update({dataGrouping:a},!1);else l(this.chart.options.series,function(b){b.dataGrouping=a},!1);b&&this.chart.redraw()}})(N);(function(a){var D=a.each,B=a.Point,G=a.seriesType,H=a.seriesTypes;G("ohlc","column",{lineWidth:1,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eOpen: {point.open}\x3cbr/\x3eHigh: {point.high}\x3cbr/\x3eLow: {point.low}\x3cbr/\x3eClose: {point.close}\x3cbr/\x3e'}, +threshold:null,states:{hover:{lineWidth:3}}},{pointArrayMap:["open","high","low","close"],toYData:function(a){return[a.open,a.high,a.low,a.close]},pointValKey:"high",pointAttribs:function(a,l){l=H.column.prototype.pointAttribs.call(this,a,l);var p=this.options;delete l.fill;l["stroke-width"]=p.lineWidth;l.stroke=a.options.color||(a.openk)););B(g,function(a,b){var d;void 0===a.plotY&&(a.x>=c.min&&a.x<=c.max?a.plotY=e.chartHeight-p.bottom-(p.opposite?p.height:0)+p.offset-e.plotTop:a.shapeArgs={});a.plotX+=t;(f=g[b-1])&&f.plotX===a.plotX&&(void 0===f.stackIndex&&(f.stackIndex=0),d=f.stackIndex+1);a.stackIndex=d})},drawPoints:function(){var a=this.points,e=this.chart,g=e.renderer,k,l,f=this.options,d=f.y,b,q,p,c,r,n,t,x=this.yAxis;for(q=a.length;q--;)p=a[q],t=p.plotX>this.xAxis.len,k=p.plotX,c=p.stackIndex,b= +p.options.shape||f.shape,l=p.plotY,void 0!==l&&(l=p.plotY+d-(void 0!==c&&c*f.stackDistance)),r=c?void 0:p.plotX,n=c?void 0:p.plotY,c=p.graphic,void 0!==l&&0<=k&&!t?(c||(c=p.graphic=g.label("",null,null,b,null,null,f.useHTML).attr(this.pointAttribs(p)).css(G(f.style,p.style)).attr({align:"flag"===b?"left":"center",width:f.width,height:f.height,"text-align":f.textAlign}).addClass("highcharts-point").add(this.markerGroup),c.shadow(f.shadow)),0h&&(e-=Math.round((l-h)/2),h=l);e=k[a](e,g,h,l);d&&f&&e.push("M",d,g>f?g:g+l,"L",d,f);return e}});p===t&&B(["flag","circlepin","squarepin"],function(a){t.prototype.symbols[a]=k[a]})})(N);(function(a){function D(a,d,e){this.init(a,d,e)}var B=a.addEvent,G=a.Axis,H=a.correctFloat,p=a.defaultOptions, +l=a.defined,r=a.destroyObjectProperties,w=a.doc,t=a.each,k=a.fireEvent,m=a.hasTouch,e=a.isTouchDevice,g=a.merge,h=a.pick,C=a.removeEvent,f=a.wrap,d={height:e?20:14,barBorderRadius:0,buttonBorderRadius:0,liveRedraw:a.svg&&!e,margin:10,minWidth:6,step:.2,zIndex:3,barBackgroundColor:"#cccccc",barBorderWidth:1,barBorderColor:"#cccccc",buttonArrowColor:"#333333",buttonBackgroundColor:"#e6e6e6",buttonBorderColor:"#cccccc",buttonBorderWidth:1,rifleColor:"#333333",trackBackgroundColor:"#f2f2f2",trackBorderColor:"#f2f2f2", +trackBorderWidth:1};p.scrollbar=g(!0,d,p.scrollbar);D.prototype={init:function(a,e,f){this.scrollbarButtons=[];this.renderer=a;this.userOptions=e;this.options=g(d,e);this.chart=f;this.size=h(this.options.size,this.options.height);e.enabled&&(this.render(),this.initEvents(),this.addEvents())},render:function(){var a=this.renderer,d=this.options,e=this.size,c;this.group=c=a.g("scrollbar").attr({zIndex:d.zIndex,translateY:-99999}).add();this.track=a.rect().addClass("highcharts-scrollbar-track").attr({x:0, +r:d.trackBorderRadius||0,height:e,width:e}).add(c);this.track.attr({fill:d.trackBackgroundColor,stroke:d.trackBorderColor,"stroke-width":d.trackBorderWidth});this.trackBorderWidth=this.track.strokeWidth();this.track.attr({y:-this.trackBorderWidth%2/2});this.scrollbarGroup=a.g().add(c);this.scrollbar=a.rect().addClass("highcharts-scrollbar-thumb").attr({height:e,width:e,r:d.barBorderRadius||0}).add(this.scrollbarGroup);this.scrollbarRifles=a.path(this.swapXY(["M",-3,e/4,"L",-3,2*e/3,"M",0,e/4,"L", +0,2*e/3,"M",3,e/4,"L",3,2*e/3],d.vertical)).addClass("highcharts-scrollbar-rifles").add(this.scrollbarGroup);this.scrollbar.attr({fill:d.barBackgroundColor,stroke:d.barBorderColor,"stroke-width":d.barBorderWidth});this.scrollbarRifles.attr({stroke:d.rifleColor,"stroke-width":1});this.scrollbarStrokeWidth=this.scrollbar.strokeWidth();this.scrollbarGroup.translate(-this.scrollbarStrokeWidth%2/2,-this.scrollbarStrokeWidth%2/2);this.drawScrollbarButton(0);this.drawScrollbarButton(1)},position:function(a, +d,e,c){var b=this.options.vertical,f=0,g=this.rendered?"animate":"attr";this.x=a;this.y=d+this.trackBorderWidth;this.width=e;this.xOffset=this.height=c;this.yOffset=f;b?(this.width=this.yOffset=e=f=this.size,this.xOffset=d=0,this.barWidth=c-2*e,this.x=a+=this.options.margin):(this.height=this.xOffset=c=d=this.size,this.barWidth=e-2*c,this.y+=this.options.margin);this.group[g]({translateX:a,translateY:this.y});this.track[g]({width:e,height:c});this.scrollbarButtons[1].attr({translateX:b?0:e-d,translateY:b? +c-f:0})},drawScrollbarButton:function(a){var b=this.renderer,d=this.scrollbarButtons,c=this.options,e=this.size,f;f=b.g().add(this.group);d.push(f);f=b.rect().addClass("highcharts-scrollbar-button").add(f);f.attr({stroke:c.buttonBorderColor,"stroke-width":c.buttonBorderWidth,fill:c.buttonBackgroundColor});f.attr(f.crisp({x:-.5,y:-.5,width:e+1,height:e+1,r:c.buttonBorderRadius},f.strokeWidth()));f=b.path(this.swapXY(["M",e/2+(a?-1:1),e/2-3,"L",e/2+(a?-1:1),e/2+3,"L",e/2+(a?2:-2),e/2],c.vertical)).addClass("highcharts-scrollbar-arrow").add(d[a]); +f.attr({fill:c.buttonArrowColor})},swapXY:function(a,d){var b=a.length,c;if(d)for(d=0;d=k?this.scrollbarRifles.hide():this.scrollbarRifles.show(!0),!1===b.showFull&&(0>=a&&1<=d?this.group.hide():this.group.show()),this.rendered=!0)},initEvents:function(){var a=this;a.mouseMoveHandler=function(b){var d=a.chart.pointer.normalize(b),c=a.options.vertical? +"chartY":"chartX",e=a.initPositions;!a.grabbedCenter||b.touches&&0===b.touches[0][c]||(d=a.cursorToScrollbarPosition(d)[c],c=a[c],c=d-c,a.hasDragged=!0,a.updatePosition(e[0]+c,e[1]+c),a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b}))};a.mouseUpHandler=function(b){a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b});a.grabbedCenter=a.hasDragged=a.chartX=a.chartY=null};a.mouseDownHandler=function(b){b=a.chart.pointer.normalize(b); +b=a.cursorToScrollbarPosition(b);a.chartX=b.chartX;a.chartY=b.chartY;a.initPositions=[a.from,a.to];a.grabbedCenter=!0};a.buttonToMinClick=function(b){var d=H(a.to-a.from)*a.options.step;a.updatePosition(H(a.from-d),H(a.to-d));k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.buttonToMaxClick=function(b){var d=(a.to-a.from)*a.options.step;a.updatePosition(a.from+d,a.to+d);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.trackClick=function(b){var d=a.chart.pointer.normalize(b), +c=a.to-a.from,e=a.y+a.scrollbarTop,f=a.x+a.scrollbarLeft;a.options.vertical&&d.chartY>e||!a.options.vertical&&d.chartX>f?a.updatePosition(a.from+c,a.to+c):a.updatePosition(a.from-c,a.to-c);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})}},cursorToScrollbarPosition:function(a){var b=this.options,b=b.minWidth>this.calculatedWidth?b.minWidth:0;return{chartX:(a.chartX-this.x-this.xOffset)/(this.barWidth-b),chartY:(a.chartY-this.y-this.yOffset)/(this.barWidth-b)}},updatePosition:function(a, +d){1a&&(d=H(d-a),a=0);this.from=a;this.to=d},update:function(a){this.destroy();this.init(this.chart.renderer,g(!0,this.options,a),this.chart)},addEvents:function(){var a=this.options.inverted?[1,0]:[0,1],d=this.scrollbarButtons,e=this.scrollbarGroup.element,c=this.mouseDownHandler,f=this.mouseMoveHandler,g=this.mouseUpHandler,a=[[d[a[0]].element,"click",this.buttonToMinClick],[d[a[1]].element,"click",this.buttonToMaxClick],[this.track.element,"click",this.trackClick],[e, +"mousedown",c],[w,"mousemove",f],[w,"mouseup",g]];m&&a.push([e,"touchstart",c],[w,"touchmove",f],[w,"touchend",g]);t(a,function(a){B.apply(null,a)});this._events=a},removeEvents:function(){t(this._events,function(a){C.apply(null,a)});this._events=void 0},destroy:function(){var a=this.chart.scroller;this.removeEvents();t(["track","scrollbarRifles","scrollbar","scrollbarGroup","group"],function(a){this[a]&&this[a].destroy&&(this[a]=this[a].destroy())},this);a&&(a.scrollbar=null,r(a.scrollbarButtons))}}; +f(G.prototype,"init",function(a){var b=this;a.apply(b,[].slice.call(arguments,1));b.options.scrollbar&&b.options.scrollbar.enabled&&(b.options.scrollbar.vertical=!b.horiz,b.options.startOnTick=b.options.endOnTick=!1,b.scrollbar=new D(b.chart.renderer,b.options.scrollbar,b.chart),B(b.scrollbar,"changed",function(a){var c=Math.min(h(b.options.min,b.min),b.min,b.dataMin),d=Math.max(h(b.options.max,b.max),b.max,b.dataMax)-c,e;b.horiz&&!b.reversed||!b.horiz&&b.reversed?(e=c+d*this.to,c+=d*this.from):(e= +c+d*(1-this.from),c+=d*(1-this.to));b.setExtremes(c,e,!0,!1,a)}))});f(G.prototype,"render",function(a){var b=Math.min(h(this.options.min,this.min),this.min,this.dataMin),d=Math.max(h(this.options.max,this.max),this.max,this.dataMax),c=this.scrollbar,e;a.apply(this,[].slice.call(arguments,1));c&&(this.horiz?c.position(this.left,this.top+this.height+this.offset+2+(this.opposite?0:this.axisTitleMargin),this.width,this.height):c.position(this.left+this.width+2+this.offset+(this.opposite?this.axisTitleMargin: +0),this.top,this.width,this.height),isNaN(b)||isNaN(d)||!l(this.min)||!l(this.max)?c.setRange(0,0):(e=(this.min-b)/(d-b),b=(this.max-b)/(d-b),this.horiz&&!this.reversed||!this.horiz&&this.reversed?c.setRange(e,b):c.setRange(1-b,1-e)))});f(G.prototype,"getOffset",function(a){var b=this.horiz?2:1,d=this.scrollbar;a.apply(this,[].slice.call(arguments,1));d&&(this.chart.axisOffset[b]+=d.size+d.options.margin)});f(G.prototype,"destroy",function(a){this.scrollbar&&(this.scrollbar=this.scrollbar.destroy()); +a.apply(this,[].slice.call(arguments,1))});a.Scrollbar=D})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.color,l=a.defaultOptions,r=a.defined,w=a.destroyObjectProperties,t=a.doc,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.grep,C=a.hasTouch,f=a.isNumber,d=a.isObject,b=a.isTouchDevice,q=a.merge,E=a.pick,c=a.removeEvent,F=a.Scrollbar,n=a.Series,A=a.seriesTypes,x=a.wrap,J=[].concat(a.defaultDataGroupingUnits),y=function(a){var b=h(arguments,f);if(b.length)return Math[a].apply(0, +b)};J[4]=["day",[1,2,3,4]];J[5]=["week",[1,2,3]];A=void 0===A.areaspline?"line":"areaspline";g(l,{navigator:{height:40,margin:25,maskInside:!0,handles:{backgroundColor:"#f2f2f2",borderColor:"#999999"},maskFill:p("#6685c2").setOpacity(.3).get(),outlineColor:"#cccccc",outlineWidth:1,series:{type:A,color:"#335cad",fillOpacity:.05,lineWidth:1,compare:null,dataGrouping:{approximation:"average",enabled:!0,groupPixelWidth:2,smoothed:!0,units:J},dataLabels:{enabled:!1,zIndex:2},id:"highcharts-navigator-series", +className:"highcharts-navigator-series",lineColor:null,marker:{enabled:!1},pointRange:0,shadow:!1,threshold:null},xAxis:{className:"highcharts-navigator-xaxis",tickLength:0,lineWidth:0,gridLineColor:"#e6e6e6",gridLineWidth:1,tickPixelInterval:200,labels:{align:"left",style:{color:"#999999"},x:3,y:-4},crosshair:!1},yAxis:{className:"highcharts-navigator-yaxis",gridLineWidth:0,startOnTick:!1,endOnTick:!1,minPadding:.1,maxPadding:.1,labels:{enabled:!1},crosshair:!1,title:{text:null},tickLength:0,tickWidth:0}}}); +D.prototype={drawHandle:function(a,b){var c=this.chart.renderer,d=this.handles;this.rendered||(d[b]=c.path(["M",-4.5,.5,"L",3.5,.5,3.5,15.5,-4.5,15.5,-4.5,.5,"M",-1.5,4,"L",-1.5,12,"M",.5,4,"L",.5,12]).attr({zIndex:10-b}).addClass("highcharts-navigator-handle highcharts-navigator-handle-"+["left","right"][b]).add(),c=this.navigatorOptions.handles,d[b].attr({fill:c.backgroundColor,stroke:c.borderColor,"stroke-width":1}).css({cursor:"ew-resize"}));d[b][this.rendered&&!this.hasDragged?"animate":"attr"]({translateX:Math.round(this.scrollerLeft+ +this.scrollbarHeight+parseInt(a,10)),translateY:Math.round(this.top+this.height/2-8)})},update:function(a){this.destroy();q(!0,this.chart.options.navigator,this.options,a);this.init(this.chart)},render:function(a,b,c,d){var e=this.chart,g=e.renderer,k,h,l,n;n=this.scrollbarHeight;var m=this.xAxis,p=this.navigatorOptions,u=p.maskInside,q=this.height,v=this.top,t=this.navigatorEnabled,x=this.outlineHeight,y;y=this.rendered;if(f(a)&&f(b)&&(!this.hasDragged||r(c))&&(this.navigatorLeft=k=E(m.left,e.plotLeft+ +n),this.navigatorWidth=h=E(m.len,e.plotWidth-2*n),this.scrollerLeft=l=k-n,this.scrollerWidth=n=n=h+2*n,c=E(c,m.translate(a)),d=E(d,m.translate(b)),f(c)&&Infinity!==Math.abs(c)||(c=0,d=n),!(m.translate(d,!0)-m.translate(c,!0)f&&tp+d-u&&rk&&re?e=0:e+v>=q&&(e=q-v,x=h.getUnionExtremes().dataMax),e!==d&&(h.fixedWidth=v,d=l.toFixedRange(e, +e+v,null,x),c.setExtremes(d.min,d.max,!0,null,{trigger:"navigator"}))))};h.mouseMoveHandler=function(b){var c=h.scrollbarHeight,d=h.navigatorLeft,e=h.navigatorWidth,f=h.scrollerLeft,g=h.scrollerWidth,k=h.range,l;b.touches&&0===b.touches[0].pageX||(b=a.pointer.normalize(b),l=b.chartX,lf+g-c&&(l=f+g-c),h.grabbedLeft?(h.hasDragged=!0,h.render(0,0,l-d,h.otherHandlePos)):h.grabbedRight?(h.hasDragged=!0,h.render(0,0,h.otherHandlePos,l-d)):h.grabbedCenter&&(h.hasDragged=!0,le+n-k&&(l=e+ +n-k),h.render(0,0,l-n,l-n+k)),h.hasDragged&&h.scrollbar&&h.scrollbar.options.liveRedraw&&(b.DOMType=b.type,setTimeout(function(){h.mouseUpHandler(b)},0)))};h.mouseUpHandler=function(b){var c,d,e=b.DOMEvent||b;if(h.hasDragged||"scrollbar"===b.trigger)h.zoomedMin===h.otherHandlePos?c=h.fixedExtreme:h.zoomedMax===h.otherHandlePos&&(d=h.fixedExtreme),h.zoomedMax===h.navigatorWidth&&(d=h.getUnionExtremes().dataMax),c=l.toFixedRange(h.zoomedMin,h.zoomedMax,c,d),r(c.min)&&a.xAxis[0].setExtremes(c.min,c.max, +!0,h.hasDragged?!1:null,{trigger:"navigator",triggerOp:"navigator-drag",DOMEvent:e});"mousemove"!==b.DOMType&&(h.grabbedLeft=h.grabbedRight=h.grabbedCenter=h.fixedWidth=h.fixedExtreme=h.otherHandlePos=h.hasDragged=n=null)};var c=a.xAxis.length,f=a.yAxis.length,m=e&&e[0]&&e[0].xAxis||a.xAxis[0];a.extraBottomMargin=h.outlineHeight+d.margin;a.isDirtyBox=!0;h.navigatorEnabled?(h.xAxis=l=new G(a,q({breaks:m.options.breaks,ordinal:m.options.ordinal},d.xAxis,{id:"navigator-x-axis",yAxis:"navigator-y-axis", +isX:!0,type:"datetime",index:c,height:g,offset:0,offsetLeft:k,offsetRight:-k,keepOrdinalPadding:!0,startOnTick:!1,endOnTick:!1,minPadding:0,maxPadding:0,zoomEnabled:!1})),h.yAxis=new G(a,q(d.yAxis,{id:"navigator-y-axis",alignTicks:!1,height:g,offset:0,index:f,zoomEnabled:!1})),e||d.series.data?h.addBaseSeries():0===a.series.length&&x(a,"redraw",function(b,c){0=Math.round(a.navigatorWidth);b&&!a.hasNavigatorData&&(b.options.pointStart=this.xData[0],b.setData(this.options.data,!1,null,!1))},destroy:function(){this.removeEvents();this.xAxis&&(m(this.chart.xAxis,this.xAxis),m(this.chart.axes,this.xAxis));this.yAxis&&(m(this.chart.yAxis,this.yAxis),m(this.chart.axes,this.yAxis));k(this.series||[],function(a){a.destroy&&a.destroy()});k("series xAxis yAxis leftShade rightShade outline scrollbarTrack scrollbarRifles scrollbarGroup scrollbar navigatorGroup rendered".split(" "), +function(a){this[a]&&this[a].destroy&&this[a].destroy();this[a]=null},this);k([this.handles,this.elementsToDestroy],function(a){w(a)},this)}};a.Navigator=D;x(G.prototype,"zoom",function(a,b,c){var d=this.chart,e=d.options,f=e.chart.zoomType,g=e.navigator,e=e.rangeSelector,h;this.isXAxis&&(g&&g.enabled||e&&e.enabled)&&("x"===f?d.resetZoomButton="blocked":"y"===f?h=!1:"xy"===f&&(d=this.previousZoom,r(b)?this.previousZoom=[this.min,this.max]:d&&(b=d[0],c=d[1],delete this.previousZoom)));return void 0!== +h?h:a.call(this,b,c)});x(H.prototype,"init",function(a,b,c){B(this,"beforeRender",function(){var a=this.options;if(a.navigator.enabled||a.scrollbar.enabled)this.scroller=this.navigator=new D(this)});a.call(this,b,c)});x(H.prototype,"getMargins",function(a){var b=this.legend,c=b.options,d=this.scroller,e,f;a.apply(this,[].slice.call(arguments,1));d&&(e=d.xAxis,f=d.yAxis,d.top=d.navigatorOptions.top||this.chartHeight-d.height-d.scrollbarHeight-this.spacing[2]-("bottom"===c.verticalAlign&&c.enabled&& +!c.floating?b.legendHeight+E(c.margin,10):0),e&&f&&(e.options.top=f.options.top=d.top,e.setAxisSize(),f.setAxisSize()))});x(n.prototype,"addPoint",function(a,b,c,f,g){var h=this.options.turboThreshold;h&&this.xData.length>h&&d(b,!0)&&this.chart.scroller&&e(20,!0);a.call(this,b,c,f,g)});x(H.prototype,"addSeries",function(a,b,c,d){a=a.call(this,b,!1,d);this.scroller&&this.scroller.setBaseSeries();E(c,!0)&&this.redraw();return a});x(n.prototype,"update",function(a,b,c){a.call(this,b,!1);this.chart.scroller&& +this.chart.scroller.setBaseSeries();E(c,!0)&&this.chart.redraw()})})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.css,l=a.createElement,r=a.dateFormat,w=a.defaultOptions,t=w.global.useUTC,k=a.defined,m=a.destroyObjectProperties,e=a.discardElement,g=a.each,h=a.extend,C=a.fireEvent,f=a.Date,d=a.isNumber,b=a.merge,q=a.pick,E=a.pInt,c=a.splat,F=a.wrap;h(w,{rangeSelector:{buttonTheme:{"stroke-width":0,width:28,height:18,padding:2,zIndex:7},height:35,inputPosition:{align:"right"}, +labelStyle:{color:"#666666"}}});w.lang=b(w.lang,{rangeSelectorZoom:"Zoom",rangeSelectorFrom:"From",rangeSelectorTo:"To"});D.prototype={clickButton:function(a,b){var e=this,f=e.chart,h=e.buttonOptions[a],k=f.xAxis[0],l=f.scroller&&f.scroller.getUnionExtremes()||k||{},n=l.dataMin,m=l.dataMax,p,r=k&&Math.round(Math.min(k.max,q(m,k.max))),w=h.type,z,l=h._range,A,C,D,E=h.dataGrouping;if(null!==n&&null!==m){f.fixedRange=l;E&&(this.forcedDataGrouping=!0,G.prototype.setDataGrouping.call(k||{chart:this.chart}, +E,!1));if("month"===w||"year"===w)k?(w={range:h,max:r,dataMin:n,dataMax:m},p=k.minFromRange.call(w),d(w.newMax)&&(r=w.newMax)):l=h;else if(l)p=Math.max(r-l,n),r=Math.min(p+l,m);else if("ytd"===w)if(k)void 0===m&&(n=Number.MAX_VALUE,m=Number.MIN_VALUE,g(f.series,function(a){a=a.xData;n=Math.min(a[0],n);m=Math.max(a[a.length-1],m)}),b=!1),r=e.getYTDExtremes(m,n,t),p=A=r.min,r=r.max;else{B(f,"beforeRender",function(){e.clickButton(a)});return}else"all"===w&&k&&(p=n,r=m);e.setSelected(a);k?k.setExtremes(p, +r,q(b,1),null,{trigger:"rangeSelectorButton",rangeSelectorButton:h}):(z=c(f.options.xAxis)[0],D=z.range,z.range=l,C=z.min,z.min=A,B(f,"load",function(){z.range=D;z.min=C}))}},setSelected:function(a){this.selected=this.options.selected=a},defaultButtons:[{type:"month",count:1,text:"1m"},{type:"month",count:3,text:"3m"},{type:"month",count:6,text:"6m"},{type:"ytd",text:"YTD"},{type:"year",count:1,text:"1y"},{type:"all",text:"All"}],init:function(a){var b=this,c=a.options.rangeSelector,d=c.buttons|| +[].concat(b.defaultButtons),e=c.selected,f=function(){var a=b.minInput,c=b.maxInput;a&&a.blur&&C(a,"blur");c&&c.blur&&C(c,"blur")};b.chart=a;b.options=c;b.buttons=[];a.extraTopMargin=c.height;b.buttonOptions=d;this.unMouseDown=B(a.container,"mousedown",f);this.unResize=B(a,"resize",f);g(d,b.computeButtonRange);void 0!==e&&d[e]&&this.clickButton(e,!1);B(a,"load",function(){B(a.xAxis[0],"setExtremes",function(c){this.max-this.min!==a.fixedRange&&"rangeSelectorButton"!==c.trigger&&"updatedData"!==c.trigger&& +b.forcedDataGrouping&&this.setDataGrouping(!1,!1)})})},updateButtonStates:function(){var a=this.chart,b=a.xAxis[0],c=Math.round(b.max-b.min),e=!b.hasVisibleSeries,a=a.scroller&&a.scroller.getUnionExtremes()||b,f=a.dataMin,h=a.dataMax,a=this.getYTDExtremes(h,f,t),k=a.min,l=a.max,m=this.selected,p=d(m),q=this.options.allButtonsEnabled,r=this.buttons;g(this.buttonOptions,function(a,d){var g=a._range,n=a.type,u=a.count||1;a=r[d];var t=0;d=d===m;var v=g>h-f,x=g=864E5*{month:28,year:365}[n]*u&&c<=864E5*{month:31,year:366}[n]*u?g=!0:"ytd"===n?(g=l-k===c,y=!d):"all"===n&&(g=b.max-b.min>=h-f,w=!d&&p&&g);n=!q&&(v||x||w||e);g=d&&g||g&&!p&&!y;n?t=3:g&&(p=!0,t=2);a.state!==t&&a.setState(t)})},computeButtonRange:function(a){var b=a.type,c=a.count||1,d={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5};if(d[b])a._range=d[b]*c;else if("month"===b||"year"===b)a._range=864E5*{month:30,year:365}[b]*c},setInputValue:function(a,b){var c= +this.chart.options.rangeSelector,d=this[a+"Input"];k(b)&&(d.previousValue=d.HCTime,d.HCTime=b);d.value=r(c.inputEditDateFormat||"%Y-%m-%d",d.HCTime);this[a+"DateBox"].attr({text:r(c.inputDateFormat||"%b %e, %Y",d.HCTime)})},showInput:function(a){var b=this.inputGroup,c=this[a+"DateBox"];p(this[a+"Input"],{left:b.translateX+c.x+"px",top:b.translateY+"px",width:c.width-2+"px",height:c.height-2+"px",border:"2px solid silver"})},hideInput:function(a){p(this[a+"Input"],{border:0,width:"1px",height:"1px"}); +this.setInputValue(a)},drawInput:function(a){function c(){var a=r.value,b=(m.inputDateParser||Date.parse)(a),c=f.xAxis[0],g=f.scroller&&f.scroller.xAxis?f.scroller.xAxis:c,h=g.dataMin,g=g.dataMax;b!==r.previousValue&&(r.previousValue=b,d(b)||(b=a.split("-"),b=Date.UTC(E(b[0]),E(b[1])-1,E(b[2]))),d(b)&&(t||(b+=6E4*(new Date).getTimezoneOffset()),q?b>e.maxInput.HCTime?b=void 0:bg&&(b=g),void 0!==b&&c.setExtremes(q?b:c.min,q?c.max:b,void 0,void 0,{trigger:"rangeSelectorInput"})))} +var e=this,f=e.chart,g=f.renderer.style||{},k=f.renderer,m=f.options.rangeSelector,n=e.div,q="min"===a,r,B,C=this.inputGroup;this[a+"Label"]=B=k.label(w.lang[q?"rangeSelectorFrom":"rangeSelectorTo"],this.inputGroup.offset).addClass("highcharts-range-label").attr({padding:2}).add(C);C.offset+=B.width+5;this[a+"DateBox"]=k=k.label("",C.offset).addClass("highcharts-range-input").attr({padding:2,width:m.inputBoxWidth||90,height:m.inputBoxHeight||17,stroke:m.inputBoxBorderColor||"#cccccc","stroke-width":1, +"text-align":"center"}).on("click",function(){e.showInput(a);e[a+"Input"].focus()}).add(C);C.offset+=k.width+(q?10:0);this[a+"Input"]=r=l("input",{name:a,className:"highcharts-range-selector",type:"text"},{top:f.plotTop+"px"},n);B.css(b(g,m.labelStyle));k.css(b({color:"#333333"},g,m.inputStyle));p(r,h({position:"absolute",border:0,width:"1px",height:"1px",padding:0,textAlign:"center",fontSize:g.fontSize,fontFamily:g.fontFamily,left:"-9em"},m.inputStyle));r.onfocus=function(){e.showInput(a)};r.onblur= +function(){e.hideInput(a)};r.onchange=c;r.onkeypress=function(a){13===a.keyCode&&c()}},getPosition:function(){var a=this.chart,b=a.options.rangeSelector,a=q((b.buttonPosition||{}).y,a.plotTop-a.axisOffset[0]-b.height);return{buttonTop:a,inputTop:a-10}},getYTDExtremes:function(a,b,c){var d=new f(a),e=d[f.hcGetFullYear]();c=c?f.UTC(e,0,1):+new f(e,0,1);b=Math.max(b||0,c);d=d.getTime();return{max:Math.min(a||d,d),min:b}},render:function(a,b){var c=this,d=c.chart,e=d.renderer,f=d.container,m=d.options, +n=m.exporting&&!1!==m.exporting.enabled&&m.navigation&&m.navigation.buttonOptions,p=m.rangeSelector,r=c.buttons,m=w.lang,t=c.div,t=c.inputGroup,A=p.buttonTheme,z=p.buttonPosition||{},B=p.inputEnabled,C=A&&A.states,D=d.plotLeft,E,G=this.getPosition(),F=c.group,H=c.rendered;!1!==p.enabled&&(H||(c.group=F=e.g("range-selector-buttons").add(),c.zoomText=e.text(m.rangeSelectorZoom,q(z.x,D),15).css(p.labelStyle).add(F),E=q(z.x,D)+c.zoomText.getBBox().width+5,g(c.buttonOptions,function(a,b){r[b]=e.button(a.text, +E,0,function(){c.clickButton(b);c.isActive=!0},A,C&&C.hover,C&&C.select,C&&C.disabled).attr({"text-align":"center"}).add(F);E+=r[b].width+q(p.buttonSpacing,5)}),!1!==B&&(c.div=t=l("div",null,{position:"relative",height:0,zIndex:1}),f.parentNode.insertBefore(t,f),c.inputGroup=t=e.g("input-group").add(),t.offset=0,c.drawInput("min"),c.drawInput("max"))),c.updateButtonStates(),F[H?"animate":"attr"]({translateY:G.buttonTop}),!1!==B&&(t.align(h({y:G.inputTop,width:t.offset,x:n&&G.inputTop<(n.y||0)+n.height- +d.spacing[0]?-40:0},p.inputPosition),!0,d.spacingBox),k(B)||(d=F.getBBox(),t[t.alignAttr.translateXc&&(e?a=b-f:b=a+f);d(a)||(a=b=void 0);return{min:a,max:b}};G.prototype.minFromRange=function(){var a=this.range,b={month:"Month",year:"FullYear"}[a.type],c,e=this.max,f,g,h=function(a,c){var d=new Date(a);d["set"+b](d["get"+ +b]()+c);return d.getTime()-a};d(a)?(c=e-a,g=a):(c=e+h(e,-a.count),this.chart&&(this.chart.fixedRange=e-c));f=q(this.dataMin,Number.MIN_VALUE);d(c)||(c=f);c<=f&&(c=f,void 0===g&&(g=h(c,a.count)),this.newMax=Math.min(c+g,this.dataMax));d(e)||(c=void 0);return c};F(H.prototype,"init",function(a,b,c){B(this,"init",function(){this.options.rangeSelector.enabled&&(this.rangeSelector=new D(this))});a.call(this,b,c)});a.RangeSelector=D})(N);(function(a){var D=a.addEvent,B=a.isNumber;a.Chart.prototype.callbacks.push(function(a){function G(){p= +a.xAxis[0].getExtremes();B(p.min)&&r.render(p.min,p.max)}var p,l=a.scroller,r=a.rangeSelector,w,t;l&&(p=a.xAxis[0].getExtremes(),l.render(p.min,p.max));r&&(t=D(a.xAxis[0],"afterSetExtremes",function(a){r.render(a.min,a.max)}),w=D(a,"redraw",G),G());D(a,"destroy",function(){r&&(w(),t())})})})(N);(function(a){var D=a.arrayMax,B=a.arrayMin,G=a.Axis,H=a.Chart,p=a.defined,l=a.each,r=a.extend,w=a.format,t=a.inArray,k=a.isNumber,m=a.isString,e=a.map,g=a.merge,h=a.pick,C=a.Point,f=a.Renderer,d=a.Series,b= +a.splat,q=a.stop,E=a.SVGRenderer,c=a.VMLRenderer,F=a.wrap,n=d.prototype,A=n.init,x=n.processData,J=C.prototype.tooltipFormatter;a.StockChart=a.stockChart=function(c,d,f){var k=m(c)||c.nodeName,l=arguments[k?1:0],n=l.series,p=a.getOptions(),q,r=h(l.navigator&&l.navigator.enabled,!0)?{startOnTick:!1,endOnTick:!1}:null,t={marker:{enabled:!1,radius:2}},u={shadow:!1,borderWidth:0};l.xAxis=e(b(l.xAxis||{}),function(a){return g({minPadding:0,maxPadding:0,ordinal:!0,title:{text:null},labels:{overflow:"justify"}, +showLastLabel:!0},p.xAxis,a,{type:"datetime",categories:null},r)});l.yAxis=e(b(l.yAxis||{}),function(a){q=h(a.opposite,!0);return g({labels:{y:-2},opposite:q,showLastLabel:!1,title:{text:null}},p.yAxis,a)});l.series=null;l=g({chart:{panning:!0,pinchType:"x"},navigator:{enabled:!0},scrollbar:{enabled:!0},rangeSelector:{enabled:!0},title:{text:null,style:{fontSize:"16px"}},tooltip:{shared:!0,crosshairs:!0},legend:{enabled:!1},plotOptions:{line:t,spline:t,area:t,areaspline:t,arearange:t,areasplinerange:t, +column:u,columnrange:u,candlestick:u,ohlc:u}},l,{_stock:!0,chart:{inverted:!1}});l.series=n;return k?new H(c,l,f):new H(l,d)};F(G.prototype,"autoLabelAlign",function(a){var b=this.chart,c=this.options,b=b._labelPanes=b._labelPanes||{},d=this.options.labels;return this.chart.options._stock&&"yAxis"===this.coll&&(c=c.top+","+c.height,!b[c]&&d.enabled)?(15===d.x&&(d.x=0),void 0===d.align&&(d.align="right"),b[c]=1,"right"):a.call(this,[].slice.call(arguments,1))});F(G.prototype,"getPlotLinePath",function(a, +b,c,d,f,g){var n=this,q=this.isLinked&&!this.series?this.linkedParent.series:this.series,r=n.chart,u=r.renderer,v=n.left,w=n.top,y,x,A,B,C=[],D=[],E,F;if("colorAxis"===n.coll)return a.apply(this,[].slice.call(arguments,1));D=function(a){var b="xAxis"===a?"yAxis":"xAxis";a=n.options[b];return k(a)?[r[b][a]]:m(a)?[r.get(a)]:e(q,function(a){return a[b]})}(n.coll);l(n.isXAxis?r.yAxis:r.xAxis,function(a){if(p(a.options.id)?-1===a.options.id.indexOf("navigator"):1){var b=a.isXAxis?"yAxis":"xAxis",b=p(a.options[b])? +r[b][a.options[b]]:r[b][0];n===b&&D.push(a)}});E=D.length?[]:[n.isXAxis?r.yAxis[0]:r.xAxis[0]];l(D,function(a){-1===t(a,E)&&E.push(a)});F=h(g,n.translate(b,null,null,d));k(F)&&(n.horiz?l(E,function(a){var b;x=a.pos;B=x+a.len;y=A=Math.round(F+n.transB);if(yv+n.width)f?y=A=Math.min(Math.max(v,y),v+n.width):b=!0;b||C.push("M",y,x,"L",A,B)}):l(E,function(a){var b;y=a.pos;A=y+a.len;x=B=Math.round(w+n.height-F);if(xw+n.height)f?x=B=Math.min(Math.max(w,x),n.top+n.height):b=!0;b||C.push("M",y, +x,"L",A,B)}));return 0=e&&(x=-(l.translateX+b.width-e));l.attr({x:m+x,y:k,anchorX:g?m:this.opposite?0:a.chartWidth,anchorY:g?this.opposite?a.chartHeight:0:k+b.height/2})}});n.init=function(){A.apply(this,arguments);this.setCompare(this.options.compare)};n.setCompare=function(a){this.modifyValue= +"value"===a||"percent"===a?function(b,c){var d=this.compareValue;if(void 0!==b&&void 0!==d)return b="value"===a?b-d:b=b/d*100-100,c&&(c.change=b),b}:null;this.userOptions.compare=a;this.chart.hasRendered&&(this.isDirty=!0)};n.processData=function(){var a,b=-1,c,d,e,f;x.apply(this,arguments);if(this.xAxis&&this.processedYData)for(c=this.processedXData,d=this.processedYData,e=d.length,this.pointArrayMap&&(b=t("close",this.pointArrayMap),-1===b&&(b=t(this.pointValKey||"y",this.pointArrayMap))),a=0;a< +e-1;a++)if(f=-1=this.xAxis.min&&0!==f){this.compareValue=f;break}};F(n,"getExtremes",function(a){var b;a.apply(this,[].slice.call(arguments,1));this.modifyValue&&(b=[this.modifyValue(this.dataMin),this.modifyValue(this.dataMax)],this.dataMin=B(b),this.dataMax=D(b))});G.prototype.setCompare=function(a,b){this.isXAxis||(l(this.series,function(b){b.setCompare(a)}),h(b,!0)&&this.chart.redraw())};C.prototype.tooltipFormatter=function(b){b=b.replace("{point.change}",(0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 '; + else + var expandButton = ''; + + return '' + expandButton + '' + ellipsedLabel({ name: item.name, parentClass: "nav-tooltip", childClass: "nav-label" }) + ''; +} + +function menuItemsForGroup(group, level, parent) { + var items = ''; + + if (level > 0) + items += menuItem(group, level - 1, parent, true); + + $.each(group.contents, function (contentName, content) { + if (content.type == 'GROUP') + items += menuItemsForGroup(content, level + 1, group.pathFormatted); + else if (content.type == 'REQUEST') + items += menuItem(content, level, group.pathFormatted); + }); + + return items; +} + +function setDetailsMenu(){ + $('.nav ul').append(menuItemsForGroup(stats, 0)); + $('.nav').expandable(); + $('.nav-tooltip').popover({trigger:'hover'}); +} + +function setGlobalMenu(){ + $('.nav ul') + .append('
  • Ranges
  • ') + .append('
  • Stats
  • ') + .append('
  • Active Users
  • ') + .append('
  • Requests / sec
  • ') + .append('
  • Responses / sec
  • '); +} + +function getLink(link){ + var a = link.split('/'); + return (a.length<=1)? link : a[a.length-1]; +} + +function expandUp(li) { + const parentId = li.attr("data-parent"); + if (parentId != "ROOT") { + const span = $('#' + parentId); + const parentLi = span.parents('li').first(); + span.expand(parentLi, false); + expandUp(parentLi); + } +} + +function setActiveMenu(){ + $('.nav a').each(function() { + const navA = $(this) + if(!navA.hasClass('expand-button') && navA.attr('href') == getLink(window.location.pathname)) { + const li = $(this).parents('li').first(); + li.addClass('on'); + expandUp(li); + return false; + } + }); +} diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/stats.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/stats.js new file mode 100644 index 00000000..6ed93cc1 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/stats.js @@ -0,0 +1,1523 @@ +var stats = { + type: "GROUP", +name: "All Requests", +path: "", +pathFormatted: "group_missing-name--1146707516", +stats: { + "name": "All Requests", + "numberOfRequests": { + "total": "5049", + "ok": "3861", + "ko": "1188" + }, + "minResponseTime": { + "total": "16", + "ok": "16", + "ko": "40" + }, + "maxResponseTime": { + "total": "306", + "ok": "306", + "ko": "122" + }, + "meanResponseTime": { + "total": "96", + "ok": "101", + "ko": "82" + }, + "standardDeviation": { + "total": "55", + "ok": "61", + "ko": "18" + }, + "percentiles1": { + "total": "86", + "ok": "95", + "ko": "84" + }, + "percentiles2": { + "total": "98", + "ok": "101", + "ko": "96" + }, + "percentiles3": { + "total": "247", + "ok": "251", + "ko": "98" + }, + "percentiles4": { + "total": "291", + "ok": "292", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3861, + "percentage": 76 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 1188, + "percentage": 24 +}, + "meanNumberOfRequestsPerSecond": { + "total": "60.107", + "ok": "45.964", + "ko": "14.143" + } +}, +contents: { +"req_request-0-693933696": { + type: "REQUEST", + name: "request_0", +path: "request_0", +pathFormatted: "req_request-0-693933696", +stats: { + "name": "request_0", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "16", + "ok": "16", + "ko": "-" + }, + "maxResponseTime": { + "total": "37", + "ok": "37", + "ko": "-" + }, + "meanResponseTime": { + "total": "18", + "ok": "18", + "ko": "-" + }, + "standardDeviation": { + "total": "2", + "ok": "2", + "ko": "-" + }, + "percentiles1": { + "total": "18", + "ok": "18", + "ko": "-" + }, + "percentiles2": { + "total": "19", + "ok": "19", + "ko": "-" + }, + "percentiles3": { + "total": "20", + "ok": "20", + "ko": "-" + }, + "percentiles4": { + "total": "23", + "ok": "23", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-1-693933697": { + type: "REQUEST", + name: "request_1", +path: "request_1", +pathFormatted: "req_request-1-693933697", +stats: { + "name": "request_1", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "114", + "ok": "114", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "86", + "ok": "86", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "percentiles4": { + "total": "104", + "ok": "104", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_wiq2-ico--1077617062": { + type: "REQUEST", + name: "wiq2.ico", +path: "wiq2.ico", +pathFormatted: "req_wiq2-ico--1077617062", +stats: { + "name": "wiq2.ico", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "159", + "ok": "159", + "ko": "-" + }, + "maxResponseTime": { + "total": "206", + "ok": "206", + "ko": "-" + }, + "meanResponseTime": { + "total": "177", + "ok": "177", + "ko": "-" + }, + "standardDeviation": { + "total": "13", + "ok": "13", + "ko": "-" + }, + "percentiles1": { + "total": "167", + "ok": "167", + "ko": "-" + }, + "percentiles2": { + "total": "191", + "ok": "191", + "ko": "-" + }, + "percentiles3": { + "total": "193", + "ok": "193", + "ko": "-" + }, + "percentiles4": { + "total": "197", + "ok": "197", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_main-4a961c5c-j-546111192": { + type: "REQUEST", + name: "main.4a961c5c.js", +path: "main.4a961c5c.js", +pathFormatted: "req_main-4a961c5c-j-546111192", +stats: { + "name": "main.4a961c5c.js", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "243", + "ok": "243", + "ko": "-" + }, + "maxResponseTime": { + "total": "306", + "ok": "306", + "ko": "-" + }, + "meanResponseTime": { + "total": "270", + "ok": "270", + "ko": "-" + }, + "standardDeviation": { + "total": "20", + "ok": "20", + "ko": "-" + }, + "percentiles1": { + "total": "264", + "ok": "264", + "ko": "-" + }, + "percentiles2": { + "total": "290", + "ok": "290", + "ko": "-" + }, + "percentiles3": { + "total": "293", + "ok": "293", + "ko": "-" + }, + "percentiles4": { + "total": "299", + "ok": "299", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_main-18e3ef94-c--35899781": { + type: "REQUEST", + name: "main.18e3ef94.css", +path: "main.18e3ef94.css", +pathFormatted: "req_main-18e3ef94-c--35899781", +stats: { + "name": "main.18e3ef94.css", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "82", + "ok": "82", + "ko": "-" + }, + "maxResponseTime": { + "total": "121", + "ok": "121", + "ko": "-" + }, + "meanResponseTime": { + "total": "93", + "ok": "93", + "ko": "-" + }, + "standardDeviation": { + "total": "8", + "ok": "8", + "ko": "-" + }, + "percentiles1": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles2": { + "total": "100", + "ok": "100", + "ko": "-" + }, + "percentiles3": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "percentiles4": { + "total": "112", + "ok": "112", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-3-693933699": { + type: "REQUEST", + name: "request_3", +path: "request_3", +pathFormatted: "req_request-3-693933699", +stats: { + "name": "request_3", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "119", + "ok": "119", + "ko": "-" + }, + "meanResponseTime": { + "total": "91", + "ok": "91", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "87", + "ok": "87", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "100", + "ok": "100", + "ko": "-" + }, + "percentiles4": { + "total": "107", + "ok": "107", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-4-693933700": { + type: "REQUEST", + name: "request_4", +path: "request_4", +pathFormatted: "req_request-4-693933700", +stats: { + "name": "request_4", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "119", + "ok": "119", + "ko": "-" + }, + "meanResponseTime": { + "total": "92", + "ok": "92", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles2": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles3": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "percentiles4": { + "total": "106", + "ok": "106", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-5-693933701": { + type: "REQUEST", + name: "request_5", +path: "request_5", +pathFormatted: "req_request-5-693933701", +stats: { + "name": "request_5", + "numberOfRequests": { + "total": "297", + "ok": "0", + "ko": "297" + }, + "minResponseTime": { + "total": "80", + "ok": "-", + "ko": "80" + }, + "maxResponseTime": { + "total": "122", + "ok": "-", + "ko": "122" + }, + "meanResponseTime": { + "total": "90", + "ok": "-", + "ko": "90" + }, + "standardDeviation": { + "total": "7", + "ok": "-", + "ko": "7" + }, + "percentiles1": { + "total": "86", + "ok": "-", + "ko": "86" + }, + "percentiles2": { + "total": "96", + "ok": "-", + "ko": "96" + }, + "percentiles3": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "percentiles4": { + "total": "102", + "ok": "-", + "ko": "102" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "-", + "ko": "3.536" + } +} + },"req_request-6-693933702": { + type: "REQUEST", + name: "request_6", +path: "request_6", +pathFormatted: "req_request-6-693933702", +stats: { + "name": "request_6", + "numberOfRequests": { + "total": "297", + "ok": "0", + "ko": "297" + }, + "minResponseTime": { + "total": "81", + "ok": "-", + "ko": "81" + }, + "maxResponseTime": { + "total": "113", + "ok": "-", + "ko": "113" + }, + "meanResponseTime": { + "total": "90", + "ok": "-", + "ko": "90" + }, + "standardDeviation": { + "total": "7", + "ok": "-", + "ko": "7" + }, + "percentiles1": { + "total": "86", + "ok": "-", + "ko": "86" + }, + "percentiles2": { + "total": "96", + "ok": "-", + "ko": "96" + }, + "percentiles3": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "percentiles4": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "-", + "ko": "3.536" + } +} + },"req_request-2-693933698": { + type: "REQUEST", + name: "request_2", +path: "request_2", +pathFormatted: "req_request-2-693933698", +stats: { + "name": "request_2", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "113", + "ok": "113", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-7-693933703": { + type: "REQUEST", + name: "request_7", +path: "request_7", +pathFormatted: "req_request-7-693933703", +stats: { + "name": "request_7", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-8-693933704": { + type: "REQUEST", + name: "request_8", +path: "request_8", +pathFormatted: "req_request-8-693933704", +stats: { + "name": "request_8", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "maxResponseTime": { + "total": "177", + "ok": "177", + "ko": "-" + }, + "meanResponseTime": { + "total": "111", + "ok": "111", + "ko": "-" + }, + "standardDeviation": { + "total": "12", + "ok": "12", + "ko": "-" + }, + "percentiles1": { + "total": "108", + "ok": "108", + "ko": "-" + }, + "percentiles2": { + "total": "113", + "ok": "113", + "ko": "-" + }, + "percentiles3": { + "total": "133", + "ok": "133", + "ko": "-" + }, + "percentiles4": { + "total": "161", + "ok": "161", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-9-693933705": { + type: "REQUEST", + name: "request_9", +path: "request_9", +pathFormatted: "req_request-9-693933705", +stats: { + "name": "request_9", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "meanResponseTime": { + "total": "91", + "ok": "91", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-10-37108175": { + type: "REQUEST", + name: "request_10", +path: "request_10", +pathFormatted: "req_request-10-37108175", +stats: { + "name": "request_10", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "42", + "ok": "42", + "ko": "-" + }, + "maxResponseTime": { + "total": "56", + "ok": "56", + "ko": "-" + }, + "meanResponseTime": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "standardDeviation": { + "total": "4", + "ok": "4", + "ko": "-" + }, + "percentiles1": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "percentiles2": { + "total": "51", + "ok": "51", + "ko": "-" + }, + "percentiles3": { + "total": "52", + "ok": "52", + "ko": "-" + }, + "percentiles4": { + "total": "53", + "ok": "53", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-11-37108176": { + type: "REQUEST", + name: "request_11", +path: "request_11", +pathFormatted: "req_request-11-37108176", +stats: { + "name": "request_11", + "numberOfRequests": { + "total": "297", + "ok": "297", + "ko": "0" + }, + "minResponseTime": { + "total": "42", + "ok": "42", + "ko": "-" + }, + "maxResponseTime": { + "total": "58", + "ok": "58", + "ko": "-" + }, + "meanResponseTime": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "standardDeviation": { + "total": "4", + "ok": "4", + "ko": "-" + }, + "percentiles1": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "percentiles2": { + "total": "51", + "ok": "51", + "ko": "-" + }, + "percentiles3": { + "total": "52", + "ok": "52", + "ko": "-" + }, + "percentiles4": { + "total": "54", + "ok": "54", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "3.536", + "ko": "-" + } +} + },"req_request-12-37108177": { + type: "REQUEST", + name: "request_12", +path: "request_12", +pathFormatted: "req_request-12-37108177", +stats: { + "name": "request_12", + "numberOfRequests": { + "total": "297", + "ok": "0", + "ko": "297" + }, + "minResponseTime": { + "total": "40", + "ok": "-", + "ko": "40" + }, + "maxResponseTime": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "meanResponseTime": { + "total": "72", + "ok": "-", + "ko": "72" + }, + "standardDeviation": { + "total": "24", + "ok": "-", + "ko": "24" + }, + "percentiles1": { + "total": "82", + "ok": "-", + "ko": "82" + }, + "percentiles2": { + "total": "95", + "ok": "-", + "ko": "95" + }, + "percentiles3": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "percentiles4": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "-", + "ko": "3.536" + } +} + },"req_request-13-37108178": { + type: "REQUEST", + name: "request_13", +path: "request_13", +pathFormatted: "req_request-13-37108178", +stats: { + "name": "request_13", + "numberOfRequests": { + "total": "297", + "ok": "0", + "ko": "297" + }, + "minResponseTime": { + "total": "40", + "ok": "-", + "ko": "40" + }, + "maxResponseTime": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "meanResponseTime": { + "total": "77", + "ok": "-", + "ko": "77" + }, + "standardDeviation": { + "total": "21", + "ok": "-", + "ko": "21" + }, + "percentiles1": { + "total": "83", + "ok": "-", + "ko": "83" + }, + "percentiles2": { + "total": "95", + "ok": "-", + "ko": "95" + }, + "percentiles3": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "percentiles4": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.536", + "ok": "-", + "ko": "3.536" + } +} + } +} + +} + +function fillStats(stat){ + $("#numberOfRequests").append(stat.numberOfRequests.total); + $("#numberOfRequestsOK").append(stat.numberOfRequests.ok); + $("#numberOfRequestsKO").append(stat.numberOfRequests.ko); + + $("#minResponseTime").append(stat.minResponseTime.total); + $("#minResponseTimeOK").append(stat.minResponseTime.ok); + $("#minResponseTimeKO").append(stat.minResponseTime.ko); + + $("#maxResponseTime").append(stat.maxResponseTime.total); + $("#maxResponseTimeOK").append(stat.maxResponseTime.ok); + $("#maxResponseTimeKO").append(stat.maxResponseTime.ko); + + $("#meanResponseTime").append(stat.meanResponseTime.total); + $("#meanResponseTimeOK").append(stat.meanResponseTime.ok); + $("#meanResponseTimeKO").append(stat.meanResponseTime.ko); + + $("#standardDeviation").append(stat.standardDeviation.total); + $("#standardDeviationOK").append(stat.standardDeviation.ok); + $("#standardDeviationKO").append(stat.standardDeviation.ko); + + $("#percentiles1").append(stat.percentiles1.total); + $("#percentiles1OK").append(stat.percentiles1.ok); + $("#percentiles1KO").append(stat.percentiles1.ko); + + $("#percentiles2").append(stat.percentiles2.total); + $("#percentiles2OK").append(stat.percentiles2.ok); + $("#percentiles2KO").append(stat.percentiles2.ko); + + $("#percentiles3").append(stat.percentiles3.total); + $("#percentiles3OK").append(stat.percentiles3.ok); + $("#percentiles3KO").append(stat.percentiles3.ko); + + $("#percentiles4").append(stat.percentiles4.total); + $("#percentiles4OK").append(stat.percentiles4.ok); + $("#percentiles4KO").append(stat.percentiles4.ko); + + $("#meanNumberOfRequestsPerSecond").append(stat.meanNumberOfRequestsPerSecond.total); + $("#meanNumberOfRequestsPerSecondOK").append(stat.meanNumberOfRequestsPerSecond.ok); + $("#meanNumberOfRequestsPerSecondKO").append(stat.meanNumberOfRequestsPerSecond.ko); +} diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/stats.json b/testsrc/gatling/results/historyrecord-20240426122318467/js/stats.json new file mode 100644 index 00000000..7f59ba19 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/stats.json @@ -0,0 +1,1481 @@ +{ + "type": "GROUP", +"name": "All Requests", +"path": "", +"pathFormatted": "group_missing-name--1146707516", +"stats": { + "name": "All Requests", + "numberOfRequests": { + "total": 5049, + "ok": 3861, + "ko": 1188 + }, + "minResponseTime": { + "total": 16, + "ok": 16, + "ko": 40 + }, + "maxResponseTime": { + "total": 306, + "ok": 306, + "ko": 122 + }, + "meanResponseTime": { + "total": 96, + "ok": 101, + "ko": 82 + }, + "standardDeviation": { + "total": 55, + "ok": 61, + "ko": 18 + }, + "percentiles1": { + "total": 86, + "ok": 95, + "ko": 84 + }, + "percentiles2": { + "total": 98, + "ok": 101, + "ko": 96 + }, + "percentiles3": { + "total": 247, + "ok": 251, + "ko": 98 + }, + "percentiles4": { + "total": 291, + "ok": 292, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3861, + "percentage": 76 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 1188, + "percentage": 24 +}, + "meanNumberOfRequestsPerSecond": { + "total": 60.107142857142854, + "ok": 45.964285714285715, + "ko": 14.142857142857142 + } +}, +"contents": { +"req_request-0-693933696": { + "type": "REQUEST", + "name": "request_0", +"path": "request_0", +"pathFormatted": "req_request-0-693933696", +"stats": { + "name": "request_0", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 16, + "ok": 16, + "ko": 0 + }, + "maxResponseTime": { + "total": 37, + "ok": 37, + "ko": 0 + }, + "meanResponseTime": { + "total": 18, + "ok": 18, + "ko": 0 + }, + "standardDeviation": { + "total": 2, + "ok": 2, + "ko": 0 + }, + "percentiles1": { + "total": 18, + "ok": 18, + "ko": 0 + }, + "percentiles2": { + "total": 19, + "ok": 19, + "ko": 0 + }, + "percentiles3": { + "total": 20, + "ok": 20, + "ko": 0 + }, + "percentiles4": { + "total": 23, + "ok": 23, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-1-693933697": { + "type": "REQUEST", + "name": "request_1", +"path": "request_1", +"pathFormatted": "req_request-1-693933697", +"stats": { + "name": "request_1", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 114, + "ok": 114, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 86, + "ok": 86, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "percentiles4": { + "total": 104, + "ok": 104, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_wiq2-ico--1077617062": { + "type": "REQUEST", + "name": "wiq2.ico", +"path": "wiq2.ico", +"pathFormatted": "req_wiq2-ico--1077617062", +"stats": { + "name": "wiq2.ico", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 159, + "ok": 159, + "ko": 0 + }, + "maxResponseTime": { + "total": 206, + "ok": 206, + "ko": 0 + }, + "meanResponseTime": { + "total": 177, + "ok": 177, + "ko": 0 + }, + "standardDeviation": { + "total": 13, + "ok": 13, + "ko": 0 + }, + "percentiles1": { + "total": 167, + "ok": 167, + "ko": 0 + }, + "percentiles2": { + "total": 191, + "ok": 191, + "ko": 0 + }, + "percentiles3": { + "total": 193, + "ok": 193, + "ko": 0 + }, + "percentiles4": { + "total": 197, + "ok": 197, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_main-4a961c5c-j-546111192": { + "type": "REQUEST", + "name": "main.4a961c5c.js", +"path": "main.4a961c5c.js", +"pathFormatted": "req_main-4a961c5c-j-546111192", +"stats": { + "name": "main.4a961c5c.js", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 243, + "ok": 243, + "ko": 0 + }, + "maxResponseTime": { + "total": 306, + "ok": 306, + "ko": 0 + }, + "meanResponseTime": { + "total": 270, + "ok": 270, + "ko": 0 + }, + "standardDeviation": { + "total": 20, + "ok": 20, + "ko": 0 + }, + "percentiles1": { + "total": 264, + "ok": 264, + "ko": 0 + }, + "percentiles2": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "percentiles3": { + "total": 293, + "ok": 293, + "ko": 0 + }, + "percentiles4": { + "total": 299, + "ok": 299, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_main-18e3ef94-c--35899781": { + "type": "REQUEST", + "name": "main.18e3ef94.css", +"path": "main.18e3ef94.css", +"pathFormatted": "req_main-18e3ef94-c--35899781", +"stats": { + "name": "main.18e3ef94.css", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 82, + "ok": 82, + "ko": 0 + }, + "maxResponseTime": { + "total": 121, + "ok": 121, + "ko": 0 + }, + "meanResponseTime": { + "total": 93, + "ok": 93, + "ko": 0 + }, + "standardDeviation": { + "total": 8, + "ok": 8, + "ko": 0 + }, + "percentiles1": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles2": { + "total": 100, + "ok": 100, + "ko": 0 + }, + "percentiles3": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "percentiles4": { + "total": 112, + "ok": 112, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-3-693933699": { + "type": "REQUEST", + "name": "request_3", +"path": "request_3", +"pathFormatted": "req_request-3-693933699", +"stats": { + "name": "request_3", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 119, + "ok": 119, + "ko": 0 + }, + "meanResponseTime": { + "total": 91, + "ok": 91, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 87, + "ok": 87, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 100, + "ok": 100, + "ko": 0 + }, + "percentiles4": { + "total": 107, + "ok": 107, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-4-693933700": { + "type": "REQUEST", + "name": "request_4", +"path": "request_4", +"pathFormatted": "req_request-4-693933700", +"stats": { + "name": "request_4", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 119, + "ok": 119, + "ko": 0 + }, + "meanResponseTime": { + "total": 92, + "ok": 92, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles2": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles3": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "percentiles4": { + "total": 106, + "ok": 106, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-5-693933701": { + "type": "REQUEST", + "name": "request_5", +"path": "request_5", +"pathFormatted": "req_request-5-693933701", +"stats": { + "name": "request_5", + "numberOfRequests": { + "total": 297, + "ok": 0, + "ko": 297 + }, + "minResponseTime": { + "total": 80, + "ok": 0, + "ko": 80 + }, + "maxResponseTime": { + "total": 122, + "ok": 0, + "ko": 122 + }, + "meanResponseTime": { + "total": 90, + "ok": 0, + "ko": 90 + }, + "standardDeviation": { + "total": 7, + "ok": 0, + "ko": 7 + }, + "percentiles1": { + "total": 86, + "ok": 0, + "ko": 86 + }, + "percentiles2": { + "total": 96, + "ok": 0, + "ko": 96 + }, + "percentiles3": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "percentiles4": { + "total": 102, + "ok": 0, + "ko": 102 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 0, + "ko": 3.5357142857142856 + } +} + },"req_request-6-693933702": { + "type": "REQUEST", + "name": "request_6", +"path": "request_6", +"pathFormatted": "req_request-6-693933702", +"stats": { + "name": "request_6", + "numberOfRequests": { + "total": 297, + "ok": 0, + "ko": 297 + }, + "minResponseTime": { + "total": 81, + "ok": 0, + "ko": 81 + }, + "maxResponseTime": { + "total": 113, + "ok": 0, + "ko": 113 + }, + "meanResponseTime": { + "total": 90, + "ok": 0, + "ko": 90 + }, + "standardDeviation": { + "total": 7, + "ok": 0, + "ko": 7 + }, + "percentiles1": { + "total": 86, + "ok": 0, + "ko": 86 + }, + "percentiles2": { + "total": 96, + "ok": 0, + "ko": 96 + }, + "percentiles3": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "percentiles4": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 0, + "ko": 3.5357142857142856 + } +} + },"req_request-2-693933698": { + "type": "REQUEST", + "name": "request_2", +"path": "request_2", +"pathFormatted": "req_request-2-693933698", +"stats": { + "name": "request_2", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 113, + "ok": 113, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-7-693933703": { + "type": "REQUEST", + "name": "request_7", +"path": "request_7", +"pathFormatted": "req_request-7-693933703", +"stats": { + "name": "request_7", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-8-693933704": { + "type": "REQUEST", + "name": "request_8", +"path": "request_8", +"pathFormatted": "req_request-8-693933704", +"stats": { + "name": "request_8", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "maxResponseTime": { + "total": 177, + "ok": 177, + "ko": 0 + }, + "meanResponseTime": { + "total": 111, + "ok": 111, + "ko": 0 + }, + "standardDeviation": { + "total": 12, + "ok": 12, + "ko": 0 + }, + "percentiles1": { + "total": 108, + "ok": 108, + "ko": 0 + }, + "percentiles2": { + "total": 113, + "ok": 113, + "ko": 0 + }, + "percentiles3": { + "total": 133, + "ok": 133, + "ko": 0 + }, + "percentiles4": { + "total": 161, + "ok": 161, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-9-693933705": { + "type": "REQUEST", + "name": "request_9", +"path": "request_9", +"pathFormatted": "req_request-9-693933705", +"stats": { + "name": "request_9", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "meanResponseTime": { + "total": 91, + "ok": 91, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-10-37108175": { + "type": "REQUEST", + "name": "request_10", +"path": "request_10", +"pathFormatted": "req_request-10-37108175", +"stats": { + "name": "request_10", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 42, + "ok": 42, + "ko": 0 + }, + "maxResponseTime": { + "total": 56, + "ok": 56, + "ko": 0 + }, + "meanResponseTime": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "standardDeviation": { + "total": 4, + "ok": 4, + "ko": 0 + }, + "percentiles1": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "percentiles2": { + "total": 51, + "ok": 51, + "ko": 0 + }, + "percentiles3": { + "total": 52, + "ok": 52, + "ko": 0 + }, + "percentiles4": { + "total": 53, + "ok": 53, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-11-37108176": { + "type": "REQUEST", + "name": "request_11", +"path": "request_11", +"pathFormatted": "req_request-11-37108176", +"stats": { + "name": "request_11", + "numberOfRequests": { + "total": 297, + "ok": 297, + "ko": 0 + }, + "minResponseTime": { + "total": 42, + "ok": 42, + "ko": 0 + }, + "maxResponseTime": { + "total": 58, + "ok": 58, + "ko": 0 + }, + "meanResponseTime": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "standardDeviation": { + "total": 4, + "ok": 4, + "ko": 0 + }, + "percentiles1": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "percentiles2": { + "total": 51, + "ok": 51, + "ko": 0 + }, + "percentiles3": { + "total": 52, + "ok": 52, + "ko": 0 + }, + "percentiles4": { + "total": 54, + "ok": 54, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 297, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 3.5357142857142856, + "ko": 0 + } +} + },"req_request-12-37108177": { + "type": "REQUEST", + "name": "request_12", +"path": "request_12", +"pathFormatted": "req_request-12-37108177", +"stats": { + "name": "request_12", + "numberOfRequests": { + "total": 297, + "ok": 0, + "ko": 297 + }, + "minResponseTime": { + "total": 40, + "ok": 0, + "ko": 40 + }, + "maxResponseTime": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "meanResponseTime": { + "total": 72, + "ok": 0, + "ko": 72 + }, + "standardDeviation": { + "total": 24, + "ok": 0, + "ko": 24 + }, + "percentiles1": { + "total": 82, + "ok": 0, + "ko": 82 + }, + "percentiles2": { + "total": 95, + "ok": 0, + "ko": 95 + }, + "percentiles3": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "percentiles4": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 0, + "ko": 3.5357142857142856 + } +} + },"req_request-13-37108178": { + "type": "REQUEST", + "name": "request_13", +"path": "request_13", +"pathFormatted": "req_request-13-37108178", +"stats": { + "name": "request_13", + "numberOfRequests": { + "total": 297, + "ok": 0, + "ko": 297 + }, + "minResponseTime": { + "total": 40, + "ok": 0, + "ko": 40 + }, + "maxResponseTime": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "meanResponseTime": { + "total": 77, + "ok": 0, + "ko": 77 + }, + "standardDeviation": { + "total": 21, + "ok": 0, + "ko": 21 + }, + "percentiles1": { + "total": 83, + "ok": 0, + "ko": 83 + }, + "percentiles2": { + "total": 95, + "ok": 0, + "ko": 95 + }, + "percentiles3": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "percentiles4": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 297, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5357142857142856, + "ok": 0, + "ko": 3.5357142857142856 + } +} + } +} + +} \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/theme.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/theme.js new file mode 100644 index 00000000..b95a7b3c --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/theme.js @@ -0,0 +1,127 @@ +/* + * Copyright 2011-2022 Gatling Corp + * + * Licensed under the Gatling Highcharts License + */ +Highcharts.theme = { + chart: { + backgroundColor: '#f7f7f7', + borderWidth: 0, + borderRadius: 8, + plotBackgroundColor: null, + plotShadow: false, + plotBorderWidth: 0 + }, + xAxis: { + gridLineWidth: 0, + lineColor: '#666', + tickColor: '#666', + labels: { + style: { + color: '#666' + } + }, + title: { + style: { + color: '#666' + } + } + }, + yAxis: { + alternateGridColor: null, + minorTickInterval: null, + gridLineColor: '#999', + lineWidth: 0, + tickWidth: 0, + labels: { + style: { + color: '#666', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#666', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + labels: { + style: { + color: '#CCC' + } + }, + + + rangeSelector: { + buttonTheme: { + fill: '#cfc9c6', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#b2b2a9' + }, + states: { + hover: { + fill: '#92918C', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#8b897d' + } + }, + select: { + fill: '#E37400', + stroke: '#000000', + style: { + color: '#FFF' + } + } + } + }, + inputStyle: { + backgroundColor: '#333', + color: 'silver' + }, + labelStyle: { + color: '#8b897d' + } + }, + + navigator: { + handles: { + backgroundColor: '#f7f7f7', + borderColor: '#92918C' + }, + outlineColor: '#92918C', + outlineWidth: 1, + maskFill: 'rgba(146, 145, 140, 0.5)', + series: { + color: '#5E7BE2', + lineColor: '#5E7BE2' + } + }, + + scrollbar: { + buttonBackgroundColor: '#f7f7f7', + buttonBorderWidth: 1, + buttonBorderColor: '#92918C', + buttonArrowColor: '#92918C', + buttonBorderRadius: 2, + + barBorderWidth: 1, + barBorderRadius: 0, + barBackgroundColor: '#92918C', + barBorderColor: '#92918C', + + rifleColor: '#92918C', + + trackBackgroundColor: '#b0b0a8', + trackBorderWidth: 1, + trackBorderColor: '#b0b0a8' + } +}; + +Highcharts.setOptions(Highcharts.theme); diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/js/unpack.js b/testsrc/gatling/results/historyrecord-20240426122318467/js/unpack.js new file mode 100644 index 00000000..883c33e7 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/js/unpack.js @@ -0,0 +1,38 @@ +'use strict'; + +var unpack = function (array) { + var findNbSeries = function (array) { + var currentPlotPack; + var length = array.length; + + for (var i = 0; i < length; i++) { + currentPlotPack = array[i][1]; + if(currentPlotPack !== null) { + return currentPlotPack.length; + } + } + return 0; + }; + + var i, j; + var nbPlots = array.length; + var nbSeries = findNbSeries(array); + + // Prepare unpacked array + var unpackedArray = new Array(nbSeries); + + for (i = 0; i < nbSeries; i++) { + unpackedArray[i] = new Array(nbPlots); + } + + // Unpack the array + for (i = 0; i < nbPlots; i++) { + var timestamp = array[i][0]; + var values = array[i][1]; + for (j = 0; j < nbSeries; j++) { + unpackedArray[j][i] = [timestamp * 1000, values === null ? null : values[j]]; + } + } + + return unpackedArray; +}; diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_main-18e3ef94-c--35899781.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_main-18e3ef94-c--35899781.html new file mode 100644 index 00000000..d6ebb671 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_main-18e3ef94-c--35899781.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - main.18e3ef94.css + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_main-4a961c5c-j-546111192.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_main-4a961c5c-j-546111192.html new file mode 100644 index 00000000..7e7be521 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_main-4a961c5c-j-546111192.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - main.4a961c5c.js + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-0-693933696.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-0-693933696.html new file mode 100644 index 00000000..23967ed0 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-0-693933696.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_0 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-1-693933697.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-1-693933697.html new file mode 100644 index 00000000..e8acc1f3 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-1-693933697.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_1 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-10-37108175.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-10-37108175.html new file mode 100644 index 00000000..3bd896d2 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-10-37108175.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_10 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-11-37108176.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-11-37108176.html new file mode 100644 index 00000000..c533cccd --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-11-37108176.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_11 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-12-37108177.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-12-37108177.html new file mode 100644 index 00000000..76058c0f --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-12-37108177.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_12 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-13-37108178.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-13-37108178.html new file mode 100644 index 00000000..d3fb905e --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-13-37108178.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_13 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-2-693933698.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-2-693933698.html new file mode 100644 index 00000000..14fa53f7 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-2-693933698.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_2 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-3-693933699.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-3-693933699.html new file mode 100644 index 00000000..ab4bb739 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-3-693933699.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_3 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-4-693933700.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-4-693933700.html new file mode 100644 index 00000000..8c71e6a5 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-4-693933700.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_4 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-5-693933701.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-5-693933701.html new file mode 100644 index 00000000..d59e1dd7 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-5-693933701.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_5 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-6-693933702.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-6-693933702.html new file mode 100644 index 00000000..047ddfa9 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-6-693933702.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_6 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-7-693933703.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-7-693933703.html new file mode 100644 index 00000000..e797acc4 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-7-693933703.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_7 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-8-693933704.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-8-693933704.html new file mode 100644 index 00000000..4bd85484 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-8-693933704.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_8 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_request-9-693933705.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-9-693933705.html new file mode 100644 index 00000000..3fffd7c3 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_request-9-693933705.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_9 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/req_wiq2-ico--1077617062.html b/testsrc/gatling/results/historyrecord-20240426122318467/req_wiq2-ico--1077617062.html new file mode 100644 index 00000000..d04c7dd0 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/req_wiq2-ico--1077617062.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - wiq2.ico + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + HistoryRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/simulation.log b/testsrc/gatling/results/historyrecord-20240426122318467/simulation.log new file mode 100644 index 00000000..c67143bf --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/simulation.log @@ -0,0 +1,5644 @@ +RUN HistoryRecord historyrecord 1714134198467 3.10.5 +USER HistoryRecord START 1714134198979 +REQUEST request_0 1714134198964 1714134199001 OK +USER HistoryRecord START 1714134199171 +REQUEST request_0 1714134199170 1714134199191 OK +USER HistoryRecord START 1714134199234 +REQUEST request_0 1714134199233 1714134199253 OK +USER HistoryRecord START 1714134200147 +REQUEST request_0 1714134200146 1714134200168 OK +USER HistoryRecord START 1714134200369 +REQUEST request_0 1714134200366 1714134200389 OK +USER HistoryRecord START 1714134200646 +USER HistoryRecord START 1714134200662 +REQUEST request_0 1714134200645 1714134200666 OK +REQUEST request_0 1714134200661 1714134200681 OK +USER HistoryRecord START 1714134200740 +REQUEST request_0 1714134200739 1714134200759 OK +USER HistoryRecord START 1714134200961 +REQUEST request_0 1714134200960 1714134200980 OK +USER HistoryRecord START 1714134200991 +REQUEST request_0 1714134200990 1714134201009 OK +USER HistoryRecord START 1714134201053 +REQUEST request_0 1714134201052 1714134201072 OK +USER HistoryRecord START 1714134201147 +USER HistoryRecord START 1714134201162 +REQUEST request_0 1714134201146 1714134201167 OK +REQUEST request_0 1714134201162 1714134201181 OK +USER HistoryRecord START 1714134201317 +REQUEST request_0 1714134201316 1714134201335 OK +USER HistoryRecord START 1714134201426 +REQUEST request_0 1714134201426 1714134201446 OK +USER HistoryRecord START 1714134201536 +REQUEST request_0 1714134201535 1714134201557 OK +USER HistoryRecord START 1714134201660 +REQUEST request_0 1714134201659 1714134201680 OK +USER HistoryRecord START 1714134201956 +REQUEST request_0 1714134201955 1714134201977 OK +USER HistoryRecord START 1714134202160 +REQUEST request_0 1714134202159 1714134202179 OK +USER HistoryRecord START 1714134202534 +REQUEST request_0 1714134202534 1714134202554 OK +USER HistoryRecord START 1714134202772 +REQUEST request_0 1714134202769 1714134202792 OK +USER HistoryRecord START 1714134202863 +REQUEST request_0 1714134202862 1714134202881 OK +REQUEST request_1 1714134203020 1714134203118 OK +REQUEST request_4 1714134203153 1714134203240 OK +REQUEST request_6 1714134203154 1714134203244 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134203153 1714134203247 OK +REQUEST request_3 1714134203153 1714134203253 OK +REQUEST request_2 1714134203154 1714134203261 OK +REQUEST request_5 1714134203154 1714134203262 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134203205 1714134203291 OK +USER HistoryRecord START 1714134203332 +REQUEST wiq2.ico 1714134203152 1714134203343 OK +REQUEST request_0 1714134203331 1714134203352 OK +REQUEST request_1 1714134203268 1714134203367 OK +USER HistoryRecord START 1714134203378 +REQUEST request_6 1714134203305 1714134203390 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134203303 1714134203391 OK +REQUEST main.18e3ef94.css 1714134203301 1714134203391 OK +REQUEST request_0 1714134203377 1714134203396 OK +REQUEST request_3 1714134203301 1714134203403 OK +REQUEST request_5 1714134203304 1714134203403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134203303 1714134203404 OK +REQUEST main.4a961c5c.js 1714134203152 1714134203407 OK +USER HistoryRecord START 1714134203441 +REQUEST request_2 1714134203369 1714134203455 OK +REQUEST request_4 1714134203369 1714134203455 OK +REQUEST request_6 1714134203370 1714134203456 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134203440 1714134203461 OK +REQUEST wiq2.ico 1714134203298 1714134203465 OK +REQUEST main.18e3ef94.css 1714134203369 1714134203468 OK +REQUEST request_5 1714134203370 1714134203469 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134203369 1714134203469 OK +REQUEST main.4a961c5c.js 1714134203299 1714134203559 OK +REQUEST wiq2.ico 1714134203368 1714134203560 OK +REQUEST main.4a961c5c.js 1714134203369 1714134203663 OK +USER HistoryRecord START 1714134203815 +REQUEST request_0 1714134203815 1714134203834 OK +USER HistoryRecord START 1714134203989 +REQUEST request_0 1714134203988 1714134204008 OK +REQUEST request_1 1714134204175 1714134204261 OK +USER HistoryRecord START 1714134204287 +REQUEST request_0 1714134204286 1714134204306 OK +REQUEST request_3 1714134204262 1714134204347 OK +REQUEST main.18e3ef94.css 1714134204262 1714134204348 OK +REQUEST request_6 1714134204263 1714134204349 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134204263 1714134204349 OK +REQUEST request_4 1714134204263 1714134204359 OK +REQUEST request_5 1714134204263 1714134204360 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134204395 +REQUEST request_0 1714134204394 1714134204413 OK +REQUEST wiq2.ico 1714134204262 1714134204424 OK +REQUEST request_1 1714134204395 1714134204479 OK +REQUEST main.4a961c5c.js 1714134204262 1714134204555 OK +REQUEST request_6 1714134204481 1714134204564 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134204481 1714134204566 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134204480 1714134204566 OK +REQUEST request_4 1714134204480 1714134204578 OK +REQUEST request_2 1714134204481 1714134204579 OK +REQUEST main.18e3ef94.css 1714134204480 1714134204580 OK +REQUEST wiq2.ico 1714134204480 1714134204644 OK +REQUEST main.4a961c5c.js 1714134204480 1714134204728 OK +REQUEST request_1 1714134204677 1714134204763 OK +REQUEST request_1 1714134204693 1714134204777 OK +USER HistoryRecord START 1714134204786 +REQUEST request_0 1714134204786 1714134204804 OK +REQUEST request_5 1714134204765 1714134204849 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134204765 1714134204850 OK +REQUEST request_3 1714134204778 1714134204861 OK +REQUEST request_5 1714134204779 1714134204861 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134204765 1714134204863 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134204764 1714134204863 OK +REQUEST request_2 1714134204765 1714134204864 OK +REQUEST request_1 1714134204770 1714134204867 OK +REQUEST main.18e3ef94.css 1714134204778 1714134204868 OK +REQUEST main.18e3ef94.css 1714134204764 1714134204868 OK +REQUEST request_4 1714134204778 1714134204876 OK +REQUEST request_6 1714134204779 1714134204876 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134204779 1714134204877 OK +REQUEST wiq2.ico 1714134204764 1714134204929 OK +REQUEST wiq2.ico 1714134204778 1714134204943 OK +REQUEST request_6 1714134204870 1714134204953 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134204869 1714134204954 OK +REQUEST request_3 1714134204868 1714134204965 OK +REQUEST request_5 1714134204869 1714134204967 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134204869 1714134204968 OK +REQUEST main.18e3ef94.css 1714134204868 1714134204970 OK +REQUEST main.4a961c5c.js 1714134204764 1714134205018 OK +REQUEST wiq2.ico 1714134204868 1714134205059 OK +REQUEST main.4a961c5c.js 1714134204778 1714134205070 OK +REQUEST request_1 1714134204987 1714134205084 OK +REQUEST request_1 1714134205018 1714134205102 OK +REQUEST main.4a961c5c.js 1714134204868 1714134205117 OK +REQUEST request_1 1714134205081 1714134205165 OK +REQUEST request_2 1714134205086 1714134205169 OK +REQUEST request_3 1714134205085 1714134205169 OK +REQUEST main.18e3ef94.css 1714134205085 1714134205170 OK +REQUEST request_4 1714134205085 1714134205170 OK +REQUEST request_5 1714134205086 1714134205182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134205086 1714134205183 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134205104 1714134205188 OK +REQUEST request_3 1714134205104 1714134205191 OK +REQUEST request_5 1714134205105 1714134205200 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134205105 1714134205200 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134205104 1714134205201 OK +REQUEST main.18e3ef94.css 1714134205103 1714134205203 OK +REQUEST request_6 1714134205168 1714134205251 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134205167 1714134205252 OK +REQUEST request_4 1714134205167 1714134205253 OK +REQUEST request_5 1714134205168 1714134205265 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134205167 1714134205265 OK +REQUEST main.18e3ef94.css 1714134205167 1714134205268 OK +REQUEST wiq2.ico 1714134205103 1714134205271 OK +REQUEST request_1 1714134205190 1714134205276 OK +REQUEST wiq2.ico 1714134205085 1714134205276 OK +REQUEST request_1 1714134205175 1714134205276 OK +REQUEST wiq2.ico 1714134205166 1714134205330 OK +REQUEST main.4a961c5c.js 1714134205103 1714134205354 OK +REQUEST request_6 1714134205278 1714134205361 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134205278 1714134205362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134205277 1714134205362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134205277 1714134205362 OK +REQUEST request_2 1714134205278 1714134205363 OK +REQUEST main.18e3ef94.css 1714134205277 1714134205363 OK +REQUEST request_4 1714134205278 1714134205364 OK +REQUEST request_2 1714134205277 1714134205373 OK +REQUEST request_5 1714134205278 1714134205374 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134205277 1714134205376 OK +REQUEST main.4a961c5c.js 1714134205085 1714134205378 OK +REQUEST request_3 1714134205277 1714134205379 OK +REQUEST main.18e3ef94.css 1714134205277 1714134205384 OK +REQUEST main.4a961c5c.js 1714134205167 1714134205417 OK +REQUEST request_1 1714134205346 1714134205430 OK +REQUEST wiq2.ico 1714134205276 1714134205439 OK +REQUEST wiq2.ico 1714134205277 1714134205469 OK +REQUEST request_4 1714134205432 1714134205516 OK +REQUEST request_6 1714134205432 1714134205517 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134205432 1714134205518 OK +REQUEST main.4a961c5c.js 1714134205277 1714134205527 OK +REQUEST request_5 1714134205432 1714134205530 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134205431 1714134205530 OK +REQUEST main.18e3ef94.css 1714134205431 1714134205532 OK +REQUEST request_1 1714134205456 1714134205555 OK +REQUEST main.4a961c5c.js 1714134205277 1714134205576 OK +REQUEST wiq2.ico 1714134205431 1714134205596 OK +USER HistoryRecord START 1714134205613 +REQUEST request_0 1714134205612 1714134205631 OK +REQUEST request_2 1714134205556 1714134205638 OK +REQUEST request_6 1714134205557 1714134205639 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134205556 1714134205641 OK +REQUEST main.18e3ef94.css 1714134205556 1714134205642 OK +REQUEST request_1 1714134205565 1714134205649 OK +REQUEST request_4 1714134205556 1714134205658 OK +USER HistoryRecord START 1714134205660 +REQUEST request_0 1714134205660 1714134205677 OK +REQUEST request_5 1714134205557 1714134205679 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134205431 1714134205681 OK +REQUEST request_2 1714134205650 1714134205733 OK +REQUEST request_3 1714134205650 1714134205746 OK +REQUEST request_4 1714134205650 1714134205747 OK +REQUEST request_6 1714134205651 1714134205747 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134205555 1714134205747 OK +REQUEST request_5 1714134205651 1714134205748 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134205650 1714134205751 OK +REQUEST request_1 1714134205692 1714134205775 OK +REQUEST wiq2.ico 1714134205649 1714134205815 OK +REQUEST main.4a961c5c.js 1714134205556 1714134205855 OK +REQUEST request_5 1714134205777 1714134205857 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134205776 1714134205859 OK +REQUEST main.18e3ef94.css 1714134205776 1714134205860 OK +REQUEST request_4 1714134205776 1714134205860 OK +REQUEST request_6 1714134205777 1714134205861 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134205776 1714134205871 OK +REQUEST wiq2.ico 1714134205776 1714134205938 OK +REQUEST main.4a961c5c.js 1714134205650 1714134205939 OK +USER HistoryRecord START 1714134205973 +REQUEST request_0 1714134205973 1714134205992 OK +REQUEST main.4a961c5c.js 1714134205776 1714134206064 OK +USER HistoryRecord START 1714134206067 +REQUEST request_1 1714134205989 1714134206074 OK +REQUEST request_0 1714134206066 1714134206083 OK +USER HistoryRecord START 1714134206098 +REQUEST request_0 1714134206097 1714134206116 OK +USER HistoryRecord START 1714134206130 +REQUEST request_0 1714134206128 1714134206148 OK +REQUEST request_6 1714134206076 1714134206162 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134206075 1714134206164 OK +REQUEST request_2 1714134206076 1714134206166 OK +REQUEST request_4 1714134206075 1714134206177 OK +REQUEST request_5 1714134206076 1714134206178 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134206075 1714134206180 OK +REQUEST wiq2.ico 1714134206075 1714134206241 OK +REQUEST request_1 1714134206191 1714134206290 OK +REQUEST main.4a961c5c.js 1714134206075 1714134206334 OK +USER HistoryRecord START 1714134206361 +REQUEST request_6 1714134206292 1714134206376 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134206292 1714134206376 OK +REQUEST request_3 1714134206291 1714134206376 OK +REQUEST request_2 1714134206292 1714134206377 OK +REQUEST main.18e3ef94.css 1714134206291 1714134206378 OK +REQUEST request_0 1714134206361 1714134206380 OK +REQUEST request_5 1714134206292 1714134206388 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134206291 1714134206480 OK +USER HistoryRecord START 1714134206487 +REQUEST request_0 1714134206486 1714134206506 OK +REQUEST main.4a961c5c.js 1714134206291 1714134206584 OK +REQUEST request_1 1714134206563 1714134206663 OK +REQUEST request_2 1714134206665 1714134206748 OK +REQUEST request_3 1714134206665 1714134206749 OK +REQUEST request_6 1714134206666 1714134206751 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134206665 1714134206762 OK +REQUEST request_5 1714134206665 1714134206763 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134206665 1714134206764 OK +USER HistoryRecord START 1714134206813 +REQUEST request_0 1714134206812 1714134206830 OK +REQUEST wiq2.ico 1714134206664 1714134206858 OK +REQUEST request_1 1714134206797 1714134206893 OK +REQUEST main.4a961c5c.js 1714134206664 1714134206915 OK +USER HistoryRecord START 1714134206938 +REQUEST request_0 1714134206937 1714134206954 OK +REQUEST request_1 1714134206890 1714134206975 OK +REQUEST request_2 1714134206895 1714134206978 OK +REQUEST request_6 1714134206895 1714134206980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134206895 1714134206989 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134206894 1714134206990 OK +REQUEST request_4 1714134206895 1714134206992 OK +REQUEST main.18e3ef94.css 1714134206894 1714134206992 OK +REQUEST request_3 1714134206976 1714134207060 OK +REQUEST request_4 1714134206977 1714134207061 OK +REQUEST request_6 1714134206977 1714134207063 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134206976 1714134207065 OK +REQUEST request_2 1714134206977 1714134207073 OK +REQUEST request_5 1714134206977 1714134207074 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134206894 1714134207083 OK +REQUEST wiq2.ico 1714134206976 1714134207142 OK +REQUEST main.4a961c5c.js 1714134206894 1714134207145 OK +REQUEST main.4a961c5c.js 1714134206976 1714134207267 OK +REQUEST request_1 1714134207361 1714134207445 OK +USER HistoryRecord START 1714134207454 +REQUEST request_0 1714134207454 1714134207472 OK +REQUEST request_1 1714134207409 1714134207492 OK +USER HistoryRecord START 1714134207515 +REQUEST request_3 1714134207446 1714134207530 OK +REQUEST request_6 1714134207447 1714134207531 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134207447 1714134207532 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134207515 1714134207533 OK +REQUEST request_2 1714134207447 1714134207543 OK +REQUEST request_4 1714134207447 1714134207543 OK +REQUEST main.18e3ef94.css 1714134207446 1714134207547 OK +REQUEST request_1 1714134207469 1714134207568 OK +REQUEST request_3 1714134207493 1714134207575 OK +REQUEST main.18e3ef94.css 1714134207493 1714134207578 OK +REQUEST request_6 1714134207494 1714134207578 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134207494 1714134207590 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134207493 1714134207590 OK +REQUEST request_2 1714134207493 1714134207590 OK +REQUEST wiq2.ico 1714134207446 1714134207610 OK +REQUEST wiq2.ico 1714134207493 1714134207652 OK +REQUEST main.18e3ef94.css 1714134207569 1714134207654 OK +REQUEST request_2 1714134207570 1714134207654 OK +REQUEST request_5 1714134207570 1714134207654 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134207570 1714134207666 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134207570 1714134207680 OK +REQUEST request_4 1714134207570 1714134207683 OK +REQUEST main.4a961c5c.js 1714134207446 1714134207734 OK +REQUEST wiq2.ico 1714134207569 1714134207762 OK +REQUEST main.4a961c5c.js 1714134207493 1714134207781 OK +USER HistoryRecord START 1714134207858 +REQUEST main.4a961c5c.js 1714134207569 1714134207863 OK +REQUEST request_0 1714134207858 1714134207877 OK +REQUEST request_1 1714134207842 1714134207940 OK +USER HistoryRecord START 1714134207952 +REQUEST request_0 1714134207951 1714134207970 OK +REQUEST request_2 1714134207942 1714134208026 OK +REQUEST request_4 1714134207942 1714134208026 OK +REQUEST request_6 1714134207942 1714134208027 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134207941 1714134208039 OK +REQUEST request_5 1714134207942 1714134208040 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134207941 1714134208041 OK +REQUEST request_1 1714134208015 1714134208099 OK +REQUEST wiq2.ico 1714134207941 1714134208134 OK +REQUEST request_5 1714134208101 1714134208185 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134208101 1714134208198 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134208101 1714134208198 OK +REQUEST request_4 1714134208101 1714134208199 OK +REQUEST request_3 1714134208100 1714134208199 OK +REQUEST main.18e3ef94.css 1714134208100 1714134208201 OK +REQUEST main.4a961c5c.js 1714134207941 1714134208203 OK +REQUEST wiq2.ico 1714134208100 1714134208265 OK +USER HistoryRecord START 1714134208278 +REQUEST request_0 1714134208278 1714134208297 OK +REQUEST main.4a961c5c.js 1714134208100 1714134208348 OK +REQUEST request_1 1714134208309 1714134208405 OK +REQUEST request_4 1714134208406 1714134208489 OK +REQUEST request_6 1714134208407 1714134208491 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134208418 1714134208498 OK +REQUEST request_2 1714134208406 1714134208503 OK +REQUEST request_3 1714134208406 1714134208504 OK +REQUEST main.18e3ef94.css 1714134208406 1714134208504 OK +REQUEST request_5 1714134208407 1714134208505 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134208512 +REQUEST request_0 1714134208511 1714134208531 OK +REQUEST request_3 1714134208501 1714134208585 OK +REQUEST main.18e3ef94.css 1714134208499 1714134208586 OK +REQUEST request_6 1714134208503 1714134208587 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134208406 1714134208592 OK +REQUEST request_5 1714134208503 1714134208600 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134208502 1714134208600 OK +REQUEST request_2 1714134208502 1714134208600 OK +REQUEST main.4a961c5c.js 1714134208406 1714134208653 OK +REQUEST wiq2.ico 1714134208499 1714134208662 OK +USER HistoryRecord START 1714134208681 +REQUEST request_0 1714134208681 1714134208700 OK +REQUEST main.4a961c5c.js 1714134208499 1714134208790 OK +REQUEST request_1 1714134208806 1714134208890 OK +REQUEST request_5 1714134208893 1714134208975 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134208893 1714134208976 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134208892 1714134208977 OK +REQUEST request_4 1714134208892 1714134208977 OK +REQUEST main.18e3ef94.css 1714134208892 1714134208978 OK +REQUEST request_2 1714134208892 1714134208989 OK +REQUEST wiq2.ico 1714134208891 1714134209056 OK +USER HistoryRecord START 1714134209102 +REQUEST request_0 1714134209102 1714134209120 OK +REQUEST main.4a961c5c.js 1714134208892 1714134209140 OK +USER HistoryRecord START 1714134209490 +REQUEST request_0 1714134209490 1714134209509 OK +USER HistoryRecord START 1714134209634 +REQUEST request_0 1714134209633 1714134209653 OK +REQUEST request_1 1714134209633 1714134209733 OK +REQUEST request_1 1714134209680 1714134209763 OK +REQUEST request_2 1714134209735 1714134209818 OK +REQUEST main.18e3ef94.css 1714134209734 1714134209820 OK +REQUEST request_4 1714134209734 1714134209821 OK +REQUEST request_6 1714134209735 1714134209831 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134209735 1714134209832 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134209734 1714134209833 OK +REQUEST request_4 1714134209765 1714134209850 OK +REQUEST request_5 1714134209766 1714134209850 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134209765 1714134209851 OK +REQUEST request_6 1714134209766 1714134209862 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134209765 1714134209864 OK +REQUEST main.18e3ef94.css 1714134209765 1714134209865 OK +REQUEST wiq2.ico 1714134209734 1714134209927 OK +REQUEST wiq2.ico 1714134209764 1714134209927 OK +REQUEST main.4a961c5c.js 1714134209734 1714134209986 OK +REQUEST main.4a961c5c.js 1714134209764 1714134210013 OK +REQUEST request_1 1714134209993 1714134210091 OK +REQUEST request_1 1714134210088 1714134210172 OK +REQUEST request_3 1714134210092 1714134210175 OK +REQUEST request_6 1714134210092 1714134210176 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134210092 1714134210177 OK +REQUEST main.18e3ef94.css 1714134210092 1714134210178 OK +REQUEST request_4 1714134210092 1714134210189 OK +REQUEST request_5 1714134210092 1714134210190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134210120 1714134210219 OK +REQUEST request_1 1714134210151 1714134210249 OK +REQUEST request_6 1714134210174 1714134210256 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134210173 1714134210256 OK +REQUEST request_3 1714134210173 1714134210257 OK +REQUEST main.18e3ef94.css 1714134210173 1714134210258 OK +USER HistoryRecord START 1714134210262 +REQUEST request_2 1714134210173 1714134210268 OK +REQUEST request_5 1714134210173 1714134210269 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134210091 1714134210280 OK +REQUEST request_0 1714134210262 1714134210280 OK +USER HistoryRecord START 1714134210293 +REQUEST request_5 1714134210221 1714134210304 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134210221 1714134210307 OK +REQUEST main.18e3ef94.css 1714134210220 1714134210309 OK +REQUEST request_0 1714134210292 1714134210310 OK +REQUEST request_2 1714134210221 1714134210319 OK +REQUEST request_3 1714134210220 1714134210319 OK +REQUEST request_6 1714134210221 1714134210319 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134210325 +REQUEST request_6 1714134210251 1714134210334 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134210251 1714134210334 OK +REQUEST wiq2.ico 1714134210172 1714134210335 OK +REQUEST main.18e3ef94.css 1714134210250 1714134210336 OK +REQUEST request_0 1714134210324 1714134210343 OK +REQUEST request_2 1714134210251 1714134210349 OK +REQUEST request_5 1714134210251 1714134210349 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134210250 1714134210350 OK +REQUEST main.4a961c5c.js 1714134210091 1714134210385 OK +REQUEST wiq2.ico 1714134210220 1714134210412 OK +REQUEST wiq2.ico 1714134210250 1714134210447 OK +REQUEST main.4a961c5c.js 1714134210173 1714134210460 OK +REQUEST request_1 1714134210385 1714134210469 OK +REQUEST main.4a961c5c.js 1714134210220 1714134210511 OK +REQUEST main.4a961c5c.js 1714134210250 1714134210542 OK +REQUEST request_3 1714134210470 1714134210553 OK +REQUEST main.18e3ef94.css 1714134210470 1714134210555 OK +REQUEST request_5 1714134210471 1714134210555 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134210558 +REQUEST request_2 1714134210470 1714134210567 OK +REQUEST request_4 1714134210470 1714134210567 OK +REQUEST request_6 1714134210471 1714134210568 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134210558 1714134210575 OK +REQUEST request_1 1714134210512 1714134210608 OK +REQUEST wiq2.ico 1714134210469 1714134210635 OK +REQUEST request_4 1714134210610 1714134210693 OK +REQUEST request_6 1714134210610 1714134210694 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134210609 1714134210698 OK +REQUEST request_5 1714134210610 1714134210706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134210610 1714134210708 OK +REQUEST main.18e3ef94.css 1714134210609 1714134210710 OK +REQUEST main.4a961c5c.js 1714134210470 1714134210720 OK +REQUEST wiq2.ico 1714134210609 1714134210799 OK +REQUEST main.4a961c5c.js 1714134210609 1714134210859 OK +REQUEST request_1 1714134210841 1714134210939 OK +REQUEST request_2 1714134210941 1714134211024 OK +REQUEST request_3 1714134210940 1714134211026 OK +REQUEST main.18e3ef94.css 1714134210940 1714134211026 OK +REQUEST request_6 1714134210941 1714134211028 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134210941 1714134211038 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134210941 1714134211039 OK +REQUEST request_1 1714134210966 1714134211049 OK +REQUEST wiq2.ico 1714134210940 1714134211131 OK +REQUEST request_6 1714134211051 1714134211134 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134211051 1714134211134 OK +REQUEST request_4 1714134211051 1714134211136 OK +REQUEST request_5 1714134211051 1714134211147 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134211051 1714134211148 OK +REQUEST main.18e3ef94.css 1714134211051 1714134211156 OK +USER HistoryRecord START 1714134211169 +REQUEST request_0 1714134211168 1714134211188 OK +REQUEST wiq2.ico 1714134211050 1714134211210 OK +REQUEST main.4a961c5c.js 1714134210940 1714134211233 OK +USER HistoryRecord START 1714134211278 +USER HistoryRecord START 1714134211294 +REQUEST request_0 1714134211277 1714134211296 OK +REQUEST main.4a961c5c.js 1714134211051 1714134211297 OK +REQUEST request_0 1714134211293 1714134211312 OK +REQUEST request_1 1714134211480 1714134211578 OK +REQUEST request_1 1714134211541 1714134211624 OK +REQUEST request_6 1714134211580 1714134211664 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134211579 1714134211666 OK +REQUEST request_3 1714134211579 1714134211675 OK +REQUEST request_2 1714134211579 1714134211676 OK +REQUEST request_5 1714134211580 1714134211677 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134211579 1714134211678 OK +USER HistoryRecord START 1714134211680 +USER HistoryRecord START 1714134211696 +REQUEST request_0 1714134211680 1714134211698 OK +REQUEST request_2 1714134211626 1714134211708 OK +REQUEST request_4 1714134211625 1714134211710 OK +REQUEST request_5 1714134211626 1714134211710 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134211626 1714134211710 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134211625 1714134211712 OK +REQUEST request_0 1714134211696 1714134211714 OK +REQUEST request_3 1714134211625 1714134211722 OK +REQUEST wiq2.ico 1714134211579 1714134211771 OK +REQUEST wiq2.ico 1714134211625 1714134211788 OK +USER HistoryRecord START 1714134211790 +REQUEST request_0 1714134211790 1714134211806 OK +REQUEST main.4a961c5c.js 1714134211579 1714134211828 OK +REQUEST main.4a961c5c.js 1714134211625 1714134211914 OK +REQUEST request_1 1714134211884 1714134211968 OK +REQUEST request_6 1714134211970 1714134212053 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134211969 1714134212054 OK +REQUEST request_5 1714134211970 1714134212055 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134211970 1714134212065 OK +REQUEST request_3 1714134211969 1714134212066 OK +REQUEST request_4 1714134211970 1714134212067 OK +REQUEST request_1 1714134211979 1714134212078 OK +REQUEST wiq2.ico 1714134211969 1714134212135 OK +REQUEST request_6 1714134212080 1714134212161 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134212079 1714134212162 OK +REQUEST request_4 1714134212079 1714134212163 OK +REQUEST main.18e3ef94.css 1714134212079 1714134212165 OK +REQUEST request_5 1714134212079 1714134212176 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134212079 1714134212177 OK +REQUEST main.4a961c5c.js 1714134211969 1714134212260 OK +REQUEST wiq2.ico 1714134212079 1714134212272 OK +REQUEST main.4a961c5c.js 1714134212079 1714134212370 OK +REQUEST request_1 1714134212304 1714134212387 OK +REQUEST request_5 1714134212388 1714134212472 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134212476 +REQUEST request_6 1714134212388 1714134212483 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134212388 1714134212485 OK +REQUEST request_3 1714134212388 1714134212486 OK +REQUEST request_4 1714134212388 1714134212486 OK +REQUEST main.18e3ef94.css 1714134212388 1714134212488 OK +REQUEST request_0 1714134212476 1714134212493 OK +REQUEST wiq2.ico 1714134212387 1714134212556 OK +REQUEST main.4a961c5c.js 1714134212388 1714134212636 OK +REQUEST request_1 1714134212538 1714134212637 OK +USER HistoryRecord START 1714134212648 +REQUEST request_0 1714134212648 1714134212665 OK +USER HistoryRecord START 1714134212695 +REQUEST request_0 1714134212695 1714134212713 OK +REQUEST request_4 1714134212638 1714134212720 OK +REQUEST request_6 1714134212638 1714134212720 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134212638 1714134212721 OK +REQUEST main.18e3ef94.css 1714134212637 1714134212735 OK +REQUEST request_5 1714134212638 1714134212735 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134212637 1714134212735 OK +REQUEST request_1 1714134212710 1714134212805 OK +REQUEST wiq2.ico 1714134212637 1714134212829 OK +REQUEST main.4a961c5c.js 1714134212637 1714134212888 OK +REQUEST request_3 1714134212806 1714134212889 OK +REQUEST request_2 1714134212807 1714134212890 OK +REQUEST main.18e3ef94.css 1714134212806 1714134212890 OK +REQUEST request_6 1714134212807 1714134212891 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134212899 +REQUEST request_5 1714134212807 1714134212904 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134212806 1714134212904 OK +REQUEST request_0 1714134212899 1714134212917 OK +REQUEST wiq2.ico 1714134212806 1714134212994 OK +REQUEST main.4a961c5c.js 1714134212806 1714134213051 OK +USER HistoryRecord START 1714134213180 +REQUEST request_0 1714134213180 1714134213198 OK +REQUEST request_1 1714134213135 1714134213219 OK +REQUEST request_2 1714134213221 1714134213305 OK +REQUEST request_4 1714134213221 1714134213306 OK +REQUEST request_6 1714134213221 1714134213317 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134213220 1714134213318 OK +REQUEST request_5 1714134213221 1714134213319 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134213220 1714134213320 OK +REQUEST wiq2.ico 1714134213220 1714134213384 OK +REQUEST main.4a961c5c.js 1714134213220 1714134213466 OK +REQUEST request_1 1714134213524 1714134213623 OK +REQUEST request_2 1714134213624 1714134213708 OK +REQUEST request_6 1714134213624 1714134213709 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134213624 1714134213709 OK +REQUEST main.18e3ef94.css 1714134213624 1714134213721 OK +REQUEST request_5 1714134213624 1714134213722 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134213624 1714134213722 OK +REQUEST request_1 1714134213663 1714134213760 OK +REQUEST wiq2.ico 1714134213623 1714134213816 OK +REQUEST request_4 1714134213762 1714134213846 OK +REQUEST request_5 1714134213762 1714134213846 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134213762 1714134213848 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134213761 1714134213858 OK +REQUEST request_2 1714134213762 1714134213861 OK +REQUEST main.18e3ef94.css 1714134213761 1714134213861 OK +REQUEST main.4a961c5c.js 1714134213624 1714134213878 OK +USER HistoryRecord START 1714134213944 +REQUEST wiq2.ico 1714134213761 1714134213957 OK +REQUEST request_0 1714134213943 1714134213963 OK +REQUEST main.4a961c5c.js 1714134213761 1714134214050 OK +REQUEST request_1 1714134214285 1714134214370 OK +REQUEST request_1 1714134214316 1714134214417 OK +REQUEST request_1 1714134214347 1714134214431 OK +REQUEST request_5 1714134214371 1714134214456 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134214371 1714134214466 OK +REQUEST request_2 1714134214371 1714134214467 OK +REQUEST request_3 1714134214371 1714134214468 OK +REQUEST request_6 1714134214371 1714134214470 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134214371 1714134214471 OK +USER HistoryRecord START 1714134214471 +USER HistoryRecord START 1714134214487 +REQUEST request_0 1714134214471 1714134214487 OK +REQUEST request_2 1714134214418 1714134214503 OK +REQUEST request_6 1714134214419 1714134214503 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134214418 1714134214504 OK +REQUEST request_0 1714134214487 1714134214505 OK +REQUEST request_5 1714134214419 1714134214516 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134214418 1714134214516 OK +REQUEST request_6 1714134214433 1714134214517 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134214418 1714134214518 OK +REQUEST main.18e3ef94.css 1714134214432 1714134214518 OK +REQUEST request_3 1714134214432 1714134214518 OK +REQUEST request_5 1714134214433 1714134214528 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134214432 1714134214529 OK +REQUEST request_2 1714134214433 1714134214529 OK +REQUEST wiq2.ico 1714134214371 1714134214535 OK +REQUEST wiq2.ico 1714134214432 1714134214598 OK +REQUEST wiq2.ico 1714134214418 1714134214611 OK +REQUEST main.4a961c5c.js 1714134214371 1714134214617 OK +REQUEST request_1 1714134214580 1714134214663 OK +USER HistoryRecord START 1714134214705 +REQUEST main.4a961c5c.js 1714134214418 1714134214706 OK +REQUEST main.4a961c5c.js 1714134214432 1714134214722 OK +REQUEST request_0 1714134214705 1714134214724 OK +REQUEST request_5 1714134214665 1714134214748 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134214664 1714134214749 OK +REQUEST main.18e3ef94.css 1714134214664 1714134214749 OK +USER HistoryRecord START 1714134214752 +REQUEST request_4 1714134214664 1714134214760 OK +REQUEST request_6 1714134214665 1714134214761 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134214664 1714134214761 OK +REQUEST request_0 1714134214751 1714134214770 OK +REQUEST wiq2.ico 1714134214664 1714134214830 OK +USER HistoryRecord START 1714134214924 +REQUEST request_0 1714134214924 1714134214942 OK +REQUEST main.4a961c5c.js 1714134214664 1714134214955 OK +USER HistoryRecord START 1714134215066 +REQUEST request_0 1714134215065 1714134215087 OK +REQUEST request_1 1714134215190 1714134215276 OK +REQUEST request_3 1714134215276 1714134215359 OK +REQUEST request_6 1714134215277 1714134215361 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134215276 1714134215361 OK +REQUEST request_2 1714134215277 1714134215373 OK +REQUEST request_4 1714134215277 1714134215375 OK +REQUEST request_5 1714134215277 1714134215375 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134215300 1714134215397 OK +REQUEST request_1 1714134215316 1714134215413 OK +REQUEST wiq2.ico 1714134215276 1714134215441 OK +REQUEST request_2 1714134215398 1714134215482 OK +REQUEST request_3 1714134215398 1714134215483 OK +REQUEST main.18e3ef94.css 1714134215398 1714134215485 OK +REQUEST request_6 1714134215398 1714134215494 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134215398 1714134215494 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134215414 1714134215495 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134215398 1714134215496 OK +REQUEST request_2 1714134215414 1714134215496 OK +REQUEST request_6 1714134215414 1714134215510 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134215413 1714134215511 OK +REQUEST main.18e3ef94.css 1714134215413 1714134215511 OK +REQUEST request_4 1714134215414 1714134215513 OK +REQUEST main.4a961c5c.js 1714134215276 1714134215567 OK +REQUEST wiq2.ico 1714134215397 1714134215588 OK +REQUEST wiq2.ico 1714134215413 1714134215602 OK +REQUEST main.4a961c5c.js 1714134215397 1714134215651 OK +REQUEST main.4a961c5c.js 1714134215413 1714134215660 OK +USER HistoryRecord START 1714134215706 +REQUEST request_0 1714134215705 1714134215723 OK +REQUEST request_1 1714134215705 1714134215803 OK +REQUEST request_1 1714134215721 1714134215805 OK +USER HistoryRecord START 1714134215830 +REQUEST request_0 1714134215830 1714134215849 OK +REQUEST request_3 1714134215806 1714134215888 OK +REQUEST request_6 1714134215805 1714134215888 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134215804 1714134215889 OK +REQUEST request_2 1714134215806 1714134215891 OK +REQUEST main.18e3ef94.css 1714134215804 1714134215892 OK +REQUEST request_3 1714134215804 1714134215902 OK +REQUEST request_5 1714134215805 1714134215902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134215805 1714134215903 OK +REQUEST request_5 1714134215806 1714134215904 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134215806 1714134215904 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134215806 1714134215906 OK +REQUEST request_4 1714134215806 1714134215906 OK +REQUEST request_1 1714134215815 1714134215920 OK +REQUEST wiq2.ico 1714134215806 1714134215970 OK +REQUEST wiq2.ico 1714134215804 1714134215996 OK +REQUEST request_2 1714134215922 1714134216006 OK +REQUEST request_5 1714134215922 1714134216006 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134215921 1714134216006 OK +REQUEST main.18e3ef94.css 1714134215921 1714134216008 OK +REQUEST request_6 1714134215922 1714134216018 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134215921 1714134216019 OK +REQUEST main.4a961c5c.js 1714134215804 1714134216054 OK +REQUEST main.4a961c5c.js 1714134215806 1714134216099 OK +REQUEST wiq2.ico 1714134215921 1714134216113 OK +REQUEST main.4a961c5c.js 1714134215921 1714134216211 OK +USER HistoryRecord START 1714134216281 +REQUEST request_0 1714134216281 1714134216300 OK +USER HistoryRecord START 1714134216343 +REQUEST request_0 1714134216343 1714134216362 OK +REQUEST request_1 1714134216497 1714134216581 OK +REQUEST request_6 1714134216582 1714134216665 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134216581 1714134216666 OK +REQUEST request_5 1714134216582 1714134216679 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134216581 1714134216679 OK +REQUEST request_2 1714134216582 1714134216680 OK +REQUEST request_4 1714134216582 1714134216680 OK +USER HistoryRecord START 1714134216685 +REQUEST request_0 1714134216684 1714134216702 OK +REQUEST wiq2.ico 1714134216581 1714134216744 OK +REQUEST request_1 1714134216668 1714134216751 OK +REQUEST request_1 1714134216716 1714134216814 OK +REQUEST request_3 1714134216752 1714134216835 OK +REQUEST request_6 1714134216753 1714134216836 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134216752 1714134216837 OK +USER HistoryRecord START 1714134216842 +REQUEST request_4 1714134216752 1714134216848 OK +REQUEST request_2 1714134216753 1714134216849 OK +REQUEST request_5 1714134216753 1714134216849 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134216842 1714134216862 OK +REQUEST main.4a961c5c.js 1714134216581 1714134216870 OK +REQUEST request_5 1714134216815 1714134216898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134216814 1714134216900 OK +REQUEST request_6 1714134216815 1714134216915 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134216814 1714134216915 OK +REQUEST request_2 1714134216815 1714134216916 OK +REQUEST request_4 1714134216815 1714134216916 OK +REQUEST wiq2.ico 1714134216752 1714134216916 OK +USER HistoryRecord START 1714134216981 +REQUEST request_0 1714134216981 1714134216999 OK +REQUEST request_1 1714134216919 1714134217004 OK +REQUEST wiq2.ico 1714134216814 1714134217007 OK +REQUEST main.4a961c5c.js 1714134216752 1714134217044 OK +REQUEST main.4a961c5c.js 1714134216814 1714134217062 OK +REQUEST request_3 1714134217005 1714134217088 OK +REQUEST request_5 1714134217005 1714134217089 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134217005 1714134217090 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134217005 1714134217101 OK +REQUEST request_2 1714134217005 1714134217103 OK +REQUEST main.18e3ef94.css 1714134217005 1714134217104 OK +REQUEST wiq2.ico 1714134217004 1714134217171 OK +REQUEST request_1 1714134217200 1714134217282 OK +REQUEST main.4a961c5c.js 1714134217005 1714134217294 OK +REQUEST request_5 1714134217283 1714134217367 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134217283 1714134217368 OK +REQUEST main.18e3ef94.css 1714134217283 1714134217369 OK +REQUEST request_2 1714134217283 1714134217379 OK +REQUEST request_6 1714134217283 1714134217380 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134217283 1714134217381 OK +USER HistoryRecord START 1714134217400 +REQUEST request_0 1714134217400 1714134217418 OK +REQUEST wiq2.ico 1714134217283 1714134217443 OK +REQUEST main.4a961c5c.js 1714134217283 1714134217534 OK +USER HistoryRecord START 1714134217619 +REQUEST request_0 1714134217619 1714134217638 OK +USER HistoryRecord START 1714134217790 +REQUEST request_0 1714134217790 1714134217809 OK +USER HistoryRecord START 1714134218072 +REQUEST request_1 1714134217976 1714134218072 OK +REQUEST request_0 1714134218071 1714134218090 OK +REQUEST request_2 1714134218073 1714134218156 OK +REQUEST request_3 1714134218073 1714134218156 OK +REQUEST request_6 1714134218073 1714134218159 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134218073 1714134218159 OK +REQUEST request_5 1714134218073 1714134218168 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134218073 1714134218169 OK +REQUEST wiq2.ico 1714134218072 1714134218261 OK +USER HistoryRecord START 1714134218323 +REQUEST main.4a961c5c.js 1714134218073 1714134218324 OK +USER HistoryRecord START 1714134218338 +REQUEST request_0 1714134218322 1714134218341 OK +REQUEST request_0 1714134218338 1714134218357 OK +USER HistoryRecord START 1714134218543 +REQUEST request_0 1714134218543 1714134218562 OK +REQUEST request_1 1714134218496 1714134218593 OK +REQUEST request_1 1714134218512 1714134218610 OK +REQUEST request_6 1714134218595 1714134218677 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134218594 1714134218678 OK +REQUEST request_2 1714134218594 1714134218678 OK +REQUEST request_4 1714134218594 1714134218678 OK +REQUEST request_5 1714134218595 1714134218690 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134218594 1714134218692 OK +REQUEST request_5 1714134218611 1714134218695 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134218611 1714134218695 OK +REQUEST request_6 1714134218611 1714134218707 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134218611 1714134218708 OK +REQUEST request_3 1714134218611 1714134218708 OK +REQUEST main.18e3ef94.css 1714134218611 1714134218709 OK +REQUEST wiq2.ico 1714134218594 1714134218785 OK +REQUEST wiq2.ico 1714134218611 1714134218804 OK +REQUEST request_1 1714134218729 1714134218825 OK +REQUEST main.4a961c5c.js 1714134218594 1714134218848 OK +REQUEST main.4a961c5c.js 1714134218611 1714134218861 OK +REQUEST request_1 1714134218776 1714134218861 OK +REQUEST main.18e3ef94.css 1714134218826 1714134218910 OK +REQUEST request_2 1714134218826 1714134218911 OK +REQUEST request_3 1714134218826 1714134218923 OK +REQUEST request_5 1714134218826 1714134218923 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134218826 1714134218924 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134218826 1714134218926 OK +REQUEST request_4 1714134218862 1714134218944 OK +REQUEST main.18e3ef94.css 1714134218862 1714134218947 OK +REQUEST request_3 1714134218862 1714134218957 OK +REQUEST request_2 1714134218862 1714134218958 OK +REQUEST request_5 1714134218863 1714134218959 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134218863 1714134218960 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134218825 1714134219014 OK +REQUEST wiq2.ico 1714134218862 1714134219028 OK +REQUEST request_1 1714134218949 1714134219030 OK +REQUEST main.4a961c5c.js 1714134218826 1714134219071 OK +USER HistoryRecord START 1714134219090 +REQUEST request_0 1714134219090 1714134219109 OK +REQUEST request_5 1714134219032 1714134219115 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134219032 1714134219118 OK +USER HistoryRecord START 1714134219122 +REQUEST request_2 1714134219032 1714134219129 OK +REQUEST request_6 1714134219032 1714134219130 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134219032 1714134219130 OK +REQUEST main.18e3ef94.css 1714134219032 1714134219133 OK +REQUEST request_0 1714134219121 1714134219139 OK +REQUEST main.4a961c5c.js 1714134218862 1714134219155 OK +REQUEST request_1 1714134219090 1714134219186 OK +REQUEST wiq2.ico 1714134219031 1714134219194 OK +USER HistoryRecord START 1714134219217 +USER HistoryRecord START 1714134219233 +REQUEST request_0 1714134219217 1714134219235 OK +REQUEST request_0 1714134219232 1714134219249 OK +REQUEST request_5 1714134219187 1714134219270 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134219187 1714134219270 OK +REQUEST main.4a961c5c.js 1714134219032 1714134219284 OK +REQUEST request_6 1714134219188 1714134219284 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134219187 1714134219284 OK +REQUEST request_4 1714134219187 1714134219285 OK +REQUEST main.18e3ef94.css 1714134219187 1714134219287 OK +REQUEST wiq2.ico 1714134219187 1714134219377 OK +REQUEST main.4a961c5c.js 1714134219187 1714134219439 OK +USER HistoryRecord START 1714134219606 +REQUEST request_0 1714134219606 1714134219625 OK +USER HistoryRecord START 1714134219746 +REQUEST request_0 1714134219746 1714134219764 OK +REQUEST request_1 1714134219730 1714134219815 OK +REQUEST request_3 1714134219816 1714134219899 OK +REQUEST request_4 1714134219816 1714134219899 OK +REQUEST main.18e3ef94.css 1714134219816 1714134219901 OK +REQUEST request_5 1714134219816 1714134219902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134219816 1714134219913 OK +REQUEST request_6 1714134219816 1714134219915 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134219857 1714134219953 OK +REQUEST wiq2.ico 1714134219815 1714134219980 OK +REQUEST request_4 1714134219955 1714134220038 OK +REQUEST request_5 1714134219955 1714134220039 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134219955 1714134220049 OK +REQUEST request_3 1714134219954 1714134220050 OK +REQUEST main.18e3ef94.css 1714134219954 1714134220052 OK +REQUEST request_6 1714134219955 1714134220052 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134219816 1714134220106 OK +REQUEST wiq2.ico 1714134219954 1714134220143 OK +REQUEST main.4a961c5c.js 1714134219954 1714134220202 OK +USER HistoryRecord START 1714134220284 +REQUEST request_0 1714134220283 1714134220302 OK +REQUEST request_1 1714134220314 1714134220411 OK +REQUEST request_1 1714134220377 1714134220460 OK +REQUEST request_3 1714134220412 1714134220495 OK +REQUEST request_7 1714134220412 1714134220496 OK +REQUEST main.18e3ef94.css 1714134220412 1714134220497 OK +REQUEST request_6 1714134220413 1714134220497 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134220412 1714134220497 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134220412 1714134220508 OK +REQUEST request_4 1714134220412 1714134220511 OK +REQUEST request_6 1714134220461 1714134220545 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134220461 1714134220546 OK +REQUEST main.18e3ef94.css 1714134220461 1714134220546 OK +REQUEST request_5 1714134220461 1714134220557 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134220461 1714134220557 OK +REQUEST request_2 1714134220461 1714134220559 OK +REQUEST request_9 1714134220497 1714134220592 OK +REQUEST wiq2.ico 1714134220412 1714134220599 OK +REQUEST request_8 1714134220496 1714134220604 OK +REQUEST wiq2.ico 1714134220460 1714134220637 OK +REQUEST request_7 1714134220563 1714134220644 OK +REQUEST main.4a961c5c.js 1714134220412 1714134220703 OK +REQUEST request_9 1714134220644 1714134220726 OK +REQUEST request_8 1714134220644 1714134220744 OK +REQUEST main.4a961c5c.js 1714134220461 1714134220754 OK +REQUEST request_7 1714134220673 1714134220771 OK +USER HistoryRecord START 1714134220782 +REQUEST request_1 1714134220704 1714134220786 OK +REQUEST request_0 1714134220781 1714134220799 OK +REQUEST request_9 1714134220771 1714134220868 OK +REQUEST request_3 1714134220787 1714134220870 OK +REQUEST request_4 1714134220787 1714134220871 OK +REQUEST request_6 1714134220788 1714134220872 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134220787 1714134220872 OK +REQUEST request_5 1714134220788 1714134220874 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134220771 1714134220884 OK +REQUEST request_2 1714134220787 1714134220884 OK +USER HistoryRecord START 1714134220938 +REQUEST wiq2.ico 1714134220787 1714134220950 OK +REQUEST request_0 1714134220938 1714134220956 OK +REQUEST request_1 1714134220875 1714134220958 OK +REQUEST request_4 1714134220959 1714134221042 OK +REQUEST request_6 1714134220959 1714134221043 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134220959 1714134221043 OK +REQUEST request_3 1714134220959 1714134221054 OK +REQUEST request_5 1714134220959 1714134221056 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134220959 1714134221057 OK +REQUEST main.4a961c5c.js 1714134220787 1714134221075 OK +REQUEST request_1 1714134221015 1714134221098 OK +REQUEST wiq2.ico 1714134220959 1714134221121 OK +USER HistoryRecord START 1714134221125 +REQUEST request_0 1714134221124 1714134221143 OK +REQUEST request_6 1714134221099 1714134221181 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134221099 1714134221182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134221099 1714134221183 OK +REQUEST request_4 1714134221099 1714134221184 OK +REQUEST main.18e3ef94.css 1714134221099 1714134221185 OK +REQUEST request_2 1714134221099 1714134221196 OK +USER HistoryRecord START 1714134221203 +REQUEST request_0 1714134221203 1714134221222 OK +REQUEST main.4a961c5c.js 1714134220959 1714134221250 OK +REQUEST wiq2.ico 1714134221099 1714134221260 OK +USER HistoryRecord START 1714134221346 +REQUEST main.4a961c5c.js 1714134221099 1714134221347 OK +REQUEST request_0 1714134221345 1714134221364 OK +REQUEST request_1 1714134221423 1714134221520 OK +REQUEST request_3 1714134221521 1714134221603 OK +REQUEST main.18e3ef94.css 1714134221521 1714134221605 OK +REQUEST request_2 1714134221521 1714134221605 OK +REQUEST request_5 1714134221521 1714134221606 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134221521 1714134221617 OK +REQUEST request_6 1714134221521 1714134221618 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134221566 1714134221650 OK +USER HistoryRecord START 1714134221676 +USER HistoryRecord START 1714134221692 +REQUEST request_0 1714134221676 1714134221695 OK +REQUEST request_0 1714134221691 1714134221709 OK +REQUEST wiq2.ico 1714134221520 1714134221712 OK +USER HistoryRecord START 1714134221723 +REQUEST request_9 1714134221650 1714134221732 OK +REQUEST request_1 1714134221645 1714134221740 OK +REQUEST request_0 1714134221723 1714134221741 OK +REQUEST request_8 1714134221650 1714134221755 OK +REQUEST main.4a961c5c.js 1714134221521 1714134221807 OK +REQUEST request_2 1714134221741 1714134221824 OK +REQUEST request_5 1714134221741 1714134221825 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134221732 1714134221827 OK +REQUEST request_6 1714134221741 1714134221837 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134221740 1714134221837 OK +REQUEST request_4 1714134221741 1714134221838 OK +REQUEST main.18e3ef94.css 1714134221740 1714134221839 OK +USER HistoryRecord START 1714134221851 +USER HistoryRecord START 1714134221867 +REQUEST request_0 1714134221851 1714134221868 OK +REQUEST request_0 1714134221867 1714134221885 OK +USER HistoryRecord START 1714134221898 +REQUEST request_1 1714134221819 1714134221904 OK +REQUEST request_9 1714134221827 1714134221912 OK +REQUEST request_0 1714134221898 1714134221917 OK +REQUEST wiq2.ico 1714134221740 1714134221929 OK +REQUEST request_8 1714134221827 1714134221938 OK +REQUEST main.4a961c5c.js 1714134221740 1714134221985 OK +REQUEST request_2 1714134221905 1714134221988 OK +REQUEST request_6 1714134221905 1714134221988 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134221905 1714134222002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134221904 1714134222002 OK +REQUEST request_4 1714134221904 1714134222003 OK +REQUEST main.18e3ef94.css 1714134221904 1714134222004 OK +USER HistoryRecord START 1714134222056 +REQUEST wiq2.ico 1714134221904 1714134222068 OK +REQUEST request_0 1714134222056 1714134222073 OK +REQUEST request_7 1714134222023 1714134222108 OK +REQUEST main.4a961c5c.js 1714134221904 1714134222154 OK +REQUEST request_7 1714134222071 1714134222169 OK +REQUEST request_1 1714134222102 1714134222186 OK +REQUEST request_9 1714134222108 1714134222192 OK +USER HistoryRecord START 1714134222196 +REQUEST request_8 1714134222108 1714134222212 OK +REQUEST request_0 1714134222196 1714134222214 OK +REQUEST request_7 1714134222132 1714134222216 OK +REQUEST request_9 1714134222170 1714134222265 OK +REQUEST request_5 1714134222187 1714134222269 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134222187 1714134222270 OK +REQUEST request_3 1714134222186 1714134222270 OK +REQUEST main.18e3ef94.css 1714134222186 1714134222272 OK +REQUEST request_6 1714134222187 1714134222281 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134222186 1714134222285 OK +REQUEST request_8 1714134222169 1714134222302 OK +REQUEST request_9 1714134222216 1714134222312 OK +REQUEST request_8 1714134222216 1714134222340 OK +USER HistoryRecord START 1714134222351 +REQUEST wiq2.ico 1714134222186 1714134222352 OK +USER HistoryRecord START 1714134222369 +REQUEST request_0 1714134222351 1714134222370 OK +REQUEST request_0 1714134222369 1714134222388 OK +REQUEST request_7 1714134222369 1714134222452 OK +REQUEST request_1 1714134222353 1714134222457 OK +REQUEST request_7 1714134222384 1714134222465 OK +REQUEST request_1 1714134222369 1714134222465 OK +REQUEST main.4a961c5c.js 1714134222186 1714134222475 OK +REQUEST request_7 1714134222427 1714134222510 OK +REQUEST request_4 1714134222458 1714134222539 OK +REQUEST request_2 1714134222458 1714134222540 OK +REQUEST request_6 1714134222458 1714134222540 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134222453 1714134222548 OK +REQUEST request_9 1714134222466 1714134222549 OK +REQUEST request_4 1714134222466 1714134222549 OK +REQUEST request_6 1714134222466 1714134222550 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134222466 1714134222550 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134222458 1714134222554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134222466 1714134222562 OK +REQUEST main.18e3ef94.css 1714134222466 1714134222565 OK +REQUEST request_3 1714134222457 1714134222566 OK +REQUEST request_3 1714134222466 1714134222567 OK +REQUEST main.18e3ef94.css 1714134222457 1714134222569 OK +REQUEST request_8 1714134222453 1714134222578 OK +REQUEST request_9 1714134222510 1714134222605 OK +USER HistoryRecord START 1714134222605 +REQUEST request_8 1714134222466 1714134222615 OK +REQUEST request_0 1714134222605 1714134222623 OK +REQUEST request_8 1714134222510 1714134222633 OK +REQUEST request_7 1714134222543 1714134222640 OK +REQUEST request_10 1714134222605 1714134222650 OK +REQUEST wiq2.ico 1714134222457 1714134222650 OK +REQUEST wiq2.ico 1714134222466 1714134222663 OK +REQUEST request_1 1714134222574 1714134222672 OK +REQUEST request_7 1714134222590 1714134222687 OK +REQUEST request_11 1714134222650 1714134222695 OK +REQUEST main.4a961c5c.js 1714134222466 1714134222718 OK +REQUEST request_9 1714134222640 1714134222723 OK +REQUEST request_12 1714134222651 1714134222745 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134222651 1714134222746 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134222748 +REQUEST request_8 1714134222640 1714134222753 OK +REQUEST main.4a961c5c.js 1714134222457 1714134222756 OK +REQUEST request_3 1714134222672 1714134222756 OK +REQUEST request_2 1714134222673 1714134222756 OK +REQUEST request_6 1714134222673 1714134222757 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134222673 1714134222769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134222672 1714134222773 OK +REQUEST main.18e3ef94.css 1714134222672 1714134222774 OK +REQUEST request_7 1714134222685 1714134222778 OK +REQUEST request_9 1714134222688 1714134222782 OK +REQUEST request_10 1714134222750 1714134222794 OK +USER HistoryRecord START 1714134222797 +REQUEST request_8 1714134222687 1714134222802 OK +REQUEST request_0 1714134222797 1714134222815 OK +REQUEST request_11 1714134222795 1714134222840 OK +REQUEST wiq2.ico 1714134222672 1714134222864 OK +REQUEST request_9 1714134222779 1714134222876 OK +REQUEST request_13 1714134222795 1714134222879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134222779 1714134222888 OK +REQUEST request_12 1714134222795 1714134222893 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134222893 +REQUEST main.4a961c5c.js 1714134222672 1714134222923 OK +USER HistoryRecord START 1714134222924 +REQUEST request_0 1714134222924 1714134222940 OK +REQUEST request_10 1714134222892 1714134222943 OK +REQUEST request_7 1714134222860 1714134222958 OK +USER HistoryRecord START 1714134222971 +REQUEST request_0 1714134222971 1714134222989 OK +REQUEST request_11 1714134222943 1714134222994 OK +REQUEST request_7 1714134222940 1714134223022 OK +REQUEST request_12 1714134222943 1714134223025 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134222943 1714134223040 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134223040 +REQUEST request_9 1714134222958 1714134223055 OK +REQUEST request_8 1714134222958 1714134223067 OK +REQUEST request_9 1714134223023 1714134223105 OK +REQUEST request_8 1714134223023 1714134223126 OK +REQUEST request_7 1714134223065 1714134223161 OK +REQUEST request_1 1714134223112 1714134223208 OK +REQUEST request_1 1714134223143 1714134223227 OK +REQUEST request_9 1714134223161 1714134223258 OK +REQUEST request_8 1714134223161 1714134223272 OK +REQUEST request_3 1714134223208 1714134223292 OK +REQUEST request_5 1714134223209 1714134223292 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134223208 1714134223293 OK +REQUEST request_6 1714134223209 1714134223305 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134223209 1714134223305 OK +REQUEST request_2 1714134223209 1714134223308 OK +REQUEST request_5 1714134223228 1714134223311 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134223228 1714134223311 OK +REQUEST main.18e3ef94.css 1714134223227 1714134223313 OK +REQUEST request_3 1714134223227 1714134223323 OK +REQUEST request_6 1714134223228 1714134223324 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134223228 1714134223324 OK +REQUEST request_1 1714134223237 1714134223334 OK +REQUEST request_1 1714134223253 1714134223349 OK +REQUEST wiq2.ico 1714134223227 1714134223392 OK +REQUEST wiq2.ico 1714134223208 1714134223398 OK +REQUEST request_5 1714134223335 1714134223418 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134223335 1714134223418 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134223334 1714134223419 OK +REQUEST request_7 1714134223347 1714134223431 OK +REQUEST request_2 1714134223335 1714134223432 OK +REQUEST request_4 1714134223335 1714134223433 OK +REQUEST request_5 1714134223349 1714134223433 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134223349 1714134223434 OK +REQUEST main.18e3ef94.css 1714134223334 1714134223435 OK +USER HistoryRecord START 1714134223440 +REQUEST request_3 1714134223349 1714134223445 OK +REQUEST request_6 1714134223349 1714134223447 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134223349 1714134223447 OK +REQUEST main.18e3ef94.css 1714134223349 1714134223449 OK +REQUEST request_0 1714134223440 1714134223459 OK +REQUEST main.4a961c5c.js 1714134223208 1714134223495 OK +REQUEST request_9 1714134223431 1714134223514 OK +REQUEST main.4a961c5c.js 1714134223227 1714134223516 OK +REQUEST wiq2.ico 1714134223334 1714134223522 OK +REQUEST request_8 1714134223431 1714134223535 OK +REQUEST wiq2.ico 1714134223349 1714134223541 OK +REQUEST main.4a961c5c.js 1714134223334 1714134223582 OK +REQUEST main.4a961c5c.js 1714134223349 1714134223596 OK +REQUEST request_7 1714134223596 1714134223681 OK +REQUEST request_1 1714134223628 1714134223713 OK +REQUEST request_9 1714134223682 1714134223777 OK +REQUEST request_8 1714134223681 1714134223784 OK +REQUEST request_4 1714134223714 1714134223797 OK +REQUEST main.18e3ef94.css 1714134223714 1714134223799 OK +REQUEST request_2 1714134223714 1714134223799 OK +REQUEST request_5 1714134223714 1714134223812 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134223714 1714134223812 OK +REQUEST request_6 1714134223714 1714134223812 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134223770 1714134223815 OK +REQUEST request_1 1714134223770 1714134223853 OK +REQUEST request_11 1714134223816 1714134223861 OK +REQUEST wiq2.ico 1714134223714 1714134223877 OK +REQUEST request_12 1714134223816 1714134223898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134223816 1714134223914 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134223914 +USER HistoryRecord START 1714134223926 +REQUEST request_2 1714134223854 1714134223937 OK +REQUEST request_3 1714134223854 1714134223937 OK +REQUEST request_4 1714134223854 1714134223938 OK +REQUEST request_6 1714134223855 1714134223939 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134223926 1714134223944 OK +REQUEST request_5 1714134223854 1714134223952 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134223854 1714134223952 OK +REQUEST request_10 1714134223941 1714134223992 OK +REQUEST main.4a961c5c.js 1714134223714 1714134224001 OK +REQUEST request_7 1714134223926 1714134224010 OK +REQUEST wiq2.ico 1714134223854 1714134224020 OK +REQUEST request_13 1714134223993 1714134224034 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134223993 1714134224043 OK +USER HistoryRecord START 1714134224067 +REQUEST request_12 1714134223993 1714134224074 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224075 +REQUEST request_0 1714134224067 1714134224083 OK +REQUEST main.4a961c5c.js 1714134223854 1714134224104 OK +REQUEST request_9 1714134224010 1714134224105 OK +REQUEST request_8 1714134224010 1714134224115 OK +REQUEST request_7 1714134224159 1714134224257 OK +REQUEST request_10 1714134224221 1714134224266 OK +REQUEST request_12 1714134224266 1714134224307 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134224266 1714134224310 OK +REQUEST request_13 1714134224266 1714134224347 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224348 +REQUEST request_9 1714134224257 1714134224354 OK +REQUEST request_7 1714134224282 1714134224369 OK +REQUEST request_10 1714134224314 1714134224369 OK +REQUEST request_8 1714134224257 1714134224370 OK +REQUEST request_10 1714134224345 1714134224389 OK +REQUEST request_1 1714134224306 1714134224402 OK +REQUEST request_12 1714134224369 1714134224411 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134224369 1714134224420 OK +REQUEST request_11 1714134224389 1714134224433 OK +USER HistoryRecord START 1714134224453 +REQUEST request_13 1714134224370 1714134224465 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224465 +REQUEST request_9 1714134224369 1714134224467 OK +REQUEST request_0 1714134224453 1714134224470 OK +REQUEST request_8 1714134224369 1714134224472 OK +REQUEST request_5 1714134224403 1714134224485 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134224402 1714134224486 OK +REQUEST main.18e3ef94.css 1714134224402 1714134224486 OK +REQUEST request_13 1714134224390 1714134224486 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134224390 1714134224486 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224487 +REQUEST request_6 1714134224403 1714134224487 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134224402 1714134224498 OK +REQUEST request_3 1714134224402 1714134224500 OK +USER HistoryRecord START 1714134224544 +REQUEST request_0 1714134224544 1714134224562 OK +REQUEST wiq2.ico 1714134224402 1714134224591 OK +REQUEST request_10 1714134224594 1714134224638 OK +REQUEST request_10 1714134224625 1714134224669 OK +REQUEST request_11 1714134224638 1714134224683 OK +REQUEST request_10 1714134224640 1714134224685 OK +REQUEST request_13 1714134224638 1714134224685 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134224402 1714134224688 OK +REQUEST request_11 1714134224669 1714134224712 OK +REQUEST request_13 1714134224669 1714134224717 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134224685 1714134224731 OK +REQUEST request_12 1714134224638 1714134224734 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224734 +REQUEST request_12 1714134224669 1714134224751 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224751 +REQUEST request_13 1714134224686 1714134224767 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134224685 1714134224782 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224782 +REQUEST request_10 1714134224767 1714134224817 OK +REQUEST request_7 1714134224735 1714134224832 OK +USER HistoryRecord START 1714134224844 +REQUEST request_13 1714134224817 1714134224858 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134224813 1714134224863 OK +REQUEST request_0 1714134224844 1714134224863 OK +REQUEST request_7 1714134224782 1714134224865 OK +REQUEST request_11 1714134224817 1714134224869 OK +REQUEST request_1 1714134224813 1714134224896 OK +REQUEST request_12 1714134224817 1714134224899 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224900 +USER HistoryRecord START 1714134224907 +REQUEST request_11 1714134224863 1714134224915 OK +REQUEST request_9 1714134224833 1714134224918 OK +REQUEST request_0 1714134224907 1714134224925 OK +REQUEST request_10 1714134224892 1714134224943 OK +REQUEST request_12 1714134224863 1714134224945 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134224865 1714134224949 OK +REQUEST request_8 1714134224833 1714134224956 OK +REQUEST request_13 1714134224864 1714134224960 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134224960 +REQUEST request_7 1714134224876 1714134224974 OK +REQUEST request_8 1714134224865 1714134224978 OK +REQUEST request_4 1714134224896 1714134224979 OK +REQUEST request_5 1714134224896 1714134224980 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134224896 1714134224980 OK +REQUEST request_2 1714134224896 1714134224992 OK +REQUEST request_6 1714134224896 1714134224993 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134224943 1714134224994 OK +REQUEST request_3 1714134224896 1714134224995 OK +USER HistoryRecord START 1714134224999 +USER HistoryRecord START 1714134225014 +REQUEST request_0 1714134224999 1714134225016 OK +REQUEST request_12 1714134224943 1714134225026 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134225014 1714134225032 OK +REQUEST request_13 1714134224943 1714134225037 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134225038 +REQUEST request_1 1714134224968 1714134225052 OK +REQUEST wiq2.ico 1714134224896 1714134225059 OK +REQUEST request_9 1714134224974 1714134225069 OK +REQUEST request_8 1714134224974 1714134225083 OK +REQUEST request_10 1714134225075 1714134225126 OK +REQUEST request_3 1714134225053 1714134225136 OK +REQUEST request_2 1714134225053 1714134225138 OK +REQUEST request_6 1714134225053 1714134225149 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134225053 1714134225149 OK +REQUEST request_5 1714134225053 1714134225151 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134225053 1714134225151 OK +REQUEST request_11 1714134225126 1714134225179 OK +REQUEST request_10 1714134225138 1714134225181 OK +USER HistoryRecord START 1714134225185 +REQUEST main.4a961c5c.js 1714134224896 1714134225188 OK +REQUEST request_0 1714134225184 1714134225201 OK +REQUEST request_13 1714134225127 1714134225212 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134225126 1714134225212 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134225212 +REQUEST wiq2.ico 1714134225053 1714134225217 OK +REQUEST request_11 1714134225181 1714134225225 OK +REQUEST request_1 1714134225153 1714134225252 OK +REQUEST request_13 1714134225181 1714134225263 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134225181 1714134225276 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134225276 +REQUEST request_7 1714134225216 1714134225313 OK +REQUEST request_1 1714134225231 1714134225314 OK +REQUEST request_10 1714134225277 1714134225329 OK +REQUEST request_6 1714134225253 1714134225337 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134225252 1714134225337 OK +REQUEST main.18e3ef94.css 1714134225252 1714134225338 OK +REQUEST main.4a961c5c.js 1714134225053 1714134225341 OK +REQUEST request_5 1714134225253 1714134225349 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134225253 1714134225349 OK +REQUEST request_2 1714134225253 1714134225349 OK +REQUEST request_12 1714134225330 1714134225371 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134225330 1714134225380 OK +REQUEST request_5 1714134225315 1714134225398 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134225315 1714134225399 OK +REQUEST main.18e3ef94.css 1714134225315 1714134225405 OK +REQUEST request_2 1714134225315 1714134225410 OK +REQUEST request_6 1714134225315 1714134225411 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134225313 1714134225412 OK +REQUEST request_3 1714134225315 1714134225413 OK +REQUEST request_13 1714134225330 1714134225427 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134225427 +REQUEST request_8 1714134225313 1714134225430 OK +REQUEST wiq2.ico 1714134225252 1714134225445 OK +REQUEST request_7 1714134225355 1714134225453 OK +REQUEST request_1 1714134225371 1714134225469 OK +REQUEST wiq2.ico 1714134225315 1714134225481 OK +REQUEST request_9 1714134225454 1714134225537 OK +REQUEST main.4a961c5c.js 1714134225252 1714134225540 OK +REQUEST request_2 1714134225470 1714134225552 OK +REQUEST request_6 1714134225470 1714134225553 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134225315 1714134225559 OK +REQUEST request_3 1714134225470 1714134225562 OK +REQUEST request_8 1714134225453 1714134225565 OK +REQUEST request_5 1714134225470 1714134225565 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134225470 1714134225566 OK +REQUEST main.18e3ef94.css 1714134225470 1714134225566 OK +REQUEST request_10 1714134225540 1714134225583 OK +REQUEST request_11 1714134225584 1714134225628 OK +REQUEST wiq2.ico 1714134225470 1714134225663 OK +REQUEST request_12 1714134225584 1714134225666 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134225584 1714134225669 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134225669 +REQUEST main.4a961c5c.js 1714134225470 1714134225718 OK +REQUEST request_7 1714134225663 1714134225759 OK +USER HistoryRecord START 1714134225801 +REQUEST request_1 1714134225709 1714134225804 OK +REQUEST request_1 1714134225711 1714134225808 OK +REQUEST request_0 1714134225800 1714134225818 OK +REQUEST request_10 1714134225785 1714134225833 OK +REQUEST request_1 1714134225755 1714134225838 OK +REQUEST request_9 1714134225760 1714134225842 OK +REQUEST request_8 1714134225760 1714134225872 OK +REQUEST request_11 1714134225833 1714134225877 OK +REQUEST request_2 1714134225805 1714134225887 OK +REQUEST request_6 1714134225805 1714134225888 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134225809 1714134225892 OK +REQUEST request_6 1714134225809 1714134225893 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134225797 1714134225894 OK +REQUEST request_4 1714134225804 1714134225895 OK +REQUEST request_3 1714134225809 1714134225895 OK +REQUEST request_5 1714134225805 1714134225902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134225804 1714134225902 OK +REQUEST request_5 1714134225809 1714134225904 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134225809 1714134225908 OK +REQUEST main.18e3ef94.css 1714134225804 1714134225909 OK +REQUEST main.18e3ef94.css 1714134225809 1714134225911 OK +REQUEST request_13 1714134225833 1714134225915 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134225839 1714134225920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134225838 1714134225928 OK +REQUEST request_12 1714134225833 1714134225930 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134225930 +REQUEST request_4 1714134225838 1714134225934 OK +REQUEST request_2 1714134225839 1714134225934 OK +REQUEST request_6 1714134225839 1714134225936 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134225838 1714134225940 OK +REQUEST request_1 1714134225878 1714134225962 OK +REQUEST request_1 1714134225894 1714134225978 OK +REQUEST request_9 1714134225894 1714134225991 OK +REQUEST wiq2.ico 1714134225804 1714134225993 OK +REQUEST wiq2.ico 1714134225838 1714134226001 OK +REQUEST wiq2.ico 1714134225809 1714134226001 OK +REQUEST request_8 1714134225894 1714134226006 OK +REQUEST request_1 1714134225925 1714134226008 OK +USER HistoryRecord START 1714134226020 +REQUEST request_0 1714134226020 1714134226038 OK +REQUEST request_5 1714134225963 1714134226045 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134225963 1714134226046 OK +REQUEST main.18e3ef94.css 1714134225963 1714134226047 OK +REQUEST request_2 1714134225963 1714134226058 OK +REQUEST request_6 1714134225963 1714134226058 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134225809 1714134226060 OK +REQUEST request_4 1714134225963 1714134226060 OK +REQUEST request_3 1714134225978 1714134226062 OK +REQUEST request_2 1714134225979 1714134226063 OK +USER HistoryRecord START 1714134226063 +REQUEST request_5 1714134225979 1714134226064 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134225979 1714134226073 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134225978 1714134226074 OK +REQUEST main.18e3ef94.css 1714134225978 1714134226078 OK +REQUEST request_0 1714134226063 1714134226080 OK +REQUEST request_3 1714134226009 1714134226091 OK +REQUEST request_4 1714134226009 1714134226092 OK +REQUEST main.4a961c5c.js 1714134225804 1714134226094 OK +REQUEST request_2 1714134226009 1714134226102 OK +REQUEST request_5 1714134226009 1714134226103 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134226009 1714134226105 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134226009 1714134226109 OK +REQUEST main.4a961c5c.js 1714134225838 1714134226125 OK +REQUEST wiq2.ico 1714134225963 1714134226129 OK +REQUEST wiq2.ico 1714134225978 1714134226142 OK +REQUEST request_1 1714134226079 1714134226163 OK +REQUEST wiq2.ico 1714134226009 1714134226170 OK +REQUEST request_10 1714134226126 1714134226171 OK +REQUEST request_11 1714134226171 1714134226216 OK +REQUEST request_5 1714134226163 1714134226245 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134226249 +REQUEST request_6 1714134226163 1714134226249 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134226163 1714134226250 OK +REQUEST request_7 1714134226156 1714134226251 OK +REQUEST request_12 1714134226171 1714134226252 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134225963 1714134226254 OK +REQUEST request_2 1714134226163 1714134226259 OK +REQUEST main.4a961c5c.js 1714134226009 1714134226259 OK +REQUEST request_4 1714134226163 1714134226259 OK +REQUEST request_3 1714134226163 1714134226261 OK +REQUEST request_0 1714134226248 1714134226266 OK +REQUEST request_13 1714134226171 1714134226268 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134226269 +REQUEST main.4a961c5c.js 1714134225978 1714134226269 OK +REQUEST request_1 1714134226217 1714134226314 OK +REQUEST wiq2.ico 1714134226163 1714134226328 OK +REQUEST request_9 1714134226252 1714134226348 OK +REQUEST request_8 1714134226252 1714134226364 OK +REQUEST request_6 1714134226315 1714134226397 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134226314 1714134226398 OK +REQUEST request_2 1714134226315 1714134226399 OK +REQUEST main.4a961c5c.js 1714134226163 1714134226410 OK +REQUEST request_5 1714134226315 1714134226411 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134226315 1714134226413 OK +REQUEST main.18e3ef94.css 1714134226314 1714134226413 OK +REQUEST request_10 1714134226374 1714134226426 OK +REQUEST request_1 1714134226374 1714134226458 OK +REQUEST request_1 1714134226389 1714134226472 OK +REQUEST request_11 1714134226426 1714134226478 OK +REQUEST wiq2.ico 1714134226314 1714134226506 OK +REQUEST request_12 1714134226426 1714134226508 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134226426 1714134226521 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134226521 +REQUEST request_10 1714134226484 1714134226529 OK +USER HistoryRecord START 1714134226532 +REQUEST request_2 1714134226459 1714134226542 OK +REQUEST request_3 1714134226459 1714134226542 OK +REQUEST request_6 1714134226459 1714134226543 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134226459 1714134226544 OK +REQUEST request_0 1714134226531 1714134226548 OK +REQUEST request_2 1714134226472 1714134226552 OK +REQUEST request_4 1714134226472 1714134226554 OK +REQUEST request_5 1714134226459 1714134226555 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134226472 1714134226555 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134226459 1714134226555 OK +REQUEST main.4a961c5c.js 1714134226314 1714134226566 OK +REQUEST request_5 1714134226472 1714134226566 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134226472 1714134226568 OK +REQUEST request_3 1714134226472 1714134226568 OK +REQUEST request_11 1714134226530 1714134226573 OK +REQUEST wiq2.ico 1714134226459 1714134226624 OK +REQUEST request_13 1714134226530 1714134226624 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134226625 +REQUEST request_12 1714134226530 1714134226627 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134226627 +REQUEST wiq2.ico 1714134226472 1714134226633 OK +USER HistoryRecord START 1714134226641 +USER HistoryRecord START 1714134226641 +REQUEST request_0 1714134226625 1714134226644 OK +REQUEST request_0 1714134226640 1714134226659 OK +REQUEST request_0 1714134226640 1714134226659 OK +REQUEST main.4a961c5c.js 1714134226459 1714134226710 OK +REQUEST request_1 1714134226625 1714134226711 OK +REQUEST main.4a961c5c.js 1714134226472 1714134226758 OK +REQUEST request_3 1714134226712 1714134226794 OK +REQUEST request_2 1714134226712 1714134226795 OK +REQUEST request_6 1714134226713 1714134226808 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134226712 1714134226808 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134226712 1714134226809 OK +REQUEST main.18e3ef94.css 1714134226712 1714134226811 OK +REQUEST wiq2.ico 1714134226712 1714134226878 OK +REQUEST request_1 1714134226826 1714134226908 OK +REQUEST main.4a961c5c.js 1714134226712 1714134226963 OK +USER HistoryRecord START 1714134226966 +REQUEST request_0 1714134226966 1714134226984 OK +REQUEST request_6 1714134226909 1714134226990 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134226909 1714134226991 OK +REQUEST request_5 1714134226909 1714134226993 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134226909 1714134227005 OK +REQUEST request_2 1714134226909 1714134227005 OK +REQUEST main.18e3ef94.css 1714134226909 1714134227009 OK +REQUEST request_10 1714134226966 1714134227018 OK +REQUEST request_10 1714134226982 1714134227027 OK +REQUEST request_1 1714134226950 1714134227034 OK +REQUEST request_13 1714134227018 1714134227059 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134226908 1714134227070 OK +REQUEST request_11 1714134227018 1714134227070 OK +REQUEST request_11 1714134227028 1714134227073 OK +REQUEST request_13 1714134227028 1714134227076 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134226998 1714134227082 OK +REQUEST request_7 1714134226998 1714134227095 OK +REQUEST request_12 1714134227018 1714134227099 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134227100 +REQUEST request_4 1714134227034 1714134227116 OK +REQUEST request_5 1714134227035 1714134227118 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134227035 1714134227118 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134227034 1714134227118 OK +REQUEST request_12 1714134227028 1714134227124 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134227124 +REQUEST request_7 1714134227029 1714134227127 OK +REQUEST request_2 1714134227034 1714134227131 OK +REQUEST request_3 1714134227034 1714134227132 OK +REQUEST request_10 1714134227091 1714134227142 OK +REQUEST request_4 1714134227082 1714134227166 OK +REQUEST request_6 1714134227083 1714134227167 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134227082 1714134227167 OK +REQUEST main.4a961c5c.js 1714134226909 1714134227168 OK +USER HistoryRecord START 1714134227169 +REQUEST request_2 1714134227083 1714134227177 OK +REQUEST request_9 1714134227095 1714134227177 OK +REQUEST request_5 1714134227083 1714134227179 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134227082 1714134227183 OK +REQUEST request_13 1714134227143 1714134227184 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134227169 1714134227189 OK +REQUEST request_11 1714134227142 1714134227195 OK +REQUEST wiq2.ico 1714134227034 1714134227200 OK +REQUEST request_8 1714134227095 1714134227219 OK +REQUEST request_9 1714134227127 1714134227225 OK +REQUEST request_12 1714134227142 1714134227238 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134227239 +REQUEST request_8 1714134227127 1714134227245 OK +REQUEST wiq2.ico 1714134227082 1714134227250 OK +REQUEST main.4a961c5c.js 1714134227034 1714134227325 OK +REQUEST main.4a961c5c.js 1714134227082 1714134227334 OK +REQUEST request_7 1714134227388 1714134227484 OK +REQUEST request_10 1714134227434 1714134227485 OK +USER HistoryRecord START 1714134227526 +REQUEST request_11 1714134227485 1714134227537 OK +REQUEST request_0 1714134227526 1714134227543 OK +REQUEST request_1 1714134227465 1714134227550 OK +REQUEST request_7 1714134227465 1714134227561 OK +REQUEST request_12 1714134227485 1714134227568 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134227484 1714134227581 OK +REQUEST request_13 1714134227485 1714134227581 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134227582 +REQUEST request_8 1714134227484 1714134227593 OK +REQUEST request_7 1714134227526 1714134227623 OK +REQUEST request_10 1714134227572 1714134227624 OK +REQUEST request_2 1714134227551 1714134227633 OK +REQUEST request_6 1714134227551 1714134227634 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134227551 1714134227635 OK +REQUEST request_5 1714134227551 1714134227648 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134227551 1714134227649 OK +REQUEST main.18e3ef94.css 1714134227551 1714134227651 OK +REQUEST request_7 1714134227557 1714134227653 OK +REQUEST request_9 1714134227562 1714134227658 OK +REQUEST request_12 1714134227624 1714134227665 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134227562 1714134227676 OK +REQUEST request_11 1714134227624 1714134227677 OK +REQUEST wiq2.ico 1714134227551 1714134227715 OK +REQUEST request_9 1714134227623 1714134227720 OK +REQUEST request_13 1714134227624 1714134227720 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134227720 +REQUEST request_8 1714134227623 1714134227736 OK +REQUEST request_9 1714134227653 1714134227750 OK +REQUEST request_8 1714134227653 1714134227762 OK +REQUEST request_7 1714134227728 1714134227812 OK +REQUEST main.4a961c5c.js 1714134227551 1714134227842 OK +REQUEST request_9 1714134227812 1714134227910 OK +REQUEST request_8 1714134227812 1714134227916 OK +REQUEST request_10 1714134227883 1714134227933 OK +REQUEST request_7 1714134227867 1714134227951 OK +REQUEST request_11 1714134227933 1714134227984 OK +USER HistoryRecord START 1714134228009 +REQUEST request_13 1714134227934 1714134228017 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134227933 1714134228017 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134228017 +REQUEST request_0 1714134228008 1714134228026 OK +REQUEST request_1 1714134227946 1714134228029 OK +REQUEST request_9 1714134227951 1714134228033 OK +REQUEST request_8 1714134227951 1714134228051 OK +REQUEST request_10 1714134228008 1714134228059 OK +USER HistoryRecord START 1714134228072 +REQUEST request_0 1714134228072 1714134228089 OK +REQUEST request_13 1714134228060 1714134228109 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134228060 1714134228110 OK +REQUEST request_2 1714134228029 1714134228112 OK +REQUEST request_3 1714134228029 1714134228113 OK +REQUEST main.18e3ef94.css 1714134228029 1714134228114 OK +REQUEST request_5 1714134228030 1714134228125 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134228030 1714134228126 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134228029 1714134228126 OK +REQUEST request_12 1714134228060 1714134228142 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134228142 +REQUEST request_1 1714134228088 1714134228184 OK +REQUEST wiq2.ico 1714134228029 1714134228191 OK +USER HistoryRecord START 1714134228213 +REQUEST request_0 1714134228213 1714134228231 OK +REQUEST request_3 1714134228185 1714134228267 OK +REQUEST request_2 1714134228185 1714134228268 OK +REQUEST main.4a961c5c.js 1714134228029 1714134228275 OK +REQUEST request_5 1714134228185 1714134228281 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134228185 1714134228281 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134228185 1714134228283 OK +REQUEST main.18e3ef94.css 1714134228185 1714134228283 OK +REQUEST request_7 1714134228243 1714134228340 OK +REQUEST wiq2.ico 1714134228185 1714134228374 OK +REQUEST request_7 1714134228306 1714134228388 OK +REQUEST request_10 1714134228368 1714134228421 OK +REQUEST request_9 1714134228340 1714134228424 OK +REQUEST main.4a961c5c.js 1714134228185 1714134228434 OK +REQUEST request_8 1714134228340 1714134228451 OK +REQUEST request_12 1714134228421 1714134228461 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134228421 1714134228472 OK +REQUEST request_9 1714134228389 1714134228487 OK +REQUEST request_8 1714134228389 1714134228491 OK +REQUEST request_13 1714134228421 1714134228503 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134228503 +REQUEST request_1 1714134228479 1714134228561 OK +USER HistoryRecord START 1714134228619 +REQUEST request_0 1714134228618 1714134228637 OK +REQUEST request_2 1714134228562 1714134228644 OK +REQUEST request_1 1714134228572 1714134228655 OK +REQUEST request_5 1714134228562 1714134228658 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134228562 1714134228658 OK +REQUEST request_3 1714134228561 1714134228659 OK +REQUEST request_6 1714134228562 1714134228660 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134228561 1714134228660 OK +USER HistoryRecord START 1714134228664 +REQUEST request_0 1714134228664 1714134228683 OK +REQUEST wiq2.ico 1714134228561 1714134228725 OK +REQUEST request_5 1714134228655 1714134228737 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134228655 1714134228738 OK +REQUEST request_2 1714134228655 1714134228739 OK +REQUEST main.18e3ef94.css 1714134228655 1714134228740 OK +REQUEST request_4 1714134228655 1714134228752 OK +REQUEST request_6 1714134228655 1714134228752 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134228772 +USER HistoryRecord START 1714134228772 +REQUEST request_0 1714134228772 1714134228789 OK +REQUEST request_0 1714134228772 1714134228790 OK +REQUEST wiq2.ico 1714134228655 1714134228819 OK +REQUEST main.4a961c5c.js 1714134228561 1714134228847 OK +REQUEST request_7 1714134228835 1714134228930 OK +REQUEST main.4a961c5c.js 1714134228655 1714134228942 OK +REQUEST request_1 1714134228866 1714134228951 OK +REQUEST request_9 1714134228930 1714134229012 OK +REQUEST request_1 1714134228929 1714134229013 OK +USER HistoryRecord START 1714134229015 +REQUEST request_7 1714134228929 1714134229026 OK +REQUEST request_0 1714134229005 1714134229031 OK +REQUEST request_2 1714134228951 1714134229033 OK +REQUEST main.18e3ef94.css 1714134228951 1714134229035 OK +REQUEST request_8 1714134228930 1714134229041 OK +REQUEST request_4 1714134228951 1714134229047 OK +REQUEST request_5 1714134228951 1714134229047 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134228951 1714134229048 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134228951 1714134229048 OK +REQUEST request_5 1714134229014 1714134229096 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134229014 1714134229097 OK +REQUEST main.18e3ef94.css 1714134229014 1714134229097 OK +REQUEST request_2 1714134229014 1714134229110 OK +REQUEST request_6 1714134229014 1714134229111 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134229014 1714134229111 OK +REQUEST request_9 1714134229026 1714134229112 OK +REQUEST wiq2.ico 1714134228951 1714134229115 OK +REQUEST request_1 1714134229020 1714134229134 OK +REQUEST request_1 1714134229035 1714134229135 OK +REQUEST request_8 1714134229026 1714134229137 OK +REQUEST wiq2.ico 1714134229014 1714134229179 OK +REQUEST request_2 1714134229135 1714134229218 OK +REQUEST request_3 1714134229135 1714134229219 OK +REQUEST request_5 1714134229136 1714134229219 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134229136 1714134229220 OK +REQUEST main.18e3ef94.css 1714134229135 1714134229220 OK +REQUEST request_6 1714134229135 1714134229220 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134229136 1714134229221 OK +REQUEST request_5 1714134229135 1714134229232 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134229136 1714134229233 OK +REQUEST request_6 1714134229136 1714134229234 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134229136 1714134229234 OK +REQUEST request_4 1714134229135 1714134229234 OK +REQUEST main.4a961c5c.js 1714134228951 1714134229243 OK +REQUEST request_10 1714134229223 1714134229275 OK +USER HistoryRecord START 1714134229301 +REQUEST request_10 1714134229254 1714134229305 OK +REQUEST request_1 1714134229207 1714134229311 OK +REQUEST request_0 1714134229300 1714134229318 OK +REQUEST main.4a961c5c.js 1714134229014 1714134229320 OK +REQUEST wiq2.ico 1714134229135 1714134229323 OK +REQUEST wiq2.ico 1714134229136 1714134229326 OK +REQUEST request_11 1714134229276 1714134229327 OK +REQUEST request_12 1714134229305 1714134229347 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134229305 1714134229356 OK +REQUEST request_13 1714134229276 1714134229358 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134229269 1714134229366 OK +REQUEST request_12 1714134229276 1714134229371 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134229371 +REQUEST request_5 1714134229312 1714134229394 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134229312 1714134229395 OK +REQUEST request_4 1714134229312 1714134229395 OK +REQUEST main.18e3ef94.css 1714134229312 1714134229396 OK +REQUEST request_13 1714134229305 1714134229401 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134229401 +REQUEST request_2 1714134229312 1714134229407 OK +USER HistoryRecord START 1714134229407 +REQUEST request_6 1714134229312 1714134229409 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134229136 1714134229423 OK +REQUEST request_0 1714134229407 1714134229425 OK +REQUEST main.4a961c5c.js 1714134229135 1714134229428 OK +REQUEST request_9 1714134229366 1714134229463 OK +REQUEST request_7 1714134229377 1714134229472 OK +REQUEST request_8 1714134229366 1714134229479 OK +USER HistoryRecord START 1714134229485 +REQUEST request_0 1714134229485 1714134229503 OK +REQUEST wiq2.ico 1714134229312 1714134229504 OK +USER HistoryRecord START 1714134229517 +REQUEST request_0 1714134229517 1714134229535 OK +USER HistoryRecord START 1714134229565 +REQUEST request_9 1714134229472 1714134229570 OK +REQUEST request_8 1714134229472 1714134229580 OK +USER HistoryRecord START 1714134229581 +REQUEST request_0 1714134229565 1714134229583 OK +REQUEST request_0 1714134229581 1714134229598 OK +REQUEST main.4a961c5c.js 1714134229312 1714134229601 OK +REQUEST request_10 1714134229596 1714134229646 OK +REQUEST request_11 1714134229646 1714134229696 OK +REQUEST request_13 1714134229646 1714134229729 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134229687 1714134229737 OK +REQUEST request_7 1714134229642 1714134229740 OK +REQUEST request_12 1714134229646 1714134229742 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134229742 +REQUEST request_11 1714134229738 1714134229792 OK +REQUEST request_10 1714134229749 1714134229800 OK +REQUEST request_10 1714134229764 1714134229815 OK +REQUEST request_13 1714134229738 1714134229821 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134229740 1714134229823 OK +REQUEST request_12 1714134229738 1714134229835 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134229836 +REQUEST request_12 1714134229801 1714134229842 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134229740 1714134229851 OK +REQUEST request_11 1714134229801 1714134229852 OK +REQUEST request_11 1714134229815 1714134229866 OK +USER HistoryRecord START 1714134229872 +REQUEST request_13 1714134229801 1714134229884 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134229885 +REQUEST request_0 1714134229872 1714134229890 OK +REQUEST request_12 1714134229815 1714134229897 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134229815 1714134229910 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134229911 +REQUEST request_1 1714134229826 1714134229924 OK +REQUEST request_10 1714134229932 1714134229977 OK +REQUEST request_7 1714134229902 1714134229998 OK +REQUEST request_6 1714134229925 1714134230007 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134229925 1714134230008 OK +USER HistoryRecord START 1714134230009 +REQUEST request_3 1714134229925 1714134230009 OK +REQUEST request_12 1714134229978 1714134230019 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134229925 1714134230020 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134229925 1714134230021 OK +REQUEST request_11 1714134229977 1714134230022 OK +REQUEST main.18e3ef94.css 1714134229925 1714134230023 OK +REQUEST request_0 1714134230009 1714134230027 OK +REQUEST request_13 1714134229978 1714134230060 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134230060 +REQUEST request_9 1714134229999 1714134230082 OK +REQUEST request_10 1714134230055 1714134230100 OK +REQUEST request_8 1714134229998 1714134230109 OK +REQUEST wiq2.ico 1714134229925 1714134230116 OK +REQUEST request_1 1714134230040 1714134230122 OK +REQUEST request_7 1714134230055 1714134230137 OK +REQUEST request_11 1714134230100 1714134230145 OK +REQUEST request_13 1714134230100 1714134230148 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134230086 1714134230187 OK +REQUEST request_12 1714134230100 1714134230196 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134230196 +REQUEST request_3 1714134230122 1714134230205 OK +REQUEST request_2 1714134230123 1714134230206 OK +REQUEST request_6 1714134230123 1714134230207 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134229925 1714134230211 OK +REQUEST request_5 1714134230123 1714134230218 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134230122 1714134230223 OK +REQUEST main.18e3ef94.css 1714134230122 1714134230225 OK +USER HistoryRecord START 1714134230227 +REQUEST request_9 1714134230137 1714134230233 OK +REQUEST request_8 1714134230137 1714134230244 OK +REQUEST request_0 1714134230226 1714134230245 OK +REQUEST request_3 1714134230187 1714134230268 OK +REQUEST request_5 1714134230187 1714134230271 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134230187 1714134230282 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134230187 1714134230283 OK +REQUEST request_4 1714134230187 1714134230284 OK +REQUEST wiq2.ico 1714134230122 1714134230284 OK +REQUEST main.18e3ef94.css 1714134230187 1714134230286 OK +USER HistoryRecord START 1714134230289 +REQUEST request_0 1714134230289 1714134230305 OK +USER HistoryRecord START 1714134230319 +REQUEST request_0 1714134230319 1714134230338 OK +REQUEST main.4a961c5c.js 1714134230122 1714134230367 OK +REQUEST request_1 1714134230273 1714134230370 OK +REQUEST wiq2.ico 1714134230187 1714134230376 OK +USER HistoryRecord START 1714134230412 +REQUEST request_0 1714134230411 1714134230429 OK +REQUEST main.4a961c5c.js 1714134230187 1714134230436 OK +USER HistoryRecord START 1714134230442 +REQUEST request_2 1714134230371 1714134230452 OK +REQUEST request_4 1714134230370 1714134230452 OK +REQUEST main.18e3ef94.css 1714134230370 1714134230454 OK +REQUEST request_0 1714134230442 1714134230460 OK +REQUEST request_5 1714134230371 1714134230465 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134230371 1714134230466 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134230370 1714134230467 OK +REQUEST request_10 1714134230458 1714134230509 OK +REQUEST request_10 1714134230505 1714134230547 OK +REQUEST request_7 1714134230473 1714134230555 OK +REQUEST wiq2.ico 1714134230370 1714134230559 OK +REQUEST request_11 1714134230509 1714134230560 OK +REQUEST request_11 1714134230547 1714134230591 OK +REQUEST request_12 1714134230510 1714134230591 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134230510 1714134230604 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134230604 +REQUEST request_12 1714134230547 1714134230630 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134230552 1714134230635 OK +REQUEST request_13 1714134230547 1714134230643 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134230643 +REQUEST request_9 1714134230556 1714134230652 OK +REQUEST request_8 1714134230556 1714134230660 OK +REQUEST main.4a961c5c.js 1714134230370 1714134230660 OK +REQUEST request_5 1714134230635 1714134230719 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134230635 1714134230719 OK +REQUEST request_4 1714134230635 1714134230720 OK +REQUEST request_3 1714134230635 1714134230731 OK +REQUEST request_2 1714134230635 1714134230732 OK +REQUEST request_6 1714134230636 1714134230734 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134230648 1714134230746 OK +REQUEST request_1 1714134230664 1714134230746 OK +REQUEST request_1 1714134230664 1714134230761 OK +USER HistoryRecord START 1714134230789 +REQUEST wiq2.ico 1714134230635 1714134230796 OK +REQUEST request_0 1714134230789 1714134230806 OK +USER HistoryRecord START 1714134230820 +REQUEST request_5 1714134230747 1714134230828 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134230747 1714134230829 OK +REQUEST request_4 1714134230747 1714134230829 OK +REQUEST request_3 1714134230747 1714134230830 OK +REQUEST request_3 1714134230746 1714134230830 OK +REQUEST main.18e3ef94.css 1714134230746 1714134230832 OK +REQUEST main.18e3ef94.css 1714134230746 1714134230832 OK +REQUEST request_0 1714134230820 1714134230840 OK +REQUEST request_2 1714134230747 1714134230842 OK +REQUEST request_5 1714134230747 1714134230842 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134230747 1714134230843 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134230746 1714134230843 OK +REQUEST request_2 1714134230762 1714134230844 OK +REQUEST request_6 1714134230747 1714134230844 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134230762 1714134230845 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134230762 1714134230846 OK +REQUEST request_5 1714134230762 1714134230858 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134230762 1714134230859 OK +REQUEST main.18e3ef94.css 1714134230762 1714134230862 OK +USER HistoryRecord START 1714134230900 +REQUEST wiq2.ico 1714134230746 1714134230910 OK +REQUEST request_0 1714134230900 1714134230918 OK +REQUEST main.4a961c5c.js 1714134230635 1714134230922 OK +REQUEST wiq2.ico 1714134230746 1714134230939 OK +REQUEST wiq2.ico 1714134230762 1714134230954 OK +REQUEST request_7 1714134230884 1714134230979 OK +REQUEST main.4a961c5c.js 1714134230746 1714134230999 OK +REQUEST main.4a961c5c.js 1714134230746 1714134231002 OK +REQUEST main.4a961c5c.js 1714134230762 1714134231010 OK +REQUEST request_9 1714134230980 1714134231076 OK +REQUEST request_8 1714134230979 1714134231085 OK +REQUEST request_1 1714134230993 1714134231091 OK +REQUEST request_10 1714134231056 1714134231106 OK +USER HistoryRecord START 1714134231136 +REQUEST request_7 1714134231056 1714134231152 OK +REQUEST request_0 1714134231136 1714134231153 OK +REQUEST request_11 1714134231107 1714134231157 OK +REQUEST request_4 1714134231091 1714134231175 OK +REQUEST main.18e3ef94.css 1714134231091 1714134231176 OK +REQUEST request_6 1714134231092 1714134231179 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134231091 1714134231179 OK +REQUEST request_5 1714134231092 1714134231188 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134231091 1714134231189 OK +REQUEST request_12 1714134231107 1714134231190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134231152 1714134231203 OK +REQUEST request_13 1714134231107 1714134231204 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134231204 +REQUEST request_13 1714134231203 1714134231244 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134231152 1714134231249 OK +REQUEST request_11 1714134231203 1714134231256 OK +REQUEST request_8 1714134231152 1714134231265 OK +REQUEST request_1 1714134231200 1714134231285 OK +REQUEST wiq2.ico 1714134231091 1714134231286 OK +REQUEST request_12 1714134231203 1714134231299 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134231300 +REQUEST main.4a961c5c.js 1714134231091 1714134231338 OK +REQUEST request_4 1714134231286 1714134231370 OK +REQUEST request_5 1714134231286 1714134231370 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134231286 1714134231381 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134231286 1714134231381 OK +REQUEST request_3 1714134231285 1714134231384 OK +REQUEST main.18e3ef94.css 1714134231285 1714134231384 OK +USER HistoryRecord START 1714134231419 +REQUEST request_0 1714134231419 1714134231437 OK +REQUEST wiq2.ico 1714134231285 1714134231452 OK +USER HistoryRecord START 1714134231496 +USER HistoryRecord START 1714134231512 +REQUEST request_0 1714134231496 1714134231514 OK +REQUEST request_0 1714134231512 1714134231529 OK +REQUEST request_10 1714134231481 1714134231532 OK +REQUEST main.4a961c5c.js 1714134231285 1714134231536 OK +REQUEST request_13 1714134231533 1714134231577 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134231533 1714134231583 OK +USER HistoryRecord START 1714134231605 +REQUEST request_12 1714134231533 1714134231614 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134231614 +REQUEST request_0 1714134231605 1714134231623 OK +REQUEST request_10 1714134231589 1714134231640 OK +REQUEST request_1 1714134231558 1714134231640 OK +REQUEST request_13 1714134231640 1714134231688 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134231640 1714134231690 OK +REQUEST request_7 1714134231620 1714134231715 OK +REQUEST request_12 1714134231640 1714134231722 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134231723 +REQUEST request_4 1714134231640 1714134231724 OK +REQUEST request_6 1714134231641 1714134231725 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134231640 1714134231726 OK +REQUEST request_3 1714134231640 1714134231736 OK +REQUEST request_5 1714134231641 1714134231736 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134231640 1714134231739 OK +REQUEST request_7 1714134231713 1714134231796 OK +REQUEST request_9 1714134231716 1714134231798 OK +REQUEST wiq2.ico 1714134231640 1714134231802 OK +REQUEST request_7 1714134231729 1714134231813 OK +REQUEST request_8 1714134231716 1714134231825 OK +REQUEST request_9 1714134231797 1714134231879 OK +REQUEST request_10 1714134231852 1714134231904 OK +REQUEST request_9 1714134231814 1714134231911 OK +REQUEST request_8 1714134231797 1714134231913 OK +REQUEST request_8 1714134231814 1714134231925 OK +REQUEST main.4a961c5c.js 1714134231640 1714134231930 OK +REQUEST request_12 1714134231905 1714134231946 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134231905 1714134231956 OK +REQUEST request_13 1714134231905 1714134231987 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134231987 +USER HistoryRecord START 1714134232025 +REQUEST request_0 1714134232025 1714134232043 OK +REQUEST request_7 1714134231963 1714134232045 OK +REQUEST request_1 1714134232041 1714134232124 OK +REQUEST request_9 1714134232046 1714134232143 OK +REQUEST request_8 1714134232046 1714134232145 OK +REQUEST request_10 1714134232119 1714134232169 OK +REQUEST request_1 1714134232103 1714134232199 OK +REQUEST request_5 1714134232125 1714134232208 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134232125 1714134232209 OK +REQUEST request_11 1714134232169 1714134232219 OK +REQUEST request_2 1714134232125 1714134232221 OK +REQUEST request_4 1714134232125 1714134232222 OK +REQUEST main.18e3ef94.css 1714134232125 1714134232222 OK +REQUEST request_6 1714134232125 1714134232223 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134232169 1714134232251 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134232169 1714134232265 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134232265 +REQUEST request_4 1714134232199 1714134232282 OK +REQUEST main.18e3ef94.css 1714134232199 1714134232282 OK +REQUEST request_5 1714134232199 1714134232283 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134232125 1714134232289 OK +REQUEST request_2 1714134232199 1714134232295 OK +REQUEST request_6 1714134232199 1714134232296 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134232199 1714134232296 OK +REQUEST request_10 1714134232259 1714134232302 OK +REQUEST request_1 1714134232243 1714134232324 OK +REQUEST request_11 1714134232302 1714134232345 OK +REQUEST request_13 1714134232302 1714134232384 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134232302 1714134232385 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134232385 +REQUEST wiq2.ico 1714134232199 1714134232389 OK +REQUEST request_5 1714134232325 1714134232408 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134232324 1714134232408 OK +REQUEST main.18e3ef94.css 1714134232324 1714134232408 OK +USER HistoryRecord START 1714134232416 +REQUEST main.4a961c5c.js 1714134232125 1714134232416 OK +REQUEST request_6 1714134232325 1714134232421 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134232324 1714134232421 OK +REQUEST request_2 1714134232325 1714134232422 OK +REQUEST request_0 1714134232416 1714134232436 OK +REQUEST main.4a961c5c.js 1714134232199 1714134232486 OK +REQUEST wiq2.ico 1714134232324 1714134232487 OK +REQUEST main.4a961c5c.js 1714134232324 1714134232618 OK +USER HistoryRecord START 1714134232652 +REQUEST request_7 1714134232573 1714134232669 OK +REQUEST request_0 1714134232652 1714134232671 OK +REQUEST request_10 1714134232668 1714134232712 OK +REQUEST request_1 1714134232650 1714134232734 OK +REQUEST request_7 1714134232652 1714134232736 OK +REQUEST request_7 1714134232668 1714134232750 OK +REQUEST request_11 1714134232712 1714134232757 OK +REQUEST request_9 1714134232669 1714134232764 OK +REQUEST request_1 1714134232684 1714134232768 OK +REQUEST request_8 1714134232669 1714134232775 OK +REQUEST request_12 1714134232712 1714134232796 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134232713 1714134232809 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134232809 +REQUEST request_5 1714134232734 1714134232818 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134232734 1714134232819 OK +REQUEST request_9 1714134232736 1714134232822 OK +REQUEST request_2 1714134232734 1714134232831 OK +REQUEST request_6 1714134232734 1714134232831 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134232734 1714134232832 OK +REQUEST main.18e3ef94.css 1714134232734 1714134232836 OK +REQUEST request_9 1714134232750 1714134232847 OK +REQUEST request_5 1714134232769 1714134232852 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134232769 1714134232852 OK +REQUEST request_3 1714134232769 1714134232853 OK +REQUEST main.18e3ef94.css 1714134232769 1714134232853 OK +REQUEST request_8 1714134232736 1714134232861 OK +REQUEST request_8 1714134232750 1714134232862 OK +REQUEST request_6 1714134232769 1714134232863 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134232769 1714134232866 OK +REQUEST request_1 1714134232794 1714134232877 OK +REQUEST request_1 1714134232794 1714134232890 OK +REQUEST wiq2.ico 1714134232734 1714134232899 OK +REQUEST wiq2.ico 1714134232768 1714134232935 OK +REQUEST request_5 1714134232878 1714134232961 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134232878 1714134232962 OK +REQUEST request_4 1714134232878 1714134232974 OK +REQUEST request_6 1714134232878 1714134232974 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134232891 1714134232975 OK +REQUEST request_4 1714134232891 1714134232976 OK +REQUEST request_2 1714134232878 1714134232976 OK +REQUEST request_5 1714134232891 1714134232977 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134232891 1714134232977 OK +REQUEST main.18e3ef94.css 1714134232878 1714134232978 OK +REQUEST main.4a961c5c.js 1714134232734 1714134232981 OK +REQUEST request_6 1714134232891 1714134232990 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134232891 1714134232993 OK +USER HistoryRecord START 1714134232999 +REQUEST request_0 1714134232999 1714134233018 OK +REQUEST wiq2.ico 1714134232878 1714134233043 OK +REQUEST main.4a961c5c.js 1714134232769 1714134233054 OK +REQUEST wiq2.ico 1714134232891 1714134233081 OK +REQUEST request_1 1714134233046 1714134233131 OK +REQUEST request_7 1714134233061 1714134233143 OK +REQUEST request_10 1714134233091 1714134233143 OK +REQUEST main.4a961c5c.js 1714134232878 1714134233166 OK +REQUEST main.4a961c5c.js 1714134232891 1714134233181 OK +REQUEST request_11 1714134233143 1714134233193 OK +REQUEST request_7 1714134233107 1714134233203 OK +REQUEST request_2 1714134233132 1714134233214 OK +USER HistoryRecord START 1714134233216 +REQUEST request_5 1714134233132 1714134233217 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134233131 1714134233217 OK +REQUEST request_9 1714134233143 1714134233225 OK +REQUEST request_12 1714134233143 1714134233226 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134233132 1714134233228 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134233132 1714134233229 OK +USER HistoryRecord START 1714134233231 +REQUEST main.18e3ef94.css 1714134233131 1714134233232 OK +REQUEST request_0 1714134233216 1714134233235 OK +REQUEST request_13 1714134233143 1714134233240 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134233240 +REQUEST request_8 1714134233143 1714134233247 OK +REQUEST request_0 1714134233231 1714134233249 OK +REQUEST request_9 1714134233203 1714134233288 OK +REQUEST wiq2.ico 1714134233131 1714134233297 OK +REQUEST request_7 1714134233216 1714134233311 OK +REQUEST request_8 1714134233203 1714134233313 OK +REQUEST request_10 1714134233279 1714134233330 OK +REQUEST request_12 1714134233331 1714134233372 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134233331 1714134233382 OK +REQUEST request_9 1714134233312 1714134233409 OK +REQUEST request_1 1714134233326 1714134233409 OK +REQUEST request_13 1714134233331 1714134233413 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134233413 +REQUEST request_8 1714134233312 1714134233418 OK +REQUEST main.4a961c5c.js 1714134233131 1714134233423 OK +REQUEST request_6 1714134233410 1714134233492 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134233409 1714134233493 OK +REQUEST request_3 1714134233409 1714134233494 OK +REQUEST request_4 1714134233410 1714134233506 OK +REQUEST request_5 1714134233410 1714134233506 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134233410 1714134233506 OK +REQUEST request_1 1714134233435 1714134233519 OK +REQUEST wiq2.ico 1714134233409 1714134233572 OK +REQUEST request_1 1714134233512 1714134233595 OK +REQUEST request_6 1714134233520 1714134233602 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134233520 1714134233603 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134233520 1714134233615 OK +REQUEST main.18e3ef94.css 1714134233520 1714134233617 OK +REQUEST request_3 1714134233520 1714134233617 OK +REQUEST request_4 1714134233520 1714134233618 OK +REQUEST request_1 1714134233543 1714134233626 OK +REQUEST request_6 1714134233596 1714134233679 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134233595 1714134233679 OK +REQUEST request_3 1714134233595 1714134233679 OK +REQUEST wiq2.ico 1714134233520 1714134233684 OK +REQUEST request_1 1714134233589 1714134233685 OK +REQUEST request_2 1714134233596 1714134233693 OK +REQUEST request_5 1714134233596 1714134233693 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134233596 1714134233693 OK +REQUEST main.4a961c5c.js 1714134233409 1714134233696 OK +REQUEST request_1 1714134233605 1714134233701 OK +REQUEST main.18e3ef94.css 1714134233627 1714134233709 OK +REQUEST request_6 1714134233627 1714134233710 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134233714 +REQUEST request_2 1714134233627 1714134233723 OK +REQUEST request_5 1714134233627 1714134233724 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134233627 1714134233730 OK +REQUEST request_3 1714134233627 1714134233731 OK +REQUEST request_0 1714134233714 1714134233732 OK +REQUEST wiq2.ico 1714134233595 1714134233759 OK +REQUEST request_2 1714134233686 1714134233768 OK +REQUEST request_4 1714134233686 1714134233768 OK +REQUEST request_3 1714134233686 1714134233769 OK +REQUEST request_6 1714134233686 1714134233781 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134233686 1714134233781 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134233702 1714134233784 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134233686 1714134233784 OK +REQUEST request_4 1714134233702 1714134233786 OK +REQUEST wiq2.ico 1714134233627 1714134233791 OK +REQUEST request_2 1714134233702 1714134233798 OK +REQUEST request_6 1714134233702 1714134233798 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134233701 1714134233800 OK +REQUEST main.18e3ef94.css 1714134233701 1714134233800 OK +REQUEST main.4a961c5c.js 1714134233520 1714134233807 OK +REQUEST wiq2.ico 1714134233685 1714134233876 OK +REQUEST request_10 1714134233828 1714134233878 OK +REQUEST main.4a961c5c.js 1714134233595 1714134233883 OK +REQUEST main.4a961c5c.js 1714134233627 1714134233892 OK +REQUEST wiq2.ico 1714134233701 1714134233894 OK +REQUEST request_12 1714134233879 1714134233920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134233879 1714134233929 OK +REQUEST main.4a961c5c.js 1714134233685 1714134233935 OK +REQUEST main.4a961c5c.js 1714134233701 1714134233951 OK +REQUEST request_10 1714134233917 1714134233961 OK +REQUEST request_13 1714134233879 1714134233961 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134233961 +REQUEST request_10 1714134233932 1714134233976 OK +USER HistoryRecord START 1714134233979 +REQUEST request_7 1714134233885 1714134233981 OK +REQUEST request_1 1714134233901 1714134233984 OK +REQUEST request_0 1714134233979 1714134233995 OK +REQUEST request_11 1714134233961 1714134234005 OK +REQUEST request_11 1714134233976 1714134234019 OK +REQUEST request_13 1714134233976 1714134234023 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134233961 1714134234043 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134233961 1714134234056 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134234057 +REQUEST request_12 1714134233976 1714134234059 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134234059 +REQUEST request_3 1714134233985 1714134234067 OK +REQUEST request_5 1714134233985 1714134234067 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134233981 1714134234078 OK +REQUEST request_2 1714134233985 1714134234081 OK +REQUEST request_6 1714134233985 1714134234083 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134233985 1714134234084 OK +REQUEST main.18e3ef94.css 1714134233985 1714134234087 OK +REQUEST request_8 1714134233981 1714134234090 OK +REQUEST request_1 1714134234041 1714134234139 OK +REQUEST wiq2.ico 1714134233984 1714134234147 OK +REQUEST request_7 1714134234056 1714134234151 OK +REQUEST request_7 1714134234071 1714134234154 OK +REQUEST request_10 1714134234149 1714134234193 OK +REQUEST request_2 1714134234139 1714134234222 OK +REQUEST request_5 1714134234139 1714134234222 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134234139 1714134234222 OK +REQUEST request_9 1714134234151 1714134234232 OK +REQUEST main.4a961c5c.js 1714134233985 1714134234234 OK +REQUEST request_6 1714134234139 1714134234236 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134234193 1714134234237 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134234139 1714134234240 OK +REQUEST request_9 1714134234154 1714134234242 OK +REQUEST request_11 1714134234193 1714134234244 OK +REQUEST main.18e3ef94.css 1714134234139 1714134234244 OK +REQUEST request_8 1714134234154 1714134234265 OK +REQUEST request_13 1714134234193 1714134234288 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134234289 +REQUEST request_8 1714134234151 1714134234292 OK +REQUEST wiq2.ico 1714134234139 1714134234331 OK +REQUEST request_1 1714134234259 1714134234355 OK +REQUEST request_1 1714134234306 1714134234390 OK +REQUEST request_7 1714134234306 1714134234403 OK +REQUEST request_1 1714134234353 1714134234437 OK +REQUEST request_5 1714134234356 1714134234438 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134234139 1714134234439 OK +REQUEST request_4 1714134234356 1714134234439 OK +REQUEST main.18e3ef94.css 1714134234356 1714134234440 OK +REQUEST request_2 1714134234356 1714134234452 OK +REQUEST request_3 1714134234356 1714134234453 OK +REQUEST request_6 1714134234356 1714134234454 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134234390 1714134234473 OK +REQUEST request_5 1714134234391 1714134234474 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134234390 1714134234482 OK +REQUEST request_2 1714134234391 1714134234488 OK +REQUEST request_6 1714134234391 1714134234488 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134234391 1714134234492 OK +REQUEST request_9 1714134234403 1714134234501 OK +REQUEST request_1 1714134234433 1714134234516 OK +REQUEST request_8 1714134234403 1714134234520 OK +REQUEST request_5 1714134234440 1714134234523 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134234440 1714134234538 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134234439 1714134234538 OK +REQUEST request_3 1714134234439 1714134234539 OK +REQUEST main.18e3ef94.css 1714134234439 1714134234539 OK +REQUEST request_4 1714134234439 1714134234539 OK +REQUEST wiq2.ico 1714134234356 1714134234545 OK +REQUEST request_1 1714134234465 1714134234550 OK +REQUEST wiq2.ico 1714134234390 1714134234554 OK +REQUEST request_2 1714134234517 1714134234598 OK +REQUEST request_6 1714134234517 1714134234600 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134234438 1714134234607 OK +REQUEST main.18e3ef94.css 1714134234517 1714134234608 OK +REQUEST request_3 1714134234517 1714134234613 OK +REQUEST request_4 1714134234517 1714134234613 OK +REQUEST request_5 1714134234517 1714134234614 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134234551 1714134234634 OK +REQUEST main.18e3ef94.css 1714134234551 1714134234634 OK +REQUEST request_5 1714134234551 1714134234634 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134234390 1714134234636 OK +REQUEST request_7 1714134234543 1714134234640 OK +REQUEST main.4a961c5c.js 1714134234356 1714134234642 OK +REQUEST request_3 1714134234551 1714134234644 OK +REQUEST request_6 1714134234551 1714134234647 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134234551 1714134234647 OK +REQUEST wiq2.ico 1714134234517 1714134234678 OK +USER HistoryRecord START 1714134234685 +REQUEST request_0 1714134234684 1714134234701 OK +REQUEST wiq2.ico 1714134234551 1714134234714 OK +REQUEST request_9 1714134234640 1714134234725 OK +REQUEST main.4a961c5c.js 1714134234438 1714134234728 OK +REQUEST request_8 1714134234640 1714134234748 OK +REQUEST main.4a961c5c.js 1714134234517 1714134234804 OK +USER HistoryRecord START 1714134234812 +REQUEST request_0 1714134234812 1714134234829 OK +REQUEST request_10 1714134234780 1714134234830 OK +REQUEST main.4a961c5c.js 1714134234551 1714134234836 OK +REQUEST request_11 1714134234831 1714134234881 OK +REQUEST request_1 1714134234812 1714134234895 OK +REQUEST request_12 1714134234831 1714134234915 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134234873 1714134234917 OK +REQUEST request_10 1714134234873 1714134234920 OK +REQUEST request_13 1714134234831 1714134234926 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134234926 +REQUEST request_1 1714134234843 1714134234939 OK +REQUEST request_12 1714134234918 1714134234959 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134234918 1714134234961 OK +REQUEST request_11 1714134234920 1714134234964 OK +REQUEST request_2 1714134234896 1714134234978 OK +REQUEST request_6 1714134234896 1714134234979 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134234895 1714134234979 OK +REQUEST request_5 1714134234896 1714134234991 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134234895 1714134234994 OK +REQUEST main.18e3ef94.css 1714134234895 1714134234995 OK +REQUEST request_12 1714134234920 1714134235002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134234921 1714134235003 OK +REQUEST request_13 1714134234920 1714134235003 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134235003 +REQUEST request_13 1714134234918 1714134235015 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134235015 +REQUEST request_2 1714134234940 1714134235023 OK +REQUEST request_4 1714134234940 1714134235034 OK +REQUEST request_5 1714134234940 1714134235034 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134234940 1714134235036 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134234939 1714134235036 OK +REQUEST request_3 1714134234939 1714134235036 OK +REQUEST wiq2.ico 1714134234895 1714134235058 OK +REQUEST request_2 1714134235003 1714134235087 OK +REQUEST request_6 1714134235003 1714134235087 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134235003 1714134235088 OK +REQUEST request_5 1714134235003 1714134235099 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134235003 1714134235099 OK +REQUEST main.18e3ef94.css 1714134235003 1714134235101 OK +REQUEST wiq2.ico 1714134234939 1714134235130 OK +REQUEST main.4a961c5c.js 1714134234895 1714134235145 OK +REQUEST wiq2.ico 1714134235003 1714134235168 OK +USER HistoryRecord START 1714134235169 +REQUEST request_0 1714134235169 1714134235186 OK +USER HistoryRecord START 1714134235200 +USER HistoryRecord START 1714134235216 +REQUEST request_0 1714134235199 1714134235217 OK +REQUEST main.4a961c5c.js 1714134234939 1714134235231 OK +REQUEST request_0 1714134235216 1714134235234 OK +REQUEST main.4a961c5c.js 1714134235003 1714134235251 OK +REQUEST request_1 1714134235169 1714134235265 OK +USER HistoryRecord START 1714134235277 +REQUEST request_0 1714134235277 1714134235295 OK +REQUEST request_10 1714134235262 1714134235305 OK +REQUEST request_6 1714134235266 1714134235348 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134235266 1714134235349 OK +REQUEST request_5 1714134235266 1714134235349 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134235306 1714134235352 OK +REQUEST main.18e3ef94.css 1714134235266 1714134235352 OK +REQUEST request_13 1714134235306 1714134235353 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134235266 1714134235363 OK +REQUEST request_2 1714134235266 1714134235363 OK +REQUEST request_10 1714134235324 1714134235374 OK +REQUEST request_12 1714134235306 1714134235388 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134235388 +REQUEST request_13 1714134235374 1714134235423 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134235374 1714134235425 OK +REQUEST request_7 1714134235339 1714134235437 OK +REQUEST wiq2.ico 1714134235265 1714134235457 OK +REQUEST request_12 1714134235374 1714134235458 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134235458 +REQUEST request_10 1714134235419 1714134235469 OK +REQUEST request_13 1714134235470 1714134235511 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134235266 1714134235518 OK +REQUEST request_9 1714134235437 1714134235521 OK +REQUEST request_11 1714134235469 1714134235521 OK +REQUEST request_8 1714134235437 1714134235544 OK +REQUEST request_1 1714134235451 1714134235547 OK +REQUEST request_12 1714134235469 1714134235552 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134235552 +USER HistoryRecord START 1714134235558 +REQUEST request_0 1714134235557 1714134235576 OK +REQUEST request_1 1714134235527 1714134235611 OK +REQUEST request_1 1714134235542 1714134235626 OK +REQUEST request_6 1714134235548 1714134235631 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134235548 1714134235631 OK +REQUEST request_4 1714134235548 1714134235632 OK +REQUEST request_3 1714134235548 1714134235644 OK +REQUEST request_5 1714134235548 1714134235645 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134235548 1714134235648 OK +REQUEST request_5 1714134235613 1714134235695 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134235613 1714134235696 OK +REQUEST request_3 1714134235612 1714134235710 OK +REQUEST request_2 1714134235613 1714134235710 OK +REQUEST request_6 1714134235613 1714134235713 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134235627 1714134235713 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134235627 1714134235714 OK +REQUEST main.18e3ef94.css 1714134235612 1714134235716 OK +REQUEST request_1 1714134235636 1714134235723 OK +REQUEST request_2 1714134235627 1714134235724 OK +REQUEST request_6 1714134235627 1714134235726 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134235627 1714134235726 OK +REQUEST main.18e3ef94.css 1714134235627 1714134235728 OK +REQUEST wiq2.ico 1714134235548 1714134235738 OK +REQUEST wiq2.ico 1714134235612 1714134235778 OK +REQUEST wiq2.ico 1714134235627 1714134235791 OK +REQUEST main.4a961c5c.js 1714134235548 1714134235792 OK +REQUEST request_2 1714134235723 1714134235805 OK +REQUEST request_6 1714134235723 1714134235806 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134235723 1714134235807 OK +USER HistoryRecord START 1714134235807 +REQUEST request_5 1714134235723 1714134235818 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134235807 1714134235825 OK +REQUEST request_4 1714134235723 1714134235829 OK +REQUEST main.18e3ef94.css 1714134235723 1714134235831 OK +REQUEST main.4a961c5c.js 1714134235612 1714134235860 OK +REQUEST main.4a961c5c.js 1714134235627 1714134235882 OK +REQUEST wiq2.ico 1714134235723 1714134235887 OK +REQUEST request_7 1714134235853 1714134235936 OK +REQUEST request_7 1714134235869 1714134235951 OK +REQUEST main.4a961c5c.js 1714134235723 1714134235970 OK +REQUEST request_9 1714134235936 1714134236034 OK +REQUEST request_8 1714134235936 1714134236038 OK +REQUEST request_9 1714134235951 1714134236047 OK +REQUEST request_8 1714134235951 1714134236053 OK +USER HistoryRecord START 1714134236120 +REQUEST request_0 1714134236120 1714134236139 OK +REQUEST request_1 1714134236057 1714134236141 OK +REQUEST request_7 1714134236073 1714134236155 OK +REQUEST request_10 1714134236105 1714134236156 OK +USER HistoryRecord START 1714134236197 +USER HistoryRecord START 1714134236198 +REQUEST request_13 1714134236156 1714134236204 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134236156 1714134236208 OK +REQUEST request_0 1714134236198 1714134236216 OK +REQUEST request_0 1714134236197 1714134236216 OK +REQUEST request_3 1714134236142 1714134236224 OK +REQUEST request_5 1714134236142 1714134236226 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134236142 1714134236227 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134236142 1714134236233 OK +REQUEST request_2 1714134236142 1714134236238 OK +REQUEST request_12 1714134236156 1714134236239 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134236239 +REQUEST request_4 1714134236142 1714134236241 OK +REQUEST request_9 1714134236155 1714134236251 OK +REQUEST request_8 1714134236155 1714134236256 OK +REQUEST request_7 1714134236166 1714134236261 OK +REQUEST wiq2.ico 1714134236142 1714134236307 OK +REQUEST request_10 1714134236275 1714134236319 OK +USER HistoryRecord START 1714134236323 +REQUEST request_0 1714134236323 1714134236342 OK +REQUEST request_10 1714134236307 1714134236356 OK +REQUEST request_9 1714134236262 1714134236357 OK +REQUEST request_12 1714134236319 1714134236360 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134236319 1714134236364 OK +REQUEST request_8 1714134236261 1714134236372 OK +REQUEST request_7 1714134236291 1714134236388 OK +REQUEST main.4a961c5c.js 1714134236142 1714134236388 OK +REQUEST request_11 1714134236357 1714134236408 OK +REQUEST request_13 1714134236319 1714134236416 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134236416 +REQUEST request_13 1714134236357 1714134236441 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134236449 +REQUEST request_12 1714134236357 1714134236454 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134236454 +REQUEST request_0 1714134236449 1714134236467 OK +REQUEST request_9 1714134236388 1714134236471 OK +REQUEST request_8 1714134236388 1714134236495 OK +REQUEST request_7 1714134236449 1714134236546 OK +REQUEST request_1 1714134236449 1714134236546 OK +REQUEST request_10 1714134236526 1714134236579 OK +REQUEST request_12 1714134236579 1714134236621 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134236546 1714134236630 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134236546 1714134236631 OK +REQUEST request_11 1714134236579 1714134236633 OK +REQUEST request_2 1714134236546 1714134236643 OK +REQUEST request_6 1714134236547 1714134236644 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134236546 1714134236645 OK +REQUEST request_3 1714134236546 1714134236646 OK +REQUEST main.18e3ef94.css 1714134236546 1714134236647 OK +REQUEST request_8 1714134236546 1714134236659 OK +REQUEST request_13 1714134236579 1714134236676 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134236676 +REQUEST wiq2.ico 1714134236546 1714134236736 OK +REQUEST request_1 1714134236680 1714134236764 OK +REQUEST main.4a961c5c.js 1714134236546 1714134236797 OK +REQUEST request_10 1714134236759 1714134236810 OK +REQUEST request_6 1714134236764 1714134236846 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134236764 1714134236847 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134236764 1714134236848 OK +REQUEST request_12 1714134236810 1714134236851 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134236764 1714134236860 OK +REQUEST request_11 1714134236810 1714134236860 OK +REQUEST request_3 1714134236764 1714134236862 OK +REQUEST main.18e3ef94.css 1714134236764 1714134236862 OK +REQUEST request_13 1714134236810 1714134236906 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134236906 +REQUEST wiq2.ico 1714134236764 1714134236931 OK +USER HistoryRecord START 1714134236962 +REQUEST request_0 1714134236962 1714134236979 OK +REQUEST main.4a961c5c.js 1714134236764 1714134237056 OK +USER HistoryRecord START 1714134237087 +USER HistoryRecord START 1714134237103 +REQUEST request_0 1714134237087 1714134237106 OK +REQUEST request_1 1714134237025 1714134237109 OK +REQUEST request_0 1714134237102 1714134237122 OK +USER HistoryRecord START 1714134237164 +REQUEST request_0 1714134237164 1714134237182 OK +REQUEST request_5 1714134237111 1714134237194 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134237110 1714134237196 OK +REQUEST request_7 1714134237111 1714134237206 OK +REQUEST request_2 1714134237111 1714134237209 OK +REQUEST request_4 1714134237111 1714134237210 OK +REQUEST request_6 1714134237112 1714134237210 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134237110 1714134237212 OK +REQUEST wiq2.ico 1714134237110 1714134237276 OK +REQUEST request_9 1714134237207 1714134237302 OK +REQUEST request_7 1714134237211 1714134237306 OK +USER HistoryRecord START 1714134237306 +REQUEST request_8 1714134237206 1714134237317 OK +REQUEST request_0 1714134237306 1714134237325 OK +REQUEST request_1 1714134237243 1714134237340 OK +REQUEST request_1 1714134237259 1714134237341 OK +REQUEST request_9 1714134237306 1714134237391 OK +REQUEST main.4a961c5c.js 1714134237110 1714134237399 OK +REQUEST request_8 1714134237306 1714134237412 OK +REQUEST request_4 1714134237341 1714134237424 OK +REQUEST request_5 1714134237341 1714134237424 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134237341 1714134237426 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134237341 1714134237427 OK +REQUEST request_2 1714134237340 1714134237436 OK +REQUEST request_6 1714134237341 1714134237436 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134237341 1714134237437 OK +REQUEST request_3 1714134237340 1714134237437 OK +REQUEST request_4 1714134237340 1714134237438 OK +REQUEST request_2 1714134237341 1714134237438 OK +REQUEST request_6 1714134237341 1714134237438 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134237340 1714134237440 OK +REQUEST wiq2.ico 1714134237341 1714134237504 OK +REQUEST wiq2.ico 1714134237340 1714134237532 OK +REQUEST main.4a961c5c.js 1714134237340 1714134237590 OK +REQUEST request_10 1714134237557 1714134237609 OK +REQUEST main.4a961c5c.js 1714134237341 1714134237628 OK +REQUEST request_11 1714134237609 1714134237660 OK +REQUEST request_12 1714134237609 1714134237693 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134237697 +REQUEST request_13 1714134237609 1714134237706 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134237706 +REQUEST request_0 1714134237697 1714134237715 OK +USER HistoryRecord START 1714134237791 +REQUEST request_7 1714134237712 1714134237797 OK +REQUEST request_0 1714134237790 1714134237810 OK +REQUEST request_1 1714134237743 1714134237840 OK +REQUEST request_7 1714134237758 1714134237853 OK +REQUEST request_9 1714134237797 1714134237893 OK +REQUEST request_8 1714134237797 1714134237899 OK +REQUEST request_4 1714134237840 1714134237923 OK +REQUEST request_3 1714134237840 1714134237924 OK +REQUEST request_2 1714134237841 1714134237925 OK +REQUEST request_5 1714134237841 1714134237925 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134237841 1714134237937 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134237840 1714134237939 OK +REQUEST request_9 1714134237854 1714134237953 OK +REQUEST request_8 1714134237854 1714134237964 OK +REQUEST wiq2.ico 1714134237840 1714134238030 OK +REQUEST request_10 1714134238039 1714134238082 OK +REQUEST request_10 1714134238054 1714134238097 OK +REQUEST request_1 1714134238008 1714134238105 OK +REQUEST request_11 1714134238083 1714134238126 OK +REQUEST main.4a961c5c.js 1714134237840 1714134238130 OK +REQUEST request_12 1714134238098 1714134238140 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134238098 1714134238142 OK +REQUEST request_12 1714134238083 1714134238164 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134238085 1714134238167 OK +REQUEST request_13 1714134238083 1714134238177 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134238177 +REQUEST request_13 1714134238098 1714134238179 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134238179 +REQUEST request_5 1714134238106 1714134238187 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134238106 1714134238189 OK +REQUEST request_3 1714134238106 1714134238190 OK +REQUEST request_4 1714134238106 1714134238202 OK +REQUEST request_6 1714134238106 1714134238203 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134238106 1714134238204 OK +REQUEST request_9 1714134238167 1714134238249 OK +REQUEST request_8 1714134238167 1714134238269 OK +REQUEST wiq2.ico 1714134238106 1714134238296 OK +REQUEST request_10 1714134238272 1714134238316 OK +REQUEST request_7 1714134238256 1714134238352 OK +REQUEST request_11 1714134238316 1714134238359 OK +REQUEST request_13 1714134238316 1714134238364 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134238365 +REQUEST request_0 1714134238365 1714134238383 OK +REQUEST main.4a961c5c.js 1714134238106 1714134238402 OK +REQUEST request_12 1714134238316 1714134238413 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134238414 +REQUEST request_10 1714134238380 1714134238430 OK +REQUEST request_7 1714134238349 1714134238433 OK +REQUEST request_9 1714134238352 1714134238448 OK +REQUEST request_8 1714134238352 1714134238458 OK +REQUEST request_13 1714134238431 1714134238472 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134238430 1714134238481 OK +REQUEST request_12 1714134238430 1714134238525 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134238526 +REQUEST request_9 1714134238433 1714134238529 OK +REQUEST request_8 1714134238433 1714134238533 OK +REQUEST request_10 1714134238503 1714134238553 OK +USER HistoryRecord START 1714134238565 +REQUEST request_0 1714134238565 1714134238582 OK +REQUEST request_12 1714134238554 1714134238595 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134238554 1714134238604 OK +REQUEST request_13 1714134238554 1714134238636 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134238636 +USER HistoryRecord START 1714134238688 +REQUEST request_0 1714134238688 1714134238707 OK +REQUEST request_10 1714134238673 1714134238722 OK +REQUEST request_12 1714134238722 1714134238764 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134238722 1714134238773 OK +REQUEST request_1 1714134238704 1714134238801 OK +REQUEST request_13 1714134238722 1714134238819 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134238819 +REQUEST request_2 1714134238802 1714134238885 OK +REQUEST request_3 1714134238802 1714134238885 OK +REQUEST request_7 1714134238812 1714134238893 OK +REQUEST request_4 1714134238802 1714134238898 OK +REQUEST request_5 1714134238802 1714134238898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134238802 1714134238898 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134238802 1714134238900 OK +USER HistoryRecord START 1714134238920 +REQUEST request_1 1714134238843 1714134238926 OK +REQUEST request_0 1714134238920 1714134238939 OK +REQUEST request_9 1714134238893 1714134238990 OK +USER HistoryRecord START 1714134238993 +REQUEST wiq2.ico 1714134238802 1714134238993 OK +REQUEST request_8 1714134238893 1714134238996 OK +REQUEST main.18e3ef94.css 1714134238926 1714134239010 OK +REQUEST request_5 1714134238927 1714134239011 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134238993 1714134239011 OK +REQUEST request_6 1714134238927 1714134239022 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134238926 1714134239023 OK +REQUEST request_3 1714134238926 1714134239024 OK +REQUEST request_4 1714134238926 1714134239025 OK +REQUEST main.4a961c5c.js 1714134238802 1714134239052 OK +REQUEST wiq2.ico 1714134238926 1714134239091 OK +REQUEST request_7 1714134238998 1714134239095 OK +USER HistoryRecord START 1714134239172 +REQUEST request_9 1714134239095 1714134239191 OK +REQUEST request_0 1714134239172 1714134239191 OK +REQUEST request_8 1714134239095 1714134239201 OK +USER HistoryRecord START 1714134239202 +REQUEST main.4a961c5c.js 1714134238926 1714134239215 OK +REQUEST request_0 1714134239202 1714134239221 OK +USER HistoryRecord START 1714134239233 +REQUEST request_0 1714134239233 1714134239253 OK +REQUEST request_7 1714134239157 1714134239253 OK +REQUEST request_1 1714134239187 1714134239269 OK +REQUEST request_1 1714134239233 1714134239317 OK +REQUEST request_9 1714134239253 1714134239337 OK +REQUEST request_1 1714134239249 1714134239346 OK +REQUEST request_5 1714134239270 1714134239354 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134239270 1714134239354 OK +REQUEST main.18e3ef94.css 1714134239270 1714134239355 OK +REQUEST request_3 1714134239270 1714134239355 OK +REQUEST request_8 1714134239253 1714134239364 OK +REQUEST request_4 1714134239270 1714134239365 OK +REQUEST request_6 1714134239270 1714134239367 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134239318 1714134239369 OK +USER HistoryRecord START 1714134239388 +REQUEST request_1 1714134239297 1714134239392 OK +REQUEST request_5 1714134239318 1714134239400 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134239318 1714134239401 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134239318 1714134239401 OK +REQUEST request_2 1714134239318 1714134239402 OK +REQUEST main.18e3ef94.css 1714134239318 1714134239402 OK +REQUEST request_0 1714134239388 1714134239405 OK +REQUEST request_12 1714134239369 1714134239410 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134239318 1714134239415 OK +REQUEST request_11 1714134239369 1714134239418 OK +USER HistoryRecord START 1714134239422 +REQUEST request_5 1714134239347 1714134239430 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134239347 1714134239430 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134239346 1714134239433 OK +REQUEST wiq2.ico 1714134239270 1714134239433 OK +REQUEST main.18e3ef94.css 1714134239346 1714134239433 OK +REQUEST request_0 1714134239421 1714134239439 OK +REQUEST request_3 1714134239346 1714134239442 OK +REQUEST request_2 1714134239346 1714134239444 OK +REQUEST request_13 1714134239369 1714134239465 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134239465 +REQUEST request_10 1714134239421 1714134239472 OK +REQUEST request_4 1714134239393 1714134239475 OK +REQUEST request_2 1714134239393 1714134239475 OK +REQUEST request_6 1714134239393 1714134239475 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134239393 1714134239478 OK +REQUEST wiq2.ico 1714134239318 1714134239482 OK +REQUEST request_3 1714134239393 1714134239487 OK +REQUEST request_5 1714134239393 1714134239489 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134239472 1714134239513 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134239472 1714134239522 OK +REQUEST wiq2.ico 1714134239346 1714134239538 OK +REQUEST main.4a961c5c.js 1714134239270 1714134239561 OK +USER HistoryRecord START 1714134239563 +REQUEST request_7 1714134239484 1714134239567 OK +REQUEST request_13 1714134239472 1714134239568 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134239569 +REQUEST request_0 1714134239563 1714134239579 OK +REQUEST wiq2.ico 1714134239393 1714134239582 OK +REQUEST main.4a961c5c.js 1714134239346 1714134239601 OK +REQUEST main.4a961c5c.js 1714134239318 1714134239610 OK +REQUEST request_1 1714134239579 1714134239661 OK +REQUEST request_9 1714134239567 1714134239664 OK +REQUEST request_8 1714134239567 1714134239669 OK +REQUEST main.4a961c5c.js 1714134239393 1714134239682 OK +REQUEST request_5 1714134239662 1714134239744 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134239662 1714134239745 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134239661 1714134239745 OK +REQUEST request_2 1714134239662 1714134239757 OK +REQUEST request_4 1714134239662 1714134239759 OK +REQUEST main.18e3ef94.css 1714134239661 1714134239759 OK +REQUEST request_7 1714134239719 1714134239801 OK +REQUEST wiq2.ico 1714134239661 1714134239824 OK +REQUEST request_7 1714134239766 1714134239863 OK +REQUEST request_9 1714134239802 1714134239899 OK +REQUEST request_8 1714134239802 1714134239901 OK +REQUEST main.4a961c5c.js 1714134239661 1714134239907 OK +REQUEST request_1 1714134239827 1714134239910 OK +REQUEST request_10 1714134239905 1714134239950 OK +REQUEST request_9 1714134239864 1714134239958 OK +REQUEST request_8 1714134239864 1714134239971 OK +REQUEST request_13 1714134239950 1714134239992 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134239910 1714134239992 OK +REQUEST request_5 1714134239910 1714134239993 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134239910 1714134239995 OK +REQUEST request_11 1714134239950 1714134239995 OK +REQUEST request_6 1714134239910 1714134240006 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134239910 1714134240006 OK +REQUEST main.18e3ef94.css 1714134239910 1714134240009 OK +REQUEST request_10 1714134239966 1714134240016 OK +REQUEST request_7 1714134239935 1714134240032 OK +REQUEST request_12 1714134239950 1714134240032 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134240032 +REQUEST request_13 1714134240016 1714134240064 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134240016 1714134240066 OK +REQUEST wiq2.ico 1714134239910 1714134240073 OK +USER HistoryRecord START 1714134240105 +REQUEST request_12 1714134240016 1714134240111 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134240112 +REQUEST request_0 1714134240105 1714134240124 OK +REQUEST request_9 1714134240032 1714134240128 OK +REQUEST request_8 1714134240032 1714134240141 OK +REQUEST main.4a961c5c.js 1714134239910 1714134240156 OK +REQUEST request_1 1714134240152 1714134240235 OK +USER HistoryRecord START 1714134240306 +REQUEST request_1 1714134240229 1714134240312 OK +REQUEST request_3 1714134240236 1714134240319 OK +REQUEST request_6 1714134240236 1714134240320 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134240275 1714134240320 OK +REQUEST main.18e3ef94.css 1714134240236 1714134240320 OK +REQUEST request_0 1714134240306 1714134240324 OK +REQUEST request_1 1714134240229 1714134240328 OK +REQUEST request_5 1714134240236 1714134240331 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134240236 1714134240331 OK +REQUEST request_4 1714134240236 1714134240332 OK +REQUEST request_13 1714134240320 1714134240361 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134240320 1714134240364 OK +USER HistoryRecord START 1714134240384 +REQUEST request_4 1714134240312 1714134240395 OK +REQUEST wiq2.ico 1714134240235 1714134240397 OK +REQUEST main.18e3ef94.css 1714134240312 1714134240397 OK +REQUEST request_0 1714134240384 1714134240402 OK +REQUEST request_6 1714134240312 1714134240408 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134240312 1714134240408 OK +REQUEST request_2 1714134240312 1714134240408 OK +REQUEST request_5 1714134240312 1714134240410 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134240328 1714134240412 OK +REQUEST request_12 1714134240320 1714134240416 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134240417 +REQUEST request_6 1714134240329 1714134240425 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134240328 1714134240425 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134240328 1714134240427 OK +REQUEST request_4 1714134240328 1714134240431 OK +USER HistoryRecord START 1714134240440 +REQUEST main.18e3ef94.css 1714134240328 1714134240441 OK +REQUEST request_1 1714134240348 1714134240443 OK +REQUEST request_0 1714134240440 1714134240459 OK +REQUEST wiq2.ico 1714134240312 1714134240476 OK +REQUEST request_10 1714134240462 1714134240512 OK +REQUEST wiq2.ico 1714134240328 1714134240522 OK +REQUEST main.4a961c5c.js 1714134240236 1714134240527 OK +REQUEST request_4 1714134240443 1714134240527 OK +REQUEST main.18e3ef94.css 1714134240443 1714134240527 OK +REQUEST request_6 1714134240444 1714134240529 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134240444 1714134240539 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134240443 1714134240540 OK +REQUEST request_2 1714134240443 1714134240540 OK +REQUEST request_1 1714134240478 1714134240561 OK +REQUEST request_11 1714134240512 1714134240563 OK +REQUEST main.4a961c5c.js 1714134240328 1714134240580 OK +REQUEST request_10 1714134240542 1714134240584 OK +REQUEST request_7 1714134240510 1714134240593 OK +REQUEST request_12 1714134240513 1714134240596 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134240312 1714134240601 OK +REQUEST request_7 1714134240526 1714134240608 OK +REQUEST wiq2.ico 1714134240443 1714134240609 OK +REQUEST request_13 1714134240513 1714134240610 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134240610 +REQUEST request_13 1714134240585 1714134240626 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134240584 1714134240628 OK +REQUEST request_6 1714134240561 1714134240643 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134240561 1714134240644 OK +REQUEST main.18e3ef94.css 1714134240561 1714134240645 OK +REQUEST request_5 1714134240561 1714134240658 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134240561 1714134240658 OK +REQUEST request_4 1714134240561 1714134240658 OK +REQUEST request_12 1714134240585 1714134240668 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134240668 +REQUEST request_9 1714134240594 1714134240678 OK +REQUEST request_7 1714134240588 1714134240681 OK +REQUEST request_7 1714134240604 1714134240684 OK +REQUEST request_9 1714134240608 1714134240692 OK +REQUEST main.4a961c5c.js 1714134240443 1714134240695 OK +REQUEST request_8 1714134240593 1714134240701 OK +REQUEST wiq2.ico 1714134240561 1714134240724 OK +REQUEST request_8 1714134240608 1714134240730 OK +REQUEST request_9 1714134240684 1714134240766 OK +REQUEST request_9 1714134240681 1714134240779 OK +REQUEST request_8 1714134240684 1714134240789 OK +REQUEST request_8 1714134240681 1714134240800 OK +REQUEST main.4a961c5c.js 1714134240561 1714134240850 OK +USER HistoryRecord START 1714134240995 +REQUEST request_0 1714134240994 1714134241013 OK +REQUEST request_10 1714134241010 1714134241054 OK +USER HistoryRecord START 1714134241073 +REQUEST request_0 1714134241073 1714134241091 OK +REQUEST request_1 1714134240994 1714134241092 OK +REQUEST request_13 1714134241055 1714134241097 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134241055 1714134241099 OK +REQUEST request_7 1714134241010 1714134241105 OK +REQUEST request_12 1714134241055 1714134241154 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134241154 +REQUEST request_4 1714134241093 1714134241175 OK +REQUEST request_6 1714134241093 1714134241175 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134241093 1714134241176 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134241093 1714134241190 OK +REQUEST main.18e3ef94.css 1714134241093 1714134241191 OK +REQUEST request_2 1714134241093 1714134241191 OK +REQUEST request_7 1714134241119 1714134241201 OK +REQUEST request_9 1714134241106 1714134241202 OK +REQUEST request_1 1714134241119 1714134241215 OK +REQUEST request_8 1714134241106 1714134241215 OK +REQUEST request_1 1714134241135 1714134241230 OK +REQUEST request_10 1714134241213 1714134241264 OK +REQUEST request_1 1714134241186 1714134241270 OK +REQUEST request_9 1714134241201 1714134241285 OK +REQUEST wiq2.ico 1714134241093 1714134241286 OK +REQUEST request_5 1714134241215 1714134241298 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134241215 1714134241299 OK +REQUEST main.18e3ef94.css 1714134241215 1714134241299 OK +REQUEST request_13 1714134241265 1714134241305 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134241201 1714134241309 OK +REQUEST request_3 1714134241215 1714134241309 OK +REQUEST request_6 1714134241215 1714134241310 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134241215 1714134241311 OK +REQUEST request_6 1714134241230 1714134241314 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134241264 1714134241316 OK +REQUEST request_3 1714134241230 1714134241317 OK +REQUEST main.18e3ef94.css 1714134241230 1714134241319 OK +REQUEST request_2 1714134241230 1714134241325 OK +REQUEST request_5 1714134241230 1714134241325 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134241230 1714134241327 OK +REQUEST main.4a961c5c.js 1714134241093 1714134241342 OK +REQUEST request_4 1714134241270 1714134241352 OK +REQUEST request_6 1714134241270 1714134241353 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134241264 1714134241362 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134241362 +REQUEST request_5 1714134241270 1714134241366 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134241270 1714134241366 OK +REQUEST main.18e3ef94.css 1714134241270 1714134241368 OK +REQUEST request_2 1714134241270 1714134241368 OK +REQUEST wiq2.ico 1714134241215 1714134241404 OK +REQUEST wiq2.ico 1714134241230 1714134241417 OK +REQUEST request_10 1714134241370 1714134241420 OK +REQUEST request_1 1714134241338 1714134241424 OK +REQUEST wiq2.ico 1714134241270 1714134241437 OK +REQUEST request_11 1714134241421 1714134241473 OK +REQUEST request_13 1714134241421 1714134241503 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134241424 1714134241507 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134241424 1714134241508 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134241215 1714134241510 OK +REQUEST request_12 1714134241421 1714134241516 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134241516 +REQUEST request_4 1714134241424 1714134241519 OK +REQUEST request_3 1714134241424 1714134241520 OK +REQUEST request_2 1714134241424 1714134241520 OK +REQUEST main.4a961c5c.js 1714134241230 1714134241522 OK +REQUEST main.4a961c5c.js 1714134241270 1714134241522 OK +REQUEST main.18e3ef94.css 1714134241424 1714134241526 OK +USER HistoryRecord START 1714134241573 +USER HistoryRecord START 1714134241573 +USER HistoryRecord START 1714134241573 +USER HistoryRecord START 1714134241573 +REQUEST request_0 1714134241572 1714134241590 OK +REQUEST request_0 1714134241572 1714134241590 OK +REQUEST request_0 1714134241572 1714134241590 OK +REQUEST request_0 1714134241572 1714134241590 OK +REQUEST wiq2.ico 1714134241424 1714134241590 OK +REQUEST main.4a961c5c.js 1714134241424 1714134241711 OK +REQUEST request_10 1714134241680 1714134241726 OK +REQUEST request_12 1714134241726 1714134241767 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134241726 1714134241770 OK +REQUEST request_7 1714134241696 1714134241778 OK +REQUEST request_13 1714134241726 1714134241821 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134241822 +REQUEST request_1 1714134241728 1714134241824 OK +REQUEST request_9 1714134241778 1714134241877 OK +REQUEST request_8 1714134241778 1714134241880 OK +USER HistoryRecord START 1714134241898 +REQUEST request_1 1714134241821 1714134241902 OK +REQUEST request_3 1714134241825 1714134241908 OK +REQUEST main.18e3ef94.css 1714134241825 1714134241909 OK +REQUEST request_5 1714134241825 1714134241909 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134241898 1714134241916 OK +REQUEST request_6 1714134241825 1714134241920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134241825 1714134241922 OK +REQUEST request_4 1714134241825 1714134241925 OK +USER HistoryRecord START 1714134241952 +REQUEST request_10 1714134241914 1714134241958 OK +REQUEST request_0 1714134241952 1714134241970 OK +REQUEST request_2 1714134241903 1714134241986 OK +REQUEST request_4 1714134241903 1714134241987 OK +REQUEST request_6 1714134241903 1714134241987 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134241903 1714134241999 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134241958 1714134241999 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134241903 1714134242001 OK +REQUEST request_11 1714134241958 1714134242004 OK +REQUEST main.18e3ef94.css 1714134241903 1714134242005 OK +REQUEST wiq2.ico 1714134241825 1714134242017 OK +REQUEST request_10 1714134241976 1714134242027 OK +REQUEST request_12 1714134241958 1714134242053 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242053 +REQUEST wiq2.ico 1714134241903 1714134242066 OK +REQUEST main.4a961c5c.js 1714134241825 1714134242076 OK +REQUEST request_11 1714134242027 1714134242078 OK +REQUEST request_12 1714134242027 1714134242110 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134242027 1714134242122 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242122 +USER HistoryRecord START 1714134242193 +REQUEST main.4a961c5c.js 1714134241903 1714134242194 OK +REQUEST request_10 1714134242147 1714134242197 OK +REQUEST request_0 1714134242193 1714134242211 OK +REQUEST request_11 1714134242198 1714134242249 OK +REQUEST request_7 1714134242193 1714134242277 OK +REQUEST request_13 1714134242198 1714134242293 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134242198 1714134242293 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242293 +REQUEST request_9 1714134242277 1714134242374 OK +REQUEST request_8 1714134242277 1714134242376 OK +USER HistoryRecord START 1714134242397 +REQUEST request_0 1714134242397 1714134242416 OK +REQUEST request_7 1714134242350 1714134242434 OK +REQUEST request_1 1714134242392 1714134242476 OK +REQUEST request_9 1714134242434 1714134242518 OK +REQUEST request_8 1714134242434 1714134242533 OK +REQUEST request_2 1714134242477 1714134242560 OK +REQUEST request_4 1714134242477 1714134242560 OK +REQUEST main.18e3ef94.css 1714134242477 1714134242561 OK +REQUEST request_6 1714134242477 1714134242562 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134242477 1714134242574 OK +REQUEST request_5 1714134242477 1714134242574 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134242541 1714134242638 OK +REQUEST wiq2.ico 1714134242477 1714134242641 OK +USER HistoryRecord START 1714134242646 +REQUEST request_7 1714134242568 1714134242651 OK +REQUEST request_0 1714134242646 1714134242663 OK +REQUEST request_1 1714134242583 1714134242678 OK +REQUEST main.4a961c5c.js 1714134242477 1714134242728 OK +REQUEST request_9 1714134242651 1714134242733 OK +REQUEST request_9 1714134242638 1714134242736 OK +REQUEST request_10 1714134242708 1714134242752 OK +REQUEST request_8 1714134242638 1714134242755 OK +USER HistoryRecord START 1714134242755 +REQUEST request_8 1714134242651 1714134242760 OK +REQUEST request_2 1714134242679 1714134242761 OK +REQUEST request_6 1714134242679 1714134242762 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134242755 1714134242772 OK +REQUEST request_5 1714134242679 1714134242776 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134242678 1714134242776 OK +REQUEST request_4 1714134242679 1714134242777 OK +REQUEST main.18e3ef94.css 1714134242678 1714134242778 OK +REQUEST request_10 1714134242739 1714134242783 OK +REQUEST request_12 1714134242752 1714134242794 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134242752 1714134242796 OK +REQUEST request_1 1714134242708 1714134242804 OK +REQUEST request_7 1714134242724 1714134242806 OK +REQUEST request_12 1714134242783 1714134242824 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134242783 1714134242826 OK +REQUEST request_13 1714134242752 1714134242834 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242834 +REQUEST request_10 1714134242802 1714134242844 OK +REQUEST request_10 1714134242802 1714134242852 OK +REQUEST wiq2.ico 1714134242678 1714134242866 OK +REQUEST request_13 1714134242783 1714134242880 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242880 +REQUEST request_12 1714134242845 1714134242886 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134242845 1714134242888 OK +REQUEST request_5 1714134242805 1714134242889 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134242805 1714134242889 OK +REQUEST request_9 1714134242806 1714134242889 OK +REQUEST request_4 1714134242805 1714134242890 OK +REQUEST request_12 1714134242853 1714134242893 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134242805 1714134242902 OK +REQUEST request_6 1714134242805 1714134242903 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134242853 1714134242903 OK +REQUEST main.18e3ef94.css 1714134242805 1714134242906 OK +REQUEST request_8 1714134242806 1714134242914 OK +REQUEST main.4a961c5c.js 1714134242678 1714134242925 OK +REQUEST request_13 1714134242845 1714134242941 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242941 +REQUEST request_13 1714134242853 1714134242949 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134242950 +REQUEST wiq2.ico 1714134242805 1714134242996 OK +REQUEST request_1 1714134242942 1714134243025 OK +REQUEST main.4a961c5c.js 1714134242805 1714134243093 OK +REQUEST request_1 1714134243020 1714134243103 OK +REQUEST request_2 1714134243026 1714134243108 OK +REQUEST request_5 1714134243026 1714134243109 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134243026 1714134243121 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134243026 1714134243123 OK +REQUEST main.18e3ef94.css 1714134243026 1714134243123 OK +REQUEST request_4 1714134243026 1714134243124 OK +REQUEST request_7 1714134243066 1714134243149 OK +REQUEST request_6 1714134243104 1714134243186 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134243104 1714134243187 OK +REQUEST request_5 1714134243104 1714134243187 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134243104 1714134243188 OK +USER HistoryRecord START 1714134243189 +REQUEST wiq2.ico 1714134243025 1714134243190 OK +REQUEST request_7 1714134243097 1714134243196 OK +REQUEST request_2 1714134243104 1714134243199 OK +REQUEST request_4 1714134243104 1714134243201 OK +REQUEST request_0 1714134243189 1714134243207 OK +REQUEST request_7 1714134243129 1714134243213 OK +REQUEST request_9 1714134243149 1714134243247 OK +REQUEST request_8 1714134243149 1714134243256 OK +REQUEST wiq2.ico 1714134243104 1714134243267 OK +REQUEST main.4a961c5c.js 1714134243026 1714134243273 OK +REQUEST request_10 1714134243222 1714134243273 OK +REQUEST request_1 1714134243191 1714134243275 OK +REQUEST request_9 1714134243196 1714134243292 OK +REQUEST request_1 1714134243222 1714134243306 OK +REQUEST request_9 1714134243213 1714134243314 OK +REQUEST request_13 1714134243273 1714134243321 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134243273 1714134243324 OK +REQUEST request_8 1714134243196 1714134243327 OK +REQUEST request_8 1714134243213 1714134243329 OK +REQUEST request_7 1714134243268 1714134243352 OK +REQUEST request_5 1714134243275 1714134243357 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134243314 1714134243359 OK +REQUEST request_3 1714134243275 1714134243359 OK +REQUEST request_7 1714134243283 1714134243364 OK +REQUEST request_7 1714134243267 1714134243366 OK +REQUEST request_1 1714134243267 1714134243367 OK +REQUEST request_12 1714134243273 1714134243368 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134243369 +REQUEST request_2 1714134243275 1714134243373 OK +REQUEST request_6 1714134243275 1714134243373 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134243275 1714134243374 OK +REQUEST main.18e3ef94.css 1714134243275 1714134243377 OK +REQUEST request_5 1714134243308 1714134243392 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134243392 +REQUEST request_4 1714134243308 1714134243393 OK +REQUEST main.18e3ef94.css 1714134243307 1714134243394 OK +REQUEST main.4a961c5c.js 1714134243104 1714134243396 OK +REQUEST request_11 1714134243359 1714134243403 OK +REQUEST request_6 1714134243308 1714134243405 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134243308 1714134243406 OK +REQUEST request_3 1714134243307 1714134243408 OK +REQUEST request_0 1714134243392 1714134243410 OK +USER HistoryRecord START 1714134243439 +REQUEST wiq2.ico 1714134243275 1714134243439 OK +REQUEST request_12 1714134243359 1714134243443 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134243367 1714134243448 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134243367 1714134243451 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134243366 1714134243454 OK +REQUEST request_13 1714134243359 1714134243455 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134243455 +REQUEST request_4 1714134243367 1714134243455 OK +REQUEST request_3 1714134243367 1714134243455 OK +REQUEST request_9 1714134243352 1714134243455 OK +REQUEST request_0 1714134243439 1714134243457 OK +REQUEST main.18e3ef94.css 1714134243367 1714134243460 OK +REQUEST request_9 1714134243365 1714134243463 OK +REQUEST request_2 1714134243367 1714134243463 OK +REQUEST wiq2.ico 1714134243307 1714134243474 OK +REQUEST request_1 1714134243408 1714134243506 OK +REQUEST request_8 1714134243352 1714134243515 OK +REQUEST request_7 1714134243424 1714134243521 OK +REQUEST main.4a961c5c.js 1714134243275 1714134243522 OK +REQUEST request_8 1714134243364 1714134243534 OK +REQUEST request_1 1714134243454 1714134243537 OK +REQUEST request_8 1714134243366 1714134243543 OK +REQUEST wiq2.ico 1714134243367 1714134243558 OK +REQUEST request_2 1714134243507 1714134243590 OK +REQUEST main.18e3ef94.css 1714134243507 1714134243590 OK +REQUEST request_4 1714134243507 1714134243591 OK +REQUEST request_6 1714134243507 1714134243603 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134243507 1714134243604 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134243307 1714134243604 OK +REQUEST request_3 1714134243507 1714134243604 OK +REQUEST request_9 1714134243521 1714134243619 OK +REQUEST request_2 1714134243537 1714134243619 OK +REQUEST request_3 1714134243537 1714134243621 OK +REQUEST main.4a961c5c.js 1714134243367 1714134243628 OK +REQUEST request_6 1714134243537 1714134243632 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134243537 1714134243634 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134243537 1714134243635 OK +REQUEST request_8 1714134243521 1714134243635 OK +REQUEST main.18e3ef94.css 1714134243537 1714134243635 OK +USER HistoryRecord START 1714134243641 +REQUEST request_0 1714134243641 1714134243659 OK +REQUEST request_7 1714134243578 1714134243674 OK +REQUEST request_1 1714134243594 1714134243690 OK +REQUEST wiq2.ico 1714134243506 1714134243701 OK +REQUEST wiq2.ico 1714134243537 1714134243701 OK +REQUEST request_9 1714134243675 1714134243757 OK +REQUEST request_2 1714134243691 1714134243773 OK +REQUEST request_6 1714134243691 1714134243774 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134243691 1714134243775 OK +REQUEST request_8 1714134243675 1714134243784 OK +REQUEST main.4a961c5c.js 1714134243537 1714134243786 OK +REQUEST request_5 1714134243691 1714134243787 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134243690 1714134243787 OK +REQUEST main.18e3ef94.css 1714134243690 1714134243789 OK +REQUEST main.4a961c5c.js 1714134243506 1714134243797 OK +REQUEST request_7 1714134243718 1714134243799 OK +USER HistoryRecord START 1714134243828 +REQUEST request_0 1714134243828 1714134243846 OK +REQUEST request_7 1714134243765 1714134243862 OK +REQUEST wiq2.ico 1714134243690 1714134243879 OK +REQUEST request_9 1714134243799 1714134243895 OK +REQUEST request_8 1714134243799 1714134243897 OK +USER HistoryRecord START 1714134243923 +REQUEST request_10 1714134243891 1714134243935 OK +REQUEST main.4a961c5c.js 1714134243690 1714134243936 OK +REQUEST request_0 1714134243922 1714134243942 OK +REQUEST request_9 1714134243862 1714134243945 OK +REQUEST request_8 1714134243862 1714134243969 OK +REQUEST request_12 1714134243935 1714134243975 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134243935 1714134243978 OK +REQUEST request_13 1714134243935 1714134244019 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134244019 +REQUEST request_7 1714134243970 1714134244067 OK +REQUEST request_9 1714134244068 1714134244165 OK +REQUEST request_8 1714134244068 1714134244175 OK +REQUEST request_1 1714134244125 1714134244210 OK +REQUEST request_7 1714134244171 1714134244267 OK +REQUEST request_3 1714134244210 1714134244293 OK +REQUEST request_5 1714134244210 1714134244294 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134244210 1714134244294 OK +REQUEST request_6 1714134244210 1714134244295 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134244210 1714134244306 OK +REQUEST main.18e3ef94.css 1714134244210 1714134244307 OK +REQUEST request_9 1714134244268 1714134244349 OK +USER HistoryRecord START 1714134244372 +REQUEST request_8 1714134244268 1714134244373 OK +REQUEST wiq2.ico 1714134244210 1714134244375 OK +REQUEST request_0 1714134244372 1714134244390 OK +REQUEST request_1 1714134244325 1714134244423 OK +REQUEST request_7 1714134244340 1714134244425 OK +REQUEST request_10 1714134244388 1714134244432 OK +REQUEST request_7 1714134244340 1714134244436 OK +USER HistoryRecord START 1714134244450 +REQUEST main.4a961c5c.js 1714134244210 1714134244457 OK +REQUEST request_0 1714134244450 1714134244468 OK +REQUEST request_12 1714134244432 1714134244474 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134244432 1714134244476 OK +REQUEST request_1 1714134244403 1714134244500 OK +REQUEST request_2 1714134244424 1714134244505 OK +REQUEST request_9 1714134244425 1714134244507 OK +REQUEST request_4 1714134244423 1714134244507 OK +REQUEST request_6 1714134244424 1714134244508 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134244432 1714134244514 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134244514 +REQUEST request_5 1714134244424 1714134244519 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134244423 1714134244520 OK +REQUEST main.18e3ef94.css 1714134244423 1714134244526 OK +REQUEST request_9 1714134244436 1714134244533 OK +USER HistoryRecord START 1714134244542 +REQUEST request_8 1714134244436 1714134244549 OK +REQUEST request_8 1714134244425 1714134244551 OK +REQUEST request_0 1714134244542 1714134244560 OK +REQUEST request_1 1714134244465 1714134244561 OK +REQUEST request_2 1714134244500 1714134244582 OK +REQUEST request_5 1714134244500 1714134244583 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134244500 1714134244584 OK +REQUEST request_4 1714134244500 1714134244584 OK +REQUEST request_10 1714134244542 1714134244586 OK +REQUEST request_6 1714134244500 1714134244597 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134244500 1714134244597 OK +REQUEST wiq2.ico 1714134244423 1714134244616 OK +REQUEST request_11 1714134244586 1714134244630 OK +REQUEST request_3 1714134244561 1714134244643 OK +REQUEST request_2 1714134244561 1714134244645 OK +REQUEST request_5 1714134244561 1714134244646 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134244561 1714134244657 OK +REQUEST main.18e3ef94.css 1714134244561 1714134244658 OK +REQUEST request_6 1714134244561 1714134244660 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134244587 1714134244670 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134244586 1714134244683 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134244683 +REQUEST wiq2.ico 1714134244500 1714134244691 OK +REQUEST main.4a961c5c.js 1714134244423 1714134244709 OK +USER HistoryRecord START 1714134244745 +REQUEST wiq2.ico 1714134244561 1714134244753 OK +REQUEST request_0 1714134244745 1714134244764 OK +REQUEST main.4a961c5c.js 1714134244500 1714134244787 OK +REQUEST request_10 1714134244761 1714134244805 OK +REQUEST main.4a961c5c.js 1714134244561 1714134244808 OK +REQUEST request_10 1714134244761 1714134244811 OK +REQUEST request_12 1714134244805 1714134244846 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134244805 1714134244849 OK +REQUEST request_13 1714134244811 1714134244858 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134244811 1714134244861 OK +REQUEST request_13 1714134244805 1714134244888 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134244888 +USER HistoryRecord START 1714134244901 +REQUEST request_12 1714134244811 1714134244907 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134244907 +REQUEST request_0 1714134244901 1714134244918 OK +REQUEST request_7 1714134244854 1714134244952 OK +REQUEST request_10 1714134244916 1714134244960 OK +REQUEST request_11 1714134244960 1714134245007 OK +USER HistoryRecord START 1714134245011 +REQUEST request_0 1714134245010 1714134245027 OK +REQUEST request_12 1714134244960 1714134245043 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134244952 1714134245049 OK +REQUEST request_13 1714134244960 1714134245056 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245057 +REQUEST request_8 1714134244952 1714134245061 OK +REQUEST request_1 1714134245026 1714134245122 OK +REQUEST request_1 1714134245104 1714134245187 OK +REQUEST request_5 1714134245123 1714134245207 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134245123 1714134245207 OK +REQUEST request_6 1714134245123 1714134245220 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134245123 1714134245220 OK +REQUEST request_2 1714134245123 1714134245220 OK +REQUEST main.18e3ef94.css 1714134245123 1714134245222 OK +REQUEST request_6 1714134245187 1714134245269 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134245187 1714134245270 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134245187 1714134245270 OK +REQUEST request_4 1714134245187 1714134245271 OK +REQUEST request_2 1714134245187 1714134245282 OK +REQUEST main.18e3ef94.css 1714134245187 1714134245285 OK +REQUEST request_10 1714134245260 1714134245304 OK +REQUEST wiq2.ico 1714134245123 1714134245312 OK +REQUEST wiq2.ico 1714134245187 1714134245346 OK +REQUEST request_11 1714134245304 1714134245347 OK +REQUEST request_7 1714134245276 1714134245361 OK +REQUEST main.4a961c5c.js 1714134245123 1714134245372 OK +REQUEST request_10 1714134245337 1714134245380 OK +REQUEST request_13 1714134245304 1714134245386 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134245304 1714134245386 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245387 +REQUEST request_10 1714134245337 1714134245387 OK +REQUEST request_12 1714134245380 1714134245421 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134245380 1714134245425 OK +REQUEST main.4a961c5c.js 1714134245187 1714134245434 OK +REQUEST request_11 1714134245387 1714134245439 OK +REQUEST request_9 1714134245361 1714134245445 OK +REQUEST request_13 1714134245380 1714134245462 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245462 +REQUEST request_8 1714134245361 1714134245466 OK +REQUEST request_12 1714134245387 1714134245470 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134245387 1714134245482 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245482 +REQUEST request_7 1714134245447 1714134245544 OK +REQUEST request_10 1714134245527 1714134245570 OK +REQUEST request_10 1714134245542 1714134245585 OK +REQUEST request_10 1714134245557 1714134245608 OK +REQUEST request_12 1714134245570 1714134245611 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134245570 1714134245615 OK +REQUEST request_13 1714134245585 1714134245626 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134245585 1714134245628 OK +REQUEST request_9 1714134245544 1714134245640 OK +REQUEST request_13 1714134245570 1714134245652 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245652 +REQUEST request_8 1714134245544 1714134245654 OK +REQUEST request_13 1714134245608 1714134245656 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134245608 1714134245659 OK +REQUEST request_12 1714134245585 1714134245667 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245667 +USER HistoryRecord START 1714134245682 +REQUEST request_1 1714134245592 1714134245688 OK +USER HistoryRecord START 1714134245697 +REQUEST request_1 1714134245604 1714134245700 OK +REQUEST request_0 1714134245682 1714134245700 OK +REQUEST request_1 1714134245604 1714134245701 OK +REQUEST request_10 1714134245651 1714134245703 OK +REQUEST request_1 1714134245604 1714134245703 OK +REQUEST request_12 1714134245608 1714134245705 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245705 +REQUEST request_0 1714134245697 1714134245714 OK +REQUEST request_12 1714134245703 1714134245743 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134245703 1714134245755 OK +REQUEST request_5 1714134245689 1714134245772 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134245700 1714134245782 OK +REQUEST request_5 1714134245700 1714134245783 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134245701 1714134245784 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134245700 1714134245784 OK +REQUEST request_2 1714134245688 1714134245785 OK +REQUEST request_5 1714134245701 1714134245786 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134245703 1714134245787 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134245703 1714134245788 OK +REQUEST request_6 1714134245689 1714134245788 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134245701 1714134245789 OK +REQUEST request_4 1714134245688 1714134245789 OK +REQUEST request_3 1714134245688 1714134245789 OK +REQUEST request_3 1714134245703 1714134245790 OK +REQUEST main.18e3ef94.css 1714134245701 1714134245792 OK +REQUEST main.18e3ef94.css 1714134245688 1714134245792 OK +REQUEST main.18e3ef94.css 1714134245703 1714134245792 OK +REQUEST request_6 1714134245700 1714134245796 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134245701 1714134245797 OK +REQUEST request_5 1714134245703 1714134245798 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134245703 1714134245799 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134245700 1714134245799 OK +USER HistoryRecord END 1714134245799 +REQUEST request_4 1714134245703 1714134245800 OK +REQUEST request_4 1714134245700 1714134245800 OK +REQUEST request_3 1714134245701 1714134245801 OK +REQUEST request_10 1714134245792 1714134245843 OK +REQUEST wiq2.ico 1714134245688 1714134245878 OK +REQUEST wiq2.ico 1714134245700 1714134245887 OK +REQUEST request_11 1714134245843 1714134245895 OK +REQUEST wiq2.ico 1714134245701 1714134245903 OK +REQUEST wiq2.ico 1714134245703 1714134245909 OK +REQUEST request_7 1714134245853 1714134245937 OK +REQUEST request_12 1714134245844 1714134245939 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134245844 1714134245940 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134245940 +REQUEST main.4a961c5c.js 1714134245688 1714134245940 OK +REQUEST request_10 1714134245901 1714134245944 OK +REQUEST main.4a961c5c.js 1714134245701 1714134245955 OK +REQUEST main.4a961c5c.js 1714134245700 1714134245988 OK +REQUEST request_11 1714134245944 1714134245988 OK +REQUEST main.4a961c5c.js 1714134245703 1714134245991 OK +REQUEST request_1 1714134245917 1714134245999 OK +REQUEST request_12 1714134245944 1714134246029 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134245979 1714134246030 OK +REQUEST request_7 1714134245949 1714134246032 OK +REQUEST request_9 1714134245937 1714134246034 OK +REQUEST request_8 1714134245937 1714134246037 OK +REQUEST request_13 1714134245944 1714134246040 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134246041 +REQUEST request_1 1714134245979 1714134246062 OK +REQUEST request_11 1714134246030 1714134246082 OK +REQUEST request_4 1714134245999 1714134246084 OK +REQUEST request_5 1714134245999 1714134246084 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134245999 1714134246085 OK +REQUEST request_6 1714134245999 1714134246097 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134245999 1714134246097 OK +REQUEST request_3 1714134245999 1714134246097 OK +REQUEST request_13 1714134246031 1714134246114 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134246119 +REQUEST request_12 1714134246030 1714134246129 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134246129 +REQUEST request_9 1714134246032 1714134246130 OK +REQUEST request_0 1714134246119 1714134246138 OK +REQUEST request_4 1714134246062 1714134246146 OK +REQUEST request_6 1714134246062 1714134246146 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134246032 1714134246155 OK +REQUEST request_2 1714134246062 1714134246158 OK +REQUEST request_5 1714134246062 1714134246159 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134246062 1714134246159 OK +REQUEST main.18e3ef94.css 1714134246062 1714134246160 OK +REQUEST wiq2.ico 1714134245999 1714134246161 OK +REQUEST wiq2.ico 1714134246062 1714134246225 OK +REQUEST request_10 1714134246181 1714134246233 OK +REQUEST main.4a961c5c.js 1714134245999 1714134246243 OK +REQUEST request_11 1714134246233 1714134246284 OK +REQUEST request_1 1714134246212 1714134246294 OK +REQUEST main.4a961c5c.js 1714134246062 1714134246308 OK +REQUEST request_12 1714134246233 1714134246315 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134246322 +REQUEST request_13 1714134246233 1714134246330 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134246331 +REQUEST request_0 1714134246321 1714134246339 OK +REQUEST request_7 1714134246253 1714134246349 OK +REQUEST request_4 1714134246295 1714134246377 OK +REQUEST main.18e3ef94.css 1714134246295 1714134246379 OK +REQUEST request_2 1714134246295 1714134246380 OK +REQUEST request_5 1714134246295 1714134246391 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134246295 1714134246391 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134246295 1714134246392 OK +REQUEST request_7 1714134246321 1714134246418 OK +REQUEST request_10 1714134246383 1714134246434 OK +REQUEST request_9 1714134246349 1714134246446 OK +REQUEST wiq2.ico 1714134246295 1714134246458 OK +REQUEST request_8 1714134246349 1714134246460 OK +REQUEST request_13 1714134246434 1714134246476 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134246477 +REQUEST request_11 1714134246434 1714134246487 OK +USER HistoryRecord START 1714134246492 +REQUEST request_0 1714134246477 1714134246495 OK +REQUEST request_9 1714134246418 1714134246499 OK +REQUEST request_0 1714134246492 1714134246509 OK +REQUEST request_7 1714134246430 1714134246513 OK +REQUEST request_1 1714134246418 1714134246516 OK +REQUEST request_7 1714134246430 1714134246525 OK +REQUEST request_8 1714134246418 1714134246530 OK +REQUEST request_12 1714134246434 1714134246530 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134246531 +REQUEST main.4a961c5c.js 1714134246295 1714134246547 OK +REQUEST request_9 1714134246513 1714134246597 OK +REQUEST request_10 1714134246553 1714134246598 OK +REQUEST request_2 1714134246517 1714134246600 OK +REQUEST request_4 1714134246517 1714134246600 OK +REQUEST main.18e3ef94.css 1714134246516 1714134246603 OK +REQUEST request_10 1714134246553 1714134246605 OK +REQUEST request_6 1714134246517 1714134246614 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134246516 1714134246614 OK +REQUEST request_5 1714134246517 1714134246614 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134246525 1714134246622 OK +REQUEST request_8 1714134246513 1714134246636 OK +REQUEST request_11 1714134246598 1714134246643 OK +REQUEST request_12 1714134246605 1714134246647 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134246525 1714134246654 OK +REQUEST request_11 1714134246605 1714134246655 OK +REQUEST request_13 1714134246598 1714134246681 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134246605 1714134246689 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134246689 +REQUEST request_12 1714134246598 1714134246696 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134246696 +REQUEST request_7 1714134246615 1714134246698 OK +REQUEST wiq2.ico 1714134246516 1714134246710 OK +REQUEST request_1 1714134246676 1714134246761 OK +REQUEST main.4a961c5c.js 1714134246516 1714134246769 OK +REQUEST request_9 1714134246698 1714134246781 OK +REQUEST request_8 1714134246698 1714134246797 OK +REQUEST request_6 1714134246761 1714134246843 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134246761 1714134246844 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134246761 1714134246845 OK +REQUEST request_3 1714134246761 1714134246858 OK +REQUEST main.18e3ef94.css 1714134246761 1714134246859 OK +REQUEST request_2 1714134246761 1714134246859 OK +REQUEST request_1 1714134246784 1714134246880 OK +REQUEST wiq2.ico 1714134246761 1714134246924 OK +REQUEST request_5 1714134246881 1714134246964 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134246881 1714134246965 OK +REQUEST request_6 1714134246881 1714134246977 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134246881 1714134246978 OK +REQUEST request_4 1714134246881 1714134246980 OK +REQUEST main.18e3ef94.css 1714134246881 1714134246981 OK +REQUEST main.4a961c5c.js 1714134246761 1714134247006 OK +REQUEST wiq2.ico 1714134246881 1714134247072 OK +REQUEST request_10 1714134247062 1714134247113 OK +REQUEST main.4a961c5c.js 1714134246881 1714134247128 OK +REQUEST request_11 1714134247113 1714134247163 OK +USER HistoryRecord START 1714134247188 +REQUEST request_13 1714134247113 1714134247197 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134247188 1714134247206 OK +REQUEST request_12 1714134247113 1714134247209 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134247209 +USER HistoryRecord START 1714134247298 +REQUEST request_7 1714134247219 1714134247301 OK +REQUEST request_1 1714134247219 1714134247316 OK +REQUEST request_0 1714134247298 1714134247317 OK +REQUEST request_9 1714134247301 1714134247397 OK +REQUEST request_6 1714134247316 1714134247399 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134247316 1714134247401 OK +REQUEST request_3 1714134247316 1714134247401 OK +REQUEST request_8 1714134247301 1714134247402 OK +REQUEST request_5 1714134247316 1714134247414 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134247316 1714134247414 OK +REQUEST main.18e3ef94.css 1714134247316 1714134247415 OK +REQUEST request_7 1714134247376 1714134247473 OK +REQUEST request_1 1714134247423 1714134247507 OK +REQUEST wiq2.ico 1714134247316 1714134247511 OK +REQUEST request_10 1714134247470 1714134247518 OK +REQUEST request_7 1714134247439 1714134247537 OK +REQUEST request_1 1714134247470 1714134247552 OK +REQUEST request_11 1714134247518 1714134247562 OK +REQUEST request_13 1714134247518 1714134247565 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134247473 1714134247570 OK +REQUEST request_8 1714134247473 1714134247583 OK +REQUEST request_5 1714134247508 1714134247590 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134247508 1714134247590 OK +REQUEST request_12 1714134247518 1714134247600 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134247600 +REQUEST main.4a961c5c.js 1714134247316 1714134247603 OK +REQUEST request_3 1714134247507 1714134247604 OK +REQUEST request_6 1714134247508 1714134247604 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134247508 1714134247606 OK +REQUEST main.18e3ef94.css 1714134247507 1714134247608 OK +REQUEST request_9 1714134247537 1714134247633 OK +REQUEST request_4 1714134247553 1714134247636 OK +REQUEST request_6 1714134247553 1714134247636 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134247553 1714134247637 OK +REQUEST main.18e3ef94.css 1714134247553 1714134247648 OK +REQUEST request_5 1714134247553 1714134247649 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134247553 1714134247650 OK +REQUEST request_8 1714134247537 1714134247651 OK +USER HistoryRecord START 1714134247659 +REQUEST wiq2.ico 1714134247507 1714134247673 OK +REQUEST request_0 1714134247659 1714134247676 OK +USER HistoryRecord START 1714134247685 +REQUEST request_0 1714134247685 1714134247702 OK +REQUEST request_10 1714134247659 1714134247711 OK +REQUEST wiq2.ico 1714134247552 1714134247716 OK +REQUEST request_13 1714134247711 1714134247758 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134247711 1714134247761 OK +USER HistoryRecord START 1714134247762 +REQUEST request_1 1714134247675 1714134247771 OK +REQUEST request_7 1714134247675 1714134247772 OK +REQUEST request_0 1714134247762 1714134247781 OK +REQUEST main.4a961c5c.js 1714134247507 1714134247800 OK +REQUEST main.4a961c5c.js 1714134247553 1714134247806 OK +REQUEST request_12 1714134247711 1714134247807 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134247807 +REQUEST request_6 1714134247772 1714134247854 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134247772 1714134247856 OK +REQUEST main.18e3ef94.css 1714134247772 1714134247858 OK +USER HistoryRecord START 1714134247860 +REQUEST request_9 1714134247772 1714134247868 OK +REQUEST request_5 1714134247772 1714134247868 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134247772 1714134247869 OK +REQUEST request_4 1714134247772 1714134247871 OK +REQUEST request_0 1714134247860 1714134247878 OK +REQUEST request_8 1714134247772 1714134247887 OK +REQUEST request_1 1714134247860 1714134247956 OK +REQUEST wiq2.ico 1714134247771 1714134247964 OK +REQUEST request_7 1714134247923 1714134248005 OK +REQUEST main.4a961c5c.js 1714134247772 1714134248021 OK +REQUEST request_2 1714134247957 1714134248039 OK +REQUEST request_4 1714134247956 1714134248039 OK +REQUEST main.18e3ef94.css 1714134247956 1714134248042 OK +REQUEST request_6 1714134247957 1714134248052 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134247956 1714134248052 OK +REQUEST request_1 1714134247954 1714134248052 OK +REQUEST request_5 1714134247957 1714134248055 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134248048 1714134248093 OK +REQUEST request_7 1714134248001 1714134248095 OK +USER HistoryRecord START 1714134248095 +REQUEST request_9 1714134248005 1714134248101 OK +USER HistoryRecord START 1714134248111 +REQUEST request_8 1714134248005 1714134248112 OK +REQUEST request_7 1714134248017 1714134248113 OK +REQUEST request_7 1714134248017 1714134248113 OK +REQUEST request_0 1714134248095 1714134248114 OK +REQUEST request_0 1714134248111 1714134248129 OK +REQUEST request_5 1714134248053 1714134248135 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134248053 1714134248136 OK +REQUEST request_6 1714134248053 1714134248138 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134248052 1714134248139 OK +REQUEST request_11 1714134248093 1714134248141 OK +REQUEST request_13 1714134248093 1714134248141 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134247956 1714134248145 OK +REQUEST request_4 1714134248053 1714134248148 OK +REQUEST main.18e3ef94.css 1714134248052 1714134248156 OK +REQUEST request_12 1714134248093 1714134248175 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134248175 +REQUEST request_9 1714134248095 1714134248193 OK +REQUEST request_9 1714134248113 1714134248196 OK +REQUEST request_10 1714134248157 1714134248200 OK +REQUEST request_9 1714134248113 1714134248210 OK +USER HistoryRecord START 1714134248219 +REQUEST request_0 1714134248219 1714134248238 OK +REQUEST request_12 1714134248200 1714134248241 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134247956 1714134248243 OK +REQUEST request_11 1714134248200 1714134248244 OK +REQUEST wiq2.ico 1714134248052 1714134248245 OK +REQUEST request_8 1714134248113 1714134248245 OK +REQUEST request_8 1714134248095 1714134248256 OK +REQUEST request_8 1714134248113 1714134248272 OK +REQUEST request_13 1714134248200 1714134248283 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134248283 +REQUEST main.4a961c5c.js 1714134248052 1714134248303 OK +USER HistoryRecord START 1714134248344 +USER HistoryRecord START 1714134248344 +REQUEST request_0 1714134248344 1714134248362 OK +REQUEST request_0 1714134248344 1714134248362 OK +USER HistoryRecord START 1714134248392 +REQUEST request_0 1714134248391 1714134248410 OK +REQUEST request_7 1714134248344 1714134248441 OK +REQUEST request_1 1714134248391 1714134248488 OK +USER HistoryRecord START 1714134248489 +REQUEST request_0 1714134248489 1714134248507 OK +REQUEST request_10 1714134248468 1714134248521 OK +REQUEST request_9 1714134248441 1714134248524 OK +REQUEST request_8 1714134248441 1714134248550 OK +REQUEST request_1 1714134248468 1714134248551 OK +REQUEST request_13 1714134248522 1714134248570 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134248489 1714134248571 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134248521 1714134248573 OK +REQUEST main.18e3ef94.css 1714134248488 1714134248573 OK +REQUEST request_2 1714134248489 1714134248573 OK +REQUEST request_10 1714134248531 1714134248581 OK +REQUEST request_3 1714134248488 1714134248586 OK +REQUEST request_4 1714134248489 1714134248586 OK +REQUEST request_6 1714134248489 1714134248586 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134248521 1714134248606 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134248606 +REQUEST request_12 1714134248581 1714134248622 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134248547 1714134248630 OK +REQUEST request_11 1714134248581 1714134248632 OK +REQUEST request_6 1714134248551 1714134248632 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134248551 1714134248634 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134248551 1714134248634 OK +REQUEST main.18e3ef94.css 1714134248551 1714134248636 OK +REQUEST request_2 1714134248551 1714134248649 OK +REQUEST request_3 1714134248551 1714134248650 OK +REQUEST request_1 1714134248563 1714134248658 OK +REQUEST request_13 1714134248581 1714134248676 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134248488 1714134248677 OK +USER HistoryRecord END 1714134248677 +REQUEST request_10 1714134248641 1714134248685 OK +USER HistoryRecord START 1714134248696 +REQUEST request_10 1714134248657 1714134248709 OK +REQUEST request_0 1714134248696 1714134248714 OK +REQUEST wiq2.ico 1714134248551 1714134248714 OK +USER HistoryRecord START 1714134248720 +REQUEST request_9 1714134248630 1714134248726 OK +REQUEST request_11 1714134248685 1714134248731 OK +REQUEST request_8 1714134248630 1714134248737 OK +REQUEST request_0 1714134248720 1714134248738 OK +REQUEST request_3 1714134248658 1714134248741 OK +REQUEST request_4 1714134248658 1714134248741 OK +REQUEST request_6 1714134248658 1714134248742 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134248709 1714134248749 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134248658 1714134248754 OK +REQUEST request_5 1714134248658 1714134248755 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134248709 1714134248758 OK +REQUEST main.18e3ef94.css 1714134248658 1714134248760 OK +REQUEST request_13 1714134248685 1714134248767 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134248488 1714134248775 OK +REQUEST request_12 1714134248685 1714134248780 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134248780 +USER HistoryRecord START 1714134248783 +REQUEST request_0 1714134248783 1714134248802 OK +REQUEST request_13 1714134248709 1714134248806 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134248806 +REQUEST main.4a961c5c.js 1714134248551 1714134248838 OK +REQUEST request_10 1714134248798 1714134248841 OK +REQUEST wiq2.ico 1714134248658 1714134248848 OK +REQUEST request_1 1714134248767 1714134248863 OK +REQUEST request_12 1714134248841 1714134248883 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134248841 1714134248886 OK +REQUEST request_13 1714134248842 1714134248923 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134248923 +USER HistoryRecord START 1714134248939 +REQUEST main.4a961c5c.js 1714134248658 1714134248945 OK +REQUEST request_4 1714134248863 1714134248946 OK +REQUEST request_6 1714134248864 1714134248946 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134248863 1714134248947 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134248939 1714134248956 OK +REQUEST request_2 1714134248863 1714134248960 OK +REQUEST request_3 1714134248863 1714134248960 OK +REQUEST main.18e3ef94.css 1714134248863 1714134248961 OK +REQUEST request_1 1714134248924 1714134249006 OK +REQUEST request_7 1714134248939 1714134249034 OK +REQUEST wiq2.ico 1714134248863 1714134249053 OK +REQUEST request_3 1714134249007 1714134249090 OK +REQUEST request_2 1714134249007 1714134249090 OK +REQUEST request_6 1714134249007 1714134249090 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134249007 1714134249103 OK +REQUEST request_5 1714134249007 1714134249104 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134249007 1714134249107 OK +REQUEST request_1 1714134249033 1714134249120 OK +REQUEST request_9 1714134249034 1714134249130 OK +REQUEST request_8 1714134249034 1714134249142 OK +REQUEST main.4a961c5c.js 1714134248863 1714134249150 OK +REQUEST wiq2.ico 1714134249007 1714134249171 OK +REQUEST request_3 1714134249120 1714134249203 OK +REQUEST request_4 1714134249120 1714134249204 OK +REQUEST request_5 1714134249120 1714134249204 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134249120 1714134249205 OK +REQUEST request_6 1714134249120 1714134249216 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134249120 1714134249217 OK +USER HistoryRecord START 1714134249246 +REQUEST request_0 1714134249245 1714134249263 OK +REQUEST wiq2.ico 1714134249120 1714134249286 OK +REQUEST main.4a961c5c.js 1714134249007 1714134249294 OK +REQUEST main.4a961c5c.js 1714134249120 1714134249409 OK +REQUEST request_10 1714134249406 1714134249451 OK +REQUEST request_11 1714134249451 1714134249496 OK +REQUEST request_13 1714134249451 1714134249499 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134249422 1714134249506 OK +REQUEST request_12 1714134249451 1714134249532 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134249533 +REQUEST request_7 1714134249499 1714134249583 OK +REQUEST request_9 1714134249506 1714134249589 OK +REQUEST request_8 1714134249506 1714134249607 OK +REQUEST request_10 1714134249592 1714134249643 OK +REQUEST request_9 1714134249583 1714134249667 OK +REQUEST request_8 1714134249583 1714134249683 OK +USER HistoryRecord START 1714134249684 +REQUEST request_11 1714134249643 1714134249695 OK +REQUEST request_0 1714134249684 1714134249702 OK +REQUEST request_10 1714134249653 1714134249703 OK +REQUEST request_7 1714134249623 1714134249707 OK +REQUEST request_13 1714134249643 1714134249725 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134249643 1714134249738 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134249738 +REQUEST request_12 1714134249703 1714134249745 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134249703 1714134249753 OK +REQUEST request_13 1714134249703 1714134249786 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134249786 +REQUEST request_9 1714134249707 1714134249788 OK +REQUEST request_1 1714134249702 1714134249797 OK +REQUEST request_8 1714134249707 1714134249809 OK +REQUEST request_1 1714134249715 1714134249811 OK +REQUEST request_2 1714134249798 1714134249880 OK +REQUEST request_4 1714134249798 1714134249881 OK +REQUEST request_6 1714134249812 1714134249894 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134249798 1714134249895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134249798 1714134249895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134249798 1714134249895 OK +REQUEST main.18e3ef94.css 1714134249798 1714134249895 OK +REQUEST request_3 1714134249811 1714134249896 OK +REQUEST request_4 1714134249812 1714134249896 OK +REQUEST main.18e3ef94.css 1714134249811 1714134249899 OK +REQUEST request_5 1714134249812 1714134249906 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134249812 1714134249908 OK +REQUEST request_10 1714134249901 1714134249953 OK +REQUEST wiq2.ico 1714134249797 1714134249987 OK +REQUEST wiq2.ico 1714134249811 1714134250000 OK +REQUEST request_13 1714134249954 1714134250001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134249953 1714134250004 OK +REQUEST request_12 1714134249953 1714134250038 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134250038 +REQUEST request_7 1714134249994 1714134250076 OK +REQUEST main.4a961c5c.js 1714134249797 1714134250090 OK +REQUEST main.4a961c5c.js 1714134249811 1714134250099 OK +REQUEST request_7 1714134250056 1714134250140 OK +REQUEST request_10 1714134250117 1714134250160 OK +REQUEST request_9 1714134250077 1714134250172 OK +REQUEST request_8 1714134250076 1714134250177 OK +REQUEST request_12 1714134250161 1714134250202 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134250161 1714134250205 OK +USER HistoryRecord START 1714134250211 +USER HistoryRecord START 1714134250211 +USER HistoryRecord START 1714134250226 +REQUEST request_0 1714134250210 1714134250228 OK +REQUEST request_0 1714134250210 1714134250229 OK +REQUEST request_1 1714134250148 1714134250233 OK +REQUEST request_9 1714134250140 1714134250239 OK +REQUEST request_8 1714134250140 1714134250241 OK +REQUEST request_13 1714134250161 1714134250244 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134250226 1714134250244 OK +USER HistoryRecord END 1714134250244 +REQUEST request_7 1714134250179 1714134250276 OK +REQUEST request_7 1714134250194 1714134250288 OK +REQUEST request_10 1714134250257 1714134250307 OK +REQUEST request_5 1714134250234 1714134250316 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134250234 1714134250318 OK +REQUEST main.18e3ef94.css 1714134250233 1714134250318 OK +REQUEST request_10 1714134250272 1714134250321 OK +REQUEST request_2 1714134250234 1714134250329 OK +REQUEST request_6 1714134250234 1714134250330 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134250233 1714134250331 OK +REQUEST request_10 1714134250287 1714134250336 OK +REQUEST request_11 1714134250307 1714134250359 OK +REQUEST request_13 1714134250322 1714134250369 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134250288 1714134250370 OK +REQUEST request_9 1714134250276 1714134250371 OK +REQUEST request_11 1714134250321 1714134250373 OK +REQUEST request_12 1714134250336 1714134250377 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134250336 1714134250387 OK +USER HistoryRecord START 1714134250398 +REQUEST wiq2.ico 1714134250233 1714134250399 OK +REQUEST request_8 1714134250288 1714134250403 OK +REQUEST request_12 1714134250321 1714134250403 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134250404 +REQUEST request_12 1714134250307 1714134250404 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134250308 1714134250405 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134250405 +REQUEST request_8 1714134250276 1714134250411 OK +REQUEST request_0 1714134250398 1714134250416 OK +REQUEST request_13 1714134250336 1714134250432 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134250432 +REQUEST request_1 1714134250350 1714134250446 OK +USER HistoryRecord START 1714134250460 +REQUEST request_0 1714134250460 1714134250478 OK +REQUEST main.4a961c5c.js 1714134250233 1714134250480 OK +REQUEST request_7 1714134250429 1714134250511 OK +REQUEST request_5 1714134250446 1714134250528 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134250446 1714134250529 OK +REQUEST request_2 1714134250446 1714134250541 OK +REQUEST request_3 1714134250446 1714134250541 OK +REQUEST request_6 1714134250446 1714134250543 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134250446 1714134250544 OK +REQUEST request_1 1714134250507 1714134250592 OK +REQUEST request_10 1714134250553 1714134250604 OK +REQUEST request_9 1714134250511 1714134250607 OK +REQUEST request_8 1714134250511 1714134250612 OK +REQUEST request_1 1714134250522 1714134250617 OK +REQUEST wiq2.ico 1714134250446 1714134250634 OK +REQUEST request_11 1714134250605 1714134250655 OK +REQUEST request_3 1714134250592 1714134250673 OK +REQUEST request_4 1714134250592 1714134250674 OK +REQUEST request_2 1714134250593 1714134250674 OK +REQUEST request_6 1714134250593 1714134250676 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134250605 1714134250688 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134250593 1714134250689 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134250592 1714134250691 OK +REQUEST main.18e3ef94.css 1714134250618 1714134250700 OK +REQUEST request_3 1714134250618 1714134250700 OK +REQUEST request_5 1714134250618 1714134250702 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134250605 1714134250702 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134250702 +REQUEST request_2 1714134250618 1714134250714 OK +REQUEST request_6 1714134250618 1714134250714 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134250618 1714134250715 OK +REQUEST main.4a961c5c.js 1714134250446 1714134250730 OK +REQUEST wiq2.ico 1714134250592 1714134250756 OK +REQUEST request_10 1714134250742 1714134250788 OK +REQUEST wiq2.ico 1714134250618 1714134250807 OK +REQUEST request_7 1714134250710 1714134250808 OK +REQUEST request_12 1714134250788 1714134250830 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134250788 1714134250831 OK +USER HistoryRecord START 1714134250836 +REQUEST main.4a961c5c.js 1714134250592 1714134250841 OK +REQUEST request_0 1714134250836 1714134250854 OK +REQUEST main.4a961c5c.js 1714134250618 1714134250867 OK +REQUEST request_13 1714134250789 1714134250885 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134250886 +REQUEST request_9 1714134250808 1714134250891 OK +REQUEST request_7 1714134250820 1714134250903 OK +REQUEST request_8 1714134250808 1714134250917 OK +REQUEST request_7 1714134250899 1714134250981 OK +REQUEST request_7 1714134250899 1714134250995 OK +REQUEST request_9 1714134250903 1714134250997 OK +REQUEST request_8 1714134250903 1714134251005 OK +REQUEST request_7 1714134250947 1714134251030 OK +REQUEST request_7 1714134250962 1714134251058 OK +REQUEST request_9 1714134250981 1714134251077 OK +REQUEST request_9 1714134250996 1714134251078 OK +REQUEST request_8 1714134250981 1714134251105 OK +USER HistoryRecord START 1714134251105 +REQUEST request_9 1714134251030 1714134251110 OK +REQUEST request_8 1714134250995 1714134251113 OK +REQUEST request_0 1714134251105 1714134251122 OK +REQUEST request_8 1714134251030 1714134251150 OK +REQUEST request_9 1714134251059 1714134251156 OK +REQUEST request_8 1714134251058 1714134251168 OK +USER HistoryRecord START 1714134251198 +REQUEST request_10 1714134251152 1714134251202 OK +REQUEST request_0 1714134251198 1714134251216 OK +REQUEST request_11 1714134251202 1714134251252 OK +REQUEST request_12 1714134251202 1714134251286 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134251202 1714134251297 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134251214 1714134251297 OK +USER HistoryRecord END 1714134251297 +REQUEST request_7 1714134251244 1714134251328 OK +REQUEST request_2 1714134251298 1714134251381 OK +REQUEST request_6 1714134251298 1714134251381 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134251298 1714134251383 OK +REQUEST request_5 1714134251298 1714134251395 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134251401 +REQUEST request_4 1714134251298 1714134251407 OK +REQUEST main.18e3ef94.css 1714134251298 1714134251415 OK +REQUEST request_1 1714134251323 1714134251416 OK +REQUEST request_0 1714134251401 1714134251419 OK +REQUEST request_9 1714134251328 1714134251424 OK +REQUEST request_8 1714134251328 1714134251433 OK +REQUEST wiq2.ico 1714134251297 1714134251462 OK +REQUEST request_2 1714134251416 1714134251498 OK +REQUEST request_5 1714134251416 1714134251499 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134251416 1714134251500 OK +REQUEST main.18e3ef94.css 1714134251416 1714134251502 OK +REQUEST request_6 1714134251416 1714134251512 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134251416 1714134251512 OK +REQUEST request_7 1714134251449 1714134251532 OK +REQUEST main.4a961c5c.js 1714134251298 1714134251544 OK +REQUEST wiq2.ico 1714134251416 1714134251582 OK +REQUEST request_9 1714134251532 1714134251630 OK +REQUEST request_8 1714134251532 1714134251634 OK +REQUEST request_10 1714134251621 1714134251665 OK +USER HistoryRecord START 1714134251668 +REQUEST request_0 1714134251668 1714134251684 OK +REQUEST main.4a961c5c.js 1714134251416 1714134251701 OK +REQUEST request_12 1714134251666 1714134251707 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134251666 1714134251710 OK +REQUEST request_7 1714134251637 1714134251722 OK +REQUEST request_10 1714134251684 1714134251727 OK +REQUEST request_7 1714134251652 1714134251748 OK +REQUEST request_13 1714134251666 1714134251762 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134251763 +REQUEST request_12 1714134251727 1714134251769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134251727 1714134251771 OK +REQUEST request_1 1714134251684 1714134251781 OK +REQUEST request_9 1714134251722 1714134251805 OK +REQUEST request_13 1714134251727 1714134251810 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134251810 +REQUEST request_1 1714134251716 1714134251811 OK +REQUEST request_7 1714134251731 1714134251812 OK +REQUEST request_8 1714134251722 1714134251824 OK +REQUEST request_9 1714134251748 1714134251842 OK +REQUEST request_10 1714134251810 1714134251854 OK +REQUEST request_8 1714134251748 1714134251857 OK +REQUEST request_5 1714134251781 1714134251864 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134251781 1714134251864 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134251872 +REQUEST request_2 1714134251781 1714134251877 OK +REQUEST request_3 1714134251781 1714134251879 OK +REQUEST request_1 1714134251794 1714134251881 OK +REQUEST request_4 1714134251781 1714134251882 OK +REQUEST main.18e3ef94.css 1714134251781 1714134251884 OK +REQUEST request_0 1714134251872 1714134251891 OK +REQUEST request_3 1714134251811 1714134251893 OK +REQUEST request_12 1714134251854 1714134251895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134251854 1714134251903 OK +USER HistoryRecord START 1714134251904 +REQUEST request_7 1714134251810 1714134251906 OK +REQUEST request_9 1714134251812 1714134251906 OK +REQUEST request_4 1714134251812 1714134251909 OK +REQUEST request_8 1714134251812 1714134251917 OK +REQUEST request_0 1714134251904 1714134251921 OK +REQUEST main.18e3ef94.css 1714134251811 1714134251922 OK +REQUEST request_5 1714134251812 1714134251924 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134251812 1714134251925 OK +REQUEST request_6 1714134251812 1714134251925 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134251841 1714134251936 OK +REQUEST request_13 1714134251854 1714134251950 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134251950 +REQUEST request_3 1714134251881 1714134251963 OK +REQUEST request_5 1714134251881 1714134251963 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134251881 1714134251964 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134251881 1714134251967 OK +REQUEST main.18e3ef94.css 1714134251881 1714134251969 OK +REQUEST wiq2.ico 1714134251781 1714134251971 OK +REQUEST request_4 1714134251881 1714134251977 OK +REQUEST request_2 1714134251881 1714134251979 OK +REQUEST wiq2.ico 1714134251811 1714134252000 OK +REQUEST request_9 1714134251906 1714134252003 OK +REQUEST request_9 1714134251937 1714134252020 OK +REQUEST main.4a961c5c.js 1714134251781 1714134252033 OK +REQUEST request_8 1714134251906 1714134252034 OK +USER HistoryRecord START 1714134252046 +REQUEST wiq2.ico 1714134251881 1714134252047 OK +REQUEST request_3 1714134251968 1714134252051 OK +REQUEST request_8 1714134251937 1714134252058 OK +REQUEST request_6 1714134251968 1714134252063 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134251968 1714134252064 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134251968 1714134252064 OK +REQUEST request_4 1714134251968 1714134252064 OK +REQUEST request_0 1714134252046 1714134252064 OK +REQUEST main.18e3ef94.css 1714134251967 1714134252064 OK +REQUEST main.4a961c5c.js 1714134251811 1714134252076 OK +REQUEST main.4a961c5c.js 1714134251881 1714134252128 OK +REQUEST wiq2.ico 1714134251967 1714134252131 OK +REQUEST request_1 1714134252124 1714134252223 OK +REQUEST request_1 1714134252140 1714134252224 OK +REQUEST request_10 1714134252186 1714134252230 OK +REQUEST request_7 1714134252156 1714134252253 OK +REQUEST main.4a961c5c.js 1714134251967 1714134252260 OK +REQUEST request_12 1714134252230 1714134252272 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134252230 1714134252273 OK +REQUEST request_10 1714134252248 1714134252291 OK +REQUEST request_3 1714134252223 1714134252305 OK +REQUEST request_6 1714134252223 1714134252306 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134252225 1714134252309 OK +REQUEST request_3 1714134252224 1714134252310 OK +REQUEST main.18e3ef94.css 1714134252224 1714134252316 OK +REQUEST request_2 1714134252223 1714134252319 OK +REQUEST request_5 1714134252223 1714134252320 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134252225 1714134252321 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134252225 1714134252321 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134252223 1714134252323 OK +REQUEST request_4 1714134252225 1714134252323 OK +REQUEST request_13 1714134252230 1714134252325 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134252325 +REQUEST request_7 1714134252233 1714134252327 OK +REQUEST main.18e3ef94.css 1714134252223 1714134252329 OK +REQUEST request_12 1714134252291 1714134252333 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134252291 1714134252334 OK +REQUEST request_1 1714134252248 1714134252343 OK +REQUEST request_9 1714134252253 1714134252349 OK +USER HistoryRecord START 1714134252356 +REQUEST request_7 1714134252263 1714134252359 OK +REQUEST request_8 1714134252253 1714134252369 OK +REQUEST request_0 1714134252356 1714134252373 OK +REQUEST request_13 1714134252291 1714134252387 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134252388 +REQUEST wiq2.ico 1714134252224 1714134252390 OK +USER HistoryRecord START 1714134252404 +REQUEST wiq2.ico 1714134252223 1714134252418 OK +REQUEST request_0 1714134252404 1714134252421 OK +REQUEST request_9 1714134252327 1714134252424 OK +REQUEST request_5 1714134252344 1714134252425 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134252343 1714134252438 OK +REQUEST request_8 1714134252327 1714134252441 OK +REQUEST request_2 1714134252344 1714134252442 OK +REQUEST request_6 1714134252344 1714134252442 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134252360 1714134252443 OK +REQUEST request_3 1714134252343 1714134252443 OK +REQUEST request_4 1714134252344 1714134252444 OK +REQUEST request_10 1714134252404 1714134252454 OK +REQUEST request_1 1714134252372 1714134252457 OK +REQUEST request_10 1714134252420 1714134252471 OK +REQUEST request_1 1714134252372 1714134252471 OK +REQUEST main.4a961c5c.js 1714134252223 1714134252473 OK +REQUEST main.4a961c5c.js 1714134252224 1714134252478 OK +REQUEST request_8 1714134252360 1714134252487 OK +REQUEST request_12 1714134252454 1714134252496 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134252454 1714134252504 OK +REQUEST request_1 1714134252420 1714134252505 OK +REQUEST request_12 1714134252471 1714134252511 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134252471 1714134252521 OK +REQUEST wiq2.ico 1714134252343 1714134252533 OK +REQUEST main.18e3ef94.css 1714134252457 1714134252540 OK +REQUEST request_5 1714134252457 1714134252540 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134252457 1714134252541 OK +REQUEST request_2 1714134252457 1714134252552 OK +REQUEST request_13 1714134252454 1714134252553 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134252471 1714134252553 OK +USER HistoryRecord END 1714134252553 +REQUEST request_6 1714134252457 1714134252554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134252471 1714134252554 OK +REQUEST request_3 1714134252457 1714134252554 OK +REQUEST request_6 1714134252472 1714134252554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134252471 1714134252555 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134252555 +REQUEST request_5 1714134252471 1714134252568 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134252471 1714134252577 OK +REQUEST request_3 1714134252471 1714134252578 OK +REQUEST request_4 1714134252505 1714134252587 OK +REQUEST request_3 1714134252505 1714134252588 OK +REQUEST request_5 1714134252505 1714134252589 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134252343 1714134252592 OK +REQUEST main.18e3ef94.css 1714134252505 1714134252593 OK +REQUEST request_2 1714134252505 1714134252601 OK +REQUEST request_6 1714134252505 1714134252602 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134252513 1714134252610 OK +REQUEST request_7 1714134252529 1714134252611 OK +REQUEST wiq2.ico 1714134252457 1714134252621 OK +REQUEST wiq2.ico 1714134252471 1714134252664 OK +REQUEST request_10 1714134252624 1714134252669 OK +REQUEST wiq2.ico 1714134252505 1714134252671 OK +REQUEST request_3 1714134252610 1714134252692 OK +REQUEST request_6 1714134252610 1714134252693 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134252610 1714134252694 OK +REQUEST main.4a961c5c.js 1714134252457 1714134252702 OK +REQUEST request_2 1714134252610 1714134252705 OK +REQUEST request_4 1714134252610 1714134252706 OK +REQUEST request_5 1714134252610 1714134252706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134252611 1714134252710 OK +REQUEST request_13 1714134252669 1714134252711 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134252669 1714134252713 OK +REQUEST request_8 1714134252611 1714134252720 OK +REQUEST request_12 1714134252669 1714134252766 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134252766 +REQUEST main.4a961c5c.js 1714134252471 1714134252766 OK +REQUEST main.4a961c5c.js 1714134252505 1714134252791 OK +REQUEST request_1 1714134252715 1714134252798 OK +REQUEST wiq2.ico 1714134252610 1714134252801 OK +REQUEST request_1 1714134252745 1714134252827 OK +REQUEST request_2 1714134252798 1714134252881 OK +REQUEST request_5 1714134252798 1714134252882 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134252798 1714134252894 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134252798 1714134252894 OK +REQUEST request_4 1714134252798 1714134252896 OK +REQUEST main.18e3ef94.css 1714134252798 1714134252899 OK +REQUEST main.4a961c5c.js 1714134252610 1714134252901 OK +REQUEST request_1 1714134252808 1714134252905 OK +REQUEST request_7 1714134252808 1714134252906 OK +REQUEST request_4 1714134252828 1714134252911 OK +REQUEST main.18e3ef94.css 1714134252828 1714134252912 OK +REQUEST request_2 1714134252828 1714134252912 OK +REQUEST request_6 1714134252828 1714134252923 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134252828 1714134252923 OK +REQUEST request_5 1714134252828 1714134252925 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134252798 1714134252959 OK +REQUEST request_7 1714134252870 1714134252966 OK +REQUEST request_7 1714134252886 1714134252982 OK +REQUEST request_10 1714134252932 1714134252984 OK +REQUEST request_2 1714134252906 1714134252988 OK +REQUEST wiq2.ico 1714134252828 1714134252989 OK +REQUEST request_3 1714134252906 1714134252990 OK +REQUEST request_5 1714134252906 1714134253001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134252906 1714134253001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134252906 1714134253003 OK +REQUEST request_9 1714134252906 1714134253003 OK +REQUEST main.18e3ef94.css 1714134252906 1714134253005 OK +REQUEST request_13 1714134252984 1714134253033 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134252984 1714134253036 OK +REQUEST request_8 1714134252906 1714134253041 OK +REQUEST request_1 1714134252964 1714134253046 OK +REQUEST main.4a961c5c.js 1714134252798 1714134253050 OK +REQUEST request_10 1714134253010 1714134253055 OK +REQUEST request_9 1714134252966 1714134253063 OK +REQUEST request_9 1714134252982 1714134253064 OK +REQUEST main.4a961c5c.js 1714134252828 1714134253072 OK +REQUEST request_7 1714134252980 1714134253076 OK +REQUEST request_12 1714134252984 1714134253080 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253080 +REQUEST request_13 1714134253055 1714134253096 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134252906 1714134253097 OK +REQUEST request_11 1714134253055 1714134253102 OK +REQUEST request_8 1714134252966 1714134253107 OK +REQUEST request_8 1714134252982 1714134253114 OK +REQUEST request_4 1714134253046 1714134253129 OK +REQUEST request_2 1714134253046 1714134253129 OK +REQUEST request_6 1714134253046 1714134253132 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134253055 1714134253137 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253137 +REQUEST request_5 1714134253046 1714134253142 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134253046 1714134253144 OK +REQUEST main.18e3ef94.css 1714134253046 1714134253146 OK +REQUEST request_10 1714134253120 1714134253163 OK +REQUEST request_10 1714134253120 1714134253170 OK +REQUEST request_9 1714134253076 1714134253175 OK +REQUEST request_8 1714134253076 1714134253190 OK +REQUEST main.4a961c5c.js 1714134252906 1714134253194 OK +REQUEST request_10 1714134253152 1714134253195 OK +REQUEST request_11 1714134253163 1714134253206 OK +REQUEST wiq2.ico 1714134253046 1714134253208 OK +REQUEST request_11 1714134253170 1714134253220 OK +USER HistoryRecord START 1714134253231 +REQUEST request_10 1714134253184 1714134253234 OK +REQUEST request_11 1714134253195 1714134253239 OK +REQUEST request_12 1714134253163 1714134253245 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134253231 1714134253250 OK +REQUEST request_12 1714134253170 1714134253251 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134253170 1714134253252 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253252 +REQUEST request_13 1714134253163 1714134253260 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253260 +REQUEST request_12 1714134253234 1714134253275 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134253278 +REQUEST request_11 1714134253234 1714134253284 OK +REQUEST request_12 1714134253195 1714134253290 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134253195 1714134253291 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253291 +REQUEST request_0 1714134253278 1714134253296 OK +REQUEST request_13 1714134253234 1714134253329 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253329 +REQUEST main.4a961c5c.js 1714134253046 1714134253335 OK +REQUEST request_1 1714134253278 1714134253363 OK +REQUEST request_2 1714134253363 1714134253446 OK +REQUEST main.18e3ef94.css 1714134253363 1714134253447 OK +REQUEST request_5 1714134253363 1714134253447 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134253363 1714134253447 OK +REQUEST request_6 1714134253363 1714134253460 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134253363 1714134253460 OK +REQUEST request_10 1714134253434 1714134253479 OK +REQUEST request_7 1714134253403 1714134253499 OK +REQUEST request_12 1714134253479 1714134253521 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134253479 1714134253523 OK +REQUEST wiq2.ico 1714134253363 1714134253529 OK +REQUEST request_13 1714134253479 1714134253574 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253575 +REQUEST request_9 1714134253499 1714134253584 OK +REQUEST request_8 1714134253499 1714134253605 OK +REQUEST main.4a961c5c.js 1714134253363 1714134253655 OK +REQUEST request_10 1714134253637 1714134253680 OK +REQUEST request_13 1714134253681 1714134253722 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134253681 1714134253725 OK +REQUEST request_12 1714134253681 1714134253763 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253763 +USER HistoryRecord START 1714134253810 +REQUEST request_1 1714134253716 1714134253812 OK +REQUEST request_0 1714134253810 1714134253828 OK +REQUEST request_10 1714134253826 1714134253875 OK +REQUEST request_2 1714134253813 1714134253895 OK +REQUEST request_6 1714134253813 1714134253895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134253810 1714134253906 OK +REQUEST request_5 1714134253813 1714134253908 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134253858 1714134253908 OK +REQUEST request_4 1714134253813 1714134253909 OK +REQUEST request_3 1714134253812 1714134253909 OK +REQUEST main.18e3ef94.css 1714134253812 1714134253911 OK +REQUEST request_12 1714134253875 1714134253916 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134253875 1714134253919 OK +REQUEST request_12 1714134253908 1714134253948 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134253908 1714134253958 OK +REQUEST request_13 1714134253875 1714134253959 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253959 +REQUEST request_10 1714134253921 1714134253964 OK +REQUEST request_13 1714134253908 1714134253991 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134253991 +REQUEST wiq2.ico 1714134253812 1714134254001 OK +REQUEST request_9 1714134253906 1714134254004 OK +REQUEST request_12 1714134253965 1714134254006 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134253965 1714134254010 OK +REQUEST request_8 1714134253906 1714134254015 OK +REQUEST main.4a961c5c.js 1714134253812 1714134254059 OK +REQUEST request_13 1714134253965 1714134254062 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254062 +REQUEST request_10 1714134254047 1714134254097 OK +REQUEST request_10 1714134254063 1714134254112 OK +USER HistoryRecord START 1714134254127 +REQUEST request_0 1714134254127 1714134254145 OK +REQUEST request_11 1714134254097 1714134254147 OK +REQUEST request_12 1714134254112 1714134254153 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134254063 1714134254159 OK +REQUEST request_11 1714134254112 1714134254161 OK +REQUEST request_12 1714134254097 1714134254179 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134254097 1714134254180 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254181 +REQUEST request_13 1714134254112 1714134254207 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254207 +REQUEST request_9 1714134254160 1714134254244 OK +REQUEST request_8 1714134254160 1714134254265 OK +REQUEST request_1 1714134254237 1714134254320 OK +REQUEST request_1 1714134254237 1714134254334 OK +REQUEST request_1 1714134254253 1714134254335 OK +REQUEST request_2 1714134254320 1714134254403 OK +REQUEST request_5 1714134254320 1714134254403 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134254320 1714134254404 OK +REQUEST request_6 1714134254320 1714134254416 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134254334 1714134254416 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134254334 1714134254416 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134254320 1714134254416 OK +REQUEST request_4 1714134254320 1714134254418 OK +REQUEST request_4 1714134254334 1714134254419 OK +REQUEST request_5 1714134254335 1714134254419 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134254334 1714134254421 OK +REQUEST request_10 1714134254378 1714134254429 OK +REQUEST request_2 1714134254334 1714134254430 OK +REQUEST request_2 1714134254335 1714134254432 OK +REQUEST request_3 1714134254334 1714134254432 OK +REQUEST request_6 1714134254335 1714134254433 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134254335 1714134254434 OK +REQUEST request_4 1714134254335 1714134254434 OK +REQUEST main.18e3ef94.css 1714134254335 1714134254440 OK +REQUEST request_11 1714134254429 1714134254481 OK +REQUEST wiq2.ico 1714134254320 1714134254483 OK +REQUEST request_7 1714134254410 1714134254492 OK +REQUEST wiq2.ico 1714134254335 1714134254503 OK +REQUEST request_10 1714134254457 1714134254507 OK +REQUEST request_13 1714134254429 1714134254512 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134254426 1714134254522 OK +REQUEST request_12 1714134254429 1714134254525 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254525 +REQUEST wiq2.ico 1714134254334 1714134254531 OK +REQUEST request_10 1714134254488 1714134254538 OK +REQUEST request_13 1714134254507 1714134254554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134254507 1714134254557 OK +REQUEST request_1 1714134254488 1714134254573 OK +REQUEST main.4a961c5c.js 1714134254334 1714134254585 OK +REQUEST request_11 1714134254538 1714134254589 OK +REQUEST main.4a961c5c.js 1714134254335 1714134254589 OK +REQUEST request_9 1714134254492 1714134254590 OK +REQUEST request_12 1714134254507 1714134254590 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254590 +REQUEST request_8 1714134254492 1714134254593 OK +REQUEST request_5 1714134254523 1714134254606 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134254522 1714134254606 OK +REQUEST main.4a961c5c.js 1714134254320 1714134254610 OK +REQUEST request_3 1714134254522 1714134254619 OK +REQUEST request_6 1714134254523 1714134254619 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134254523 1714134254620 OK +REQUEST request_13 1714134254538 1714134254621 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134254523 1714134254621 OK +REQUEST request_12 1714134254538 1714134254635 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254635 +REQUEST request_5 1714134254574 1714134254655 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134254574 1714134254656 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134254573 1714134254657 OK +REQUEST request_3 1714134254573 1714134254657 OK +REQUEST request_4 1714134254574 1714134254668 OK +REQUEST request_2 1714134254574 1714134254670 OK +REQUEST request_7 1714134254599 1714134254683 OK +REQUEST wiq2.ico 1714134254522 1714134254714 OK +REQUEST request_7 1714134254631 1714134254714 OK +REQUEST wiq2.ico 1714134254573 1714134254737 OK +REQUEST request_10 1714134254726 1714134254769 OK +REQUEST request_9 1714134254683 1714134254780 OK +REQUEST request_8 1714134254683 1714134254788 OK +REQUEST request_9 1714134254714 1714134254797 OK +REQUEST request_13 1714134254769 1714134254810 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134254522 1714134254813 OK +REQUEST request_11 1714134254769 1714134254815 OK +REQUEST request_8 1714134254714 1714134254818 OK +REQUEST main.4a961c5c.js 1714134254573 1714134254819 OK +REQUEST request_12 1714134254769 1714134254851 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134254851 +USER HistoryRecord START 1714134254885 +REQUEST request_0 1714134254885 1714134254903 OK +REQUEST request_1 1714134254868 1714134254952 OK +REQUEST request_4 1714134254952 1714134255035 OK +REQUEST request_2 1714134254952 1714134255036 OK +REQUEST request_6 1714134254952 1714134255036 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134254952 1714134255048 OK +REQUEST request_5 1714134254952 1714134255049 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134254952 1714134255049 OK +USER HistoryRecord START 1714134255089 +REQUEST request_10 1714134255042 1714134255094 OK +REQUEST request_0 1714134255089 1714134255107 OK +REQUEST wiq2.ico 1714134254952 1714134255125 OK +REQUEST request_11 1714134255094 1714134255145 OK +USER HistoryRecord START 1714134255152 +REQUEST request_0 1714134255152 1714134255169 OK +REQUEST request_10 1714134255121 1714134255171 OK +REQUEST request_10 1714134255121 1714134255172 OK +REQUEST request_13 1714134255094 1714134255178 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134255094 1714134255191 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134255191 +REQUEST request_12 1714134255172 1714134255212 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134255171 1714134255213 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134255171 1714134255222 OK +REQUEST request_11 1714134255172 1714134255223 OK +REQUEST request_7 1714134255136 1714134255233 OK +REQUEST request_1 1714134255136 1714134255233 OK +REQUEST main.4a961c5c.js 1714134254952 1714134255242 OK +REQUEST request_10 1714134255198 1714134255249 OK +REQUEST request_13 1714134255172 1714134255254 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134255254 +REQUEST request_13 1714134255171 1714134255254 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134255254 +REQUEST request_11 1714134255249 1714134255300 OK +REQUEST request_3 1714134255233 1714134255315 OK +REQUEST request_5 1714134255234 1714134255316 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134255229 1714134255327 OK +REQUEST request_6 1714134255234 1714134255330 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134255233 1714134255331 OK +REQUEST request_13 1714134255249 1714134255332 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134255233 1714134255335 OK +REQUEST request_9 1714134255233 1714134255336 OK +REQUEST main.18e3ef94.css 1714134255233 1714134255338 OK +REQUEST request_12 1714134255249 1714134255344 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134255344 +REQUEST request_8 1714134255233 1714134255347 OK +REQUEST request_2 1714134255328 1714134255410 OK +REQUEST request_6 1714134255328 1714134255411 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134255328 1714134255412 OK +REQUEST request_5 1714134255328 1714134255423 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134255233 1714134255425 OK +REQUEST request_3 1714134255328 1714134255425 OK +REQUEST main.18e3ef94.css 1714134255328 1714134255426 OK +USER HistoryRecord START 1714134255429 +REQUEST request_0 1714134255429 1714134255447 OK +REQUEST main.4a961c5c.js 1714134255233 1714134255487 OK +REQUEST request_7 1714134255414 1714134255496 OK +REQUEST request_1 1714134255429 1714134255513 OK +REQUEST wiq2.ico 1714134255327 1714134255518 OK +REQUEST main.4a961c5c.js 1714134255327 1714134255578 OK +REQUEST request_9 1714134255496 1714134255581 OK +REQUEST request_4 1714134255513 1714134255595 OK +REQUEST request_2 1714134255513 1714134255596 OK +REQUEST request_5 1714134255513 1714134255597 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134255496 1714134255599 OK +REQUEST main.18e3ef94.css 1714134255513 1714134255600 OK +REQUEST request_6 1714134255513 1714134255608 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134255513 1714134255609 OK +REQUEST request_10 1714134255615 1714134255666 OK +REQUEST wiq2.ico 1714134255513 1714134255678 OK +REQUEST request_12 1714134255666 1714134255708 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134255666 1714134255716 OK +REQUEST request_13 1714134255666 1714134255750 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134255750 +REQUEST main.4a961c5c.js 1714134255513 1714134255760 OK +REQUEST request_1 1714134255694 1714134255777 OK +USER HistoryRecord START 1714134255834 +REQUEST request_0 1714134255834 1714134255853 OK +REQUEST request_3 1714134255777 1714134255860 OK +REQUEST request_6 1714134255778 1714134255861 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134255778 1714134255862 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134255778 1714134255873 OK +REQUEST request_4 1714134255778 1714134255883 OK +REQUEST main.18e3ef94.css 1714134255777 1714134255884 OK +USER HistoryRecord START 1714134255912 +REQUEST request_0 1714134255912 1714134255929 OK +REQUEST wiq2.ico 1714134255777 1714134255941 OK +REQUEST request_1 1714134255896 1714134255978 OK +REQUEST request_1 1714134255927 1714134256023 OK +REQUEST main.4a961c5c.js 1714134255777 1714134256023 OK +REQUEST request_3 1714134255978 1714134256061 OK +REQUEST request_6 1714134255979 1714134256062 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134255979 1714134256063 OK +REQUEST request_10 1714134256022 1714134256073 OK +REQUEST request_4 1714134255979 1714134256073 OK +REQUEST request_5 1714134255979 1714134256075 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134255978 1714134256076 OK +REQUEST request_3 1714134256023 1714134256104 OK +REQUEST request_2 1714134256024 1714134256107 OK +REQUEST request_6 1714134256024 1714134256107 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134256073 1714134256114 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134256023 1714134256119 OK +REQUEST request_5 1714134256024 1714134256120 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134256073 1714134256122 OK +REQUEST main.18e3ef94.css 1714134256023 1714134256124 OK +REQUEST wiq2.ico 1714134255978 1714134256141 OK +REQUEST request_7 1714134256053 1714134256150 OK +REQUEST request_1 1714134256069 1714134256154 OK +REQUEST request_13 1714134256073 1714134256154 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134256155 +USER HistoryRecord START 1714134256163 +USER HistoryRecord START 1714134256163 +REQUEST request_0 1714134256162 1714134256180 OK +REQUEST request_0 1714134256162 1714134256180 OK +REQUEST wiq2.ico 1714134256023 1714134256216 OK +REQUEST main.4a961c5c.js 1714134255978 1714134256226 OK +REQUEST request_9 1714134256151 1714134256234 OK +REQUEST request_5 1714134256154 1714134256236 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134256154 1714134256237 OK +REQUEST request_4 1714134256154 1714134256238 OK +REQUEST request_3 1714134256154 1714134256238 OK +REQUEST main.18e3ef94.css 1714134256154 1714134256252 OK +REQUEST request_6 1714134256154 1714134256252 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134256151 1714134256263 OK +REQUEST main.4a961c5c.js 1714134256023 1714134256269 OK +REQUEST request_7 1714134256223 1714134256307 OK +REQUEST request_10 1714134256270 1714134256320 OK +REQUEST wiq2.ico 1714134256154 1714134256320 OK +REQUEST request_13 1714134256320 1714134256362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134256320 1714134256370 OK +REQUEST main.4a961c5c.js 1714134256154 1714134256404 OK +REQUEST request_9 1714134256307 1714134256404 OK +REQUEST request_8 1714134256307 1714134256408 OK +REQUEST request_12 1714134256320 1714134256416 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134256417 +USER HistoryRecord START 1714134256424 +REQUEST request_0 1714134256424 1714134256441 OK +REQUEST request_1 1714134256377 1714134256462 OK +REQUEST request_1 1714134256424 1714134256506 OK +REQUEST request_2 1714134256463 1714134256546 OK +REQUEST request_3 1714134256462 1714134256546 OK +REQUEST request_4 1714134256462 1714134256559 OK +REQUEST request_6 1714134256463 1714134256559 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134256463 1714134256559 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134256462 1714134256561 OK +REQUEST request_4 1714134256506 1714134256588 OK +REQUEST request_6 1714134256507 1714134256588 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134256506 1714134256590 OK +USER HistoryRecord START 1714134256596 +REQUEST request_3 1714134256506 1714134256601 OK +REQUEST request_2 1714134256506 1714134256602 OK +REQUEST request_5 1714134256507 1714134256604 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134256595 1714134256614 OK +REQUEST wiq2.ico 1714134256462 1714134256629 OK +REQUEST request_10 1714134256595 1714134256639 OK +REQUEST request_7 1714134256563 1714134256660 OK +REQUEST wiq2.ico 1714134256506 1714134256668 OK +USER HistoryRecord START 1714134256672 +REQUEST request_11 1714134256639 1714134256682 OK +USER HistoryRecord START 1714134256687 +REQUEST request_12 1714134256639 1714134256689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134256672 1714134256689 OK +REQUEST request_7 1714134256611 1714134256694 OK +REQUEST request_0 1714134256687 1714134256704 OK +REQUEST request_7 1714134256611 1714134256710 OK +REQUEST main.4a961c5c.js 1714134256462 1714134256714 OK +REQUEST request_13 1714134256639 1714134256735 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134256735 +REQUEST request_9 1714134256661 1714134256756 OK +REQUEST request_7 1714134256687 1714134256770 OK +REQUEST request_8 1714134256661 1714134256772 OK +REQUEST request_9 1714134256694 1714134256777 OK +REQUEST main.4a961c5c.js 1714134256506 1714134256792 OK +REQUEST request_9 1714134256710 1714134256807 OK +REQUEST request_8 1714134256694 1714134256813 OK +REQUEST request_10 1714134256795 1714134256840 OK +REQUEST request_8 1714134256710 1714134256842 OK +REQUEST request_9 1714134256770 1714134256854 OK +REQUEST request_10 1714134256826 1714134256870 OK +REQUEST request_12 1714134256840 1714134256881 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134256840 1714134256884 OK +REQUEST request_8 1714134256770 1714134256885 OK +REQUEST request_12 1714134256871 1714134256912 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134256870 1714134256915 OK +REQUEST request_13 1714134256840 1714134256922 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134256922 +REQUEST request_13 1714134256871 1714134256966 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134256966 +REQUEST request_7 1714134256920 1714134257001 OK +REQUEST request_9 1714134257001 1714134257096 OK +REQUEST request_8 1714134257001 1714134257105 OK +USER HistoryRecord START 1714134257214 +REQUEST request_0 1714134257214 1714134257232 OK +REQUEST request_7 1714134257167 1714134257251 OK +REQUEST request_1 1714134257260 1714134257344 OK +REQUEST request_9 1714134257251 1714134257348 OK +REQUEST request_8 1714134257251 1714134257355 OK +REQUEST request_1 1714134257306 1714134257401 OK +REQUEST request_10 1714134257352 1714134257404 OK +REQUEST request_4 1714134257344 1714134257428 OK +REQUEST request_3 1714134257344 1714134257428 OK +REQUEST request_6 1714134257344 1714134257428 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134257344 1714134257429 OK +REQUEST request_2 1714134257344 1714134257440 OK +REQUEST request_5 1714134257344 1714134257441 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134257404 1714134257446 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134257446 +REQUEST request_11 1714134257404 1714134257454 OK +REQUEST request_0 1714134257446 1714134257462 OK +REQUEST request_6 1714134257402 1714134257484 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134257402 1714134257485 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134257402 1714134257486 OK +REQUEST request_4 1714134257402 1714134257486 OK +REQUEST request_2 1714134257402 1714134257498 OK +REQUEST request_12 1714134257404 1714134257499 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134257499 +REQUEST request_3 1714134257402 1714134257507 OK +REQUEST wiq2.ico 1714134257344 1714134257509 OK +REQUEST wiq2.ico 1714134257402 1714134257589 OK +REQUEST main.4a961c5c.js 1714134257344 1714134257593 OK +REQUEST request_7 1714134257540 1714134257635 OK +REQUEST request_10 1714134257601 1714134257645 OK +REQUEST request_7 1714134257586 1714134257671 OK +REQUEST request_12 1714134257646 1714134257687 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134257645 1714134257689 OK +REQUEST main.4a961c5c.js 1714134257402 1714134257696 OK +REQUEST request_7 1714134257617 1714134257714 OK +REQUEST request_9 1714134257636 1714134257720 OK +REQUEST request_13 1714134257646 1714134257728 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134257728 +REQUEST request_8 1714134257636 1714134257745 OK +USER HistoryRecord START 1714134257754 +REQUEST request_9 1714134257671 1714134257755 OK +REQUEST request_0 1714134257754 1714134257773 OK +REQUEST request_8 1714134257671 1714134257774 OK +REQUEST request_7 1714134257708 1714134257788 OK +REQUEST request_9 1714134257714 1714134257798 OK +REQUEST request_8 1714134257714 1714134257823 OK +REQUEST request_9 1714134257788 1714134257886 OK +REQUEST request_8 1714134257788 1714134257888 OK +REQUEST request_1 1714134257831 1714134257916 OK +REQUEST request_7 1714134257863 1714134257961 OK +USER HistoryRecord START 1714134257987 +REQUEST request_4 1714134257916 1714134257998 OK +REQUEST request_5 1714134257916 1714134258001 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord START 1714134258003 +REQUEST request_0 1714134257987 1714134258005 OK +REQUEST request_6 1714134257916 1714134258013 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134257916 1714134258014 OK +REQUEST request_3 1714134257916 1714134258015 OK +REQUEST main.18e3ef94.css 1714134257916 1714134258020 OK +REQUEST request_0 1714134258003 1714134258021 OK +REQUEST request_9 1714134257961 1714134258044 OK +REQUEST request_8 1714134257961 1714134258068 OK +REQUEST wiq2.ico 1714134257916 1714134258083 OK +USER HistoryRecord START 1714134258098 +REQUEST request_0 1714134258098 1714134258117 OK +REQUEST main.4a961c5c.js 1714134257916 1714134258167 OK +REQUEST request_1 1714134258159 1714134258255 OK +REQUEST request_10 1714134258269 1714134258320 OK +REQUEST request_6 1714134258255 1714134258337 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134258255 1714134258338 OK +REQUEST request_3 1714134258255 1714134258338 OK +USER HistoryRecord START 1714134258346 +REQUEST request_2 1714134258255 1714134258351 OK +REQUEST main.18e3ef94.css 1714134258255 1714134258352 OK +REQUEST request_5 1714134258255 1714134258352 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134258346 1714134258364 OK +REQUEST request_13 1714134258320 1714134258368 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134258320 1714134258371 OK +REQUEST request_12 1714134258320 1714134258417 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134258417 +REQUEST request_7 1714134258346 1714134258430 OK +USER HistoryRecord START 1714134258440 +REQUEST wiq2.ico 1714134258255 1714134258445 OK +REQUEST request_10 1714134258409 1714134258452 OK +REQUEST request_0 1714134258440 1714134258458 OK +USER HistoryRecord START 1714134258472 +USER HistoryRecord START 1714134258487 +REQUEST request_0 1714134258471 1714134258489 OK +REQUEST request_12 1714134258453 1714134258495 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134258453 1714134258497 OK +REQUEST request_0 1714134258487 1714134258505 OK +REQUEST request_9 1714134258431 1714134258513 OK +REQUEST request_8 1714134258431 1714134258531 OK +REQUEST main.4a961c5c.js 1714134258255 1714134258541 OK +REQUEST request_13 1714134258453 1714134258550 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134258550 +USER HistoryRecord START 1714134258564 +REQUEST request_0 1714134258564 1714134258585 OK +REQUEST request_7 1714134258517 1714134258613 OK +REQUEST request_7 1714134258532 1714134258618 OK +REQUEST request_7 1714134258532 1714134258628 OK +USER HistoryRecord START 1714134258672 +REQUEST request_0 1714134258672 1714134258690 OK +REQUEST request_9 1714134258613 1714134258695 OK +REQUEST request_9 1714134258629 1714134258711 OK +REQUEST request_9 1714134258618 1714134258715 OK +REQUEST request_8 1714134258618 1714134258732 OK +REQUEST request_8 1714134258613 1714134258754 OK +REQUEST request_8 1714134258628 1714134258761 OK +REQUEST request_7 1714134258718 1714134258802 OK +REQUEST request_10 1714134258782 1714134258832 OK +REQUEST request_10 1714134258813 1714134258857 OK +REQUEST request_12 1714134258832 1714134258874 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134258832 1714134258883 OK +REQUEST request_10 1714134258844 1714134258895 OK +REQUEST request_9 1714134258802 1714134258897 OK +REQUEST request_12 1714134258857 1714134258898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134258802 1714134258905 OK +REQUEST request_11 1714134258857 1714134258907 OK +REQUEST request_13 1714134258832 1714134258914 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134258915 +REQUEST request_10 1714134258890 1714134258934 OK +REQUEST request_12 1714134258896 1714134258936 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134258895 1714134258945 OK +REQUEST request_13 1714134258857 1714134258953 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134258953 +REQUEST request_11 1714134258934 1714134258979 OK +REQUEST request_1 1714134258906 1714134258989 OK +REQUEST request_13 1714134258896 1714134258992 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134258992 +REQUEST request_13 1714134258934 1714134259018 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134258934 1714134259031 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134259031 +REQUEST request_3 1714134258989 1714134259073 OK +REQUEST request_5 1714134258990 1714134259073 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134258990 1714134259074 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134258989 1714134259084 OK +REQUEST request_4 1714134258989 1714134259086 OK +REQUEST main.18e3ef94.css 1714134258989 1714134259088 OK +REQUEST request_10 1714134259107 1714134259151 OK +REQUEST wiq2.ico 1714134258989 1714134259156 OK +REQUEST request_7 1714134259092 1714134259187 OK +REQUEST request_12 1714134259151 1714134259192 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134259151 1714134259195 OK +REQUEST request_1 1714134259123 1714134259220 OK +REQUEST main.4a961c5c.js 1714134258989 1714134259235 OK +REQUEST request_13 1714134259151 1714134259247 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134259247 +REQUEST request_1 1714134259185 1714134259270 OK +REQUEST request_7 1714134259200 1714134259283 OK +REQUEST request_9 1714134259187 1714134259284 OK +REQUEST request_8 1714134259187 1714134259295 OK +REQUEST request_2 1714134259220 1714134259302 OK +REQUEST request_3 1714134259220 1714134259302 OK +REQUEST request_6 1714134259221 1714134259305 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134259221 1714134259315 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134259220 1714134259322 OK +REQUEST main.18e3ef94.css 1714134259220 1714134259332 OK +REQUEST request_4 1714134259270 1714134259352 OK +REQUEST request_2 1714134259270 1714134259353 OK +REQUEST request_6 1714134259270 1714134259355 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134259270 1714134259365 OK +REQUEST request_9 1714134259283 1714134259366 OK +REQUEST request_5 1714134259270 1714134259366 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134259270 1714134259367 OK +REQUEST request_8 1714134259283 1714134259388 OK +REQUEST request_10 1714134259356 1714134259400 OK +REQUEST wiq2.ico 1714134259220 1714134259409 OK +REQUEST request_13 1714134259401 1714134259441 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134259400 1714134259444 OK +REQUEST wiq2.ico 1714134259270 1714134259446 OK +REQUEST main.4a961c5c.js 1714134259220 1714134259472 OK +REQUEST request_12 1714134259400 1714134259496 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134259496 +REQUEST request_1 1714134259449 1714134259533 OK +REQUEST main.4a961c5c.js 1714134259270 1714134259558 OK +REQUEST request_3 1714134259533 1714134259615 OK +REQUEST request_5 1714134259533 1714134259616 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134259533 1714134259617 OK +REQUEST request_2 1714134259533 1714134259630 OK +REQUEST request_6 1714134259533 1714134259630 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134259533 1714134259631 OK +REQUEST wiq2.ico 1714134259533 1714134259699 OK +REQUEST main.4a961c5c.js 1714134259533 1714134259781 OK +REQUEST request_10 1714134259761 1714134259811 OK +REQUEST request_10 1714134259776 1714134259820 OK +REQUEST request_7 1714134259730 1714134259827 OK +REQUEST request_13 1714134259812 1714134259859 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134259811 1714134259861 OK +REQUEST request_11 1714134259820 1714134259864 OK +REQUEST request_13 1714134259821 1714134259868 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134259839 1714134259889 OK +REQUEST request_12 1714134259811 1714134259893 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134259894 +REQUEST request_12 1714134259820 1714134259917 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134259918 +REQUEST request_9 1714134259827 1714134259925 OK +REQUEST request_8 1714134259827 1714134259934 OK +REQUEST request_1 1714134259854 1714134259938 OK +REQUEST request_10 1714134259896 1714134259940 OK +REQUEST request_11 1714134259889 1714134259941 OK +REQUEST request_13 1714134259890 1714134259971 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134259940 1714134259983 OK +REQUEST request_12 1714134259889 1714134259987 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134259940 1714134259987 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134259987 +REQUEST request_1 1714134259933 1714134260016 OK +REQUEST request_7 1714134259933 1714134260017 OK +REQUEST request_5 1714134259938 1714134260020 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134259938 1714134260021 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134259938 1714134260022 OK +REQUEST request_3 1714134259938 1714134260034 OK +REQUEST request_2 1714134259938 1714134260034 OK +REQUEST request_12 1714134259940 1714134260035 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134260035 +REQUEST main.18e3ef94.css 1714134259938 1714134260036 OK +REQUEST request_6 1714134260017 1714134260099 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134260017 1714134260099 OK +REQUEST wiq2.ico 1714134259938 1714134260100 OK +REQUEST request_3 1714134260016 1714134260100 OK +REQUEST request_5 1714134260017 1714134260112 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134260017 1714134260114 OK +REQUEST request_9 1714134260017 1714134260118 OK +REQUEST main.18e3ef94.css 1714134260016 1714134260119 OK +REQUEST request_8 1714134260017 1714134260121 OK +REQUEST request_10 1714134260075 1714134260125 OK +REQUEST request_11 1714134260125 1714134260176 OK +REQUEST wiq2.ico 1714134260016 1714134260180 OK +REQUEST request_7 1714134260107 1714134260203 OK +REQUEST request_13 1714134260126 1714134260210 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134260125 1714134260222 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134260222 +REQUEST main.4a961c5c.js 1714134259938 1714134260229 OK +REQUEST main.4a961c5c.js 1714134260016 1714134260265 OK +REQUEST request_1 1714134260183 1714134260267 OK +REQUEST request_1 1714134260183 1714134260278 OK +REQUEST request_9 1714134260203 1714134260286 OK +REQUEST request_8 1714134260203 1714134260313 OK +REQUEST request_3 1714134260267 1714134260348 OK +REQUEST request_5 1714134260267 1714134260349 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134260277 1714134260361 OK +REQUEST request_3 1714134260278 1714134260361 OK +REQUEST request_6 1714134260278 1714134260361 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134260267 1714134260362 OK +REQUEST request_2 1714134260278 1714134260362 OK +REQUEST request_2 1714134260267 1714134260362 OK +REQUEST request_6 1714134260267 1714134260363 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134260267 1714134260364 OK +REQUEST request_5 1714134260278 1714134260373 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134260278 1714134260376 OK +REQUEST main.18e3ef94.css 1714134260278 1714134260381 OK +REQUEST wiq2.ico 1714134260267 1714134260432 OK +REQUEST request_9 1714134260361 1714134260445 OK +REQUEST request_8 1714134260361 1714134260463 OK +REQUEST wiq2.ico 1714134260278 1714134260468 OK +REQUEST request_7 1714134260402 1714134260484 OK +REQUEST request_1 1714134260449 1714134260546 OK +REQUEST main.4a961c5c.js 1714134260267 1714134260557 OK +REQUEST main.4a961c5c.js 1714134260278 1714134260567 OK +REQUEST request_9 1714134260485 1714134260569 OK +REQUEST request_8 1714134260485 1714134260585 OK +REQUEST request_10 1714134260543 1714134260588 OK +REQUEST request_7 1714134260527 1714134260609 OK +REQUEST request_4 1714134260546 1714134260628 OK +REQUEST request_2 1714134260546 1714134260628 OK +REQUEST request_13 1714134260588 1714134260629 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134260588 1714134260632 OK +REQUEST request_5 1714134260546 1714134260642 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134260546 1714134260642 OK +REQUEST request_6 1714134260546 1714134260643 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134260546 1714134260644 OK +REQUEST request_12 1714134260588 1714134260671 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134260671 +REQUEST request_9 1714134260609 1714134260691 OK +REQUEST request_1 1714134260621 1714134260703 OK +REQUEST request_7 1714134260606 1714134260704 OK +REQUEST request_8 1714134260609 1714134260709 OK +REQUEST request_7 1714134260637 1714134260718 OK +REQUEST wiq2.ico 1714134260546 1714134260735 OK +REQUEST request_1 1714134260699 1714134260783 OK +REQUEST request_2 1714134260704 1714134260788 OK +REQUEST request_10 1714134260744 1714134260790 OK +REQUEST main.18e3ef94.css 1714134260704 1714134260792 OK +REQUEST request_6 1714134260704 1714134260799 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134260704 1714134260800 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134260704 1714134260801 OK +REQUEST request_4 1714134260704 1714134260802 OK +REQUEST request_9 1714134260704 1714134260802 OK +REQUEST request_9 1714134260718 1714134260804 OK +REQUEST request_10 1714134260760 1714134260810 OK +REQUEST request_1 1714134260714 1714134260814 OK +REQUEST request_8 1714134260704 1714134260823 OK +REQUEST request_10 1714134260776 1714134260829 OK +REQUEST main.4a961c5c.js 1714134260546 1714134260832 OK +REQUEST request_11 1714134260790 1714134260835 OK +REQUEST request_13 1714134260790 1714134260838 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134260718 1714134260845 OK +REQUEST request_12 1714134260810 1714134260851 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134260810 1714134260859 OK +REQUEST request_5 1714134260783 1714134260865 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134260783 1714134260866 OK +REQUEST request_4 1714134260783 1714134260867 OK +REQUEST wiq2.ico 1714134260704 1714134260867 OK +REQUEST request_6 1714134260783 1714134260879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134260829 1714134260881 OK +REQUEST request_3 1714134260783 1714134260882 OK +REQUEST main.18e3ef94.css 1714134260783 1714134260885 OK +REQUEST request_12 1714134260790 1714134260886 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134260886 +REQUEST request_7 1714134260792 1714134260887 OK +REQUEST request_13 1714134260810 1714134260894 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134260894 +REQUEST request_2 1714134260815 1714134260897 OK +REQUEST request_3 1714134260814 1714134260897 OK +REQUEST request_6 1714134260815 1714134260898 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134260814 1714134260898 OK +REQUEST request_7 1714134260807 1714134260904 OK +REQUEST request_4 1714134260814 1714134260909 OK +REQUEST request_5 1714134260815 1714134260912 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134260829 1714134260912 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134260829 1714134260925 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134260926 +REQUEST wiq2.ico 1714134260783 1714134260947 OK +REQUEST main.4a961c5c.js 1714134260704 1714134260947 OK +REQUEST request_10 1714134260906 1714134260949 OK +REQUEST request_9 1714134260887 1714134260969 OK +REQUEST request_13 1714134260950 1714134260992 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134260950 1714134260993 OK +REQUEST request_9 1714134260904 1714134260998 OK +REQUEST wiq2.ico 1714134260814 1714134261002 OK +REQUEST request_8 1714134260887 1714134261023 OK +REQUEST request_8 1714134260904 1714134261023 OK +REQUEST request_7 1714134260946 1714134261029 OK +REQUEST main.4a961c5c.js 1714134260783 1714134261031 OK +REQUEST request_12 1714134260950 1714134261045 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134261045 +REQUEST main.4a961c5c.js 1714134260814 1714134261105 OK +REQUEST request_9 1714134261029 1714134261126 OK +REQUEST request_8 1714134261029 1714134261131 OK +REQUEST request_1 1714134261241 1714134261339 OK +REQUEST request_10 1714134261304 1714134261354 OK +REQUEST request_12 1714134261354 1714134261395 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134261354 1714134261403 OK +REQUEST request_5 1714134261339 1714134261423 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134261339 1714134261423 OK +REQUEST main.18e3ef94.css 1714134261339 1714134261424 OK +REQUEST request_4 1714134261339 1714134261424 OK +REQUEST request_10 1714134261388 1714134261432 OK +REQUEST request_13 1714134261354 1714134261436 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134261339 1714134261436 OK +USER HistoryRecord END 1714134261436 +REQUEST request_6 1714134261339 1714134261437 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134261432 1714134261476 OK +REQUEST request_12 1714134261432 1714134261528 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134261432 1714134261529 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134261529 +REQUEST wiq2.ico 1714134261339 1714134261530 OK +REQUEST request_7 1714134261461 1714134261558 OK +REQUEST request_1 1714134261477 1714134261573 OK +REQUEST main.4a961c5c.js 1714134261339 1714134261627 OK +REQUEST request_9 1714134261558 1714134261642 OK +REQUEST request_4 1714134261573 1714134261654 OK +REQUEST request_2 1714134261573 1714134261656 OK +REQUEST main.18e3ef94.css 1714134261573 1714134261657 OK +REQUEST request_6 1714134261573 1714134261668 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134261573 1714134261670 OK +REQUEST request_5 1714134261573 1714134261670 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134261558 1714134261671 OK +REQUEST wiq2.ico 1714134261573 1714134261763 OK +REQUEST request_7 1714134261712 1714134261808 OK +REQUEST main.4a961c5c.js 1714134261573 1714134261865 OK +REQUEST request_1 1714134261775 1714134261873 OK +REQUEST request_7 1714134261791 1714134261886 OK +REQUEST request_9 1714134261808 1714134261904 OK +REQUEST request_8 1714134261808 1714134261913 OK +REQUEST request_7 1714134261821 1714134261916 OK +REQUEST request_5 1714134261873 1714134261956 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134261873 1714134261958 OK +REQUEST request_3 1714134261873 1714134261958 OK +REQUEST request_4 1714134261873 1714134261970 OK +REQUEST request_2 1714134261873 1714134261970 OK +REQUEST request_6 1714134261873 1714134261970 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134261886 1714134261987 OK +REQUEST request_10 1714134261944 1714134261995 OK +REQUEST request_9 1714134261917 1714134262015 OK +REQUEST request_8 1714134261886 1714134262019 OK +REQUEST request_8 1714134261917 1714134262031 OK +REQUEST request_11 1714134261995 1714134262046 OK +REQUEST wiq2.ico 1714134261873 1714134262066 OK +REQUEST request_13 1714134261995 1714134262078 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134261995 1714134262092 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262092 +REQUEST request_1 1714134262007 1714134262102 OK +REQUEST request_1 1714134262023 1714134262107 OK +REQUEST main.4a961c5c.js 1714134261873 1714134262160 OK +REQUEST request_10 1714134262132 1714134262176 OK +REQUEST request_3 1714134262102 1714134262186 OK +REQUEST request_2 1714134262102 1714134262186 OK +REQUEST request_6 1714134262102 1714134262186 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134262107 1714134262188 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134262107 1714134262190 OK +REQUEST request_5 1714134262107 1714134262191 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134262107 1714134262191 OK +REQUEST request_5 1714134262102 1714134262198 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134262102 1714134262198 OK +REQUEST main.18e3ef94.css 1714134262102 1714134262203 OK +REQUEST request_2 1714134262107 1714134262204 OK +REQUEST request_4 1714134262107 1714134262205 OK +REQUEST request_1 1714134262132 1714134262218 OK +REQUEST request_11 1714134262176 1714134262220 OK +REQUEST request_13 1714134262176 1714134262259 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134262176 1714134262272 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262272 +REQUEST wiq2.ico 1714134262107 1714134262274 OK +REQUEST wiq2.ico 1714134262102 1714134262289 OK +REQUEST request_5 1714134262218 1714134262301 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134262218 1714134262301 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134262218 1714134262302 OK +REQUEST request_2 1714134262218 1714134262313 OK +REQUEST request_4 1714134262218 1714134262316 OK +REQUEST main.18e3ef94.css 1714134262218 1714134262318 OK +REQUEST main.4a961c5c.js 1714134262107 1714134262357 OK +REQUEST request_10 1714134262319 1714134262368 OK +REQUEST wiq2.ico 1714134262218 1714134262382 OK +REQUEST main.4a961c5c.js 1714134262102 1714134262391 OK +REQUEST request_12 1714134262369 1714134262410 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134262368 1714134262419 OK +REQUEST request_13 1714134262369 1714134262453 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262453 +REQUEST request_1 1714134262365 1714134262462 OK +REQUEST main.4a961c5c.js 1714134262218 1714134262464 OK +REQUEST request_7 1714134262380 1714134262477 OK +REQUEST request_10 1714134262474 1714134262518 OK +REQUEST request_7 1714134262443 1714134262526 OK +REQUEST request_2 1714134262463 1714134262545 OK +REQUEST request_6 1714134262463 1714134262546 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134262518 1714134262559 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134262463 1714134262560 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134262518 1714134262562 OK +REQUEST request_1 1714134262474 1714134262580 OK +REQUEST request_3 1714134262462 1714134262581 OK +REQUEST request_4 1714134262462 1714134262581 OK +REQUEST request_9 1714134262477 1714134262582 OK +REQUEST main.18e3ef94.css 1714134262462 1714134262583 OK +REQUEST request_1 1714134262508 1714134262592 OK +REQUEST request_8 1714134262477 1714134262599 OK +REQUEST request_1 1714134262505 1714134262599 OK +REQUEST request_12 1714134262518 1714134262599 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262599 +REQUEST request_9 1714134262526 1714134262612 OK +REQUEST request_8 1714134262526 1714134262638 OK +REQUEST request_10 1714134262598 1714134262643 OK +REQUEST wiq2.ico 1714134262462 1714134262654 OK +REQUEST request_6 1714134262581 1714134262663 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134262581 1714134262663 OK +REQUEST main.18e3ef94.css 1714134262581 1714134262664 OK +REQUEST request_5 1714134262581 1714134262665 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134262592 1714134262674 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134262592 1714134262674 OK +REQUEST request_4 1714134262592 1714134262675 OK +REQUEST request_2 1714134262592 1714134262675 OK +REQUEST request_2 1714134262581 1714134262677 OK +REQUEST request_4 1714134262581 1714134262678 OK +REQUEST request_3 1714134262599 1714134262681 OK +REQUEST request_1 1714134262598 1714134262681 OK +REQUEST request_2 1714134262599 1714134262682 OK +REQUEST request_5 1714134262599 1714134262683 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134262599 1714134262683 OK +REQUEST request_4 1714134262599 1714134262683 OK +REQUEST request_13 1714134262643 1714134262684 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134262643 1714134262685 OK +REQUEST request_6 1714134262592 1714134262688 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134262592 1714134262691 OK +REQUEST request_6 1714134262599 1714134262696 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134262462 1714134262715 OK +REQUEST request_12 1714134262643 1714134262738 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262738 +REQUEST wiq2.ico 1714134262580 1714134262747 OK +REQUEST request_10 1714134262714 1714134262756 OK +REQUEST wiq2.ico 1714134262592 1714134262763 OK +REQUEST request_6 1714134262682 1714134262764 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134262682 1714134262765 OK +REQUEST main.18e3ef94.css 1714134262682 1714134262765 OK +REQUEST request_5 1714134262682 1714134262777 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134262682 1714134262778 OK +REQUEST request_2 1714134262682 1714134262778 OK +REQUEST wiq2.ico 1714134262599 1714134262787 OK +REQUEST request_1 1714134262693 1714134262790 OK +REQUEST request_12 1714134262756 1714134262797 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134262756 1714134262799 OK +REQUEST request_13 1714134262756 1714134262840 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262840 +REQUEST wiq2.ico 1714134262682 1714134262846 OK +REQUEST main.4a961c5c.js 1714134262581 1714134262867 OK +REQUEST request_4 1714134262790 1714134262873 OK +REQUEST main.18e3ef94.css 1714134262790 1714134262874 OK +REQUEST request_2 1714134262790 1714134262874 OK +REQUEST main.4a961c5c.js 1714134262592 1714134262884 OK +REQUEST request_10 1714134262834 1714134262885 OK +REQUEST request_6 1714134262790 1714134262885 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134262790 1714134262886 OK +REQUEST request_5 1714134262790 1714134262886 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134262845 1714134262889 OK +REQUEST main.4a961c5c.js 1714134262599 1714134262895 OK +REQUEST request_12 1714134262885 1714134262925 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134262889 1714134262930 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134262889 1714134262933 OK +REQUEST request_11 1714134262885 1714134262935 OK +REQUEST request_13 1714134262885 1714134262967 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262968 +REQUEST request_13 1714134262889 1714134262972 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134262972 +REQUEST main.4a961c5c.js 1714134262682 1714134262972 OK +REQUEST wiq2.ico 1714134262790 1714134262980 OK +REQUEST request_7 1714134262944 1714134263027 OK +REQUEST request_7 1714134262960 1714134263055 OK +REQUEST request_7 1714134262991 1714134263075 OK +REQUEST main.4a961c5c.js 1714134262790 1714134263079 OK +REQUEST request_10 1714134263037 1714134263087 OK +REQUEST request_10 1714134263037 1714134263088 OK +REQUEST request_7 1714134263006 1714134263090 OK +REQUEST request_9 1714134263027 1714134263122 OK +REQUEST request_8 1714134263027 1714134263134 OK +REQUEST request_9 1714134263055 1714134263138 OK +REQUEST request_11 1714134263088 1714134263140 OK +REQUEST request_11 1714134263087 1714134263143 OK +REQUEST request_9 1714134263075 1714134263157 OK +REQUEST request_12 1714134263087 1714134263170 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134263088 1714134263171 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134263090 1714134263173 OK +REQUEST request_13 1714134263088 1714134263182 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134263183 +REQUEST request_12 1714134263088 1714134263183 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134263184 +REQUEST request_8 1714134263055 1714134263186 OK +REQUEST request_10 1714134263147 1714134263191 OK +REQUEST request_8 1714134263090 1714134263221 OK +REQUEST request_8 1714134263075 1714134263228 OK +REQUEST request_11 1714134263191 1714134263235 OK +REQUEST request_12 1714134263191 1714134263274 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134263191 1714134263286 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134263286 +REQUEST request_7 1714134263255 1714134263338 OK +REQUEST request_7 1714134263317 1714134263415 OK +REQUEST request_9 1714134263338 1714134263435 OK +REQUEST request_8 1714134263338 1714134263436 OK +REQUEST request_9 1714134263415 1714134263511 OK +REQUEST request_8 1714134263415 1714134263521 OK +REQUEST request_7 1714134263551 1714134263633 OK +REQUEST request_9 1714134263634 1714134263716 OK +REQUEST request_10 1714134263677 1714134263728 OK +REQUEST request_8 1714134263633 1714134263734 OK +REQUEST request_12 1714134263728 1714134263770 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134263728 1714134263778 OK +REQUEST request_13 1714134263728 1714134263825 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134263826 +REQUEST request_7 1714134263770 1714134263853 OK +REQUEST request_9 1714134263854 1714134263952 OK +REQUEST request_8 1714134263854 1714134263972 OK +REQUEST request_10 1714134263925 1714134263975 OK +REQUEST request_11 1714134263975 1714134264025 OK +REQUEST request_12 1714134263975 1714134264058 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134263975 1714134264072 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134264072 +REQUEST request_10 1714134264032 1714134264082 OK +REQUEST request_10 1714134264032 1714134264083 OK +REQUEST request_7 1714134264017 1714134264099 OK +REQUEST request_13 1714134264082 1714134264122 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134264083 1714134264124 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134264082 1714134264132 OK +REQUEST request_11 1714134264083 1714134264133 OK +REQUEST request_12 1714134264082 1714134264177 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134264178 +REQUEST request_12 1714134264083 1714134264180 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134264181 +REQUEST request_9 1714134264099 1714134264183 OK +REQUEST request_8 1714134264099 1714134264208 OK +REQUEST request_7 1714134264143 1714134264227 OK +REQUEST request_9 1714134264227 1714134264311 OK +REQUEST request_8 1714134264227 1714134264330 OK +REQUEST request_10 1714134264611 1714134264662 OK +REQUEST request_10 1714134264642 1714134264686 OK +REQUEST request_12 1714134264662 1714134264704 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134264611 1714134264707 OK +REQUEST request_11 1714134264662 1714134264712 OK +REQUEST request_13 1714134264686 1714134264727 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134264686 1714134264730 OK +REQUEST request_13 1714134264662 1714134264744 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134264744 +REQUEST request_12 1714134264686 1714134264781 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134264782 +REQUEST request_9 1714134264708 1714134264792 OK +REQUEST request_8 1714134264708 1714134264812 OK +REQUEST request_7 1714134264813 1714134264895 OK +REQUEST request_7 1714134264813 1714134264908 OK +REQUEST request_9 1714134264896 1714134264979 OK +REQUEST request_9 1714134264909 1714134264992 OK +REQUEST request_8 1714134264896 1714134265000 OK +REQUEST request_8 1714134264909 1714134265018 OK +REQUEST request_7 1714134265028 1714134265125 OK +REQUEST request_10 1714134265136 1714134265181 OK +REQUEST request_9 1714134265125 1714134265208 OK +REQUEST request_12 1714134265181 1714134265222 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134265181 1714134265226 OK +REQUEST request_8 1714134265125 1714134265235 OK +REQUEST request_10 1714134265198 1714134265248 OK +REQUEST request_10 1714134265230 1714134265274 OK +REQUEST request_10 1714134265230 1714134265276 OK +REQUEST request_13 1714134265181 1714134265278 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265278 +REQUEST request_13 1714134265248 1714134265290 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134265248 1714134265297 OK +REQUEST request_13 1714134265274 1714134265316 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134265274 1714134265318 OK +REQUEST request_11 1714134265276 1714134265320 OK +REQUEST request_7 1714134265246 1714134265343 OK +REQUEST request_12 1714134265248 1714134265344 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265345 +REQUEST request_12 1714134265274 1714134265356 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265356 +REQUEST request_13 1714134265276 1714134265358 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134265276 1714134265359 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265359 +REQUEST request_7 1714134265308 1714134265392 OK +REQUEST request_9 1714134265343 1714134265426 OK +REQUEST request_8 1714134265343 1714134265452 OK +REQUEST request_9 1714134265392 1714134265476 OK +REQUEST request_10 1714134265448 1714134265492 OK +REQUEST request_8 1714134265392 1714134265493 OK +REQUEST request_12 1714134265492 1714134265534 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134265492 1714134265535 OK +REQUEST request_10 1714134265525 1714134265575 OK +REQUEST request_13 1714134265492 1714134265589 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265590 +REQUEST request_11 1714134265575 1714134265626 OK +REQUEST request_12 1714134265575 1714134265658 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134265576 1714134265672 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265672 +REQUEST request_10 1714134265743 1714134265787 OK +REQUEST request_11 1714134265787 1714134265830 OK +REQUEST request_13 1714134265787 1714134265835 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134265787 1714134265884 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134265885 +REQUEST request_7 1714134265791 1714134265887 OK +REQUEST request_7 1714134265853 1714134265949 OK +REQUEST request_9 1714134265887 1714134265970 OK +REQUEST request_8 1714134265887 1714134265994 OK +REQUEST request_10 1714134265978 1714134266023 OK +REQUEST request_7 1714134265948 1714134266045 OK +REQUEST request_9 1714134265949 1714134266045 OK +REQUEST request_8 1714134265949 1714134266055 OK +REQUEST request_11 1714134266023 1714134266067 OK +REQUEST request_12 1714134266023 1714134266107 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134266023 1714134266118 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134266119 +REQUEST request_9 1714134266045 1714134266127 OK +REQUEST request_8 1714134266045 1714134266152 OK +REQUEST request_7 1714134266166 1714134266249 OK +REQUEST request_10 1714134266212 1714134266256 OK +REQUEST request_13 1714134266256 1714134266297 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134266256 1714134266301 OK +REQUEST request_9 1714134266249 1714134266346 OK +REQUEST request_8 1714134266249 1714134266350 OK +REQUEST request_12 1714134266256 1714134266352 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134266352 +REQUEST request_10 1714134266339 1714134266381 OK +REQUEST request_7 1714134266307 1714134266391 OK +REQUEST request_12 1714134266382 1714134266423 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134266381 1714134266424 OK +REQUEST request_9 1714134266391 1714134266472 OK +REQUEST request_13 1714134266382 1714134266477 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134266477 +REQUEST request_8 1714134266391 1714134266491 OK +REQUEST request_7 1714134266416 1714134266499 OK +REQUEST request_9 1714134266499 1714134266583 OK +REQUEST request_8 1714134266499 1714134266597 OK +REQUEST request_10 1714134266819 1714134266869 OK +REQUEST request_11 1714134266869 1714134266919 OK +REQUEST request_12 1714134266869 1714134266952 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134266869 1714134266966 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134266967 +REQUEST request_10 1714134267004 1714134267048 OK +REQUEST request_10 1714134267019 1714134267069 OK +REQUEST request_11 1714134267049 1714134267092 OK +REQUEST request_13 1714134267049 1714134267097 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134267069 1714134267110 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134267069 1714134267118 OK +REQUEST request_12 1714134267049 1714134267132 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134267132 +REQUEST request_13 1714134267069 1714134267151 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134267152 +REQUEST request_7 1714134267098 1714134267182 OK +REQUEST request_7 1714134267113 1714134267211 OK +REQUEST request_9 1714134267182 1714134267280 OK +REQUEST request_10 1714134267238 1714134267289 OK +REQUEST request_8 1714134267182 1714134267290 OK +REQUEST request_9 1714134267211 1714134267293 OK +REQUEST request_8 1714134267211 1714134267324 OK +REQUEST request_13 1714134267289 1714134267337 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134267289 1714134267339 OK +REQUEST request_12 1714134267289 1714134267385 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134267386 +REQUEST request_10 1714134267457 1714134267507 OK +REQUEST request_10 1714134267504 1714134267548 OK +REQUEST request_11 1714134267507 1714134267558 OK +REQUEST request_7 1714134267489 1714134267572 OK +REQUEST request_12 1714134267548 1714134267588 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134267548 1714134267591 OK +REQUEST request_13 1714134267507 1714134267603 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134267507 1714134267603 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134267603 +REQUEST request_13 1714134267548 1714134267630 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134267630 +REQUEST request_9 1714134267572 1714134267655 OK +REQUEST request_8 1714134267572 1714134267675 OK +REQUEST request_7 1714134267738 1714134267835 OK +REQUEST request_9 1714134267835 1714134267919 OK +REQUEST request_7 1714134267847 1714134267932 OK +REQUEST request_8 1714134267835 1714134267943 OK +REQUEST request_7 1714134267879 1714134267959 OK +REQUEST request_9 1714134267932 1714134268014 OK +REQUEST request_8 1714134267932 1714134268035 OK +REQUEST request_9 1714134267959 1714134268055 OK +REQUEST request_10 1714134268003 1714134268056 OK +REQUEST request_8 1714134267959 1714134268061 OK +REQUEST request_12 1714134268057 1714134268098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134268057 1714134268108 OK +REQUEST request_10 1714134268065 1714134268113 OK +REQUEST request_13 1714134268057 1714134268153 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134268153 +REQUEST request_13 1714134268114 1714134268155 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134268113 1714134268163 OK +REQUEST request_10 1714134268158 1714134268208 OK +REQUEST request_12 1714134268113 1714134268208 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134268209 +REQUEST request_11 1714134268208 1714134268259 OK +REQUEST request_12 1714134268208 1714134268291 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134268208 1714134268303 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134268304 +REQUEST request_10 1714134268356 1714134268400 OK +REQUEST request_13 1714134268401 1714134268442 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134268401 1714134268443 OK +REQUEST request_12 1714134268401 1714134268483 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134268483 +REQUEST request_10 1714134268497 1714134268541 OK +REQUEST request_11 1714134268542 1714134268586 OK +REQUEST request_13 1714134268542 1714134268624 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134268542 1714134268637 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134268637 +REQUEST request_10 1714134268607 1714134268651 OK +REQUEST request_7 1714134268560 1714134268657 OK +REQUEST request_12 1714134268651 1714134268693 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134268651 1714134268693 OK +REQUEST request_13 1714134268651 1714134268734 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134268735 +REQUEST request_9 1714134268657 1714134268741 OK +REQUEST request_8 1714134268657 1714134268763 OK +REQUEST request_7 1714134268715 1714134268812 OK +REQUEST request_9 1714134268812 1714134268909 OK +REQUEST request_8 1714134268812 1714134268917 OK +REQUEST request_7 1714134269045 1714134269127 OK +REQUEST request_7 1714134269076 1714134269174 OK +REQUEST request_7 1714134269138 1714134269220 OK +REQUEST request_9 1714134269127 1714134269222 OK +REQUEST request_8 1714134269127 1714134269225 OK +REQUEST request_9 1714134269174 1714134269257 OK +REQUEST request_8 1714134269174 1714134269282 OK +REQUEST request_9 1714134269220 1714134269302 OK +REQUEST request_8 1714134269220 1714134269320 OK +REQUEST request_10 1714134269293 1714134269337 OK +REQUEST request_7 1714134269262 1714134269358 OK +REQUEST request_11 1714134269337 1714134269381 OK +REQUEST request_10 1714134269340 1714134269390 OK +REQUEST request_12 1714134269337 1714134269420 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134269338 1714134269421 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134269421 +REQUEST request_13 1714134269391 1714134269438 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134269391 1714134269441 OK +REQUEST request_9 1714134269358 1714134269443 OK +REQUEST request_8 1714134269358 1714134269465 OK +REQUEST request_12 1714134269391 1714134269472 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134269472 +REQUEST request_7 1714134269480 1714134269562 OK +REQUEST request_7 1714134269480 1714134269576 OK +REQUEST request_9 1714134269562 1714134269644 OK +REQUEST request_8 1714134269562 1714134269666 OK +REQUEST request_9 1714134269576 1714134269672 OK +REQUEST request_7 1714134269605 1714134269687 OK +REQUEST request_8 1714134269576 1714134269687 OK +REQUEST request_10 1714134269682 1714134269725 OK +REQUEST request_12 1714134269726 1714134269767 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134269726 1714134269772 OK +REQUEST request_9 1714134269687 1714134269783 OK +REQUEST request_8 1714134269687 1714134269787 OK +REQUEST request_13 1714134269726 1714134269808 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134269808 +REQUEST request_7 1714134269713 1714134269809 OK +REQUEST request_7 1714134269774 1714134269870 OK +REQUEST request_7 1714134269805 1714134269888 OK +REQUEST request_9 1714134269809 1714134269906 OK +REQUEST request_8 1714134269809 1714134269915 OK +REQUEST request_9 1714134269870 1714134269952 OK +REQUEST request_8 1714134269870 1714134269980 OK +REQUEST request_9 1714134269889 1714134269985 OK +REQUEST request_8 1714134269888 1714134269992 OK +REQUEST request_10 1714134269945 1714134269995 OK +REQUEST request_7 1714134269914 1714134269997 OK +REQUEST request_12 1714134269996 1714134270037 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134269996 1714134270046 OK +REQUEST request_13 1714134269996 1714134270081 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134270081 +REQUEST request_10 1714134270038 1714134270084 OK +REQUEST request_9 1714134269997 1714134270092 OK +REQUEST request_8 1714134269997 1714134270097 OK +REQUEST request_10 1714134270069 1714134270112 OK +REQUEST request_11 1714134270084 1714134270127 OK +REQUEST request_7 1714134270054 1714134270135 OK +REQUEST request_12 1714134270112 1714134270154 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134270112 1714134270155 OK +REQUEST request_7 1714134270085 1714134270165 OK +REQUEST request_12 1714134270084 1714134270179 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134270084 1714134270179 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134270180 +REQUEST request_13 1714134270112 1714134270207 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134270207 +REQUEST request_9 1714134270135 1714134270232 OK +REQUEST request_8 1714134270135 1714134270240 OK +REQUEST request_9 1714134270165 1714134270263 OK +REQUEST request_8 1714134270165 1714134270275 OK +REQUEST request_7 1714134270208 1714134270290 OK +REQUEST request_9 1714134270290 1714134270374 OK +REQUEST request_8 1714134270290 1714134270388 OK +REQUEST request_7 1714134270347 1714134270429 OK +REQUEST request_9 1714134270429 1714134270526 OK +REQUEST request_8 1714134270429 1714134270530 OK +REQUEST request_7 1714134270657 1714134270742 OK +REQUEST request_10 1714134270767 1714134270818 OK +REQUEST request_9 1714134270742 1714134270840 OK +REQUEST request_8 1714134270742 1714134270841 OK +REQUEST request_11 1714134270818 1714134270869 OK +REQUEST request_13 1714134270819 1714134270902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134270818 1714134270915 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134270915 +REQUEST request_10 1714134270922 1714134270972 OK +REQUEST request_13 1714134270973 1714134271014 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134270973 1714134271022 OK +REQUEST request_12 1714134270973 1714134271069 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271069 +REQUEST request_7 1714134271060 1714134271144 OK +REQUEST request_9 1714134271144 1714134271241 OK +REQUEST request_8 1714134271144 1714134271254 OK +REQUEST request_10 1714134271231 1714134271275 OK +REQUEST request_12 1714134271275 1714134271316 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271275 1714134271318 OK +REQUEST request_10 1714134271293 1714134271343 OK +REQUEST request_10 1714134271324 1714134271366 OK +REQUEST request_13 1714134271275 1714134271371 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271372 +REQUEST request_12 1714134271343 1714134271384 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271343 1714134271401 OK +REQUEST request_12 1714134271366 1714134271407 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271366 1714134271411 OK +REQUEST request_13 1714134271343 1714134271426 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271426 +REQUEST request_13 1714134271366 1714134271463 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271464 +REQUEST request_10 1714134271479 1714134271530 OK +REQUEST request_13 1714134271530 1714134271578 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271530 1714134271580 OK +REQUEST request_12 1714134271530 1714134271614 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271614 +REQUEST request_7 1714134271586 1714134271681 OK +REQUEST request_7 1714134271602 1714134271684 OK +REQUEST request_7 1714134271618 1714134271713 OK +REQUEST request_10 1714134271679 1714134271722 OK +REQUEST request_10 1714134271695 1714134271745 OK +REQUEST request_11 1714134271722 1714134271765 OK +REQUEST request_9 1714134271684 1714134271768 OK +REQUEST request_9 1714134271682 1714134271780 OK +REQUEST request_8 1714134271684 1714134271793 OK +REQUEST request_13 1714134271745 1714134271794 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271745 1714134271796 OK +REQUEST request_9 1714134271713 1714134271798 OK +REQUEST request_12 1714134271722 1714134271806 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134271722 1714134271818 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271818 +REQUEST request_8 1714134271681 1714134271819 OK +REQUEST request_10 1714134271788 1714134271832 OK +REQUEST request_8 1714134271713 1714134271835 OK +REQUEST request_12 1714134271745 1714134271842 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271842 +REQUEST request_12 1714134271832 1714134271873 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271832 1714134271875 OK +REQUEST request_7 1714134271819 1714134271914 OK +REQUEST request_13 1714134271832 1714134271916 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134271916 +REQUEST request_7 1714134271834 1714134271929 OK +REQUEST request_10 1714134271927 1714134271977 OK +REQUEST request_9 1714134271914 1714134271996 OK +REQUEST request_9 1714134271929 1714134272012 OK +REQUEST request_12 1714134271977 1714134272018 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134271977 1714134272028 OK +REQUEST request_8 1714134271914 1714134272030 OK +REQUEST request_10 1714134271987 1714134272038 OK +REQUEST request_8 1714134271929 1714134272043 OK +REQUEST request_10 1714134272003 1714134272047 OK +REQUEST request_13 1714134271977 1714134272074 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272074 +REQUEST request_11 1714134272038 1714134272088 OK +REQUEST request_12 1714134272047 1714134272088 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134272047 1714134272090 OK +REQUEST request_12 1714134272038 1714134272121 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134272047 1714134272128 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272129 +REQUEST request_13 1714134272038 1714134272133 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272133 +REQUEST request_10 1714134272110 1714134272153 OK +REQUEST request_11 1714134272153 1714134272196 OK +REQUEST request_12 1714134272153 1714134272235 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134272153 1714134272250 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272250 +REQUEST request_10 1714134272249 1714134272295 OK +REQUEST request_10 1714134272280 1714134272323 OK +REQUEST request_13 1714134272295 1714134272337 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134272295 1714134272338 OK +REQUEST request_7 1714134272249 1714134272345 OK +REQUEST request_11 1714134272323 1714134272367 OK +REQUEST request_12 1714134272295 1714134272393 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272393 +REQUEST request_12 1714134272323 1714134272419 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134272324 1714134272419 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272420 +REQUEST request_10 1714134272389 1714134272432 OK +REQUEST request_9 1714134272345 1714134272442 OK +REQUEST request_8 1714134272345 1714134272451 OK +REQUEST request_11 1714134272432 1714134272475 OK +REQUEST request_13 1714134272433 1714134272479 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134272433 1714134272529 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272529 +REQUEST request_7 1714134272498 1714134272580 OK +REQUEST request_10 1714134272545 1714134272588 OK +REQUEST request_11 1714134272588 1714134272632 OK +REQUEST request_9 1714134272580 1714134272664 OK +REQUEST request_13 1714134272588 1714134272671 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134272580 1714134272680 OK +REQUEST request_12 1714134272588 1714134272684 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272685 +REQUEST request_7 1714134272592 1714134272687 OK +REQUEST request_9 1714134272687 1714134272783 OK +REQUEST request_8 1714134272687 1714134272792 OK +REQUEST request_7 1714134272763 1714134272846 OK +REQUEST request_10 1714134272842 1714134272884 OK +REQUEST request_13 1714134272884 1714134272926 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134272884 1714134272928 OK +REQUEST request_9 1714134272846 1714134272942 OK +REQUEST request_8 1714134272846 1714134272947 OK +REQUEST request_12 1714134272884 1714134272967 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134272968 +REQUEST request_7 1714134273027 1714134273123 OK +REQUEST request_9 1714134273123 1714134273206 OK +REQUEST request_8 1714134273123 1714134273229 OK +REQUEST request_10 1714134273262 1714134273305 OK +REQUEST request_7 1714134273231 1714134273315 OK +REQUEST request_11 1714134273305 1714134273349 OK +REQUEST request_7 1714134273278 1714134273374 OK +REQUEST request_13 1714134273306 1714134273387 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134273305 1714134273387 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134273387 +REQUEST request_9 1714134273315 1714134273411 OK +REQUEST request_8 1714134273315 1714134273416 OK +REQUEST request_9 1714134273374 1714134273471 OK +REQUEST request_8 1714134273374 1714134273480 OK +REQUEST request_7 1714134273417 1714134273501 OK +REQUEST request_9 1714134273501 1714134273583 OK +REQUEST request_8 1714134273501 1714134273599 OK +REQUEST request_7 1714134273727 1714134273824 OK +REQUEST request_10 1714134273804 1714134273848 OK +REQUEST request_10 1714134273820 1714134273871 OK +REQUEST request_7 1714134273804 1714134273887 OK +REQUEST request_12 1714134273848 1714134273889 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134273848 1714134273892 OK +REQUEST request_10 1714134273851 1714134273901 OK +REQUEST request_13 1714134273871 1714134273912 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134273824 1714134273921 OK +REQUEST request_11 1714134273871 1714134273922 OK +REQUEST request_13 1714134273848 1714134273932 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134273932 +REQUEST request_8 1714134273824 1714134273938 OK +REQUEST request_13 1714134273901 1714134273942 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134273901 1714134273951 OK +REQUEST request_12 1714134273871 1714134273966 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134273967 +REQUEST request_9 1714134273887 1714134273971 OK +REQUEST request_12 1714134273901 1714134273983 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134273983 +REQUEST request_8 1714134273887 1714134273989 OK +REQUEST request_10 1714134274038 1714134274087 OK +REQUEST request_10 1714134274053 1714134274103 OK +REQUEST request_12 1714134274088 1714134274129 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134274088 1714134274137 OK +REQUEST request_12 1714134274103 1714134274144 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134274103 1714134274152 OK +REQUEST request_13 1714134274088 1714134274183 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134274183 +REQUEST request_13 1714134274103 1714134274186 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134274187 +REQUEST request_10 1714134274463 1714134274513 OK +REQUEST request_11 1714134274513 1714134274565 OK +REQUEST request_13 1714134274514 1714134274597 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134274514 1714134274610 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134274610 +REQUEST request_7 1714134274604 1714134274700 OK +REQUEST request_10 1714134274681 1714134274724 OK +REQUEST request_12 1714134274724 1714134274766 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134274724 1714134274769 OK +REQUEST request_7 1714134274697 1714134274781 OK +REQUEST request_9 1714134274700 1714134274791 OK +REQUEST request_8 1714134274700 1714134274806 OK +REQUEST request_13 1714134274724 1714134274819 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134274819 +REQUEST request_10 1714134274806 1714134274855 OK +REQUEST request_9 1714134274781 1714134274878 OK +REQUEST request_8 1714134274781 1714134274881 OK +REQUEST request_11 1714134274855 1714134274905 OK +REQUEST request_13 1714134274856 1714134274940 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134274855 1714134274952 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134274952 +REQUEST request_10 1714134274962 1714134275004 OK +REQUEST request_13 1714134275004 1714134275046 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134275004 1714134275047 OK +REQUEST request_12 1714134275004 1714134275101 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134275101 +REQUEST request_7 1714134275180 1714134275278 OK +REQUEST request_10 1714134275241 1714134275290 OK +REQUEST request_13 1714134275290 1714134275332 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134275290 1714134275341 OK +REQUEST request_9 1714134275278 1714134275374 OK +REQUEST request_8 1714134275278 1714134275386 OK +REQUEST request_12 1714134275290 1714134275387 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134275387 +REQUEST request_10 1714134275428 1714134275471 OK +REQUEST request_11 1714134275472 1714134275516 OK +REQUEST request_10 1714134275491 1714134275541 OK +REQUEST request_12 1714134275472 1714134275554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134275472 1714134275555 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134275555 +REQUEST request_11 1714134275541 1714134275592 OK +REQUEST request_13 1714134275541 1714134275625 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134275541 1714134275637 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134275637 +REQUEST request_7 1714134275553 1714134275648 OK +REQUEST request_10 1714134275615 1714134275659 OK +REQUEST request_12 1714134275659 1714134275700 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134275659 1714134275703 OK +REQUEST request_9 1714134275648 1714134275730 OK +REQUEST request_13 1714134275659 1714134275743 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134275744 +REQUEST request_8 1714134275648 1714134275754 OK +REQUEST request_10 1714134275943 1714134275994 OK +REQUEST request_10 1714134275991 1714134276034 OK +REQUEST request_11 1714134275994 1714134276044 OK +REQUEST request_12 1714134275994 1714134276077 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134276034 1714134276078 OK +REQUEST request_13 1714134275994 1714134276090 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134276090 +REQUEST request_13 1714134276034 1714134276118 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134276034 1714134276130 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134276130 +REQUEST request_7 1714134276237 1714134276333 OK +REQUEST request_9 1714134276334 1714134276417 OK +REQUEST request_8 1714134276334 1714134276439 OK +REQUEST request_7 1714134276488 1714134276571 OK +REQUEST request_7 1714134276565 1714134276648 OK +REQUEST request_9 1714134276571 1714134276655 OK +REQUEST request_8 1714134276571 1714134276672 OK +REQUEST request_9 1714134276649 1714134276745 OK +REQUEST request_8 1714134276649 1714134276748 OK +REQUEST request_10 1714134276814 1714134276870 OK +REQUEST request_7 1714134276782 1714134276880 OK +REQUEST request_11 1714134276870 1714134276920 OK +REQUEST request_10 1714134276892 1714134276936 OK +REQUEST request_9 1714134276880 1714134276964 OK +REQUEST request_12 1714134276870 1714134276967 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134276870 1714134276967 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134276967 +REQUEST request_13 1714134276936 1714134276977 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134276936 1714134276980 OK +REQUEST request_8 1714134276880 1714134276991 OK +REQUEST request_12 1714134276936 1714134277018 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134277018 +REQUEST request_7 1714134277235 1714134277333 OK +REQUEST request_7 1714134277267 1714134277349 OK +REQUEST request_9 1714134277333 1714134277430 OK +REQUEST request_8 1714134277333 1714134277443 OK +REQUEST request_10 1714134277391 1714134277443 OK +REQUEST request_9 1714134277349 1714134277445 OK +REQUEST request_8 1714134277349 1714134277454 OK +REQUEST request_12 1714134277443 1714134277485 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134277443 1714134277497 OK +REQUEST request_13 1714134277443 1714134277525 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134277525 +REQUEST request_7 1714134277562 1714134277659 OK +REQUEST request_7 1714134277578 1714134277660 OK +REQUEST request_9 1714134277660 1714134277743 OK +REQUEST request_9 1714134277659 1714134277755 OK +REQUEST request_8 1714134277660 1714134277763 OK +REQUEST request_8 1714134277659 1714134277769 OK +REQUEST request_10 1714134277767 1714134277816 OK +REQUEST request_11 1714134277816 1714134277867 OK +REQUEST request_12 1714134277816 1714134277899 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134277817 1714134277912 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134277912 +REQUEST request_7 1714134277845 1714134277942 OK +REQUEST request_9 1714134277942 1714134278039 OK +REQUEST request_8 1714134277942 1714134278046 OK +REQUEST request_7 1714134277954 1714134278050 OK +REQUEST request_7 1714134278034 1714134278117 OK +REQUEST request_9 1714134278050 1714134278145 OK +REQUEST request_8 1714134278050 1714134278158 OK +REQUEST request_7 1714134278110 1714134278195 OK +REQUEST request_9 1714134278117 1714134278199 OK +REQUEST request_8 1714134278117 1714134278216 OK +REQUEST request_9 1714134278195 1714134278291 OK +REQUEST request_8 1714134278195 1714134278294 OK +REQUEST request_10 1714134278451 1714134278501 OK +REQUEST request_12 1714134278502 1714134278544 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134278502 1714134278552 OK +REQUEST request_13 1714134278502 1714134278585 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134278585 +REQUEST request_10 1714134278684 1714134278727 OK +REQUEST request_7 1714134278638 1714134278735 OK +REQUEST request_11 1714134278728 1714134278771 OK +REQUEST request_10 1714134278763 1714134278806 OK +REQUEST request_12 1714134278728 1714134278812 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134278728 1714134278825 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134278826 +REQUEST request_9 1714134278735 1714134278832 OK +REQUEST request_8 1714134278735 1714134278841 OK +REQUEST request_11 1714134278806 1714134278849 OK +REQUEST request_13 1714134278806 1714134278902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134278806 1714134278903 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134278903 +REQUEST request_7 1714134278872 1714134278970 OK +REQUEST request_10 1714134278995 1714134279046 OK +REQUEST request_9 1714134278970 1714134279053 OK +REQUEST request_8 1714134278970 1714134279077 OK +REQUEST request_12 1714134279046 1714134279088 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134279046 1714134279097 OK +REQUEST request_13 1714134279046 1714134279128 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134279128 +REQUEST request_7 1714134279167 1714134279263 OK +REQUEST request_9 1714134279264 1714134279361 OK +REQUEST request_8 1714134279264 1714134279370 OK +REQUEST request_7 1714134279369 1714134279465 OK +REQUEST request_7 1714134279400 1714134279483 OK +REQUEST request_10 1714134279446 1714134279497 OK +REQUEST request_10 1714134279462 1714134279504 OK +REQUEST request_12 1714134279498 1714134279538 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134279498 1714134279549 OK +REQUEST request_11 1714134279505 1714134279552 OK +REQUEST request_7 1714134279477 1714134279559 OK +REQUEST request_9 1714134279466 1714134279561 OK +REQUEST request_9 1714134279483 1714134279567 OK +REQUEST request_8 1714134279466 1714134279585 OK +REQUEST request_12 1714134279505 1714134279586 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134279483 1714134279594 OK +REQUEST request_13 1714134279498 1714134279595 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134279595 +REQUEST request_13 1714134279505 1714134279602 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134279602 +REQUEST request_9 1714134279560 1714134279657 OK +REQUEST request_8 1714134279560 1714134279658 OK +REQUEST request_10 1714134279768 1714134279812 OK +REQUEST request_7 1714134279723 1714134279821 OK +REQUEST request_10 1714134279784 1714134279834 OK +REQUEST request_11 1714134279812 1714134279855 OK +REQUEST request_12 1714134279834 1714134279875 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134279834 1714134279884 OK +REQUEST request_12 1714134279812 1714134279895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134279821 1714134279905 OK +REQUEST request_13 1714134279812 1714134279909 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134279909 +REQUEST request_13 1714134279834 1714134279917 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134279918 +REQUEST request_8 1714134279821 1714134279928 OK +REQUEST request_7 1714134279877 1714134279958 OK +REQUEST request_7 1714134279894 1714134279989 OK +REQUEST request_7 1714134279909 1714134280003 OK +REQUEST request_9 1714134279959 1714134280041 OK +REQUEST request_8 1714134279959 1714134280070 OK +REQUEST request_7 1714134279985 1714134280082 OK +REQUEST request_9 1714134280004 1714134280086 OK +REQUEST request_9 1714134279989 1714134280087 OK +REQUEST request_10 1714134280048 1714134280098 OK +REQUEST request_8 1714134279989 1714134280109 OK +REQUEST request_8 1714134280003 1714134280120 OK +REQUEST request_13 1714134280098 1714134280146 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134280098 1714134280148 OK +REQUEST request_9 1714134280082 1714134280179 OK +REQUEST request_8 1714134280082 1714134280187 OK +REQUEST request_7 1714134280094 1714134280189 OK +REQUEST request_12 1714134280098 1714134280193 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134280193 +REQUEST request_10 1714134280172 1714134280222 OK +REQUEST request_10 1714134280218 1714134280262 OK +REQUEST request_9 1714134280189 1714134280272 OK +REQUEST request_11 1714134280222 1714134280274 OK +REQUEST request_8 1714134280189 1714134280296 OK +REQUEST request_12 1714134280262 1714134280304 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134280262 1714134280306 OK +REQUEST request_12 1714134280222 1714134280317 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134280222 1714134280320 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134280320 +REQUEST request_10 1714134280296 1714134280339 OK +REQUEST request_13 1714134280262 1714134280346 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134280346 +REQUEST request_11 1714134280339 1714134280383 OK +REQUEST request_13 1714134280339 1714134280421 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134280339 1714134280434 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134280435 +REQUEST request_10 1714134280857 1714134280908 OK +REQUEST request_12 1714134280908 1714134280950 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134280908 1714134280959 OK +REQUEST request_13 1714134280908 1714134280991 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134280991 +REQUEST request_10 1714134281092 1714134281142 OK +REQUEST request_11 1714134281142 1714134281193 OK +REQUEST request_12 1714134281142 1714134281226 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134281142 1714134281236 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134281237 +REQUEST request_10 1714134281374 1714134281424 OK +REQUEST request_12 1714134281424 1714134281465 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134281424 1714134281473 OK +REQUEST request_13 1714134281424 1714134281506 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134281506 +REQUEST request_10 1714134281593 1714134281643 OK +REQUEST request_10 1714134281608 1714134281651 OK +REQUEST request_13 1714134281643 1714134281684 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134281643 1714134281693 OK +REQUEST request_11 1714134281651 1714134281694 OK +REQUEST request_10 1714134281670 1714134281713 OK +REQUEST request_12 1714134281651 1714134281734 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134281643 1714134281738 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134281739 +REQUEST request_13 1714134281651 1714134281746 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134281747 +REQUEST request_12 1714134281713 1714134281753 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134281713 1714134281755 OK +REQUEST request_13 1714134281713 1714134281809 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134281809 +REQUEST request_10 1714134281934 1714134281984 OK +REQUEST request_11 1714134281985 1714134282035 OK +REQUEST request_13 1714134281985 1714134282067 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134281985 1714134282082 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134282082 +REQUEST request_10 1714134282073 1714134282116 OK +REQUEST request_13 1714134282116 1714134282158 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134282116 1714134282159 OK +REQUEST request_10 1714134282121 1714134282170 OK +REQUEST request_10 1714134282137 1714134282186 OK +REQUEST request_12 1714134282170 1714134282211 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714134282116 1714134282212 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134282213 +REQUEST request_11 1714134282170 1714134282219 OK +REQUEST request_13 1714134282186 1714134282228 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134282186 1714134282234 OK +REQUEST request_10 1714134282200 1714134282249 OK +REQUEST request_13 1714134282170 1714134282251 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134282251 +REQUEST request_12 1714134282186 1714134282269 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134282269 +REQUEST request_13 1714134282249 1714134282297 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714134282249 1714134282298 OK +REQUEST request_12 1714134282249 1714134282346 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134282346 +REQUEST request_10 1714134282310 1714134282359 OK +REQUEST request_11 1714134282359 1714134282409 OK +REQUEST request_12 1714134282359 1714134282443 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714134282360 1714134282457 KO status.find.in([200, 209], 304), found 400 +USER HistoryRecord END 1714134282457 diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/bootstrap.min.css b/testsrc/gatling/results/historyrecord-20240426122318467/style/bootstrap.min.css new file mode 100644 index 00000000..76a2b9ba --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/bootstrap.min.css @@ -0,0 +1,27 @@ +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;} +.tooltip.right{margin-left:3px;} +.tooltip.bottom{margin-top:3px;} +.tooltip.left{margin-left:-3px;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:750px;padding:1px;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-content{padding:9px 14px;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} +.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow:after{content:"";z-index:-1;} +.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#ffffff;}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0, 0, 0, 0.25);bottom:-1px;left:-11px;} +.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#ffffff;}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0, 0, 0, 0.25);bottom:-11px;left:-1px;} +.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#ffffff;}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0, 0, 0, 0.25);top:-1px;left:-11px;} +.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#ffffff;}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0, 0, 0, 0.25);bottom:-11px;right:-1px;} diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/close.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/close.svg new file mode 100644 index 00000000..c161bb90 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/executions.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/executions.svg new file mode 100644 index 00000000..84068cd4 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/executions.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/expand.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/expand.svg new file mode 100644 index 00000000..f6e75e0d --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/expand.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/favicon.ico b/testsrc/gatling/results/historyrecord-20240426122318467/style/favicon.ico new file mode 100644 index 00000000..d2d20e11 Binary files /dev/null and b/testsrc/gatling/results/historyrecord-20240426122318467/style/favicon.ico differ diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/fullscreen.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/fullscreen.svg new file mode 100644 index 00000000..91f3b279 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/fullscreen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-dark.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-dark.svg new file mode 100644 index 00000000..7eb4d51c --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-enterprise-dark.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-enterprise-dark.svg new file mode 100644 index 00000000..1127d75e --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-enterprise-dark.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-enterprise-light.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-enterprise-light.svg new file mode 100644 index 00000000..4a6e1dec --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-enterprise-light.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-light.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-light.svg new file mode 100644 index 00000000..f519eef7 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/logo-light.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/sort-down.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/sort-down.svg new file mode 100644 index 00000000..db58a09d --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/sort-up.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/sort-up.svg new file mode 100644 index 00000000..bba9d846 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/sort.svg b/testsrc/gatling/results/historyrecord-20240426122318467/style/sort.svg new file mode 100644 index 00000000..43b658e2 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/historyrecord-20240426122318467/style/style.css b/testsrc/gatling/results/historyrecord-20240426122318467/style/style.css new file mode 100644 index 00000000..edc96263 --- /dev/null +++ b/testsrc/gatling/results/historyrecord-20240426122318467/style/style.css @@ -0,0 +1,1199 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +:root { + --gatling-background-color: #f2f2f2; + --gatling-background-light-color: #f7f7f7; + --gatling-border-color: #dddddd; + --gatling-blue-color: #4a9fe5; + --gatling-dark-blue-color: #24275e; + --gatling-danger-color: #f15b4f; + --gatling-danger-light-color: #f5d1ce; + --gatling-enterprise-color: #6161d6; + --gatling-enterprise-light-color: #c4c4ed; + --gatling-gray-medium-color: #bbb; + --gatling-hover-color: #e6e6e6; + --gatling-hover-background-color: #e6e6e6; + --gatling-light-color: #ffffff; + --gatling-orange-color: #f78557; + --gatling-success-color: #68b65c; + --gatling-text-color: #1f2024; + --gatling-total-color: #ffa900; + + --gatling-border-radius: 2px; + --gatling-spacing-small: 5px; + --gatling-spacing: 10px; + --gatling-spacing-layout: 20px; + + --gatling-font-weight-normal: 400; + --gatling-font-weight-medium: 500; + --gatling-font-weight-bold: 700; + --gatling-font-size-secondary: 12px; + --gatling-font-size-default: 14px; + --gatling-font-size-heading: 16px; + --gatling-font-size-section: 22px; + --gatling-font-size-header: 34px; + + --gatling-media-desktop-large: 1920px; +} + +html[data-theme="dark"] { + --gatling-background-color: #1e2225; + --gatling-background-light-color: #272c30; + --gatling-border-color: #555555; + --gatling-blue-color: #1188ff; + --gatling-dark-blue-color: #17223B; + --gatling-danger-color: #d9534f; + --gatling-danger-light-color: #c9302c; + --gatling-enterprise-color: #b2a2ea; + --gatling-enterprise-light-color: #343479; + --gatling-gray-medium-color: #999; + --gatling-hover-color: #30363b; + --gatling-hover-background-color: #2c2c2c; + --gatling-light-color: #394046; + --gatling-orange-color: #fe8e5f; + --gatling-success-color: #5cb85c; + --gatling-text-color: #dee2e6; + --gatling-total-color: #ffa900; +} + +* { + min-height: 0; + min-width: 0; +} + +html, +body { + height: 100%; + width: 100%; +} + +body { + color: var(--gatling-text-color); + font-family: arial; + font-size: var(--gatling-font-size-secondary); + margin: 0; +} + +.app-container { + display: flex; + flex-direction: column; + + height: 100%; + width: 100%; +} + +.head { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + + flex: 1; + + background-color: var(--gatling-light-color); + border-bottom: 1px solid var(--gatling-border-color); + min-height: 69px; + padding: 0 var(--gatling-spacing-layout); +} + +.head .spacer { + flex-grow: 1; +} + +.head .theme-toggle { + margin-left: 20px; + background: none; + color: var(--gatling-text-color); + border: none; +} + +.head .theme-toggle:hover { + color: var(--gatling-gray-medium-color); + cursor: pointer; +} + +body .toggle-dark, body .toggle-light { + display: block; +} + +[data-theme="dark"] body .toggle-dark { + display: none; +} + +[data-theme="light"] body .toggle-light { + display: none; +} + +[data-theme="dark"] body .logo-enterprise-light { + display: none; +} + +[data-theme="light"] body .logo-enterprise-dark { + display: none; +} + +.gatling-open-source { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + gap: var(--gatling-spacing-layout); +} + +.gatling-documentation { + display: flex; + align-items: center; + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-orange-color); + border: 1px solid var(--gatling-orange-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 23px; + + font-size: var(--gatling-font-size-default); +} + +.gatling-documentation:hover { + background-color: var(--gatling-orange-color); + color: var(--gatling-light-color); +} + +.gatling-logo { + height: 35px; +} + +.gatling-logo img { + height: 100%; +} + +[data-theme="dark"] .gatling-logo-light { + display: none; +} + +[data-theme="light"] .gatling-logo-dark { + display: none; +} + +.container { + display: flex; + align-items: stretch; + height: 100%; +} + +.nav { + min-width: 210px; + width: 210px; + max-height: calc(100vh - var(--gatling-spacing-layout) - var(--gatling-spacing-layout)); + background: var(--gatling-light-color); + border-right: 1px solid var(--gatling-border-color); + overflow-y: auto; +} + +@media print { + .nav { + display: none; + } +} + +@media screen and (min-width: 1920px) { + .nav { + min-width: 310px; + width: 310px; + } +} + +.nav ul { + display: flex; + flex-direction: column; + + padding: 0; + margin: 0; +} + +.nav li { + display: flex; + list-style: none; + width: 100%; + padding: 0; +} + +.nav .item { + display: inline-flex; + align-items: center; + margin: 0 auto; + white-space: nowrap; + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + margin: 0; + width: 100%; +} + +.nav .item .nav-label { + padding: var(--gatling-spacing) var(--gatling-spacing-layout); +} + +.nav .item:hover { + background-color: var(--gatling-hover-color); +} + +.nav .on .item { + background-color: var(--gatling-orange-color); +} + +.nav .on .item span { + color: var(--gatling-light-color); +} + +.cadre { + width: 100%; + height: 100%; + overflow-y: scroll; + scroll-behavior: smooth; +} + +@media print { + .cadre { + overflow-y: unset; + } +} + +.frise { + position: absolute; + top: 60px; + z-index: -1; + + background-color: var(--gatling-background-color); + height: 530px; +} + +.global { + height: 650px +} + +a { + text-decoration: none; +} + +a:hover { + color: var(--gatling-hover-color); +} + +img { + border: 0; +} + +h1 { + color: var(--gatling-dark-blue-color); + font-size: var(--gatling-font-size-section); + font-weight: var(--gatling-font-weight-medium); + text-align: center; + margin: 0; +} + +h1 span { + color: var(--gatling-hover-color); +} + +.enterprise { + display: flex; + align-items: center; + justify-content: center; + gap: var(--gatling-spacing-small); + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-enterprise-color); + color: var(--gatling-enterprise-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 25px; +} + +.enterprise:hover { + background-color: var(--gatling-hover-color); + color: var(--gatling-enterprise-color); +} + +.enterprise img { + display: block; + width: 160px; +} + +.simulation-card { + display: flex; + flex-direction: column; + align-self: stretch; + flex: 1; + gap: var(--gatling-spacing-layout); + max-height: 375px; +} + +#simulation-information { + flex: 1; +} + +.simulation-version-information { + display: flex; + flex-direction: column; + + gap: var(--gatling-spacing); + font-size: var(--gatling-font-size-default); + + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing); +} + +.simulation-information-container { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing); +} + +.withTooltip .popover-title { + display: none; +} + +.popover-content p { + margin: 0; +} + +html[data-theme="dark"] div.popover { + background-color: var(--gatling-light-color); + border-bottom: none; +} + +html[data-theme="dark"] div.popover.right .arrow { + border-right-color: var(--gatling-light-color); +} + +.ellipsed-name { + display: block; + + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.simulation-information-item { + display: flex; + flex-direction: row; + align-items: flex-start; + gap: var(--gatling-spacing-small); +} + +.simulation-information-item.description { + flex-direction: column; +} + +.simulation-information-label { + display: inline-block; + font-weight: var(--gatling-font-weight-bold); + min-width: fit-content; +} + +.simulation-information-title { + display: block; + text-align: center; + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + width: 100%; +} + +.simulation-tooltip span { + display: inline-block; + word-wrap: break-word; + overflow: hidden; + text-overflow: ellipsis; +} + +.content { + display: flex; + flex-direction: column; +} + +.content-in { + width: 100%; + height: 100%; + + overflow-x: scroll; +} + +html[data-theme="dark"] .content-in { + background-color: var(--gatling-background-color); +} + +@media print { + .content-in { + overflow-x: unset; + } +} + +.container-article { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + min-width: 1050px; + width: 1050px; + margin: 0 auto; + padding: var(--gatling-spacing-layout); + box-sizing: border-box; +} + +@media screen and (min-width: 1920px) { + .container-article { + min-width: 1350px; + width: 1350px; + } + + #responses * .highcharts-tracker { + transform: translate(400px, 70px); + } +} + +.content-header { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + background-color: var(--gatling-background-light-color); + border-bottom: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-layout) var(--gatling-spacing-layout) 0; +} + +.onglet { + font-size: var(--gatling-font-size-header); + font-weight: var(--gatling-font-weight-medium); + text-align: center; +} + +.sous-menu { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; +} + +.sous-menu-spacer { + display: flex; + align-items: center; + flex-direction: row; +} + +.sous-menu .item { + margin-bottom: -1px; +} + +.sous-menu a { + display: block; + + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-normal); + padding: var(--gatling-spacing-small) var(--gatling-spacing) var(--gatling-spacing); + border-bottom: 2px solid transparent; + color: var(--gatling-text-color); + text-align: center; + width: 100px; +} + +.sous-menu a:hover { + border-bottom-color: var(--gatling-text-color); +} + +.sous-menu .ouvert a { + border-bottom-color: var(--gatling-orange-color); + font-weight: var(--gatling-font-weight-bold); +} + +.article { + position: relative; + + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); +} + +.infos { + width: 340px; + color: var(--gatling-light-color); +} + +.infos-title { + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-bottom: 0; + border-top-left-radius: var(--gatling-border-radius); + border-top-right-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.info { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + height: 100%; + margin: 0; +} + +.info table { + margin: auto; + padding-right: 15px; +} + +.alert-danger { + background-color: var(--gatling-danger-light-color); + border: 1px solid var(--gatling-danger-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-layout); + font-weight: var(--gatling-font-weight-bold); +} + +.infos h2 { + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + height: 19px; + margin: 0; + padding: 3.5px 0 0 35px; +} + +.infos .first::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.infos .second::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .infos .first::before, +html[data-theme="dark"] .infos .second::before { + filter: invert(0.9); +} + +.infos th { + text-align: center; +} + +.infos td { + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing-small); + -webkit-border-radius: var(--gatling-border-radius); + -moz-border-radius: var(--gatling-border-radius); + -ms-border-radius: var(--gatling-border-radius); + -o-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + text-align: right; + width: 50px; +} + +.infos .title { + width: 120px; +} + +.infos .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); +} + +.infos .total { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); +} + +.infos .ko { + background-color: var(--gatling-danger-color); + -webkit-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); +} + +.schema-container { + display: flex; + align-items: center; + justify-content: space-between; + gap: var(--gatling-spacing-layout); +} + +.schema { + background: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); +} + +.ranges { + height: 375px; + width: 500px; +} + +.ranges-large { + height: 375px; + width: 530px; +} + +.geant { + height: 362px; +} + +.extensible-geant { + width: 100%; +} + +.polar { + height: 375px; + width: 230px; +} + +.chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .highcharts-background { + fill: var(--gatling-background-light-color); +} + +html[data-theme="dark"] .highcharts-button-normal rect { + fill: var(--gatling-background-color) !important; +} + +html[data-theme="dark"] .highcharts-button-disabled rect { + fill: var(--gatling-background-light-color) !important; +} + +html[data-theme="dark"] .highcharts-button-pressed rect { + fill: var(--gatling-orange-color) !important; +} + +html[data-theme="dark"] .highcharts-axis text, +html[data-theme="dark"] .highcharts-axis-labels text, +html[data-theme="dark"] .highcharts-button text, +html[data-theme="dark"] .highcharts-legend-item text, +html[data-theme="dark"] .highcharts-range-selector-buttons text { + fill: var(--gatling-text-color) !important; +} + +.statistics { + display: flex; + flex-direction: column; + + background-color: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border-collapse: collapse; + color: var(--gatling-text-color); + max-height: 100%; +} + +.statistics .title { + display: flex; + text-align: center; + justify-content: space-between; + + min-height: 49.5px; + box-sizing: border-box; + + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing); +} + +.title_base { + display: flex; + align-items: center; + text-align: left; + user-select: none; +} + +.title_base_stats { + color: var(--gatling-text-color); + margin-right: 20px; +} + +.toggle-table { + position: relative; + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: 25px; + width: 40px; + height: 20px; + margin: 0 var(--gatling-spacing-small); +} + +.toggle-table::before { + position: absolute; + top: calc(50% - 9px); + left: 1px; + content: ""; + width: 50%; + height: 18px; + border-radius: 50%; + background-color: var(--gatling-text-color); +} + +.toggle-table.off::before { + left: unset; + right: 1px; +} + +.title_expanded { + cursor: pointer; + color: var(--gatling-text-color); +} + +.expand-table, +.collapse-table { + font-size: var(--gatling-font-size-secondary); + font-weight: var(--gatling-font-weight-normal); +} + +.title_expanded span.expand-table { + color: var(--gatling-gray-medium-color); +} + +.title_collapsed { + cursor: pointer; + color: var(--gatling-text-color); +} + +.title_collapsed span.collapse-table { + color: var(--gatling-gray-medium-color); +} + +#container_statistics_head { + position: sticky; + top: -1px; + + background: var(--gatling-background-light-color); + margin-top: -1px; + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); +} + +#container_statistics_body { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + margin-top: -1px; + padding: 0px var(--gatling-spacing-small) var(--gatling-spacing-small) var(--gatling-spacing-small); +} + +#container_errors { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); + margin-top: -1px; +} + +#container_assertions { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small); + margin-top: -1px; +} + +.statistics-in { + border-spacing: var(--gatling-spacing-small); + border-collapse: collapse; + margin: 0; +} + +.statistics .scrollable { + max-height: 100%; + overflow-y: auto; +} + +#statistics_table_container .statistics .scrollable { + max-height: 785px; +} + +.statistics-in a { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .header { + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small); +} + +.sortable { + cursor: pointer; +} + +.sortable span::after { + content: ''; + display: inline-block; + margin-left: 5px; + vertical-align: middle; + width: 12px; + height: 12px; + background: url('sort.svg'); + background-size: contain; +} + +.sorted-up span::after { + background: url('sort-up.svg'); + background-size: contain; +} + +.sorted-down span::after { + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .sortable span::after { + filter: invert(0.9); +} + +.executions::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.response-time::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .executions::before, +html[data-theme="dark"] .response-time::before { + filter: invert(0.9); +} + +.statistics-in td { + background-color: var(--gatling-light-color); + border: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-small); + min-width: 50px; +} + +.statistics-in .col-1 { + width: 175px; + max-width: 175px; +} +@media screen and (min-width: 1200px) { + .statistics-in .col-1 { + width: 50%; + } +} + +.expandable-container { + display: flex; + flex-direction: row; + box-sizing: border-box; + max-width: 100%; +} + +.statistics-in .value { + text-align: right; + width: 50px; +} + +.statistics-in .total { + color: var(--gatling-text-color); +} + +.statistics-in .col-2 { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .error-col-1 { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); +} + +.statistics-in .error-col-2 { + text-align: center; +} + +.statistics-in .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .ko { + background-color: var(--gatling-danger-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .expand-button { + padding-left: var(--gatling-spacing); + cursor: pointer; +} + +.expand-button.hidden { + background: none; + cursor: default; +} + +.statistics-button { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-small) var(--gatling-spacing); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); +} + +#statistics_full_screen{ + padding: var(--gatling-spacing-small); +} + +#statistics_full_screen > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] #statistics_full_screen > img { + filter: invert(0.9); +} + +#statistics_full_screen:disabled { + display: none; +} + +.statistics-button:hover:not(:disabled) { + cursor: pointer; + background-color: var(--gatling-hover-color); +} + +.statistics-in .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('expand.svg'); + background-size: contain; +} + +.statistics-in .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .statistics-in .expand-button.collapse, +html[data-theme="dark"] .statistics-in .expand-button.expand { + filter: invert(0.9); +} + +.nav .expand-button { + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.nav .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('expand.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +.nav .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('sort-down.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +html[data-theme="dark"] .nav .expand-button.expand, +html[data-theme="dark"] .nav .expand-button.collapse { + filter: invert(0.9); +} + +.right { + display: flex; + align-items: center; + gap: var(--gatling-spacing); + float: right; + font-size: var(--gatling-font-size-default); +} + +.withTooltip { + outline: none; +} + +.withTooltip:hover { + text-decoration: none; +} + +.withTooltip .tooltipContent { + position: absolute; + z-index: 10; + display: none; + + background: var(--gatling-orange-color); + -webkit-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + -moz-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); + margin-top: -5px; + padding: var(--gatling-spacing-small); +} + +.withTooltip:hover .tooltipContent { + display: inline; +} + +.button-modal { + padding: var(--gatling-spacing-small); +} + +.button-modal > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] .button-modal > img { + filter: invert(0.9); +} + +.statistics-table-modal { + background-color: var(--gatling-background-color); + height: calc(100% - 60px); + width: calc(100% - 60px); + border-radius: var(--gatling-border-radius); +} + +.statistics-table-modal::backdrop { + position: fixed; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + + background-color: rgba(100, 100, 100, 0.9); +} + +.statistics-table-modal-container { + display: flex; + flex-direction: column; + + width: 100%; + height: calc(100% - 35px); + overflow-x: auto; +} + +.button-modal { + cursor: pointer; + + height: 25px; + width: 25px; + + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); +} + +.button-modal:hover { + background-color: var(--gatling-background-color); +} + +.statistics-table-modal-header { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-bottom: var(--gatling-spacing); +} + +.statistics-table-modal-content { + flex: 1; + overflow-y: auto; + min-width: 1050px; +} + +.statistics-table-modal-footer { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-top: var(--gatling-spacing); +} diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/index.html b/testsrc/gatling/results/loginrecord-20240426122058764/index.html new file mode 100644 index 00000000..767d1973 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/index.html @@ -0,0 +1,1117 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - Global Information + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    +
    +
    + Gatling Version + + Version: + 3.10.5 + + + Released: + 2024-03-22 + +
    +
    + Run Information +
    + + Date: + 2024-04-26 12:20:59 GMT + + + Duration: + 1m 26s + + + Description: + + + +
    +
    +
    +
    + +
    + +
    + +
    +
    +
    +
    +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/all_sessions.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/all_sessions.js new file mode 100644 index 00000000..48a31ca3 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/all_sessions.js @@ -0,0 +1,11 @@ +allUsersData = { + +color: '#FFA900', +name: 'Active Users', +data: [ + [1714134059000,3],[1714134060000,7],[1714134061000,12],[1714134062000,16],[1714134063000,21],[1714134064000,23],[1714134065000,26],[1714134066000,32],[1714134067000,36],[1714134068000,43],[1714134069000,45],[1714134070000,53],[1714134071000,58],[1714134072000,59],[1714134073000,69],[1714134074000,74],[1714134075000,78],[1714134076000,80],[1714134077000,82],[1714134078000,84],[1714134079000,85],[1714134080000,90],[1714134081000,94],[1714134082000,100],[1714134083000,107],[1714134084000,116],[1714134085000,123],[1714134086000,128],[1714134087000,131],[1714134088000,131],[1714134089000,131],[1714134090000,131],[1714134091000,130],[1714134092000,129],[1714134093000,132],[1714134094000,135],[1714134095000,133],[1714134096000,135],[1714134097000,133],[1714134098000,140],[1714134099000,136],[1714134100000,140],[1714134101000,142],[1714134102000,133],[1714134103000,136],[1714134104000,138],[1714134105000,143],[1714134106000,150],[1714134107000,153],[1714134108000,157],[1714134109000,162],[1714134110000,162],[1714134111000,160],[1714134112000,157],[1714134113000,152],[1714134114000,153],[1714134115000,154],[1714134116000,155],[1714134117000,152],[1714134118000,147],[1714134119000,143],[1714134120000,141],[1714134121000,138],[1714134122000,132],[1714134123000,127],[1714134124000,121],[1714134125000,117],[1714134126000,110],[1714134127000,103],[1714134128000,96],[1714134129000,90],[1714134130000,85],[1714134131000,84],[1714134132000,76],[1714134133000,70],[1714134134000,64],[1714134135000,56],[1714134136000,50],[1714134137000,41],[1714134138000,34],[1714134139000,31],[1714134140000,27],[1714134141000,24],[1714134142000,17],[1714134143000,10],[1714134144000,6],[1714134145000,2] +], +tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 } + , zIndex: 20 + , yAxis: 1 +}; \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/assertions.xml b/testsrc/gatling/results/loginrecord-20240426122058764/js/assertions.xml new file mode 100644 index 00000000..982c5fc2 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/assertions.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/bootstrap.min.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/bootstrap.min.js new file mode 100644 index 00000000..ea41042e --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/** +* Bootstrap.js by @fat & @mdo +* plugins: bootstrap-tooltip.js, bootstrap-popover.js +* Copyright 2012 Twitter, Inc. +* http://www.apache.org/licenses/LICENSE-2.0.txt +*/ +!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}},a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
    ',trigger:"hover",title:"",delay:0,html:!1}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content > *")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}}),a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

    '})}(window.jQuery) \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/ellipsis.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/ellipsis.js new file mode 100644 index 00000000..781d0dec --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/ellipsis.js @@ -0,0 +1,26 @@ +function parentId(name) { + return "parent-" + name; +} + +function isEllipsed(name) { + const child = document.getElementById(name); + const parent = document.getElementById(parentId(name)); + const emptyData = parent.getAttribute("data-content") === ""; + const hasOverflow = child.clientWidth < child.scrollWidth; + + if (hasOverflow) { + if (emptyData) { + parent.setAttribute("data-content", name); + } + } else { + if (!emptyData) { + parent.setAttribute("data-content", ""); + } + } +} + +function ellipsedLabel ({ name, parentClass = "", childClass = "" }) { + const child = "" + name + ""; + + return "" + child + ""; +} diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/gatling.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/gatling.js new file mode 100644 index 00000000..5b9e992f --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/gatling.js @@ -0,0 +1,137 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +(function ($) { + $.fn.expandable = function () { + var scope = this; + + this.find('.expand-button:not([class*=hidden])').addClass('collapse').on('click', function () { + var $this = $(this); + + if ($this.hasClass('expand')) + $this.expand(scope); + else + $this.collapse(scope); + }); + + this.find('.expand-all-button').on('click', function () { + $(this).expandAll(scope); + }); + + this.find('.collapse-all-button').on('click', function () { + $(this).collapseAll(scope); + }); + + this.collapseAll(this); + + return this; + }; + + $.fn.expand = function (scope, recursive) { + return this.each(function () { + var $this = $(this); + + if (recursive) { + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + } + + if ($this.hasClass('expand')) { + $('*[data-parent=' + $this.attr('id') + ']').toggle(true); + $this.toggleClass('expand').toggleClass('collapse'); + } + }); + }; + + $.fn.expandAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.expand').expand(scope, true); + $('*[data-parent=ROOT]').find('.expand-button.collapse').expand(scope, true); + }; + + $.fn.collapse = function (scope) { + return this.each(function () { + var $this = $(this); + + scope.find('*[data-parent=' + $this.attr('id') + '] .expand-button.collapse').collapse(scope); + scope.find('*[data-parent=' + $this.attr('id') + ']').toggle(false); + $this.toggleClass('expand').toggleClass('collapse'); + }); + }; + + $.fn.collapseAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.collapse').collapse(scope); + }; + + $.fn.sortable = function (target) { + var table = this; + + this.find('thead .sortable').on('click', function () { + var $this = $(this); + + if ($this.hasClass('sorted-down')) { + var desc = false; + var style = 'sorted-up'; + } + else { + var desc = true; + var style = 'sorted-down'; + } + + $(target).sortTable($this.attr('id'), desc); + + table.find('thead .sortable').removeClass('sorted-up sorted-down'); + $this.addClass(style); + + return false; + }); + + return this; + }; + + $.fn.sortTable = function (col, desc) { + function getValue(line) { + var cell = $(line).find('.' + col); + + if (cell.hasClass('value')) + var value = cell.text(); + else + var value = cell.find('.value').text(); + + return parseFloat(value); + } + + function sortLines (lines, group) { + var notErrorTable = col.search("error") == -1; + var linesToSort = notErrorTable ? lines.filter('*[data-parent=' + group + ']') : lines; + + var sortedLines = linesToSort.sort(function (a, b) { + return desc ? getValue(b) - getValue(a): getValue(a) - getValue(b); + }).toArray(); + + var result = []; + $.each(sortedLines, function (i, line) { + result.push(line); + if (notErrorTable) + result = result.concat(sortLines(lines, $(line).attr('id'))); + }); + + return result; + } + + this.find('tbody').append(sortLines(this.find('tbody tr').detach(), 'ROOT')); + + return this; + }; +})(jQuery); diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/global_stats.json b/testsrc/gatling/results/loginrecord-20240426122058764/js/global_stats.json new file mode 100644 index 00000000..4f445efa --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/global_stats.json @@ -0,0 +1,77 @@ +{ + "name": "All Requests", + "numberOfRequests": { + "total": 3190, + "ok": 3190, + "ko": 0 + }, + "minResponseTime": { + "total": 33, + "ok": 33, + "ko": 0 + }, + "maxResponseTime": { + "total": 314, + "ok": 314, + "ko": 0 + }, + "meanResponseTime": { + "total": 116, + "ok": 116, + "ko": 0 + }, + "standardDeviation": { + "total": 59, + "ok": 59, + "ko": 0 + }, + "percentiles1": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles2": { + "total": 124, + "ok": 124, + "ko": 0 + }, + "percentiles3": { + "total": 252, + "ok": 252, + "ko": 0 + }, + "percentiles4": { + "total": 292, + "ok": 292, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3190, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 36.666666666666664, + "ok": 36.666666666666664, + "ko": 0 + } +} \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/highcharts-more.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/highcharts-more.js new file mode 100644 index 00000000..2d788932 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/highcharts-more.js @@ -0,0 +1,60 @@ +/* + Highcharts JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(x){"object"===typeof module&&module.exports?module.exports=x:x(Highcharts)})(function(x){(function(b){function r(b,a,d){this.init(b,a,d)}var t=b.each,w=b.extend,m=b.merge,q=b.splat;w(r.prototype,{init:function(b,a,d){var f=this,h=f.defaultOptions;f.chart=a;f.options=b=m(h,a.angular?{background:{}}:void 0,b);(b=b.background)&&t([].concat(q(b)).reverse(),function(a){var c,h=d.userOptions;c=m(f.defaultBackgroundOptions,a);a.backgroundColor&&(c.backgroundColor=a.backgroundColor);c.color=c.backgroundColor; +d.options.plotBands.unshift(c);h.plotBands=h.plotBands||[];h.plotBands!==d.options.plotBands&&h.plotBands.unshift(c)})},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{className:"highcharts-pane",shape:"circle",borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"}});b.Pane=r})(x);(function(b){var r=b.CenteredSeriesMixin, +t=b.each,w=b.extend,m=b.map,q=b.merge,e=b.noop,a=b.Pane,d=b.pick,f=b.pInt,h=b.splat,u=b.wrap,c,l,k=b.Axis.prototype;b=b.Tick.prototype;c={getOffset:e,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:e,setCategories:e,setTitle:e};l={defaultRadialGaugeOptions:{labels:{align:"center",x:0,y:null},minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2}, +defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(a){a=this.options=q(this.defaultOptions,this.defaultRadialOptions,a);a.plotBands||(a.plotBands=[])},getOffset:function(){k.getOffset.call(this);this.chart.axisOffset[this.side]=0;this.center=this.pane.center= +r.getCenter.call(this.pane)},getLinePath:function(a,g){a=this.center;var c=this.chart,f=d(g,a[2]/2-this.offset);this.isCircular||void 0!==g?g=this.chart.renderer.symbols.arc(this.left+a[0],this.top+a[1],f,f,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}):(g=this.postTranslate(this.angleRad,f),g=["M",a[0]+c.plotLeft,a[1]+c.plotTop,"L",g.x,g.y]);return g},setAxisTranslation:function(){k.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/ +(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===d(this.userMax,this.options.max)&&this.endAngleRad-this.startAngleRad===2*Math.PI)this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){k.setAxisSize.call(this);this.isRadial&&(this.center=this.pane.center=r.getCenter.call(this.pane),this.isCircular&& +(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*d(this.sector,1)/2)},getPosition:function(a,g){return this.postTranslate(this.isCircular?this.translate(a):this.angleRad,d(this.isCircular?g:this.translate(a),this.center[2]/2)-this.offset)},postTranslate:function(a,g){var d=this.chart,c=this.center;a=this.startAngleRad+a;return{x:d.plotLeft+c[0]+Math.cos(a)*g,y:d.plotTop+c[1]+Math.sin(a)*g}},getPlotBandPath:function(a,g,c){var h=this.center,p=this.startAngleRad, +k=h[2]/2,n=[d(c.outerRadius,"100%"),c.innerRadius,d(c.thickness,10)],b=Math.min(this.offset,0),l=/%$/,u,e=this.isCircular;"polygon"===this.options.gridLineInterpolation?h=this.getPlotLinePath(a).concat(this.getPlotLinePath(g,!0)):(a=Math.max(a,this.min),g=Math.min(g,this.max),e||(n[0]=this.translate(a),n[1]=this.translate(g)),n=m(n,function(a){l.test(a)&&(a=f(a,10)*k/100);return a}),"circle"!==c.shape&&e?(a=p+this.translate(a),g=p+this.translate(g)):(a=-Math.PI/2,g=1.5*Math.PI,u=!0),n[0]-=b,n[2]-= +b,h=this.chart.renderer.symbols.arc(this.left+h[0],this.top+h[1],n[0],n[0],{start:Math.min(a,g),end:Math.max(a,g),innerR:d(n[1],n[0]-n[2]),open:u}));return h},getPlotLinePath:function(a,g){var d=this,c=d.center,f=d.chart,h=d.getPosition(a),k,b,p;d.isCircular?p=["M",c[0]+f.plotLeft,c[1]+f.plotTop,"L",h.x,h.y]:"circle"===d.options.gridLineInterpolation?(a=d.translate(a))&&(p=d.getLinePath(0,a)):(t(f.xAxis,function(a){a.pane===d.pane&&(k=a)}),p=[],a=d.translate(a),c=k.tickPositions,k.autoConnect&&(c= +c.concat([c[0]])),g&&(c=[].concat(c).reverse()),t(c,function(g,d){b=k.getPosition(g,a);p.push(d?"L":"M",b.x,b.y)}));return p},getTitlePosition:function(){var a=this.center,g=this.chart,d=this.options.title;return{x:g.plotLeft+a[0]+(d.x||0),y:g.plotTop+a[1]-{high:.5,middle:.25,low:0}[d.align]*a[2]+(d.y||0)}}};u(k,"init",function(f,g,k){var b=g.angular,p=g.polar,n=k.isX,u=b&&n,e,A=g.options,m=k.pane||0;if(b){if(w(this,u?c:l),e=!n)this.defaultRadialOptions=this.defaultRadialGaugeOptions}else p&&(w(this, +l),this.defaultRadialOptions=(e=n)?this.defaultRadialXOptions:q(this.defaultYAxisOptions,this.defaultRadialYOptions));b||p?(this.isRadial=!0,g.inverted=!1,A.chart.zoomType=null):this.isRadial=!1;f.call(this,g,k);u||!b&&!p||(f=this.options,g.panes||(g.panes=[]),this.pane=g=g.panes[m]=g.panes[m]||new a(h(A.pane)[m],g,this),g=g.options,this.angleRad=(f.angle||0)*Math.PI/180,this.startAngleRad=(g.startAngle-90)*Math.PI/180,this.endAngleRad=(d(g.endAngle,g.startAngle+360)-90)*Math.PI/180,this.offset=f.offset|| +0,this.isCircular=e)});u(k,"autoLabelAlign",function(a){if(!this.isRadial)return a.apply(this,[].slice.call(arguments,1))});u(b,"getPosition",function(a,d,c,f,h){var g=this.axis;return g.getPosition?g.getPosition(c):a.call(this,d,c,f,h)});u(b,"getLabelPosition",function(a,g,c,f,h,k,b,l,u){var n=this.axis,p=k.y,e=20,y=k.align,v=(n.translate(this.pos)+n.startAngleRad+Math.PI/2)/Math.PI*180%360;n.isRadial?(a=n.getPosition(this.pos,n.center[2]/2+d(k.distance,-25)),"auto"===k.rotation?f.attr({rotation:v}): +null===p&&(p=n.chart.renderer.fontMetrics(f.styles.fontSize).b-f.getBBox().height/2),null===y&&(n.isCircular?(this.label.getBBox().width>n.len*n.tickInterval/(n.max-n.min)&&(e=0),y=v>e&&v<180-e?"left":v>180+e&&v<360-e?"right":"center"):y="center",f.attr({align:y})),a.x+=k.x,a.y+=p):a=a.call(this,g,c,f,h,k,b,l,u);return a});u(b,"getMarkPath",function(a,d,c,f,h,k,b){var g=this.axis;g.isRadial?(a=g.getPosition(this.pos,g.center[2]/2+f),d=["M",d,c,"L",a.x,a.y]):d=a.call(this,d,c,f,h,k,b);return d})})(x); +(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.Series,q=b.seriesType,e=b.seriesTypes;q("arearange","area",{lineWidth:1,marker:null,threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{series.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0},states:{hover:{halo:!1}}},{pointArrayMap:["low","high"],dataLabelCollections:["dataLabel", +"dataLabelUpper"],toYData:function(a){return[a.low,a.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(a){var d=this.chart,f=this.xAxis.postTranslate(a.rectPlotX,this.yAxis.len-a.plotHigh);a.plotHighX=f.x-d.plotLeft;a.plotHigh=f.y-d.plotTop},translate:function(){var a=this,d=a.yAxis,f=!!a.modifyValue;e.area.prototype.translate.apply(a);r(a.points,function(h){var b=h.low,c=h.high,l=h.plotY;null===c||null===b?h.isNull=!0:(h.plotLow=l,h.plotHigh=d.translate(f?a.modifyValue(c,h):c,0,1, +0,1),f&&(h.yBottom=h.plotHigh))});this.chart.polar&&r(this.points,function(d){a.highToXY(d)})},getGraphPath:function(a){var d=[],f=[],h,b=e.area.prototype.getGraphPath,c,l,k;k=this.options;var p=k.step;a=a||this.points;for(h=a.length;h--;)c=a[h],c.isNull||k.connectEnds||a[h+1]&&!a[h+1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1}),l={polarPlotY:c.polarPlotY,rectPlotX:c.rectPlotX,yBottom:c.yBottom,plotX:w(c.plotHighX,c.plotX),plotY:c.plotHigh,isNull:c.isNull},f.push(l),d.push(l),c.isNull|| +k.connectEnds||a[h-1]&&!a[h-1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1});a=b.call(this,a);p&&(!0===p&&(p="left"),k.step={left:"right",center:"center",right:"left"}[p]);d=b.call(this,d);f=b.call(this,f);k.step=p;k=[].concat(a,d);this.chart.polar||"M"!==f[0]||(f[0]="L");this.graphPath=k;this.areaPath=this.areaPath.concat(a,f);k.isArea=!0;k.xMap=a.xMap;this.areaPath.xMap=a.xMap;return k},drawDataLabels:function(){var a=this.data,d=a.length,f,h=[],b=m.prototype,c=this.options.dataLabels, +l=c.align,k=c.verticalAlign,p=c.inside,g,n,e=this.chart.inverted;if(c.enabled||this._hasPointLabels){for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.y=g.high,g._plotY=g.plotY,g.plotY=g.plotHigh,h[f]=g.dataLabel,g.dataLabel=g.dataLabelUpper,g.below=n,e?l||(c.align=n?"right":"left"):k||(c.verticalAlign=n?"top":"bottom"),c.x=c.xHigh,c.y=c.yHigh;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments);for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.dataLabelUpper= +g.dataLabel,g.dataLabel=h[f],g.y=g.low,g.plotY=g._plotY,g.below=!n,e?l||(c.align=n?"left":"right"):k||(c.verticalAlign=n?"bottom":"top"),c.x=c.xLow,c.y=c.yLow;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments)}c.align=l;c.verticalAlign=k},alignDataLabel:function(){e.column.prototype.alignDataLabel.apply(this,arguments)},setStackedPoints:t,getSymbol:t,drawPoints:t})})(x);(function(b){var r=b.seriesType;r("areasplinerange","arearange",null,{getPointSpline:b.seriesTypes.spline.prototype.getPointSpline})})(x); +(function(b){var r=b.defaultPlotOptions,t=b.each,w=b.merge,m=b.noop,q=b.pick,e=b.seriesType,a=b.seriesTypes.column.prototype;e("columnrange","arearange",w(r.column,r.arearange,{lineWidth:1,pointRange:null}),{translate:function(){var d=this,f=d.yAxis,b=d.xAxis,u=b.startAngleRad,c,l=d.chart,k=d.xAxis.isRadial,p;a.translate.apply(d);t(d.points,function(a){var g=a.shapeArgs,h=d.options.minPointLength,e,v;a.plotHigh=p=f.translate(a.high,0,1,0,1);a.plotLow=a.plotY;v=p;e=q(a.rectPlotY,a.plotY)-p;Math.abs(e)< +h?(h-=e,e+=h,v-=h/2):0>e&&(e*=-1,v-=e);k?(c=a.barX+u,a.shapeType="path",a.shapeArgs={d:d.polarArc(v+e,v,c,c+a.pointWidth)}):(g.height=e,g.y=v,a.tooltipPos=l.inverted?[f.len+f.pos-l.plotLeft-v-e/2,b.len+b.pos-l.plotTop-g.x-g.width/2,e]:[b.left-l.plotLeft+g.x+g.width/2,f.pos-l.plotTop+v+e/2,e])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:m,crispCol:a.crispCol,drawPoints:a.drawPoints,drawTracker:a.drawTracker,getColumnMetrics:a.getColumnMetrics,animate:function(){return a.animate.apply(this, +arguments)},polarArc:function(){return a.polarArc.apply(this,arguments)},pointAttribs:a.pointAttribs})})(x);(function(b){var r=b.each,t=b.isNumber,w=b.merge,m=b.pick,q=b.pInt,e=b.Series,a=b.seriesType,d=b.TrackerMixin;a("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2,borderWidth:1,borderColor:"#cccccc"},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:b.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0, +trackerGroups:["group","dataLabelsGroup"],translate:function(){var a=this.yAxis,d=this.options,b=a.center;this.generatePoints();r(this.points,function(c){var f=w(d.dial,c.dial),k=q(m(f.radius,80))*b[2]/200,h=q(m(f.baseLength,70))*k/100,g=q(m(f.rearLength,10))*k/100,n=f.baseWidth||3,u=f.topWidth||1,e=d.overshoot,v=a.startAngleRad+a.translate(c.y,null,null,null,!0);t(e)?(e=e/180*Math.PI,v=Math.max(a.startAngleRad-e,Math.min(a.endAngleRad+e,v))):!1===d.wrap&&(v=Math.max(a.startAngleRad,Math.min(a.endAngleRad, +v)));v=180*v/Math.PI;c.shapeType="path";c.shapeArgs={d:f.path||["M",-g,-n/2,"L",h,-n/2,k,-u/2,k,u/2,h,n/2,-g,n/2,"z"],translateX:b[0],translateY:b[1],rotation:v};c.plotX=b[0];c.plotY=b[1]})},drawPoints:function(){var a=this,d=a.yAxis.center,b=a.pivot,c=a.options,l=c.pivot,k=a.chart.renderer;r(a.points,function(d){var g=d.graphic,b=d.shapeArgs,f=b.d,h=w(c.dial,d.dial);g?(g.animate(b),b.d=f):(d.graphic=k[d.shapeType](b).attr({rotation:b.rotation,zIndex:1}).addClass("highcharts-dial").add(a.group),d.graphic.attr({stroke:h.borderColor|| +"none","stroke-width":h.borderWidth||0,fill:h.backgroundColor||"#000000"}))});b?b.animate({translateX:d[0],translateY:d[1]}):(a.pivot=k.circle(0,0,m(l.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(d[0],d[1]).add(a.group),a.pivot.attr({"stroke-width":l.borderWidth||0,stroke:l.borderColor||"#cccccc",fill:l.backgroundColor||"#000000"}))},animate:function(a){var d=this;a||(r(d.points,function(a){var c=a.graphic;c&&(c.attr({rotation:180*d.yAxis.startAngleRad/Math.PI}),c.animate({rotation:a.shapeArgs.rotation}, +d.options.animation))}),d.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);e.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,d){e.prototype.setData.call(this,a,!1);this.processData();this.generatePoints();m(d,!0)&&this.chart.redraw()},drawTracker:d&&d.drawTrackerPoint},{setState:function(a){this.state=a}})})(x);(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.seriesType, +q=b.seriesTypes;m("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,states:{hover:{brightness:-.3}},whiskerWidth:2},{pointArrayMap:["low","q1","median", +"q3","high"],toYData:function(b){return[b.low,b.q1,b.median,b.q3,b.high]},pointValKey:"high",pointAttribs:function(b){var a=this.options,d=b&&b.color||this.color;return{fill:b.fillColor||a.fillColor||d,stroke:a.lineColor||d,"stroke-width":a.lineWidth||0}},drawDataLabels:t,translate:function(){var b=this.yAxis,a=this.pointArrayMap;q.column.prototype.translate.apply(this);r(this.points,function(d){r(a,function(a){null!==d[a]&&(d[a+"Plot"]=b.translate(d[a],0,1,0,1))})})},drawPoints:function(){var b= +this,a=b.options,d=b.chart.renderer,f,h,u,c,l,k,p=0,g,n,m,q,v=!1!==b.doQuartiles,t,x=b.options.whiskerLength;r(b.points,function(e){var r=e.graphic,y=r?"animate":"attr",I=e.shapeArgs,z={},B={},G={},H=e.color||b.color;void 0!==e.plotY&&(g=I.width,n=Math.floor(I.x),m=n+g,q=Math.round(g/2),f=Math.floor(v?e.q1Plot:e.lowPlot),h=Math.floor(v?e.q3Plot:e.lowPlot),u=Math.floor(e.highPlot),c=Math.floor(e.lowPlot),r||(e.graphic=r=d.g("point").add(b.group),e.stem=d.path().addClass("highcharts-boxplot-stem").add(r), +x&&(e.whiskers=d.path().addClass("highcharts-boxplot-whisker").add(r)),v&&(e.box=d.path(void 0).addClass("highcharts-boxplot-box").add(r)),e.medianShape=d.path(void 0).addClass("highcharts-boxplot-median").add(r),z.stroke=e.stemColor||a.stemColor||H,z["stroke-width"]=w(e.stemWidth,a.stemWidth,a.lineWidth),z.dashstyle=e.stemDashStyle||a.stemDashStyle,e.stem.attr(z),x&&(B.stroke=e.whiskerColor||a.whiskerColor||H,B["stroke-width"]=w(e.whiskerWidth,a.whiskerWidth,a.lineWidth),e.whiskers.attr(B)),v&&(r= +b.pointAttribs(e),e.box.attr(r)),G.stroke=e.medianColor||a.medianColor||H,G["stroke-width"]=w(e.medianWidth,a.medianWidth,a.lineWidth),e.medianShape.attr(G)),k=e.stem.strokeWidth()%2/2,p=n+q+k,e.stem[y]({d:["M",p,h,"L",p,u,"M",p,f,"L",p,c]}),v&&(k=e.box.strokeWidth()%2/2,f=Math.floor(f)+k,h=Math.floor(h)+k,n+=k,m+=k,e.box[y]({d:["M",n,h,"L",n,f,"L",m,f,"L",m,h,"L",n,h,"z"]})),x&&(k=e.whiskers.strokeWidth()%2/2,u+=k,c+=k,t=/%$/.test(x)?q*parseFloat(x)/100:x/2,e.whiskers[y]({d:["M",p-t,u,"L",p+t,u, +"M",p-t,c,"L",p+t,c]})),l=Math.round(e.medianPlot),k=e.medianShape.strokeWidth()%2/2,l+=k,e.medianShape[y]({d:["M",n,l,"L",m,l]}))})},setStackedPoints:t})})(x);(function(b){var r=b.each,t=b.noop,w=b.seriesType,m=b.seriesTypes;w("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},whiskerWidth:null},{type:"errorbar", +pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:m.arearange?function(){var b=this.pointValKey;m.arearange.prototype.drawDataLabels.call(this);r(this.data,function(e){e.y=e[b]})}:t,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||m.column.prototype.getColumnMetrics.call(this)}})})(x);(function(b){var r=b.correctFloat,t=b.isNumber,w=b.pick,m=b.Point,q=b.Series,e=b.seriesType,a=b.seriesTypes; +e("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",translate:function(){var d=this.options,b=this.yAxis,h,e,c,l,k,p,g,n,m,q=w(d.minPointLength,5),v=d.threshold,t=d.stacking;a.column.prototype.translate.apply(this);this.minPointLengthOffset=0;g=n=v;e=this.points;h=0;for(d=e.length;hl.height&&(l.y+=l.height,l.height*=-1),c.plotY=l.y=Math.round(l.y)- +this.borderWidth%2/2,l.height=Math.max(Math.round(l.height),.001),c.yBottom=l.y+l.height,l.height<=q&&(l.height=q,this.minPointLengthOffset+=q),l.y-=this.minPointLengthOffset,l=c.plotY+(c.negative?l.height:0)-this.minPointLengthOffset,this.chart.inverted?c.tooltipPos[0]=b.len-l:c.tooltipPos[1]=l},processData:function(a){var b=this.yData,d=this.options.data,e,c=b.length,l,k,p,g,n,m;k=l=p=g=this.options.threshold||0;for(m=0;ma[k-1].y&&(l[2]+=c.height,l[5]+=c.height),e=e.concat(l);return e},drawGraph:function(){q.prototype.drawGraph.call(this);this.graph.attr({d:this.getCrispPath()})},getExtremes:b.noop},{getClassName:function(){var a=m.prototype.getClassName.call(this);this.isSum?a+=" highcharts-sum":this.isIntermediateSum&&(a+=" highcharts-intermediate-sum"); +return a},isValid:function(){return t(this.y,!0)||this.isSum||this.isIntermediateSum}})})(x);(function(b){var r=b.Series,t=b.seriesType,w=b.seriesTypes;t("polygon","scatter",{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var b=r.prototype.getGraphPath.call(this),q=b.length+1;q--;)(q===b.length||"M"===b[q])&&0=this.minPxSize/2?(d.shapeType="circle",d.shapeArgs={x:d.plotX,y:d.plotY,r:c},d.dlBox={x:d.plotX-c,y:d.plotY-c,width:2*c,height:2*c}):d.shapeArgs=d.plotY=d.dlBox=void 0},drawLegendSymbol:function(a,b){var d=this.chart.renderer,c=d.fontMetrics(a.itemStyle.fontSize).f/2;b.legendSymbol=d.circle(c,a.baseline-c,c).attr({zIndex:3}).add(b.legendGroup);b.legendSymbol.isMarker= +!0},drawPoints:l.column.prototype.drawPoints,alignDataLabel:l.column.prototype.alignDataLabel,buildKDTree:a,applyZones:a},{haloPath:function(a){return h.prototype.haloPath.call(this,this.shapeArgs.r+a)},ttBelow:!1});w.prototype.beforePadding=function(){var a=this,b=this.len,c=this.chart,h=0,l=b,u=this.isXAxis,m=u?"xData":"yData",w=this.min,x={},A=Math.min(c.plotWidth,c.plotHeight),C=Number.MAX_VALUE,D=-Number.MAX_VALUE,E=this.max-w,z=b/E,F=[];q(this.series,function(b){var g=b.options;!b.bubblePadding|| +!b.visible&&c.options.chart.ignoreHiddenSeries||(a.allowZoomOutside=!0,F.push(b),u&&(q(["minSize","maxSize"],function(a){var b=g[a],d=/%$/.test(b),b=f(b);x[a]=d?A*b/100:b}),b.minPxSize=x.minSize,b.maxPxSize=Math.max(x.maxSize,x.minSize),b=b.zData,b.length&&(C=d(g.zMin,Math.min(C,Math.max(t(b),!1===g.displayNegative?g.zThreshold:-Number.MAX_VALUE))),D=d(g.zMax,Math.max(D,r(b))))))});q(F,function(b){var d=b[m],c=d.length,f;u&&b.getRadii(C,D,b.minPxSize,b.maxPxSize);if(0f&&(f+=360),a.clientX=f):a.clientX=a.plotX};m.spline&&q(m.spline.prototype,"getPointSpline",function(a,b,f,h){var d,c,e,k,p,g,n;this.chart.polar?(d=f.plotX, +c=f.plotY,a=b[h-1],e=b[h+1],this.connectEnds&&(a||(a=b[b.length-2]),e||(e=b[1])),a&&e&&(k=a.plotX,p=a.plotY,b=e.plotX,g=e.plotY,k=(1.5*d+k)/2.5,p=(1.5*c+p)/2.5,e=(1.5*d+b)/2.5,n=(1.5*c+g)/2.5,b=Math.sqrt(Math.pow(k-d,2)+Math.pow(p-c,2)),g=Math.sqrt(Math.pow(e-d,2)+Math.pow(n-c,2)),k=Math.atan2(p-c,k-d),p=Math.atan2(n-c,e-d),n=Math.PI/2+(k+p)/2,Math.abs(k-n)>Math.PI/2&&(n-=Math.PI),k=d+Math.cos(n)*b,p=c+Math.sin(n)*b,e=d+Math.cos(Math.PI+n)*g,n=c+Math.sin(Math.PI+n)*g,f.rightContX=e,f.rightContY=n), +h?(f=["C",a.rightContX||a.plotX,a.rightContY||a.plotY,k||d,p||c,d,c],a.rightContX=a.rightContY=null):f=["M",d,c]):f=a.call(this,b,f,h);return f});q(e,"translate",function(a){var b=this.chart;a.call(this);if(b.polar&&(this.kdByAngle=b.tooltip&&b.tooltip.shared,!this.preventPostTranslate))for(a=this.points,b=a.length;b--;)this.toXY(a[b])});q(e,"getGraphPath",function(a,b){var d=this,e,m;if(this.chart.polar){b=b||this.points;for(e=0;eb.center[1]}),q(m,"alignDataLabel",function(a,b,f,h,m,c){this.chart.polar?(a=b.rectPlotX/Math.PI*180,null===h.align&&(h.align=20a?"left":200a?"right":"center"),null===h.verticalAlign&&(h.verticalAlign=45>a||315a?"top":"middle"),e.alignDataLabel.call(this,b,f,h,m,c)):a.call(this, +b,f,h,m,c)}));q(b,"getCoordinates",function(a,b){var d=this.chart,e={xAxis:[],yAxis:[]};d.polar?t(d.axes,function(a){var c=a.isXAxis,f=a.center,h=b.chartX-f[0]-d.plotLeft,f=b.chartY-f[1]-d.plotTop;e[c?"xAxis":"yAxis"].push({axis:a,value:a.translate(c?Math.PI-Math.atan2(h,f):Math.sqrt(Math.pow(h,2)+Math.pow(f,2)),!0)})}):e=a.call(this,b);return e})})(x)}); diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/highstock.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/highstock.js new file mode 100644 index 00000000..34a3f91c --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/highstock.js @@ -0,0 +1,496 @@ +/* + Highstock JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(N,a){"object"===typeof module&&module.exports?module.exports=N.document?a(N):a:N.Highcharts=a(N)})("undefined"!==typeof window?window:this,function(N){N=function(){var a=window,D=a.document,B=a.navigator&&a.navigator.userAgent||"",G=D&&D.createElementNS&&!!D.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,H=/(edge|msie|trident)/i.test(B)&&!window.opera,p=!G,l=/Firefox/.test(B),r=l&&4>parseInt(B.split("Firefox/")[1],10);return a.Highcharts?a.Highcharts.error(16,!0):{product:"Highstock", +version:"5.0.3",deg2rad:2*Math.PI/360,doc:D,hasBidiBug:r,hasTouch:D&&void 0!==D.documentElement.ontouchstart,isMS:H,isWebKit:/AppleWebKit/.test(B),isFirefox:l,isTouchDevice:/(Mobile|Android|Windows Phone)/.test(B),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:G,vml:p,win:a,charts:[],marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){}}}();(function(a){var D=[],B=a.charts,G=a.doc,H=a.win;a.error=function(a,l){a="Highcharts error #"+ +a+": www.highcharts.com/errors/"+a;if(l)throw Error(a);H.console&&console.log(a)};a.Fx=function(a,l,r){this.options=l;this.elem=a;this.prop=r};a.Fx.prototype={dSetter:function(){var a=this.paths[0],l=this.paths[1],r=[],w=this.now,t=a.length,k;if(1===w)r=this.toD;else if(t===l.length&&1>w)for(;t--;)k=parseFloat(a[t]),r[t]=isNaN(k)?a[t]:w*parseFloat(l[t]-k)+k;else r=l;this.elem.attr("d",r)},update:function(){var a=this.elem,l=this.prop,r=this.now,w=this.options.step;if(this[l+"Setter"])this[l+"Setter"](); +else a.attr?a.element&&a.attr(l,r):a.style[l]=r+this.unit;w&&w.call(a,r,this)},run:function(a,l,r){var p=this,t=function(a){return t.stopped?!1:p.step(a)},k;this.startTime=+new Date;this.start=a;this.end=l;this.unit=r;this.now=this.start;this.pos=0;t.elem=this.elem;t()&&1===D.push(t)&&(t.timerId=setInterval(function(){for(k=0;k=k+this.startTime){this.now=this.end;this.pos=1;this.update();a=m[this.prop]=!0;for(e in m)!0!==m[e]&&(a=!1);a&&t&&t.call(p);p=!1}else this.pos=w.easing((l-this.startTime)/k),this.now=this.start+(this.end-this.start)*this.pos,this.update(),p=!0;return p},initPath:function(p,l,r){function w(a){for(b=a.length;b--;)"M"!==a[b]&&"L"!==a[b]||a.splice(b+1,0,a[b+1],a[b+2],a[b+1],a[b+2])}function t(a,c){for(;a.lengthm?"AM":"PM",P:12>m?"am":"pm",S:q(t.getSeconds()),L:q(Math.round(l%1E3),3)},a.dateFormats);for(k in w)for(;-1!==p.indexOf("%"+k);)p= +p.replace("%"+k,"function"===typeof w[k]?w[k](l):w[k]);return r?p.substr(0,1).toUpperCase()+p.substr(1):p};a.formatSingle=function(p,l){var r=/\.([0-9])/,w=a.defaultOptions.lang;/f$/.test(p)?(r=(r=p.match(r))?r[1]:-1,null!==l&&(l=a.numberFormat(l,r,w.decimalPoint,-1=r&&(l=[1/r])));for(w=0;w=p||!t&&k<=(l[w]+(l[w+1]||l[w]))/ +2);w++);return m*r};a.stableSort=function(a,l){var r=a.length,p,t;for(t=0;tr&&(r=a[l]);return r};a.destroyObjectProperties=function(a,l){for(var r in a)a[r]&&a[r]!==l&&a[r].destroy&&a[r].destroy(),delete a[r]};a.discardElement=function(p){var l= +a.garbageBin;l||(l=a.createElement("div"));p&&l.appendChild(p);l.innerHTML=""};a.correctFloat=function(a,l){return parseFloat(a.toPrecision(l||14))};a.setAnimation=function(p,l){l.renderer.globalAnimation=a.pick(p,l.options.chart.animation,!0)};a.animObject=function(p){return a.isObject(p)?a.merge(p):{duration:p?500:0}};a.timeUnits={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5,month:24192E5,year:314496E5};a.numberFormat=function(p,l,r,w){p=+p||0;l=+l;var t=a.defaultOptions.lang, +k=(p.toString().split(".")[1]||"").length,m,e,g=Math.abs(p);-1===l?l=Math.min(k,20):a.isNumber(l)||(l=2);m=String(a.pInt(g.toFixed(l)));e=3p?"-":"")+(e?m.substr(0,e)+w:"");p+=m.substr(e).replace(/(\d{3})(?=\d)/g,"$1"+w);l&&(w=Math.abs(g-m+Math.pow(10,-Math.max(l,k)-1)),p+=r+w.toFixed(l).slice(2));return p};Math.easeInOutSine=function(a){return-.5*(Math.cos(Math.PI*a)-1)};a.getStyle=function(p,l){return"width"===l?Math.min(p.offsetWidth, +p.scrollWidth)-a.getStyle(p,"padding-left")-a.getStyle(p,"padding-right"):"height"===l?Math.min(p.offsetHeight,p.scrollHeight)-a.getStyle(p,"padding-top")-a.getStyle(p,"padding-bottom"):(p=H.getComputedStyle(p,void 0))&&a.pInt(p.getPropertyValue(l))};a.inArray=function(a,l){return l.indexOf?l.indexOf(a):[].indexOf.call(l,a)};a.grep=function(a,l){return[].filter.call(a,l)};a.map=function(a,l){for(var r=[],p=0,t=a.length;pl;l++)w[l]+=p(255*a),0>w[l]&&(w[l]=0),255z.width)z={width:0,height:0}}else z=this.htmlGetBBox();b.isSVG&&(a=z.width, +b=z.height,c&&L&&"11px"===L.fontSize&&"16.9"===b.toPrecision(3)&&(z.height=b=14),v&&(z.width=Math.abs(b*Math.sin(d))+Math.abs(a*Math.cos(d)),z.height=Math.abs(b*Math.cos(d))+Math.abs(a*Math.sin(d))));if(g&&0]*>/g,"")))},textSetter:function(a){a!==this.textStr&&(delete this.bBox,this.textStr=a,this.added&&this.renderer.buildText(this))},fillSetter:function(a,c,v){"string"===typeof a?v.setAttribute(c, +a):a&&this.colorGradient(a,c,v)},visibilitySetter:function(a,c,v){"inherit"===a?v.removeAttribute(c):v.setAttribute(c,a)},zIndexSetter:function(a,c){var v=this.renderer,z=this.parentGroup,b=(z||v).element||v.box,d,n=this.element,f;d=this.added;var e;k(a)&&(n.zIndex=a,a=+a,this[c]===a&&(d=!1),this[c]=a);if(d){(a=this.zIndex)&&z&&(z.handleZ=!0);c=b.childNodes;for(e=0;ea||!k(a)&&k(d)||0>a&&!k(d)&&b!==v.box)&&(b.insertBefore(n,z),f=!0);f||b.appendChild(n)}return f}, +_defaultSetter:function(a,c,v){v.setAttribute(c,a)}};D.prototype.yGetter=D.prototype.xGetter;D.prototype.translateXSetter=D.prototype.translateYSetter=D.prototype.rotationSetter=D.prototype.verticalAlignSetter=D.prototype.scaleXSetter=D.prototype.scaleYSetter=function(a,c){this[c]=a;this.doTransform=!0};D.prototype["stroke-widthSetter"]=D.prototype.strokeSetter=function(a,c,v){this[c]=a;this.stroke&&this["stroke-width"]?(D.prototype.fillSetter.call(this,this.stroke,"stroke",v),v.setAttribute("stroke-width", +this["stroke-width"]),this.hasStroke=!0):"stroke-width"===c&&0===a&&this.hasStroke&&(v.removeAttribute("stroke"),this.hasStroke=!1)};B=a.SVGRenderer=function(){this.init.apply(this,arguments)};B.prototype={Element:D,SVG_NS:K,init:function(a,c,v,b,d,n){var z;b=this.createElement("svg").attr({version:"1.1","class":"highcharts-root"}).css(this.getStyle(b));z=b.element;a.appendChild(z);-1===a.innerHTML.indexOf("xmlns")&&p(z,"xmlns",this.SVG_NS);this.isSVG=!0;this.box=z;this.boxWrapper=b;this.alignedObjects= +[];this.url=(E||A)&&g.getElementsByTagName("base").length?R.location.href.replace(/#.*?$/,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(g.createTextNode("Created with Highstock 5.0.3"));this.defs=this.createElement("defs").add();this.allowHTML=n;this.forExport=d;this.gradients={};this.cache={};this.cacheKeys=[];this.imgCount=0;this.setSize(c,v,!1);var f;E&&a.getBoundingClientRect&&(c=function(){w(a,{left:0,top:0});f=a.getBoundingClientRect(); +w(a,{left:Math.ceil(f.left)-f.left+"px",top:Math.ceil(f.top)-f.top+"px"})},c(),this.unSubPixelFix=G(R,"resize",c))},getStyle:function(a){return this.style=C({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},a)},setStyle:function(a){this.boxWrapper.css(this.getStyle(a))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();e(this.gradients||{});this.gradients= +null;a&&(this.defs=a.destroy());this.unSubPixelFix&&this.unSubPixelFix();return this.alignedObjects=null},createElement:function(a){var c=new this.Element;c.init(this,a);return c},draw:J,getRadialAttr:function(a,c){return{cx:a[0]-a[2]/2+c.cx*a[2],cy:a[1]-a[2]/2+c.cy*a[2],r:c.r*a[2]}},buildText:function(a){for(var c=a.element,z=this,b=z.forExport,n=y(a.textStr,"").toString(),f=-1!==n.indexOf("\x3c"),e=c.childNodes,q,F,x,A,I=p(c,"x"),m=a.styles,k=a.textWidth,C=m&&m.lineHeight,M=m&&m.textOutline,J=m&& +"ellipsis"===m.textOverflow,E=e.length,O=k&&!a.added&&this.box,t=function(a){var v;v=/(px|em)$/.test(a&&a.style.fontSize)?a.style.fontSize:m&&m.fontSize||z.style.fontSize||12;return C?u(C):z.fontMetrics(v,a.getAttribute("style")?a:c).h};E--;)c.removeChild(e[E]);f||M||J||k||-1!==n.indexOf(" ")?(q=/<.*class="([^"]+)".*>/,F=/<.*style="([^"]+)".*>/,x=/<.*href="(http[^"]+)".*>/,O&&O.appendChild(c),n=f?n.replace(/<(b|strong)>/g,'\x3cspan style\x3d"font-weight:bold"\x3e').replace(/<(i|em)>/g,'\x3cspan style\x3d"font-style:italic"\x3e').replace(//g,"\x3c/span\x3e").split(//g):[n],n=d(n,function(a){return""!==a}),h(n,function(d,n){var f,e=0;d=d.replace(/^\s+|\s+$/g,"").replace(//g,"\x3c/span\x3e|||");f=d.split("|||");h(f,function(d){if(""!==d||1===f.length){var u={},y=g.createElementNS(z.SVG_NS,"tspan"),L,h;q.test(d)&&(L=d.match(q)[1],p(y,"class",L));F.test(d)&&(h=d.match(F)[1].replace(/(;| |^)color([ :])/,"$1fill$2"),p(y,"style",h));x.test(d)&&!b&&(p(y, +"onclick",'location.href\x3d"'+d.match(x)[1]+'"'),w(y,{cursor:"pointer"}));d=(d.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"\x3c").replace(/>/g,"\x3e");if(" "!==d){y.appendChild(g.createTextNode(d));e?u.dx=0:n&&null!==I&&(u.x=I);p(y,u);c.appendChild(y);!e&&n&&(!v&&b&&w(y,{display:"block"}),p(y,"dy",t(y)));if(k){u=d.replace(/([^\^])-/g,"$1- ").split(" ");L="nowrap"===m.whiteSpace;for(var C=1k,void 0===A&&(A=M),J&&A?(Q/=2,""===l||!M&&.5>Q?u=[]:(l=d.substring(0,l.length+(M?-1:1)*Math.ceil(Q)),u=[l+(3k&&(k=P)),u.length&&y.appendChild(g.createTextNode(u.join(" ").replace(/- /g, +"-")));a.rotation=R}e++}}})}),A&&a.attr("title",a.textStr),O&&O.removeChild(c),M&&a.applyTextOutline&&a.applyTextOutline(M)):c.appendChild(g.createTextNode(n.replace(/</g,"\x3c").replace(/>/g,"\x3e")))},getContrast:function(a){a=r(a).rgba;return 510v?d>c+f&&de?d>c+f&&db&&e>a+f&&ed&&e>a+f&&ea?a+3:Math.round(1.2*a);return{h:c,b:Math.round(.8*c),f:a}},rotCorr:function(a, +c,v){var b=a;c&&v&&(b=Math.max(b*Math.cos(c*m),4));return{x:-a/3*Math.sin(c*m),y:b}},label:function(a,c,v,b,d,n,f,e,K){var q=this,u=q.g("button"!==K&&"label"),y=u.text=q.text("",0,0,f).attr({zIndex:1}),g,F,z=0,A=3,L=0,m,M,J,E,O,t={},l,R,r=/^url\((.*?)\)$/.test(b),p=r,P,w,Q,S;K&&u.addClass("highcharts-"+K);p=r;P=function(){return(l||0)%2/2};w=function(){var a=y.element.style,c={};F=(void 0===m||void 0===M||O)&&k(y.textStr)&&y.getBBox();u.width=(m||F.width||0)+2*A+L;u.height=(M||F.height||0)+2*A;R= +A+q.fontMetrics(a&&a.fontSize,y).b;p&&(g||(u.box=g=q.symbols[b]||r?q.symbol(b):q.rect(),g.addClass(("button"===K?"":"highcharts-label-box")+(K?" highcharts-"+K+"-box":"")),g.add(u),a=P(),c.x=a,c.y=(e?-R:0)+a),c.width=Math.round(u.width),c.height=Math.round(u.height),g.attr(C(c,t)),t={})};Q=function(){var a=L+A,c;c=e?0:R;k(m)&&F&&("center"===O||"right"===O)&&(a+={center:.5,right:1}[O]*(m-F.width));if(a!==y.x||c!==y.y)y.attr("x",a),void 0!==c&&y.attr("y",c);y.x=a;y.y=c};S=function(a,c){g?g.attr(a,c): +t[a]=c};u.onAdd=function(){y.add(u);u.attr({text:a||0===a?a:"",x:c,y:v});g&&k(d)&&u.attr({anchorX:d,anchorY:n})};u.widthSetter=function(a){m=a};u.heightSetter=function(a){M=a};u["text-alignSetter"]=function(a){O=a};u.paddingSetter=function(a){k(a)&&a!==A&&(A=u.padding=a,Q())};u.paddingLeftSetter=function(a){k(a)&&a!==L&&(L=a,Q())};u.alignSetter=function(a){a={left:0,center:.5,right:1}[a];a!==z&&(z=a,F&&u.attr({x:J}))};u.textSetter=function(a){void 0!==a&&y.textSetter(a);w();Q()};u["stroke-widthSetter"]= +function(a,c){a&&(p=!0);l=this["stroke-width"]=a;S(c,a)};u.strokeSetter=u.fillSetter=u.rSetter=function(a,c){"fill"===c&&a&&(p=!0);S(c,a)};u.anchorXSetter=function(a,c){d=a;S(c,Math.round(a)-P()-J)};u.anchorYSetter=function(a,c){n=a;S(c,a-E)};u.xSetter=function(a){u.x=a;z&&(a-=z*((m||F.width)+2*A));J=Math.round(a);u.attr("translateX",J)};u.ySetter=function(a){E=u.y=Math.round(a);u.attr("translateY",E)};var T=u.css;return C(u,{css:function(a){if(a){var c={};a=x(a);h(u.textProps,function(v){void 0!== +a[v]&&(c[v]=a[v],delete a[v])});y.css(c)}return T.call(u,a)},getBBox:function(){return{width:F.width+2*A,height:F.height+2*A,x:F.x-A,y:F.y-A}},shadow:function(a){a&&(w(),g&&g.shadow(a));return u},destroy:function(){I(u.element,"mouseenter");I(u.element,"mouseleave");y&&(y=y.destroy());g&&(g=g.destroy());D.prototype.destroy.call(u);u=q=w=Q=S=null}})}};a.Renderer=B})(N);(function(a){var D=a.attr,B=a.createElement,G=a.css,H=a.defined,p=a.each,l=a.extend,r=a.isFirefox,w=a.isMS,t=a.isWebKit,k=a.pInt,m= +a.SVGRenderer,e=a.win,g=a.wrap;l(a.SVGElement.prototype,{htmlCss:function(a){var e=this.element;if(e=a&&"SPAN"===e.tagName&&a.width)delete a.width,this.textWidth=e,this.updateTransform();a&&"ellipsis"===a.textOverflow&&(a.whiteSpace="nowrap",a.overflow="hidden");this.styles=l(this.styles,a);G(this.element,a);return this},htmlGetBBox:function(){var a=this.element;"text"===a.nodeName&&(a.style.position="absolute");return{x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var a= +this.renderer,e=this.element,f=this.translateX||0,d=this.translateY||0,b=this.x||0,q=this.y||0,g=this.textAlign||"left",c={left:0,center:.5,right:1}[g],F=this.styles;G(e,{marginLeft:f,marginTop:d});this.shadows&&p(this.shadows,function(a){G(a,{marginLeft:f+1,marginTop:d+1})});this.inverted&&p(e.childNodes,function(c){a.invertChild(c,e)});if("SPAN"===e.tagName){var n=this.rotation,A=k(this.textWidth),x=F&&F.whiteSpace,m=[n,g,e.innerHTML,this.textWidth,this.textAlign].join();m!==this.cTT&&(F=a.fontMetrics(e.style.fontSize).b, +H(n)&&this.setSpanRotation(n,c,F),G(e,{width:"",whiteSpace:x||"nowrap"}),e.offsetWidth>A&&/[ \-]/.test(e.textContent||e.innerText)&&G(e,{width:A+"px",display:"block",whiteSpace:x||"normal"}),this.getSpanCorrection(e.offsetWidth,F,c,n,g));G(e,{left:b+(this.xCorr||0)+"px",top:q+(this.yCorr||0)+"px"});t&&(F=e.offsetHeight);this.cTT=m}}else this.alignOnAdd=!0},setSpanRotation:function(a,g,f){var d={},b=w?"-ms-transform":t?"-webkit-transform":r?"MozTransform":e.opera?"-o-transform":"";d[b]=d.transform= +"rotate("+a+"deg)";d[b+(r?"Origin":"-origin")]=d.transformOrigin=100*g+"% "+f+"px";G(this.element,d)},getSpanCorrection:function(a,e,f){this.xCorr=-a*f;this.yCorr=-e}});l(m.prototype,{html:function(a,e,f){var d=this.createElement("span"),b=d.element,q=d.renderer,h=q.isSVG,c=function(a,c){p(["opacity","visibility"],function(b){g(a,b+"Setter",function(a,b,d,n){a.call(this,b,d,n);c[d]=b})})};d.textSetter=function(a){a!==b.innerHTML&&delete this.bBox;b.innerHTML=this.textStr=a;d.htmlUpdateTransform()}; +h&&c(d,d.element.style);d.xSetter=d.ySetter=d.alignSetter=d.rotationSetter=function(a,c){"align"===c&&(c="textAlign");d[c]=a;d.htmlUpdateTransform()};d.attr({text:a,x:Math.round(e),y:Math.round(f)}).css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize,position:"absolute"});b.style.whiteSpace="nowrap";d.css=d.htmlCss;h&&(d.add=function(a){var n,f=q.box.parentNode,e=[];if(this.parentGroup=a){if(n=a.div,!n){for(;a;)e.push(a),a=a.parentGroup;p(e.reverse(),function(a){var b,d=D(a.element, +"class");d&&(d={className:d});n=a.div=a.div||B("div",d,{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px",display:a.display,opacity:a.opacity,pointerEvents:a.styles&&a.styles.pointerEvents},n||f);b=n.style;l(a,{translateXSetter:function(c,d){b.left=c+"px";a[d]=c;a.doTransform=!0},translateYSetter:function(c,d){b.top=c+"px";a[d]=c;a.doTransform=!0}});c(a,b)})}}else n=f;n.appendChild(b);d.added=!0;d.alignOnAdd&&d.htmlUpdateTransform();return d});return d}})})(N);(function(a){var D, +B,G=a.createElement,H=a.css,p=a.defined,l=a.deg2rad,r=a.discardElement,w=a.doc,t=a.each,k=a.erase,m=a.extend;D=a.extendClass;var e=a.isArray,g=a.isNumber,h=a.isObject,C=a.merge;B=a.noop;var f=a.pick,d=a.pInt,b=a.SVGElement,q=a.SVGRenderer,E=a.win;a.svg||(B={docMode8:w&&8===w.documentMode,init:function(a,b){var c=["\x3c",b,' filled\x3d"f" stroked\x3d"f"'],d=["position: ","absolute",";"],f="div"===b;("shape"===b||f)&&d.push("left:0;top:0;width:1px;height:1px;");d.push("visibility: ",f?"hidden":"visible"); +c.push(' style\x3d"',d.join(""),'"/\x3e');b&&(c=f||"span"===b||"img"===b?c.join(""):a.prepVML(c),this.element=G(c));this.renderer=a},add:function(a){var c=this.renderer,b=this.element,d=c.box,f=a&&a.inverted,d=a?a.element||a:d;a&&(this.parentGroup=a);f&&c.invertChild(b,d);d.appendChild(b);this.added=!0;this.alignOnAdd&&!this.deferUpdateTransform&&this.updateTransform();if(this.onAdd)this.onAdd();this.className&&this.attr("class",this.className);return this},updateTransform:b.prototype.htmlUpdateTransform, +setSpanRotation:function(){var a=this.rotation,b=Math.cos(a*l),d=Math.sin(a*l);H(this.element,{filter:a?["progid:DXImageTransform.Microsoft.Matrix(M11\x3d",b,", M12\x3d",-d,", M21\x3d",d,", M22\x3d",b,", sizingMethod\x3d'auto expand')"].join(""):"none"})},getSpanCorrection:function(a,b,d,e,q){var c=e?Math.cos(e*l):1,n=e?Math.sin(e*l):0,u=f(this.elemHeight,this.element.offsetHeight),g;this.xCorr=0>c&&-a;this.yCorr=0>n&&-u;g=0>c*n;this.xCorr+=n*b*(g?1-d:d);this.yCorr-=c*b*(e?g?d:1-d:1);q&&"left"!== +q&&(this.xCorr-=a*d*(0>c?-1:1),e&&(this.yCorr-=u*d*(0>n?-1:1)),H(this.element,{textAlign:q}))},pathToVML:function(a){for(var c=a.length,b=[];c--;)g(a[c])?b[c]=Math.round(10*a[c])-5:"Z"===a[c]?b[c]="x":(b[c]=a[c],!a.isArc||"wa"!==a[c]&&"at"!==a[c]||(b[c+5]===b[c+7]&&(b[c+7]+=a[c+7]>a[c+5]?1:-1),b[c+6]===b[c+8]&&(b[c+8]+=a[c+8]>a[c+6]?1:-1)));return b.join(" ")||"x"},clip:function(a){var c=this,b;a?(b=a.members,k(b,c),b.push(c),c.destroyClip=function(){k(b,c)},a=a.getCSS(c)):(c.destroyClip&&c.destroyClip(), +a={clip:c.docMode8?"inherit":"rect(auto)"});return c.css(a)},css:b.prototype.htmlCss,safeRemoveChild:function(a){a.parentNode&&r(a)},destroy:function(){this.destroyClip&&this.destroyClip();return b.prototype.destroy.apply(this)},on:function(a,b){this.element["on"+a]=function(){var a=E.event;a.target=a.srcElement;b(a)};return this},cutOffPath:function(a,b){var c;a=a.split(/[ ,]/);c=a.length;if(9===c||11===c)a[c-4]=a[c-2]=d(a[c-2])-10*b;return a.join(" ")},shadow:function(a,b,e){var c=[],n,q=this.element, +g=this.renderer,u,I=q.style,F,v=q.path,K,h,m,z;v&&"string"!==typeof v.value&&(v="x");h=v;if(a){m=f(a.width,3);z=(a.opacity||.15)/m;for(n=1;3>=n;n++)K=2*m+1-2*n,e&&(h=this.cutOffPath(v.value,K+.5)),F=['\x3cshape isShadow\x3d"true" strokeweight\x3d"',K,'" filled\x3d"false" path\x3d"',h,'" coordsize\x3d"10 10" style\x3d"',q.style.cssText,'" /\x3e'],u=G(g.prepVML(F),null,{left:d(I.left)+f(a.offsetX,1),top:d(I.top)+f(a.offsetY,1)}),e&&(u.cutOff=K+1),F=['\x3cstroke color\x3d"',a.color||"#000000",'" opacity\x3d"', +z*n,'"/\x3e'],G(g.prepVML(F),null,null,u),b?b.element.appendChild(u):q.parentNode.insertBefore(u,q),c.push(u);this.shadows=c}return this},updateShadows:B,setAttr:function(a,b){this.docMode8?this.element[a]=b:this.element.setAttribute(a,b)},classSetter:function(a){(this.added?this.element:this).className=a},dashstyleSetter:function(a,b,d){(d.getElementsByTagName("stroke")[0]||G(this.renderer.prepVML(["\x3cstroke/\x3e"]),null,null,d))[b]=a||"solid";this[b]=a},dSetter:function(a,b,d){var c=this.shadows; +a=a||[];this.d=a.join&&a.join(" ");d.path=a=this.pathToVML(a);if(c)for(d=c.length;d--;)c[d].path=c[d].cutOff?this.cutOffPath(a,c[d].cutOff):a;this.setAttr(b,a)},fillSetter:function(a,b,d){var c=d.nodeName;"SPAN"===c?d.style.color=a:"IMG"!==c&&(d.filled="none"!==a,this.setAttr("fillcolor",this.renderer.color(a,d,b,this)))},"fill-opacitySetter":function(a,b,d){G(this.renderer.prepVML(["\x3c",b.split("-")[0],' opacity\x3d"',a,'"/\x3e']),null,null,d)},opacitySetter:B,rotationSetter:function(a,b,d){d= +d.style;this[b]=d[b]=a;d.left=-Math.round(Math.sin(a*l)+1)+"px";d.top=Math.round(Math.cos(a*l))+"px"},strokeSetter:function(a,b,d){this.setAttr("strokecolor",this.renderer.color(a,d,b,this))},"stroke-widthSetter":function(a,b,d){d.stroked=!!a;this[b]=a;g(a)&&(a+="px");this.setAttr("strokeweight",a)},titleSetter:function(a,b){this.setAttr(b,a)},visibilitySetter:function(a,b,d){"inherit"===a&&(a="visible");this.shadows&&t(this.shadows,function(c){c.style[b]=a});"DIV"===d.nodeName&&(a="hidden"===a?"-999em": +0,this.docMode8||(d.style[b]=a?"visible":"hidden"),b="top");d.style[b]=a},xSetter:function(a,b,d){this[b]=a;"x"===b?b="left":"y"===b&&(b="top");this.updateClipping?(this[b]=a,this.updateClipping()):d.style[b]=a},zIndexSetter:function(a,b,d){d.style[b]=a}},B["stroke-opacitySetter"]=B["fill-opacitySetter"],a.VMLElement=B=D(b,B),B.prototype.ySetter=B.prototype.widthSetter=B.prototype.heightSetter=B.prototype.xSetter,B={Element:B,isIE8:-1l[0]&&c.push([1,l[1]]);t(c,function(c,b){q.test(c[1])?(n=a.color(c[1]),v=n.get("rgb"),K=n.get("a")):(v=c[1],K=1);r.push(100*c[0]+"% "+v);b?(m=K,k=v):(z=K,E=v)});if("fill"===d)if("gradient"===g)d=A.x1||A[0]||0,c=A.y1||A[1]||0,F=A.x2||A[2]||0,A=A.y2||A[3]||0,C='angle\x3d"'+(90-180*Math.atan((A-c)/(F-d))/Math.PI)+'"',p();else{var h=A.r,w=2*h,B=2*h,D=A.cx,H=A.cy,V=b.radialReference,U,h=function(){V&&(U=f.getBBox(),D+=(V[0]- +U.x)/U.width-.5,H+=(V[1]-U.y)/U.height-.5,w*=V[2]/U.width,B*=V[2]/U.height);C='src\x3d"'+a.getOptions().global.VMLRadialGradientURL+'" size\x3d"'+w+","+B+'" origin\x3d"0.5,0.5" position\x3d"'+D+","+H+'" color2\x3d"'+E+'" ';p()};f.added?h():f.onAdd=h;h=k}else h=v}else q.test(c)&&"IMG"!==b.tagName?(n=a.color(c),f[d+"-opacitySetter"](n.get("a"),d,b),h=n.get("rgb")):(h=b.getElementsByTagName(d),h.length&&(h[0].opacity=1,h[0].type="solid"),h=c);return h},prepVML:function(a){var c=this.isIE8;a=a.join(""); +c?(a=a.replace("/\x3e",' xmlns\x3d"urn:schemas-microsoft-com:vml" /\x3e'),a=-1===a.indexOf('style\x3d"')?a.replace("/\x3e",' style\x3d"display:inline-block;behavior:url(#default#VML);" /\x3e'):a.replace('style\x3d"','style\x3d"display:inline-block;behavior:url(#default#VML);')):a=a.replace("\x3c","\x3chcv:");return a},text:q.prototype.html,path:function(a){var c={coordsize:"10 10"};e(a)?c.d=a:h(a)&&m(c,a);return this.createElement("shape").attr(c)},circle:function(a,b,d){var c=this.symbol("circle"); +h(a)&&(d=a.r,b=a.y,a=a.x);c.isCircle=!0;c.r=d;return c.attr({x:a,y:b})},g:function(a){var c;a&&(c={className:"highcharts-"+a,"class":"highcharts-"+a});return this.createElement("div").attr(c)},image:function(a,b,d,f,e){var c=this.createElement("img").attr({src:a});1f&&m-d*bg&&(F=Math.round((e-m)/Math.cos(f*w)));else if(e=m+(1-d)*b,m-d*bg&&(E=g-a.x+E*d,c=-1),E=Math.min(q, +E),EE||k.autoRotation&&(C.styles||{}).width)F=E;F&&(n.width=F,(k.options.labels.style||{}).textOverflow||(n.textOverflow="ellipsis"),C.css(n))},getPosition:function(a,k,m,e){var g=this.axis,h=g.chart,l=e&&h.oldChartHeight||h.chartHeight;return{x:a?g.translate(k+m,null,null,e)+g.transB:g.left+g.offset+(g.opposite?(e&&h.oldChartWidth||h.chartWidth)-g.right-g.left:0),y:a?l-g.bottom+g.offset-(g.opposite?g.height:0):l-g.translate(k+m,null, +null,e)-g.transB}},getLabelPosition:function(a,k,m,e,g,h,l,f){var d=this.axis,b=d.transA,q=d.reversed,E=d.staggerLines,c=d.tickRotCorr||{x:0,y:0},F=g.y;B(F)||(F=0===d.side?m.rotation?-8:-m.getBBox().height:2===d.side?c.y+8:Math.cos(m.rotation*w)*(c.y-m.getBBox(!1,0).height/2));a=a+g.x+c.x-(h&&e?h*b*(q?-1:1):0);k=k+F-(h&&!e?h*b*(q?1:-1):0);E&&(m=l/(f||1)%E,d.opposite&&(m=E-m-1),k+=d.labelOffset/E*m);return{x:a,y:Math.round(k)}},getMarkPath:function(a,k,m,e,g,h){return h.crispLine(["M",a,k,"L",a+(g? +0:-m),k+(g?m:0)],e)},render:function(a,k,m){var e=this.axis,g=e.options,h=e.chart.renderer,C=e.horiz,f=this.type,d=this.label,b=this.pos,q=g.labels,E=this.gridLine,c=f?f+"Tick":"tick",F=e.tickSize(c),n=this.mark,A=!n,x=q.step,p={},y=!0,u=e.tickmarkOffset,I=this.getPosition(C,b,u,k),M=I.x,I=I.y,v=C&&M===e.pos+e.len||!C&&I===e.pos?-1:1,K=f?f+"Grid":"grid",O=g[K+"LineWidth"],R=g[K+"LineColor"],z=g[K+"LineDashStyle"],K=l(g[c+"Width"],!f&&e.isXAxis?1:0),c=g[c+"Color"];m=l(m,1);this.isActive=!0;E||(p.stroke= +R,p["stroke-width"]=O,z&&(p.dashstyle=z),f||(p.zIndex=1),k&&(p.opacity=0),this.gridLine=E=h.path().attr(p).addClass("highcharts-"+(f?f+"-":"")+"grid-line").add(e.gridGroup));if(!k&&E&&(b=e.getPlotLinePath(b+u,E.strokeWidth()*v,k,!0)))E[this.isNew?"attr":"animate"]({d:b,opacity:m});F&&(e.opposite&&(F[0]=-F[0]),A&&(this.mark=n=h.path().addClass("highcharts-"+(f?f+"-":"")+"tick").add(e.axisGroup),n.attr({stroke:c,"stroke-width":K})),n[A?"attr":"animate"]({d:this.getMarkPath(M,I,F[0],n.strokeWidth()* +v,C,h),opacity:m}));d&&H(M)&&(d.xy=I=this.getLabelPosition(M,I,d,C,q,u,a,x),this.isFirst&&!this.isLast&&!l(g.showFirstLabel,1)||this.isLast&&!this.isFirst&&!l(g.showLastLabel,1)?y=!1:!C||e.isRadial||q.step||q.rotation||k||0===m||this.handleOverflow(I),x&&a%x&&(y=!1),y&&H(I.y)?(I.opacity=m,d[this.isNew?"attr":"animate"](I)):(r(d),d.attr("y",-9999)),this.isNew=!1)},destroy:function(){G(this,this.axis)}}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.AxisPlotLineOrBandExtension, +l=a.color,r=a.correctFloat,w=a.defaultOptions,t=a.defined,k=a.deg2rad,m=a.destroyObjectProperties,e=a.each,g=a.error,h=a.extend,C=a.fireEvent,f=a.format,d=a.getMagnitude,b=a.grep,q=a.inArray,E=a.isArray,c=a.isNumber,F=a.isString,n=a.merge,A=a.normalizeTickInterval,x=a.pick,J=a.PlotLineOrBand,y=a.removeEvent,u=a.splat,I=a.syncTimeout,M=a.Tick;a.Axis=function(){this.init.apply(this,arguments)};a.Axis.prototype={defaultOptions:{dateTimeLabelFormats:{millisecond:"%H:%M:%S.%L",second:"%H:%M:%S",minute:"%H:%M", +hour:"%H:%M",day:"%e. %b",week:"%e. %b",month:"%b '%y",year:"%Y"},endOnTick:!1,labels:{enabled:!0,style:{color:"#666666",cursor:"default",fontSize:"11px"},x:0},minPadding:.01,maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:!1,tickLength:10,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb", +lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},maxPadding:.05,minPadding:.05,startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{enabled:!1,formatter:function(){return a.numberFormat(this.total,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"#000000",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15}, +title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},init:function(a,c){var b=c.isX;this.chart=a;this.horiz=a.inverted?!b:b;this.isXAxis=b;this.coll=this.coll||(b?"xAxis":"yAxis");this.opposite=c.opposite;this.side=c.side||(this.horiz?this.opposite?0:2:this.opposite?1:3);this.setOptions(c);var d=this.options,v=d.type;this.labelFormatter=d.labels.formatter||this.defaultLabelFormatter; +this.userOptions=c;this.minPixelPadding=0;this.reversed=d.reversed;this.visible=!1!==d.visible;this.zoomEnabled=!1!==d.zoomEnabled;this.hasNames="category"===v||!0===d.categories;this.categories=d.categories||this.hasNames;this.names=this.names||[];this.isLog="logarithmic"===v;this.isDatetimeAxis="datetime"===v;this.isLinked=t(d.linkedTo);this.ticks={};this.labelEdge=[];this.minorTicks={};this.plotLinesAndBands=[];this.alternateBands={};this.len=0;this.minRange=this.userMinRange=d.minRange||d.maxZoom; +this.range=d.range;this.offset=d.offset||0;this.stacks={};this.oldStacks={};this.stacksTouched=0;this.min=this.max=null;this.crosshair=x(d.crosshair,u(a.options.tooltip.crosshairs)[b?0:1],!1);var f;c=this.options.events;-1===q(this,a.axes)&&(b?a.axes.splice(a.xAxis.length,0,this):a.axes.push(this),a[this.coll].push(this));this.series=this.series||[];a.inverted&&b&&void 0===this.reversed&&(this.reversed=!0);this.removePlotLine=this.removePlotBand=this.removePlotBandOrLine;for(f in c)D(this,f,c[f]); +this.isLog&&(this.val2lin=this.log2lin,this.lin2val=this.lin2log)},setOptions:function(a){this.options=n(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],n(w[this.coll],a))},defaultLabelFormatter:function(){var c=this.axis,b=this.value,d=c.categories,e=this.dateTimeLabelFormat,q=w.lang,u=q.numericSymbols,q=q.numericSymbolMagnitude||1E3,n=u&&u.length,g,y=c.options.labels.format, +c=c.isLog?b:c.tickInterval;if(y)g=f(y,this);else if(d)g=b;else if(e)g=a.dateFormat(e,b);else if(n&&1E3<=c)for(;n--&&void 0===g;)d=Math.pow(q,n+1),c>=d&&0===10*b%d&&null!==u[n]&&0!==b&&(g=a.numberFormat(b/d,-1)+u[n]);void 0===g&&(g=1E4<=Math.abs(b)?a.numberFormat(b,-1):a.numberFormat(b,-1,void 0,""));return g},getSeriesExtremes:function(){var a=this,d=a.chart;a.hasVisibleSeries=!1;a.dataMin=a.dataMax=a.threshold=null;a.softThreshold=!a.isXAxis;a.buildStacks&&a.buildStacks();e(a.series,function(v){if(v.visible|| +!d.options.chart.ignoreHiddenSeries){var f=v.options,e=f.threshold,q;a.hasVisibleSeries=!0;a.isLog&&0>=e&&(e=null);if(a.isXAxis)f=v.xData,f.length&&(v=H(f),c(v)||v instanceof Date||(f=b(f,function(a){return c(a)}),v=H(f)),a.dataMin=Math.min(x(a.dataMin,f[0]),v),a.dataMax=Math.max(x(a.dataMax,f[0]),G(f)));else if(v.getExtremes(),q=v.dataMax,v=v.dataMin,t(v)&&t(q)&&(a.dataMin=Math.min(x(a.dataMin,v),v),a.dataMax=Math.max(x(a.dataMax,q),q)),t(e)&&(a.threshold=e),!f.softThreshold||a.isLog)a.softThreshold= +!1}})},translate:function(a,b,d,f,e,q){var v=this.linkedParent||this,u=1,n=0,g=f?v.oldTransA:v.transA;f=f?v.oldMin:v.min;var K=v.minPixelPadding;e=(v.isOrdinal||v.isBroken||v.isLog&&e)&&v.lin2val;g||(g=v.transA);d&&(u*=-1,n=v.len);v.reversed&&(u*=-1,n-=u*(v.sector||v.len));b?(a=(a*u+n-K)/g+f,e&&(a=v.lin2val(a))):(e&&(a=v.val2lin(a)),a=u*(a-f)*g+n+u*K+(c(q)?g*q:0));return a},toPixels:function(a,c){return this.translate(a,!1,!this.horiz,null,!0)+(c?0:this.pos)},toValue:function(a,c){return this.translate(a- +(c?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a,b,d,f,e){var v=this.chart,q=this.left,u=this.top,n,g,K=d&&v.oldChartHeight||v.chartHeight,y=d&&v.oldChartWidth||v.chartWidth,z;n=this.transB;var h=function(a,c,b){if(ab)f?a=Math.min(Math.max(c,a),b):z=!0;return a};e=x(e,this.translate(a,null,null,d));a=d=Math.round(e+n);n=g=Math.round(K-e-n);c(e)?this.horiz?(n=u,g=K-this.bottom,a=d=h(a,q,q+this.width)):(a=q,d=y-this.right,n=g=h(n,u,u+this.height)):z=!0;return z&&!f?null:v.renderer.crispLine(["M", +a,n,"L",d,g],b||1)},getLinearTickPositions:function(a,b,d){var v,f=r(Math.floor(b/a)*a),e=r(Math.ceil(d/a)*a),q=[];if(b===d&&c(b))return[b];for(b=f;b<=e;){q.push(b);b=r(b+a);if(b===v)break;v=b}return q},getMinorTickPositions:function(){var a=this.options,c=this.tickPositions,b=this.minorTickInterval,d=[],f,e=this.pointRangePadding||0;f=this.min-e;var e=this.max+e,q=e-f;if(q&&q/b=this.minRange,q,u,n,g,y,h;this.isXAxis&&void 0===this.minRange&&!this.isLog&&(t(a.min)||t(a.max)?this.minRange=null:(e(this.series,function(a){g=a.xData;for(u=y=a.xIncrement? +1:g.length-1;0=E?(p=E,m=0):b.dataMax<=E&&(J=E,I=0)),b.min=x(w,p,b.dataMin),b.max=x(B,J,b.dataMax));q&&(!a&&0>=Math.min(b.min, +x(b.dataMin,b.min))&&g(10,1),b.min=r(u(b.min),15),b.max=r(u(b.max),15));b.range&&t(b.max)&&(b.userMin=b.min=w=Math.max(b.min,b.minFromRange()),b.userMax=B=b.max,b.range=null);C(b,"foundExtremes");b.beforePadding&&b.beforePadding();b.adjustForMinRange();!(l||b.axisPointRange||b.usePercentage||h)&&t(b.min)&&t(b.max)&&(u=b.max-b.min)&&(!t(w)&&m&&(b.min-=u*m),!t(B)&&I&&(b.max+=u*I));c(f.floor)?b.min=Math.max(b.min,f.floor):c(f.softMin)&&(b.min=Math.min(b.min,f.softMin));c(f.ceiling)?b.max=Math.min(b.max, +f.ceiling):c(f.softMax)&&(b.max=Math.max(b.max,f.softMax));M&&t(b.dataMin)&&(E=E||0,!t(w)&&b.min=E?b.min=E:!t(B)&&b.max>E&&b.dataMax<=E&&(b.max=E));b.tickInterval=b.min===b.max||void 0===b.min||void 0===b.max?1:h&&!k&&F===b.linkedParent.options.tickPixelInterval?k=b.linkedParent.tickInterval:x(k,this.tickAmount?(b.max-b.min)/Math.max(this.tickAmount-1,1):void 0,l?1:(b.max-b.min)*F/Math.max(b.len,F));y&&!a&&e(b.series,function(a){a.processData(b.min!==b.oldMin||b.max!==b.oldMax)});b.setAxisTranslation(!0); +b.beforeSetTickPositions&&b.beforeSetTickPositions();b.postProcessTickInterval&&(b.tickInterval=b.postProcessTickInterval(b.tickInterval));b.pointRange&&!k&&(b.tickInterval=Math.max(b.pointRange,b.tickInterval));a=x(f.minTickInterval,b.isDatetimeAxis&&b.closestPointRange);!k&&b.tickIntervalb.tickInterval&&1E3b.max)),!!this.tickAmount));this.tickAmount||(b.tickInterval= +b.unsquish());this.setTickPositions()},setTickPositions:function(){var a=this.options,b,c=a.tickPositions,d=a.tickPositioner,f=a.startOnTick,e=a.endOnTick,q;this.tickmarkOffset=this.categories&&"between"===a.tickmarkPlacement&&1===this.tickInterval?.5:0;this.minorTickInterval="auto"===a.minorTickInterval&&this.tickInterval?this.tickInterval/5:a.minorTickInterval;this.tickPositions=b=c&&c.slice();!b&&(b=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,a.units), +this.min,this.max,a.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),b.length>this.len&&(b=[b[0],b.pop()]),this.tickPositions=b,d&&(d=d.apply(this,[this.min,this.max])))&&(this.tickPositions=b=d);this.isLinked||(this.trimTicks(b,f,e),this.min===this.max&&t(this.min)&&!this.tickAmount&&(q=!0,this.min-=.5,this.max+=.5),this.single=q,c||d||this.adjustTickAmount())}, +trimTicks:function(a,b,c){var d=a[0],f=a[a.length-1],v=this.minPointOffset||0;if(b)this.min=d;else for(;this.min-v>a[0];)a.shift();if(c)this.max=f;else for(;this.max+vb&&(this.finalTickAmt=b,b=5);this.tickAmount=b},adjustTickAmount:function(){var a=this.tickInterval,b=this.tickPositions,c=this.tickAmount,d=this.finalTickAmt,f=b&&b.length;if(fc&&(this.tickInterval*= +2,this.setTickPositions());if(t(d)){for(a=c=b.length;a--;)(3===d&&1===a%2||2>=d&&0=f&&(b=f)),this.displayBtn=void 0!==a||void 0!==b,this.setExtremes(a,b,!1,void 0,{trigger:"zoom"});return!0},setAxisSize:function(){var a=this.chart,b=this.options,c=b.offsetLeft||0,d=this.horiz,f=x(b.width,a.plotWidth-c+(b.offsetRight||0)),e=x(b.height,a.plotHeight),q=x(b.top,a.plotTop),b=x(b.left,a.plotLeft+c),c=/%$/;c.test(e)&&(e=Math.round(parseFloat(e)/ +100*a.plotHeight));c.test(q)&&(q=Math.round(parseFloat(q)/100*a.plotHeight+a.plotTop));this.left=b;this.top=q;this.width=f;this.height=e;this.bottom=a.chartHeight-e-q;this.right=a.chartWidth-f-b;this.len=Math.max(d?f:e,0);this.pos=d?b:q},getExtremes:function(){var a=this.isLog,b=this.lin2log;return{min:a?r(b(this.min)):this.min,max:a?r(b(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var b=this.isLog,c=this.lin2log, +d=b?c(this.min):this.min,b=b?c(this.max):this.max;null===a?a=d:d>a?a=d:ba?"right":195a?"left":"center"},tickSize:function(a){var b=this.options,c=b[a+"Length"],d=x(b[a+"Width"],"tick"===a&&this.isXAxis?1:0);if(d&&c)return"inside"===b[a+"Position"]&&(c=-c),[c,d]},labelMetrics:function(){return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize, +this.ticks[0]&&this.ticks[0].label)},unsquish:function(){var a=this.options.labels,b=this.horiz,c=this.tickInterval,d=c,f=this.len/(((this.categories?1:0)+this.max-this.min)/c),q,u=a.rotation,n=this.labelMetrics(),g,y=Number.MAX_VALUE,h,I=function(a){a/=f||1;a=1=a)g=I(Math.abs(n.h/Math.sin(k*a))),b=g+Math.abs(a/360),b(c.step||0)&&!c.rotation&&(this.staggerLines||1)*a.plotWidth/d||!b&&(f&&f-a.spacing[3]||.33*a.chartWidth)},renderUnsquish:function(){var a=this.chart,b=a.renderer,c=this.tickPositions,d=this.ticks,f=this.options.labels,q=this.horiz,u=this.getSlotWidth(),g=Math.max(1, +Math.round(u-2*(f.padding||5))),y={},h=this.labelMetrics(),I=f.style&&f.style.textOverflow,A,x=0,m,k;F(f.rotation)||(y.rotation=f.rotation||0);e(c,function(a){(a=d[a])&&a.labelLength>x&&(x=a.labelLength)});this.maxLabelLength=x;if(this.autoRotation)x>g&&x>h.h?y.rotation=this.labelRotation:this.labelRotation=0;else if(u&&(A={width:g+"px"},!I))for(A.textOverflow="clip",m=c.length;!q&&m--;)if(k=c[m],g=d[k].label)g.styles&&"ellipsis"===g.styles.textOverflow?g.css({textOverflow:"clip"}):d[k].labelLength> +u&&g.css({width:u+"px"}),g.getBBox().height>this.len/c.length-(h.h-h.f)&&(g.specCss={textOverflow:"ellipsis"});y.rotation&&(A={width:(x>.5*a.chartHeight?.33*a.chartHeight:a.chartHeight)+"px"},I||(A.textOverflow="ellipsis"));if(this.labelAlign=f.align||this.autoLabelAlign(this.labelRotation))y.align=this.labelAlign;e(c,function(a){var b=(a=d[a])&&a.label;b&&(b.attr(y),A&&b.css(n(A,b.specCss)),delete b.specCss,a.rotation=y.rotation)});this.tickRotCorr=b.rotCorr(h.b,this.labelRotation||0,0!==this.side)}, +hasData:function(){return this.hasVisibleSeries||t(this.min)&&t(this.max)&&!!this.tickPositions},getOffset:function(){var a=this,b=a.chart,c=b.renderer,d=a.options,f=a.tickPositions,q=a.ticks,u=a.horiz,n=a.side,g=b.inverted?[1,0,3,2][n]:n,y,h,I=0,A,m=0,k=d.title,F=d.labels,E=0,l=a.opposite,C=b.axisOffset,b=b.clipOffset,p=[-1,1,1,-1][n],r,J=d.className,w=a.axisParent,B=this.tickSize("tick");y=a.hasData();a.showAxis=h=y||x(d.showEmpty,!0);a.staggerLines=a.horiz&&F.staggerLines;a.axisGroup||(a.gridGroup= +c.g("grid").attr({zIndex:d.gridZIndex||1}).addClass("highcharts-"+this.coll.toLowerCase()+"-grid "+(J||"")).add(w),a.axisGroup=c.g("axis").attr({zIndex:d.zIndex||2}).addClass("highcharts-"+this.coll.toLowerCase()+" "+(J||"")).add(w),a.labelGroup=c.g("axis-labels").attr({zIndex:F.zIndex||7}).addClass("highcharts-"+a.coll.toLowerCase()+"-labels "+(J||"")).add(w));if(y||a.isLinked)e(f,function(b){q[b]?q[b].addLabel():q[b]=new M(a,b)}),a.renderUnsquish(),!1===F.reserveSpace||0!==n&&2!==n&&{1:"left",3:"right"}[n]!== +a.labelAlign&&"center"!==a.labelAlign||e(f,function(a){E=Math.max(q[a].getLabelSize(),E)}),a.staggerLines&&(E*=a.staggerLines,a.labelOffset=E*(a.opposite?-1:1));else for(r in q)q[r].destroy(),delete q[r];k&&k.text&&!1!==k.enabled&&(a.axisTitle||((r=k.textAlign)||(r=(u?{low:"left",middle:"center",high:"right"}:{low:l?"right":"left",middle:"center",high:l?"left":"right"})[k.align]),a.axisTitle=c.text(k.text,0,0,k.useHTML).attr({zIndex:7,rotation:k.rotation||0,align:r}).addClass("highcharts-axis-title").css(k.style).add(a.axisGroup), +a.axisTitle.isNew=!0),h&&(I=a.axisTitle.getBBox()[u?"height":"width"],A=k.offset,m=t(A)?0:x(k.margin,u?5:10)),a.axisTitle[h?"show":"hide"](!0));a.renderLine();a.offset=p*x(d.offset,C[n]);a.tickRotCorr=a.tickRotCorr||{x:0,y:0};c=0===n?-a.labelMetrics().h:2===n?a.tickRotCorr.y:0;m=Math.abs(E)+m;E&&(m=m-c+p*(u?x(F.y,a.tickRotCorr.y+8*p):F.x));a.axisTitleMargin=x(A,m);C[n]=Math.max(C[n],a.axisTitleMargin+I+p*a.offset,m,y&&f.length&&B?B[0]:0);d=d.offset?0:2*Math.floor(a.axisLine.strokeWidth()/2);b[g]= +Math.max(b[g],d)},getLinePath:function(a){var b=this.chart,c=this.opposite,d=this.offset,f=this.horiz,e=this.left+(c?this.width:0)+d,d=b.chartHeight-this.bottom-(c?this.height:0)+d;c&&(a*=-1);return b.renderer.crispLine(["M",f?this.left:e,f?d:this.top,"L",f?b.chartWidth-this.right:e,f?d:b.chartHeight-this.bottom],a)},renderLine:function(){this.axisLine||(this.axisLine=this.chart.renderer.path().addClass("highcharts-axis-line").add(this.axisGroup),this.axisLine.attr({stroke:this.options.lineColor, +"stroke-width":this.options.lineWidth,zIndex:7}))},getTitlePosition:function(){var a=this.horiz,b=this.left,c=this.top,d=this.len,f=this.options.title,e=a?b:c,q=this.opposite,u=this.offset,n=f.x||0,g=f.y||0,y=this.chart.renderer.fontMetrics(f.style&&f.style.fontSize,this.axisTitle).f,d={low:e+(a?0:d),middle:e+d/2,high:e+(a?d:0)}[f.align],b=(a?c+this.height:b)+(a?1:-1)*(q?-1:1)*this.axisTitleMargin+(2===this.side?y:0);return{x:a?d+n:b+(q?this.width:0)+u+n,y:a?b+g-(q?this.height:0)+u:d+g}},render:function(){var a= +this,b=a.chart,d=b.renderer,f=a.options,q=a.isLog,u=a.lin2log,n=a.isLinked,g=a.tickPositions,y=a.axisTitle,h=a.ticks,A=a.minorTicks,x=a.alternateBands,m=f.stackLabels,k=f.alternateGridColor,F=a.tickmarkOffset,E=a.axisLine,l=b.hasRendered&&c(a.oldMin),C=a.showAxis,p=B(d.globalAnimation),r,t;a.labelEdge.length=0;a.overlap=!1;e([h,A,x],function(a){for(var b in a)a[b].isActive=!1});if(a.hasData()||n)a.minorTickInterval&&!a.categories&&e(a.getMinorTickPositions(),function(b){A[b]||(A[b]=new M(a,b,"minor")); +l&&A[b].isNew&&A[b].render(null,!0);A[b].render(null,!1,1)}),g.length&&(e(g,function(b,c){if(!n||b>=a.min&&b<=a.max)h[b]||(h[b]=new M(a,b)),l&&h[b].isNew&&h[b].render(c,!0,.1),h[b].render(c)}),F&&(0===a.min||a.single)&&(h[-1]||(h[-1]=new M(a,-1,null,!0)),h[-1].render(-1))),k&&e(g,function(c,d){t=void 0!==g[d+1]?g[d+1]+F:a.max-F;0===d%2&&c=e.second?0:A*Math.floor(c.getMilliseconds()/A));if(n>=e.second)c[B.hcSetSeconds](n>=e.minute?0:A*Math.floor(c.getSeconds()/ +A));if(n>=e.minute)c[B.hcSetMinutes](n>=e.hour?0:A*Math.floor(c[B.hcGetMinutes]()/A));if(n>=e.hour)c[B.hcSetHours](n>=e.day?0:A*Math.floor(c[B.hcGetHours]()/A));if(n>=e.day)c[B.hcSetDate](n>=e.month?1:A*Math.floor(c[B.hcGetDate]()/A));n>=e.month&&(c[B.hcSetMonth](n>=e.year?0:A*Math.floor(c[B.hcGetMonth]()/A)),g=c[B.hcGetFullYear]());if(n>=e.year)c[B.hcSetFullYear](g-g%A);if(n===e.week)c[B.hcSetDate](c[B.hcGetDate]()-c[B.hcGetDay]()+m(f,1));g=c[B.hcGetFullYear]();f=c[B.hcGetMonth]();var C=c[B.hcGetDate](), +y=c[B.hcGetHours]();if(B.hcTimezoneOffset||B.hcGetTimezoneOffset)x=(!q||!!B.hcGetTimezoneOffset)&&(k-h>4*e.month||t(h)!==t(k)),c=c.getTime(),c=new B(c+t(c));q=c.getTime();for(h=1;qr&&(!t||b<=w)&&void 0!==b&&h.push(b),b>w&&(q=!0),b=d;else r=e(r),w= +e(w),a=k[t?"minorTickInterval":"tickInterval"],a=p("auto"===a?null:a,this._minorAutoInterval,k.tickPixelInterval/(t?5:1)*(w-r)/((t?m/this.tickPositions.length:m)||1)),a=H(a,null,B(a)),h=G(this.getLinearTickPositions(a,r,w),g),t||(this._minorAutoInterval=a/5);t||(this.tickInterval=a);return h};D.prototype.log2lin=function(a){return Math.log(a)/Math.LN10};D.prototype.lin2log=function(a){return Math.pow(10,a)}})(N);(function(a){var D=a.dateFormat,B=a.each,G=a.extend,H=a.format,p=a.isNumber,l=a.map,r= +a.merge,w=a.pick,t=a.splat,k=a.stop,m=a.syncTimeout,e=a.timeUnits;a.Tooltip=function(){this.init.apply(this,arguments)};a.Tooltip.prototype={init:function(a,e){this.chart=a;this.options=e;this.crosshairs=[];this.now={x:0,y:0};this.isHidden=!0;this.split=e.split&&!a.inverted;this.shared=e.shared||this.split},cleanSplit:function(a){B(this.chart.series,function(e){var g=e&&e.tt;g&&(!g.isActive||a?e.tt=g.destroy():g.isActive=!1)})},getLabel:function(){var a=this.chart.renderer,e=this.options;this.label|| +(this.split?this.label=a.g("tooltip"):(this.label=a.label("",0,0,e.shape||"callout",null,null,e.useHTML,null,"tooltip").attr({padding:e.padding,r:e.borderRadius}),this.label.attr({fill:e.backgroundColor,"stroke-width":e.borderWidth}).css(e.style).shadow(e.shadow)),this.label.attr({zIndex:8}).add());return this.label},update:function(a){this.destroy();this.init(this.chart,r(!0,this.options,a))},destroy:function(){this.label&&(this.label=this.label.destroy());this.split&&this.tt&&(this.cleanSplit(this.chart, +!0),this.tt=this.tt.destroy());clearTimeout(this.hideTimer);clearTimeout(this.tooltipTimeout)},move:function(a,e,m,f){var d=this,b=d.now,q=!1!==d.options.animation&&!d.isHidden&&(1h-q?h:h-q);else if(v)b[a]=Math.max(g,e+q+f>c?e:e+q);else return!1},x=function(a,c,f,e){var q;ec-d?q=!1:b[a]=ec-f/2?c-f-2:e-f/2;return q},k=function(a){var b=c;c=h;h=b;g=a},y=function(){!1!==A.apply(0,c)?!1!==x.apply(0,h)||g||(k(!0),y()):g?b.x=b.y=0:(k(!0),y())};(f.inverted||1y&&(q=!1);a=(e.series&&e.series.yAxis&&e.series.yAxis.pos)+(e.plotY||0);a-=d.plotTop;f.push({target:e.isHeader?d.plotHeight+c:a,rank:e.isHeader?1:0,size:n.tt.getBBox().height+1,point:e,x:y,tt:A})});this.cleanSplit(); +a.distribute(f,d.plotHeight+c);B(f,function(a){var b=a.point;a.tt.attr({visibility:void 0===a.pos?"hidden":"inherit",x:q||b.isHeader?a.x:b.plotX+d.plotLeft+w(m.distance,16),y:a.pos+d.plotTop,anchorX:b.plotX+d.plotLeft,anchorY:b.isHeader?a.pos+d.plotTop-15:b.plotY+d.plotTop})})},updatePosition:function(a){var e=this.chart,g=this.getLabel(),g=(this.options.positioner||this.getPosition).call(this,g.width,g.height,a);this.move(Math.round(g.x),Math.round(g.y||0),a.plotX+e.plotLeft,a.plotY+e.plotTop)}, +getXDateFormat:function(a,h,m){var f;h=h.dateTimeLabelFormats;var d=m&&m.closestPointRange,b,q={millisecond:15,second:12,minute:9,hour:6,day:3},g,c="millisecond";if(d){g=D("%m-%d %H:%M:%S.%L",a.x);for(b in e){if(d===e.week&&+D("%w",a.x)===m.options.startOfWeek&&"00:00:00.000"===g.substr(6)){b="week";break}if(e[b]>d){b=c;break}if(q[b]&&g.substr(q[b])!=="01-01 00:00:00.000".substr(q[b]))break;"week"!==b&&(c=b)}b&&(f=h[b])}else f=h.day;return f||h.year},tooltipFooterHeaderFormatter:function(a,e){var g= +e?"footer":"header";e=a.series;var f=e.tooltipOptions,d=f.xDateFormat,b=e.xAxis,q=b&&"datetime"===b.options.type&&p(a.key),g=f[g+"Format"];q&&!d&&(d=this.getXDateFormat(a,f,b));q&&d&&(g=g.replace("{point.key}","{point.key:"+d+"}"));return H(g,{point:a,series:e})},bodyFormatter:function(a){return l(a,function(a){var e=a.series.tooltipOptions;return(e.pointFormatter||a.point.tooltipFormatter).call(a.point,e.pointFormat)})}}})(N);(function(a){var D=a.addEvent,B=a.attr,G=a.charts,H=a.color,p=a.css,l= +a.defined,r=a.doc,w=a.each,t=a.extend,k=a.fireEvent,m=a.offset,e=a.pick,g=a.removeEvent,h=a.splat,C=a.Tooltip,f=a.win;a.Pointer=function(a,b){this.init(a,b)};a.Pointer.prototype={init:function(a,b){this.options=b;this.chart=a;this.runChartClick=b.chart.events&&!!b.chart.events.click;this.pinchDown=[];this.lastValidTouch={};C&&b.tooltip.enabled&&(a.tooltip=new C(a,b.tooltip),this.followTouchMove=e(b.tooltip.followTouchMove,!0));this.setDOMEvents()},zoomOption:function(a){var b=this.chart,d=b.options.chart, +f=d.zoomType||"",b=b.inverted;/touch/.test(a.type)&&(f=e(d.pinchType,f));this.zoomX=a=/x/.test(f);this.zoomY=f=/y/.test(f);this.zoomHor=a&&!b||f&&b;this.zoomVert=f&&!b||a&&b;this.hasZoom=a||f},normalize:function(a,b){var d,e;a=a||f.event;a.target||(a.target=a.srcElement);e=a.touches?a.touches.length?a.touches.item(0):a.changedTouches[0]:a;b||(this.chartPosition=b=m(this.chart.container));void 0===e.pageX?(d=Math.max(a.x,a.clientX-b.left),b=a.y):(d=e.pageX-b.left,b=e.pageY-b.top);return t(a,{chartX:Math.round(d), +chartY:Math.round(b)})},getCoordinates:function(a){var b={xAxis:[],yAxis:[]};w(this.chart.axes,function(d){b[d.isXAxis?"xAxis":"yAxis"].push({axis:d,value:d.toValue(a[d.horiz?"chartX":"chartY"])})});return b},runPointActions:function(d){var b=this.chart,f=b.series,g=b.tooltip,c=g?g.shared:!1,h=!0,n=b.hoverPoint,m=b.hoverSeries,x,k,y,u=[],I;if(!c&&!m)for(x=0;xb.series.index?-1:1}));if(c)for(x=u.length;x--;)(u[x].x!==u[0].x||u[x].series.noSharedTooltip)&&u.splice(x,1);if(u[0]&&(u[0]!==this.prevKDPoint||g&&g.isHidden)){if(c&& +!u[0].series.noSharedTooltip){for(x=0;xh+k&&(f=h+k),cm+y&&(c=m+y),this.hasDragged=Math.sqrt(Math.pow(l-f,2)+Math.pow(v-c,2)),10x.max&&(l=x.max-c,v=!0);v?(u-=.8*(u-g[f][0]),J||(M-=.8*(M-g[f][1])),p()):g[f]=[u,M];A||(e[f]=F-E,e[q]=c);e=A?1/n:n;m[q]=c;m[f]=l;k[A?a?"scaleY":"scaleX":"scale"+d]=n;k["translate"+d]=e* +E+(u-e*y)},pinch:function(a){var r=this,t=r.chart,k=r.pinchDown,m=a.touches,e=m.length,g=r.lastValidTouch,h=r.hasZoom,C=r.selectionMarker,f={},d=1===e&&(r.inClass(a.target,"highcharts-tracker")&&t.runTrackerClick||r.runChartClick),b={};1b-6&&n(u||d.chartWidth- +2*x-v-e.x)&&(this.itemX=v,this.itemY+=p+this.lastLineHeight+I,this.lastLineHeight=0);this.maxItemWidth=Math.max(this.maxItemWidth,c);this.lastItemY=p+this.itemY+I;this.lastLineHeight=Math.max(g,this.lastLineHeight);a._legendItemPos=[this.itemX,this.itemY];f?this.itemX+=c:(this.itemY+=p+g+I,this.lastLineHeight=g);this.offsetWidth=u||Math.max((f?this.itemX-v-l:c)+x,this.offsetWidth)},getAllItems:function(){var a=[];l(this.chart.series,function(d){var b=d&&d.options;d&&m(b.showInLegend,p(b.linkedTo)? +!1:void 0,!0)&&(a=a.concat(d.legendItems||("point"===b.legendType?d.data:d)))});return a},adjustMargins:function(a,d){var b=this.chart,e=this.options,f=e.align.charAt(0)+e.verticalAlign.charAt(0)+e.layout.charAt(0);e.floating||l([/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/],function(c,g){c.test(f)&&!p(a[g])&&(b[t[g]]=Math.max(b[t[g]],b.legend[(g+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][g]*e[g%2?"x":"y"]+m(e.margin,12)+d[g]))})},render:function(){var a=this,d=a.chart,b=d.renderer, +e=a.group,h,c,m,n,k=a.box,x=a.options,p=a.padding;a.itemX=a.initialItemX;a.itemY=a.initialItemY;a.offsetWidth=0;a.lastItemY=0;e||(a.group=e=b.g("legend").attr({zIndex:7}).add(),a.contentGroup=b.g().attr({zIndex:1}).add(e),a.scrollGroup=b.g().add(a.contentGroup));a.renderTitle();h=a.getAllItems();g(h,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});x.reversed&&h.reverse();a.allItems=h;a.display=c=!!h.length;a.lastLineHeight=0;l(h,function(b){a.renderItem(b)}); +m=(x.width||a.offsetWidth)+p;n=a.lastItemY+a.lastLineHeight+a.titleHeight;n=a.handleOverflow(n);n+=p;k||(a.box=k=b.rect().addClass("highcharts-legend-box").attr({r:x.borderRadius}).add(e),k.isNew=!0);k.attr({stroke:x.borderColor,"stroke-width":x.borderWidth||0,fill:x.backgroundColor||"none"}).shadow(x.shadow);0b&&!1!==h.enabled?(this.clipHeight=g=Math.max(b-20-this.titleHeight-I,0),this.currentPage=m(this.currentPage,1),this.fullHeight=a,l(v,function(a,b){var c=a._legendItemPos[1];a=Math.round(a.legendItem.getBBox().height);var d=u.length;if(!d||c-u[d-1]>g&&(r||c)!==u[d-1])u.push(r||c),d++;b===v.length-1&&c+a-u[d-1]>g&&u.push(c);c!==r&&(r=c)}),n||(n=d.clipRect= +e.clipRect(0,I,9999,0),d.contentGroup.clip(n)),t(g),y||(this.nav=y=e.g().attr({zIndex:1}).add(this.group),this.up=e.symbol("triangle",0,0,p,p).on("click",function(){d.scroll(-1,k)}).add(y),this.pager=e.text("",15,10).addClass("highcharts-legend-navigation").css(h.style).add(y),this.down=e.symbol("triangle-down",0,0,p,p).on("click",function(){d.scroll(1,k)}).add(y)),d.scroll(0),a=b):y&&(t(),y.hide(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0);return a},scroll:function(a,d){var b=this.pages, +f=b.length;a=this.currentPage+a;var g=this.clipHeight,c=this.options.navigation,h=this.pager,n=this.padding;a>f&&(a=f);0f&&(g=typeof a[0],"string"===g?e.name=a[0]:"number"===g&&(e.x=a[0]),d++);b=h.value;)h=e[++g];h&&h.color&&!this.options.color&&(this.color=h.color);return h},destroy:function(){var a=this.series.chart,e=a.hoverPoints,g;a.pointCount--;e&&(this.setState(),H(e,this),e.length||(a.hoverPoints=null));if(this===a.hoverPoint)this.onMouseOut();if(this.graphic||this.dataLabel)k(this), +this.destroyElements();this.legendItem&&a.legend.destroyItem(this);for(g in this)this[g]=null},destroyElements:function(){for(var a=["graphic","dataLabel","dataLabelUpper","connector","shadowGroup"],e,g=6;g--;)e=a[g],this[e]&&(this[e]=this[e].destroy())},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(a){var e=this.series,g= +e.tooltipOptions,h=t(g.valueDecimals,""),k=g.valuePrefix||"",f=g.valueSuffix||"";B(e.pointArrayMap||["y"],function(d){d="{point."+d;if(k||f)a=a.replace(d+"}",k+d+"}"+f);a=a.replace(d+"}",d+":,."+h+"f}")});return l(a,{point:this,series:this.series})},firePointEvent:function(a,e,g){var h=this,k=this.series.options;(k.point.events[a]||h.options&&h.options.events&&h.options.events[a])&&this.importEvents();"click"===a&&k.allowPointSelect&&(g=function(a){h.select&&h.select(null,a.ctrlKey||a.metaKey||a.shiftKey)}); +p(this,a,e,g)},visible:!0}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.correctFloat,l=a.Date,r=a.defaultOptions,w=a.defaultPlotOptions,t=a.defined,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.fireEvent,C=a.grep,f=a.isArray,d=a.isNumber,b=a.isString,q=a.merge,E=a.pick,c=a.removeEvent,F=a.splat,n=a.stableSort,A=a.SVGElement,x=a.syncTimeout,J=a.win;a.Series=a.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{}, +marker:{lineWidth:0,lineColor:"#ffffff",radius:4,states:{hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":a.numberFormat(this.y,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0,padding:5},cropThreshold:300,pointRange:0,softThreshold:!0,states:{hover:{lineWidthPlus:1, +marker:{},halo:{size:10,opacity:.25}},select:{marker:{}}},stickyTracking:!0,turboThreshold:1E3},{isCartesian:!0,pointClass:a.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",init:function(a,b){var c=this,d,e,f=a.series,u,y=function(a,b){return E(a.options.index,a._i)-E(b.options.index,b._i)};c.chart=a;c.options=b=c.setOptions(b);c.linkedSeries=[];c.bindAxes();g(c,{name:b.name,state:"",visible:!1!==b.visible,selected:!0=== +b.selected});e=b.events;for(d in e)D(c,d,e[d]);if(e&&e.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=!0;c.getColor();c.getSymbol();k(c.parallelArrays,function(a){c[a+"Data"]=[]});c.setData(b.data,!1);c.isCartesian&&(a.hasCartesianSeries=!0);f.length&&(u=f[f.length-1]);c._i=E(u&&u._i,-1)+1;f.push(c);n(f,y);this.yAxis&&n(this.yAxis.series,y);k(f,function(a,b){a.index=b;a.name=a.name||"Series "+(b+1)})},bindAxes:function(){var a=this,b=a.options,c=a.chart, +d;k(a.axisTypes||[],function(f){k(c[f],function(c){d=c.options;if(b[f]===d.index||void 0!==b[f]&&b[f]===d.id||void 0===b[f]&&0===d.index)c.series.push(a),a[f]=c,c.isDirty=!0});a[f]||a.optionalAxis===f||e(18,!0)})},updateParallelArrays:function(a,b){var c=a.series,e=arguments,f=d(b)?function(d){var e="y"===d&&c.toYData?c.toYData(a):a[d];c[d+"Data"][b]=e}:function(a){Array.prototype[b].apply(c[a+"Data"],Array.prototype.slice.call(e,2))};k(c.parallelArrays,f)},autoIncrement:function(){var a=this.options, +b=this.xIncrement,c,d=a.pointIntervalUnit,b=E(b,a.pointStart,0);this.pointInterval=c=E(this.pointInterval,a.pointInterval,1);d&&(a=new l(b),"day"===d?a=+a[l.hcSetDate](a[l.hcGetDate]()+c):"month"===d?a=+a[l.hcSetMonth](a[l.hcGetMonth]()+c):"year"===d&&(a=+a[l.hcSetFullYear](a[l.hcGetFullYear]()+c)),c=a-b);this.xIncrement=b+c;return b},setOptions:function(a){var b=this.chart,c=b.options.plotOptions,b=b.userOptions||{},d=b.plotOptions||{},e=c[this.type];this.userOptions=a;c=q(e,c.series,a);this.tooltipOptions= +q(r.tooltip,r.plotOptions[this.type].tooltip,b.tooltip,d.series&&d.series.tooltip,d[this.type]&&d[this.type].tooltip,a.tooltip);null===e.marker&&delete c.marker;this.zoneAxis=c.zoneAxis;a=this.zones=(c.zones||[]).slice();!c.negativeColor&&!c.negativeFillColor||c.zones||a.push({value:c[this.zoneAxis+"Threshold"]||c.threshold||0,className:"highcharts-negative",color:c.negativeColor,fillColor:c.negativeFillColor});a.length&&t(a[a.length-1].value)&&a.push({color:this.color,fillColor:this.fillColor}); +return c},getCyclic:function(a,b,c){var d,e=this.userOptions,f=a+"Index",g=a+"Counter",u=c?c.length:E(this.chart.options.chart[a+"Count"],this.chart[a+"Count"]);b||(d=E(e[f],e["_"+f]),t(d)||(e["_"+f]=d=this.chart[g]%u,this.chart[g]+=1),c&&(b=c[d]));void 0!==d&&(this[f]=d);this[a]=b},getColor:function(){this.options.colorByPoint?this.options.color=null:this.getCyclic("color",this.options.color||w[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol, +this.chart.options.symbols)},drawLegendSymbol:a.LegendSymbolMixin.drawLineMarker,setData:function(a,c,g,n){var u=this,q=u.points,h=q&&q.length||0,y,m=u.options,x=u.chart,A=null,I=u.xAxis,l=m.turboThreshold,p=this.xData,r=this.yData,F=(y=u.pointArrayMap)&&y.length;a=a||[];y=a.length;c=E(c,!0);if(!1!==n&&y&&h===y&&!u.cropped&&!u.hasGroupedData&&u.visible)k(a,function(a,b){q[b].update&&a!==m.data[b]&&q[b].update(a,!1,null,!1)});else{u.xIncrement=null;u.colorCounter=0;k(this.parallelArrays,function(a){u[a+ +"Data"].length=0});if(l&&y>l){for(g=0;null===A&&gh||this.forceCrop))if(b[d-1]l)b=[],c=[];else if(b[0]l)f=this.cropData(this.xData,this.yData,A,l),b=f.xData,c=f.yData,f=f.start,g=!0;for(h=b.length||1;--h;)d=x?y(b[h])-y(b[h-1]):b[h]-b[h-1],0d&&this.requireSorting&&e(15);this.cropped=g;this.cropStart=f;this.processedXData=b;this.processedYData=c;this.closestPointRange=n},cropData:function(a,b,c,d){var e=a.length,f=0,g=e,n=E(this.cropShoulder,1),u;for(u=0;u=c){f=Math.max(0,u- +n);break}for(c=u;cd){g=c+n;break}return{xData:a.slice(f,g),yData:b.slice(f,g),start:f,end:g}},generatePoints:function(){var a=this.options.data,b=this.data,c,d=this.processedXData,e=this.processedYData,f=this.pointClass,g=d.length,n=this.cropStart||0,q,h=this.hasGroupedData,k,m=[],x;b||h||(b=[],b.length=a.length,b=this.data=b);for(x=0;x=q&&(c[x-1]||k)<=h,y&&k)if(y=m.length)for(;y--;)null!==m[y]&&(g[n++]=m[y]);else g[n++]=m;this.dataMin=H(g);this.dataMax=G(g)},translate:function(){this.processedXData||this.processData();this.generatePoints();var a=this.options,b=a.stacking,c=this.xAxis,e=c.categories,f=this.yAxis,g=this.points,n=g.length,q=!!this.modifyValue,h=a.pointPlacement,k="between"===h||d(h),m=a.threshold,x=a.startFromThreshold?m:0,A,l,r,F,J=Number.MAX_VALUE;"between"===h&&(h=.5);d(h)&&(h*=E(a.pointRange||c.pointRange)); +for(a=0;a=B&&(C.isNull=!0);C.plotX=A=p(Math.min(Math.max(-1E5,c.translate(w,0,0,0,1,h,"flags"===this.type)),1E5));b&&this.visible&&!C.isNull&&D&&D[w]&&(F=this.getStackIndicator(F,w,this.index),G=D[w],B=G.points[F.key],l=B[0],B=B[1],l===x&&F.key===D[w].base&&(l=E(m,f.min)),f.isLog&&0>=l&&(l=null),C.total=C.stackTotal=G.total,C.percentage=G.total&&C.y/G.total*100,C.stackY= +B,G.setOffset(this.pointXOffset||0,this.barW||0));C.yBottom=t(l)?f.translate(l,0,1,0,1):null;q&&(B=this.modifyValue(B,C));C.plotY=l="number"===typeof B&&Infinity!==B?Math.min(Math.max(-1E5,f.translate(B,0,1,0,1)),1E5):void 0;C.isInside=void 0!==l&&0<=l&&l<=f.len&&0<=A&&A<=c.len;C.clientX=k?p(c.translate(w,0,0,0,1,h)):A;C.negative=C.y<(m||0);C.category=e&&void 0!==e[C.x]?e[C.x]:C.x;C.isNull||(void 0!==r&&(J=Math.min(J,Math.abs(A-r))),r=A)}this.closestPointRangePx=J},getValidPoints:function(a,b){var c= +this.chart;return C(a||this.points||[],function(a){return b&&!c.isInsidePlot(a.plotX,a.plotY,c.inverted)?!1:!a.isNull})},setClip:function(a){var b=this.chart,c=this.options,d=b.renderer,e=b.inverted,f=this.clipBox,g=f||b.clipBox,n=this.sharedClipKey||["_sharedClip",a&&a.duration,a&&a.easing,g.height,c.xAxis,c.yAxis].join(),q=b[n],h=b[n+"m"];q||(a&&(g.width=0,b[n+"m"]=h=d.clipRect(-99,e?-b.plotLeft:-b.plotTop,99,e?b.chartWidth:b.chartHeight)),b[n]=q=d.clipRect(g),q.count={length:0});a&&!q.count[this.index]&& +(q.count[this.index]=!0,q.count.length+=1);!1!==c.clip&&(this.group.clip(a||f?q:b.clipRect),this.markerGroup.clip(h),this.sharedClipKey=n);a||(q.count[this.index]&&(delete q.count[this.index],--q.count.length),0===q.count.length&&n&&b[n]&&(f||(b[n]=b[n].destroy()),b[n+"m"]&&(b[n+"m"]=b[n+"m"].destroy())))},animate:function(a){var b=this.chart,c=B(this.options.animation),d;a?this.setClip(c):(d=this.sharedClipKey,(a=b[d])&&a.animate({width:b.plotSizeX},c),b[d+"m"]&&b[d+"m"].animate({width:b.plotSizeX+ +99},c),this.animate=null)},afterAnimate:function(){this.setClip();h(this,"afterAnimate")},drawPoints:function(){var a=this.points,b=this.chart,c,e,f,g,n=this.options.marker,q,h,k,m,x=this.markerGroup,A=E(n.enabled,this.xAxis.isRadial?!0:null,this.closestPointRangePx>2*n.radius);if(!1!==n.enabled||this._hasPointMarkers)for(e=a.length;e--;)f=a[e],c=f.plotY,g=f.graphic,q=f.marker||{},h=!!f.marker,k=A&&void 0===q.enabled||q.enabled,m=f.isInside,k&&d(c)&&null!==f.y?(c=E(q.symbol,this.symbol),f.hasImage= +0===c.indexOf("url"),k=this.markerAttribs(f,f.selected&&"select"),g?g[m?"show":"hide"](!0).animate(k):m&&(0e&&b.shadow));g&&(g.startX=c.xMap, +g.isArea=c.isArea)})},applyZones:function(){var a=this,b=this.chart,c=b.renderer,d=this.zones,e,f,g=this.clips||[],n,q=this.graph,h=this.area,m=Math.max(b.chartWidth,b.chartHeight),x=this[(this.zoneAxis||"y")+"Axis"],A,l,p=b.inverted,r,F,C,t,J=!1;d.length&&(q||h)&&x&&void 0!==x.min&&(l=x.reversed,r=x.horiz,q&&q.hide(),h&&h.hide(),A=x.getExtremes(),k(d,function(d,u){e=l?r?b.plotWidth:0:r?0:x.toPixels(A.min);e=Math.min(Math.max(E(f,e),0),m);f=Math.min(Math.max(Math.round(x.toPixels(E(d.value,A.max), +!0)),0),m);J&&(e=f=x.toPixels(A.max));F=Math.abs(e-f);C=Math.min(e,f);t=Math.max(e,f);x.isXAxis?(n={x:p?t:C,y:0,width:F,height:m},r||(n.x=b.plotHeight-n.x)):(n={x:0,y:p?t:C,width:m,height:F},r&&(n.y=b.plotWidth-n.y));p&&c.isVML&&(n=x.isXAxis?{x:0,y:l?C:t,height:n.width,width:b.chartWidth}:{x:n.y-b.plotLeft-b.spacingBox.x,y:0,width:n.height,height:b.chartHeight});g[u]?g[u].animate(n):(g[u]=c.clipRect(n),q&&a["zone-graph-"+u].clip(g[u]),h&&a["zone-area-"+u].clip(g[u]));J=d.value>A.max}),this.clips= +g)},invertGroups:function(a){function b(){var b={width:c.yAxis.len,height:c.xAxis.len};k(["group","markerGroup"],function(d){c[d]&&c[d].attr(b).invert(a)})}var c=this,d;c.xAxis&&(d=D(c.chart,"resize",b),D(c,"destroy",d),b(a),c.invertGroups=b)},plotGroup:function(a,b,c,d,e){var f=this[a],g=!f;g&&(this[a]=f=this.chart.renderer.g(b).attr({zIndex:d||.1}).add(e),f.addClass("highcharts-series-"+this.index+" highcharts-"+this.type+"-series highcharts-color-"+this.colorIndex+" "+(this.options.className|| +"")));f.attr({visibility:c})[g?"attr":"animate"](this.getPlotBox());return f},getPlotBox:function(){var a=this.chart,b=this.xAxis,c=this.yAxis;a.inverted&&(b=c,c=this.xAxis);return{translateX:b?b.left:a.plotLeft,translateY:c?c.top:a.plotTop,scaleX:1,scaleY:1}},render:function(){var a=this,b=a.chart,c,d=a.options,e=!!a.animate&&b.renderer.isSVG&&B(d.animation).duration,f=a.visible?"inherit":"hidden",g=d.zIndex,n=a.hasRendered,q=b.seriesGroup,h=b.inverted;c=a.plotGroup("group","series",f,g,q);a.markerGroup= +a.plotGroup("markerGroup","markers",f,g,q);e&&a.animate(!0);c.inverted=a.isCartesian?h:!1;a.drawGraph&&(a.drawGraph(),a.applyZones());a.drawDataLabels&&a.drawDataLabels();a.visible&&a.drawPoints();a.drawTracker&&!1!==a.options.enableMouseTracking&&a.drawTracker();a.invertGroups(h);!1===d.clip||a.sharedClipKey||n||c.clip(b.clipRect);e&&a.animate();n||(a.animationTimeout=x(function(){a.afterAnimate()},e));a.isDirty=a.isDirtyData=!1;a.hasRendered=!0},redraw:function(){var a=this.chart,b=this.isDirty|| +this.isDirtyData,c=this.group,d=this.xAxis,e=this.yAxis;c&&(a.inverted&&c.attr({width:a.plotWidth,height:a.plotHeight}),c.animate({translateX:E(d&&d.left,a.plotLeft),translateY:E(e&&e.top,a.plotTop)}));this.translate();this.render();b&&delete this.kdTree},kdDimensions:1,kdAxisArray:["clientX","plotY"],searchPoint:function(a,b){var c=this.xAxis,d=this.yAxis,e=this.chart.inverted;return this.searchKDTree({clientX:e?c.len-a.chartY+c.pos:a.chartX-c.pos,plotY:e?d.len-a.chartX+d.pos:a.chartY-d.pos},b)}, +buildKDTree:function(){function a(c,d,e){var f,g;if(g=c&&c.length)return f=b.kdAxisArray[d%e],c.sort(function(a,b){return a[f]-b[f]}),g=Math.floor(g/2),{point:c[g],left:a(c.slice(0,g),d+1,e),right:a(c.slice(g+1),d+1,e)}}var b=this,c=b.kdDimensions;delete b.kdTree;x(function(){b.kdTree=a(b.getValidPoints(null,!b.directTouch),c,c)},b.options.kdNow?0:1)},searchKDTree:function(a,b){function c(a,b,n,q){var h=b.point,u=d.kdAxisArray[n%q],k,m,x=h;m=t(a[e])&&t(h[e])?Math.pow(a[e]-h[e],2):null;k=t(a[f])&& +t(h[f])?Math.pow(a[f]-h[f],2):null;k=(m||0)+(k||0);h.dist=t(k)?Math.sqrt(k):Number.MAX_VALUE;h.distX=t(m)?Math.sqrt(m):Number.MAX_VALUE;u=a[u]-h[u];k=0>u?"left":"right";m=0>u?"right":"left";b[k]&&(k=c(a,b[k],n+1,q),x=k[g]A;)l--;this.updateParallelArrays(h,"splice",l,0,0);this.updateParallelArrays(h,l);n&&h.name&&(n[A]=h.name);q.splice(l,0,a);m&&(this.data.splice(l,0,null),this.processData());"point"===c.legendType&&this.generatePoints();d&&(f[0]&&f[0].remove?f[0].remove(!1):(f.shift(),this.updateParallelArrays(h,"shift"),q.shift()));this.isDirtyData=this.isDirty=!0;b&&g.redraw(e)},removePoint:function(a, +b,d){var c=this,e=c.data,f=e[a],g=c.points,n=c.chart,h=function(){g&&g.length===e.length&&g.splice(a,1);e.splice(a,1);c.options.data.splice(a,1);c.updateParallelArrays(f||{series:c},"splice",a,1);f&&f.destroy();c.isDirty=!0;c.isDirtyData=!0;b&&n.redraw()};q(d,n);b=C(b,!0);f?f.firePointEvent("remove",null,h):h()},remove:function(a,b,d){function c(){e.destroy();f.isDirtyLegend=f.isDirtyBox=!0;f.linkSeries();C(a,!0)&&f.redraw(b)}var e=this,f=e.chart;!1!==d?k(e,"remove",null,c):c()},update:function(a, +d){var c=this,e=this.chart,f=this.userOptions,g=this.type,q=a.type||f.type||e.options.chart.type,u=b[g].prototype,m=["group","markerGroup","dataLabelsGroup"],k;if(q&&q!==g||void 0!==a.zIndex)m.length=0;r(m,function(a){m[a]=c[a];delete c[a]});a=h(f,{animation:!1,index:this.index,pointStart:this.xData[0]},{data:this.options.data},a);this.remove(!1,null,!1);for(k in u)this[k]=void 0;t(this,b[q||g].prototype);r(m,function(a){c[a]=m[a]});this.init(e,a);e.linkSeries();C(d,!0)&&e.redraw(!1)}});t(G.prototype, +{update:function(a,b){var c=this.chart;a=c.options[this.coll][this.options.index]=h(this.userOptions,a);this.destroy(!0);this.init(c,t(a,{events:void 0}));c.isDirtyBox=!0;C(b,!0)&&c.redraw()},remove:function(a){for(var b=this.chart,c=this.coll,d=this.series,e=d.length;e--;)d[e]&&d[e].remove(!1);w(b.axes,this);w(b[c],this);b.options[c].splice(this.options.index,1);r(b[c],function(a,b){a.options.index=b});this.destroy();b.isDirtyBox=!0;C(a,!0)&&b.redraw()},setTitle:function(a,b){this.update({title:a}, +b)},setCategories:function(a,b){this.update({categories:a},b)}})})(N);(function(a){var D=a.color,B=a.each,G=a.map,H=a.pick,p=a.Series,l=a.seriesType;l("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(){var a=[],l=[],p=this.xAxis,k=this.yAxis,m=k.stacks[this.stackKey],e={},g=this.points,h=this.index,C=k.series,f=C.length,d,b=H(k.options.reversedStacks,!0)?1:-1,q,E;if(this.options.stacking){for(q=0;qa&&t>l?(t=Math.max(a,l),m=2*l-t):tH&& +m>l?(m=Math.max(H,l),t=2*l-m):m=Math.abs(g)&&.5a.closestPointRange*a.xAxis.transA,k=a.borderWidth=r(h.borderWidth,k?0:1),f=a.yAxis,d=a.translatedThreshold=f.getThreshold(h.threshold),b=r(h.minPointLength,5),q=a.getColumnMetrics(),m=q.width,c=a.barW=Math.max(m,1+2*k),l=a.pointXOffset= +q.offset;g.inverted&&(d-=.5);h.pointPadding&&(c=Math.ceil(c));w.prototype.translate.apply(a);G(a.points,function(e){var n=r(e.yBottom,d),q=999+Math.abs(n),q=Math.min(Math.max(-q,e.plotY),f.len+q),h=e.plotX+l,k=c,u=Math.min(q,n),p,t=Math.max(q,n)-u;Math.abs(t)b?n-b:d-(p?b:0));e.barX=h;e.pointWidth=m;e.tooltipPos=g.inverted?[f.len+f.pos-g.plotLeft-q,a.xAxis.len-h-k/2,t]:[h+k/2,q+f.pos-g.plotTop,t];e.shapeType="rect";e.shapeArgs= +a.crispCol.apply(a,e.isNull?[e.plotX,f.len/2,0,0]:[h,u,k,t])})},getSymbol:a.noop,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(a,g){var e=this.options,k=this.pointAttrToOptions||{},f=k.stroke||"borderColor",d=k["stroke-width"]||"borderWidth",b=a&&a.color||this.color,q=a[f]||e[f]||this.color||b,k=e.dashStyle,m;a&&this.zones.length&&(b=(b=a.getZone())&&b.color||a.options.color|| +this.color);g&&(g=e.states[g],m=g.brightness,b=g.color||void 0!==m&&B(b).brighten(g.brightness).get()||b,q=g[f]||q,k=g.dashStyle||k);a={fill:b,stroke:q,"stroke-width":a[d]||e[d]||this[d]||0};e.borderRadius&&(a.r=e.borderRadius);k&&(a.dashstyle=k);return a},drawPoints:function(){var a=this,g=this.chart,h=a.options,m=g.renderer,f=h.animationLimit||250,d;G(a.points,function(b){var e=b.graphic;p(b.plotY)&&null!==b.y?(d=b.shapeArgs,e?(k(e),e[g.pointCountt;++t)k=r[t],a=2>t||2===t&&/%$/.test(k),r[t]=B(k,[l,H,w,r[2]][t])+(a?p:0);r[3]>r[2]&&(r[3]=r[2]);return r}}})(N);(function(a){var D=a.addEvent,B=a.defined,G=a.each,H=a.extend,p=a.inArray,l=a.noop,r=a.pick,w=a.Point,t=a.Series,k=a.seriesType,m=a.setAnimation;k("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{distance:30,enabled:!0,formatter:function(){return null===this.y? +void 0:this.point.name},x:0},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1,shadow:!1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:a.seriesTypes.column.prototype.pointAttribs,animate:function(a){var e=this,h=e.points,k=e.startAngleRad;a||(G(h,function(a){var d= +a.graphic,b=a.shapeArgs;d&&(d.attr({r:a.startR||e.center[3]/2,start:k,end:k}),d.animate({r:b.r,start:b.start,end:b.end},e.options.animation))}),e.animate=null)},updateTotals:function(){var a,g=0,h=this.points,k=h.length,f,d=this.options.ignoreHiddenPoint;for(a=0;af.y&&(f.y=null),g+=d&&!f.visible?0:f.y;this.total=g;for(a=0;a1.5*Math.PI?q-=2*Math.PI:q<-Math.PI/2&&(q+=2*Math.PI);t.slicedTranslation={translateX:Math.round(Math.cos(q)*k),translateY:Math.round(Math.sin(q)*k)};d=Math.cos(q)*a[2]/2;b=Math.sin(q)*a[2]/2;t.tooltipPos=[a[0]+.7*d,a[1]+.7*b];t.half=q<-Math.PI/2||q>Math.PI/2?1:0;t.angle=q;f=Math.min(f,n/5);t.labelPos=[a[0]+d+Math.cos(q)*n,a[1]+b+Math.sin(q)*n,a[0]+d+Math.cos(q)*f,a[1]+b+Math.sin(q)* +f,a[0]+d,a[1]+b,0>n?"center":t.half?"right":"left",q]}},drawGraph:null,drawPoints:function(){var a=this,g=a.chart.renderer,h,k,f,d,b=a.options.shadow;b&&!a.shadowGroup&&(a.shadowGroup=g.g("shadow").add(a.group));G(a.points,function(e){if(null!==e.y){k=e.graphic;d=e.shapeArgs;h=e.sliced?e.slicedTranslation:{};var q=e.shadowGroup;b&&!q&&(q=e.shadowGroup=g.g("shadow").add(a.shadowGroup));q&&q.attr(h);f=a.pointAttribs(e,e.selected&&"select");k?k.setRadialReference(a.center).attr(f).animate(H(d,h)):(e.graphic= +k=g[e.shapeType](d).addClass(e.getClassName()).setRadialReference(a.center).attr(h).add(a.group),e.visible||k.attr({visibility:"hidden"}),k.attr(f).attr({"stroke-linejoin":"round"}).shadow(b,q))}})},searchPoint:l,sortByAngle:function(a,g){a.sort(function(a,e){return void 0!==a.angle&&(e.angle-a.angle)*g})},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,getCenter:a.CenteredSeriesMixin.getCenter,getSymbol:l},{init:function(){w.prototype.init.apply(this,arguments);var a=this,g;a.name=r(a.name,"Slice"); +g=function(e){a.slice("select"===e.type)};D(a,"select",g);D(a,"unselect",g);return a},setVisible:function(a,g){var e=this,k=e.series,f=k.chart,d=k.options.ignoreHiddenPoint;g=r(g,d);a!==e.visible&&(e.visible=e.options.visible=a=void 0===a?!e.visible:a,k.options.data[p(e,k.data)]=e.options,G(["graphic","dataLabel","connector","shadowGroup"],function(b){if(e[b])e[b][a?"show":"hide"](!0)}),e.legendItem&&f.legend.colorizeItem(e,a),a||"hover"!==e.state||e.setState(""),d&&(k.isDirty=!0),g&&f.redraw())}, +slice:function(a,g,h){var e=this.series;m(h,e.chart);r(g,!0);this.sliced=this.options.sliced=a=B(a)?a:!this.sliced;e.options.data[p(this,e.data)]=this.options;a=a?this.slicedTranslation:{translateX:0,translateY:0};this.graphic.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)},haloPath:function(a){var e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+a,e.r+a,{innerR:this.shapeArgs.r,start:e.start,end:e.end})}})})(N);(function(a){var D= +a.addEvent,B=a.arrayMax,G=a.defined,H=a.each,p=a.extend,l=a.format,r=a.map,w=a.merge,t=a.noop,k=a.pick,m=a.relativeLength,e=a.Series,g=a.seriesTypes,h=a.stableSort,C=a.stop;a.distribute=function(a,d){function b(a,b){return a.target-b.target}var e,f=!0,c=a,g=[],n;n=0;for(e=a.length;e--;)n+=a[e].size;if(n>d){h(a,function(a,b){return(b.rank||0)-(a.rank||0)});for(n=e=0;n<=d;)n+=a[e].size,e++;g=a.splice(e-1,a.length)}h(a,b);for(a=r(a,function(a){return{size:a.size,targets:[a.target]}});f;){for(e=a.length;e--;)f= +a[e],n=(Math.min.apply(0,f.targets)+Math.max.apply(0,f.targets))/2,f.pos=Math.min(Math.max(0,n-f.size/2),d-f.size);e=a.length;for(f=!1;e--;)0a[e].pos&&(a[e-1].size+=a[e].size,a[e-1].targets=a[e-1].targets.concat(a[e].targets),a[e-1].pos+a[e-1].size>d&&(a[e-1].pos=d-a[e-1].size),a.splice(e,1),f=!0)}e=0;H(a,function(a){var b=0;H(a.targets,function(){c[e].pos=a.pos+b;b+=c[e].size;e++})});c.push.apply(c,g);h(c,b)};e.prototype.drawDataLabels=function(){var a=this,d=a.options, +b=d.dataLabels,e=a.points,g,c,h=a.hasRendered||0,n,m,x=k(b.defer,!0),r=a.chart.renderer;if(b.enabled||a._hasPointLabels)a.dlProcessOptions&&a.dlProcessOptions(b),m=a.plotGroup("dataLabelsGroup","data-labels",x&&!h?"hidden":"visible",b.zIndex||6),x&&(m.attr({opacity:+h}),h||D(a,"afterAnimate",function(){a.visible&&m.show(!0);m[d.animation?"animate":"attr"]({opacity:1},{duration:200})})),c=b,H(e,function(e){var f,q=e.dataLabel,h,x,A=e.connector,y=!0,t,z={};g=e.dlOptions||e.options&&e.options.dataLabels; +f=k(g&&g.enabled,c.enabled)&&null!==e.y;if(q&&!f)e.dataLabel=q.destroy();else if(f){b=w(c,g);t=b.style;f=b.rotation;h=e.getLabelConfig();n=b.format?l(b.format,h):b.formatter.call(h,b);t.color=k(b.color,t.color,a.color,"#000000");if(q)G(n)?(q.attr({text:n}),y=!1):(e.dataLabel=q=q.destroy(),A&&(e.connector=A.destroy()));else if(G(n)){q={fill:b.backgroundColor,stroke:b.borderColor,"stroke-width":b.borderWidth,r:b.borderRadius||0,rotation:f,padding:b.padding,zIndex:1};"contrast"===t.color&&(z.color=b.inside|| +0>b.distance||d.stacking?r.getContrast(e.color||a.color):"#000000");d.cursor&&(z.cursor=d.cursor);for(x in q)void 0===q[x]&&delete q[x];q=e.dataLabel=r[f?"text":"label"](n,0,-9999,b.shape,null,null,b.useHTML,null,"data-label").attr(q);q.addClass("highcharts-data-label-color-"+e.colorIndex+" "+(b.className||""));q.css(p(t,z));q.add(m);q.shadow(b.shadow)}q&&a.alignDataLabel(e,q,b,null,y)}})};e.prototype.alignDataLabel=function(a,d,b,e,g){var c=this.chart,f=c.inverted,n=k(a.plotX,-9999),q=k(a.plotY, +-9999),h=d.getBBox(),m,l=b.rotation,u=b.align,r=this.visible&&(a.series.forceDL||c.isInsidePlot(n,Math.round(q),f)||e&&c.isInsidePlot(n,f?e.x+1:e.y+e.height-1,f)),t="justify"===k(b.overflow,"justify");r&&(m=b.style.fontSize,m=c.renderer.fontMetrics(m,d).b,e=p({x:f?c.plotWidth-q:n,y:Math.round(f?c.plotHeight-n:q),width:0,height:0},e),p(b,{width:h.width,height:h.height}),l?(t=!1,f=c.renderer.rotCorr(m,l),f={x:e.x+b.x+e.width/2+f.x,y:e.y+b.y+{top:0,middle:.5,bottom:1}[b.verticalAlign]*e.height},d[g? +"attr":"animate"](f).attr({align:u}),n=(l+720)%360,n=180n,"left"===u?f.y-=n?h.height:0:"center"===u?(f.x-=h.width/2,f.y-=h.height/2):"right"===u&&(f.x-=h.width,f.y-=n?0:h.height)):(d.align(b,null,e),f=d.alignAttr),t?this.justifyDataLabel(d,b,f,h,e,g):k(b.crop,!0)&&(r=c.isInsidePlot(f.x,f.y)&&c.isInsidePlot(f.x+h.width,f.y+h.height)),b.shape&&!l&&d.attr({anchorX:a.plotX,anchorY:a.plotY}));r||(C(d),d.attr({y:-9999}),d.placed=!1)};e.prototype.justifyDataLabel=function(a,d,b,e,g,c){var f=this.chart, +n=d.align,h=d.verticalAlign,q,k,m=a.box?0:a.padding||0;q=b.x+m;0>q&&("right"===n?d.align="left":d.x=-q,k=!0);q=b.x+e.width-m;q>f.plotWidth&&("left"===n?d.align="right":d.x=f.plotWidth-q,k=!0);q=b.y+m;0>q&&("bottom"===h?d.verticalAlign="top":d.y=-q,k=!0);q=b.y+e.height-m;q>f.plotHeight&&("top"===h?d.verticalAlign="bottom":d.y=f.plotHeight-q,k=!0);k&&(a.placed=!c,a.align(d,null,g))};g.pie&&(g.pie.prototype.drawDataLabels=function(){var f=this,d=f.data,b,g=f.chart,h=f.options.dataLabels,c=k(h.connectorPadding, +10),m=k(h.connectorWidth,1),n=g.plotWidth,l=g.plotHeight,x,p=h.distance,y=f.center,u=y[2]/2,t=y[1],w=0k-2?A:P,e),v._attr={visibility:S,align:D[6]},v._pos={x:L+h.x+({left:c,right:-c}[D[6]]||0),y:P+h.y-10},D.x=L,D.y=P,null===f.options.size&&(C=v.width,L-Cn-c&&(T[1]=Math.max(Math.round(L+ +C-n+c),T[1])),0>P-G/2?T[0]=Math.max(Math.round(-P+G/2),T[0]):P+G/2>l&&(T[2]=Math.max(Math.round(P+G/2-l),T[2])))}),0===B(T)||this.verifyDataLabelOverflow(T))&&(this.placeDataLabels(),w&&m&&H(this.points,function(a){var b;x=a.connector;if((v=a.dataLabel)&&v._pos&&a.visible){S=v._attr.visibility;if(b=!x)a.connector=x=g.renderer.path().addClass("highcharts-data-label-connector highcharts-color-"+a.colorIndex).add(f.dataLabelsGroup),x.attr({"stroke-width":m,stroke:h.connectorColor||a.color||"#666666"}); +x[b?"attr":"animate"]({d:f.connectorPath(a.labelPos)});x.attr("visibility",S)}else x&&(a.connector=x.destroy())}))},g.pie.prototype.connectorPath=function(a){var d=a.x,b=a.y;return k(this.options.dataLabels.softConnector,!0)?["M",d+("left"===a[6]?5:-5),b,"C",d,b,2*a[2]-a[4],2*a[3]-a[5],a[2],a[3],"L",a[4],a[5]]:["M",d+("left"===a[6]?5:-5),b,"L",a[2],a[3],"L",a[4],a[5]]},g.pie.prototype.placeDataLabels=function(){H(this.points,function(a){var d=a.dataLabel;d&&a.visible&&((a=d._pos)?(d.attr(d._attr), +d[d.moved?"animate":"attr"](a),d.moved=!0):d&&d.attr({y:-9999}))})},g.pie.prototype.alignDataLabel=t,g.pie.prototype.verifyDataLabelOverflow=function(a){var d=this.center,b=this.options,e=b.center,f=b.minSize||80,c,g;null!==e[0]?c=Math.max(d[2]-Math.max(a[1],a[3]),f):(c=Math.max(d[2]-a[1]-a[3],f),d[0]+=(a[3]-a[1])/2);null!==e[1]?c=Math.max(Math.min(c,d[2]-Math.max(a[0],a[2])),f):(c=Math.max(Math.min(c,d[2]-a[0]-a[2]),f),d[1]+=(a[0]-a[2])/2);ck(this.translatedThreshold,f.yAxis.len)),m=k(b.inside,!!this.options.stacking);n&&(g=w(n),0>g.y&&(g.height+=g.y,g.y=0),n=g.y+g.height-f.yAxis.len,0a+e||c+nb+f||g+hthis.pointCount))},pan:function(a,b){var c=this,d=c.hoverPoints, +e;d&&r(d,function(a){a.setState()});r("xy"===b?[1,0]:[1],function(b){b=c[b?"xAxis":"yAxis"][0];var d=b.horiz,f=a[d?"chartX":"chartY"],d=d?"mouseDownX":"mouseDownY",g=c[d],n=(b.pointRange||0)/2,h=b.getExtremes(),q=b.toValue(g-f,!0)+n,n=b.toValue(g+b.len-f,!0)-n,g=g>f;b.series.length&&(g||q>Math.min(h.dataMin,h.min))&&(!g||n=p(k.minWidth,0)&&this.chartHeight>=p(k.minHeight,0)};void 0===l._id&&(l._id=a.uniqueKey());m=m.call(this);!r[l._id]&&m?l.chartOptions&&(r[l._id]=this.currentOptions(l.chartOptions),this.update(l.chartOptions,w)):r[l._id]&&!m&&(this.update(r[l._id],w),delete r[l._id])};D.prototype.currentOptions=function(a){function p(a,m,e){var g,h;for(g in a)if(-1< +G(g,["series","xAxis","yAxis"]))for(a[g]=l(a[g]),e[g]=[],h=0;hd.length||void 0===h)return a.call(this,g,h,k,f);x=d.length;for(c=0;ck;d[c]5*b||w){if(d[c]>u){for(r=a.call(this,g,d[e],d[c],f);r.length&&r[0]<=u;)r.shift();r.length&&(u=r[r.length-1]);y=y.concat(r)}e=c+1}if(w)break}a= +r.info;if(q&&a.unitRange<=m.hour){c=y.length-1;for(e=1;ek?a-1:a;for(M=void 0;q--;)e=c[q],k=M-e,M&&k<.8*C&&(null===t||k<.8*t)?(n[y[q]]&&!n[y[q+1]]?(k=q+1,M=e):k=q,y.splice(k,1)):M=e}return y});w(B.prototype,{beforeSetTickPositions:function(){var a, +g=[],h=!1,k,f=this.getExtremes(),d=f.min,b=f.max,q,m=this.isXAxis&&!!this.options.breaks,f=this.options.ordinal,c=this.chart.options.chart.ignoreHiddenSeries;if(f||m){r(this.series,function(b,d){if(!(c&&!1===b.visible||!1===b.takeOrdinalPosition&&!m)&&(g=g.concat(b.processedXData),a=g.length,g.sort(function(a,b){return a-b}),a))for(d=a-1;d--;)g[d]===g[d+1]&&g.splice(d,1)});a=g.length;if(2k||b-g[g.length- +1]>k)&&(h=!0)}h?(this.ordinalPositions=g,k=this.val2lin(Math.max(d,g[0]),!0),q=Math.max(this.val2lin(Math.min(b,g[g.length-1]),!0),1),this.ordinalSlope=b=(b-d)/(q-k),this.ordinalOffset=d-k*b):this.ordinalPositions=this.ordinalSlope=this.ordinalOffset=void 0}this.isOrdinal=f&&h;this.groupIntervalFactor=null},val2lin:function(a,g){var e=this.ordinalPositions;if(e){var k=e.length,f,d;for(f=k;f--;)if(e[f]===a){d=f;break}for(f=k-1;f--;)if(a>e[f]||0===f){a=(a-e[f])/(e[f+1]-e[f]);d=f+a;break}g=g?d:this.ordinalSlope* +(d||0)+this.ordinalOffset}else g=a;return g},lin2val:function(a,g){var e=this.ordinalPositions;if(e){var k=this.ordinalSlope,f=this.ordinalOffset,d=e.length-1,b;if(g)0>a?a=e[0]:a>d?a=e[d]:(d=Math.floor(a),b=a-d);else for(;d--;)if(g=k*d+f,a>=g){k=k*(d+1)+f;b=(a-g)/(k-g);break}return void 0!==b&&void 0!==e[d]?e[d]+(b?b*(e[d+1]-e[d]):0):a}return a},getExtendedPositions:function(){var a=this.chart,g=this.series[0].currentDataGrouping,h=this.ordinalIndex,k=g?g.count+g.unitName:"raw",f=this.getExtremes(), +d,b;h||(h=this.ordinalIndex={});h[k]||(d={series:[],chart:a,getExtremes:function(){return{min:f.dataMin,max:f.dataMax}},options:{ordinal:!0},val2lin:B.prototype.val2lin},r(this.series,function(e){b={xAxis:d,xData:e.xData,chart:a,destroyGroupedData:t};b.options={dataGrouping:g?{enabled:!0,forced:!0,approximation:"open",units:[[g.unitName,[g.count]]]}:{enabled:!1}};e.processData.apply(b);d.series.push(b)}),this.beforeSetTickPositions.apply(d),h[k]=d.ordinalPositions);return h[k]},getGroupIntervalFactor:function(a, +g,h){var e;h=h.processedXData;var f=h.length,d=[];e=this.groupIntervalFactor;if(!e){for(e=0;ed?(l=p,t=e.ordinalPositions?e:p):(l=e.ordinalPositions?e:p,t=p),p=t.ordinalPositions,q>p[p.length-1]&&p.push(q),this.fixedRange=c-m,d=e.toFixedRange(null,null,n.apply(l,[x.apply(l,[m,!0])+d,!0]),n.apply(t,[x.apply(t, +[c,!0])+d,!0])),d.min>=Math.min(b.dataMin,m)&&d.max<=Math.max(q,c)&&e.setExtremes(d.min,d.max,!0,!1,{trigger:"pan"}),this.mouseDownX=k,H(this.container,{cursor:"move"})):f=!0}else f=!0;f&&a.apply(this,Array.prototype.slice.call(arguments,1))});k.prototype.gappedPath=function(){var a=this.options.gapSize,g=this.points.slice(),h=g.length-1;if(a&&0this.closestPointRange*a&&g.splice(h+1,0,{isNull:!0});return this.getGraphPath(g)}})(N);(function(a){function D(){return Array.prototype.slice.call(arguments, +1)}function B(a){a.apply(this);this.drawBreaks(this.xAxis,["x"]);this.drawBreaks(this.yAxis,G(this.pointArrayMap,["y"]))}var G=a.pick,H=a.wrap,p=a.each,l=a.extend,r=a.fireEvent,w=a.Axis,t=a.Series;l(w.prototype,{isInBreak:function(a,m){var e=a.repeat||Infinity,g=a.from,h=a.to-a.from;m=m>=g?(m-g)%e:e-(g-m)%e;return a.inclusive?m<=h:m=a)break;else if(g.isInBreak(f,a)){e-=a-f.from;break}return e};this.lin2val=function(a){var e,f;for(f=0;f=a);f++)e.toh;)m-=b;for(;mb.to||l>b.from&&db.from&&db.from&&d>b.to&&d=c[0]);A++);for(A;A<=q;A++){for(;(void 0!==c[w+1]&&a[A]>=c[w+1]||A===q)&&(l=c[w],this.dataGroupInfo={start:p,length:t[0].length},p=d.apply(this,t),void 0!==p&&(g.push(l),h.push(p),m.push(this.dataGroupInfo)),p=A,t[0]=[],t[1]=[],t[2]=[],t[3]=[],w+=1,A!==q););if(A===q)break;if(x){l=this.cropStart+A;l=e&&e[l]|| +this.pointClass.prototype.applyOptions.apply({series:this},[f[l]]);var E,C;for(E=0;Ethis.chart.plotSizeX/d||b&&f.forced)&&(e=!0);return e?d:0};G.prototype.setDataGrouping=function(a,b){var c;b=e(b,!0);a||(a={forced:!1,units:null});if(this instanceof G)for(c=this.series.length;c--;)this.series[c].update({dataGrouping:a},!1);else l(this.chart.options.series,function(b){b.dataGrouping=a},!1);b&&this.chart.redraw()}})(N);(function(a){var D=a.each,B=a.Point,G=a.seriesType,H=a.seriesTypes;G("ohlc","column",{lineWidth:1,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eOpen: {point.open}\x3cbr/\x3eHigh: {point.high}\x3cbr/\x3eLow: {point.low}\x3cbr/\x3eClose: {point.close}\x3cbr/\x3e'}, +threshold:null,states:{hover:{lineWidth:3}}},{pointArrayMap:["open","high","low","close"],toYData:function(a){return[a.open,a.high,a.low,a.close]},pointValKey:"high",pointAttribs:function(a,l){l=H.column.prototype.pointAttribs.call(this,a,l);var p=this.options;delete l.fill;l["stroke-width"]=p.lineWidth;l.stroke=a.options.color||(a.openk)););B(g,function(a,b){var d;void 0===a.plotY&&(a.x>=c.min&&a.x<=c.max?a.plotY=e.chartHeight-p.bottom-(p.opposite?p.height:0)+p.offset-e.plotTop:a.shapeArgs={});a.plotX+=t;(f=g[b-1])&&f.plotX===a.plotX&&(void 0===f.stackIndex&&(f.stackIndex=0),d=f.stackIndex+1);a.stackIndex=d})},drawPoints:function(){var a=this.points,e=this.chart,g=e.renderer,k,l,f=this.options,d=f.y,b,q,p,c,r,n,t,x=this.yAxis;for(q=a.length;q--;)p=a[q],t=p.plotX>this.xAxis.len,k=p.plotX,c=p.stackIndex,b= +p.options.shape||f.shape,l=p.plotY,void 0!==l&&(l=p.plotY+d-(void 0!==c&&c*f.stackDistance)),r=c?void 0:p.plotX,n=c?void 0:p.plotY,c=p.graphic,void 0!==l&&0<=k&&!t?(c||(c=p.graphic=g.label("",null,null,b,null,null,f.useHTML).attr(this.pointAttribs(p)).css(G(f.style,p.style)).attr({align:"flag"===b?"left":"center",width:f.width,height:f.height,"text-align":f.textAlign}).addClass("highcharts-point").add(this.markerGroup),c.shadow(f.shadow)),0h&&(e-=Math.round((l-h)/2),h=l);e=k[a](e,g,h,l);d&&f&&e.push("M",d,g>f?g:g+l,"L",d,f);return e}});p===t&&B(["flag","circlepin","squarepin"],function(a){t.prototype.symbols[a]=k[a]})})(N);(function(a){function D(a,d,e){this.init(a,d,e)}var B=a.addEvent,G=a.Axis,H=a.correctFloat,p=a.defaultOptions, +l=a.defined,r=a.destroyObjectProperties,w=a.doc,t=a.each,k=a.fireEvent,m=a.hasTouch,e=a.isTouchDevice,g=a.merge,h=a.pick,C=a.removeEvent,f=a.wrap,d={height:e?20:14,barBorderRadius:0,buttonBorderRadius:0,liveRedraw:a.svg&&!e,margin:10,minWidth:6,step:.2,zIndex:3,barBackgroundColor:"#cccccc",barBorderWidth:1,barBorderColor:"#cccccc",buttonArrowColor:"#333333",buttonBackgroundColor:"#e6e6e6",buttonBorderColor:"#cccccc",buttonBorderWidth:1,rifleColor:"#333333",trackBackgroundColor:"#f2f2f2",trackBorderColor:"#f2f2f2", +trackBorderWidth:1};p.scrollbar=g(!0,d,p.scrollbar);D.prototype={init:function(a,e,f){this.scrollbarButtons=[];this.renderer=a;this.userOptions=e;this.options=g(d,e);this.chart=f;this.size=h(this.options.size,this.options.height);e.enabled&&(this.render(),this.initEvents(),this.addEvents())},render:function(){var a=this.renderer,d=this.options,e=this.size,c;this.group=c=a.g("scrollbar").attr({zIndex:d.zIndex,translateY:-99999}).add();this.track=a.rect().addClass("highcharts-scrollbar-track").attr({x:0, +r:d.trackBorderRadius||0,height:e,width:e}).add(c);this.track.attr({fill:d.trackBackgroundColor,stroke:d.trackBorderColor,"stroke-width":d.trackBorderWidth});this.trackBorderWidth=this.track.strokeWidth();this.track.attr({y:-this.trackBorderWidth%2/2});this.scrollbarGroup=a.g().add(c);this.scrollbar=a.rect().addClass("highcharts-scrollbar-thumb").attr({height:e,width:e,r:d.barBorderRadius||0}).add(this.scrollbarGroup);this.scrollbarRifles=a.path(this.swapXY(["M",-3,e/4,"L",-3,2*e/3,"M",0,e/4,"L", +0,2*e/3,"M",3,e/4,"L",3,2*e/3],d.vertical)).addClass("highcharts-scrollbar-rifles").add(this.scrollbarGroup);this.scrollbar.attr({fill:d.barBackgroundColor,stroke:d.barBorderColor,"stroke-width":d.barBorderWidth});this.scrollbarRifles.attr({stroke:d.rifleColor,"stroke-width":1});this.scrollbarStrokeWidth=this.scrollbar.strokeWidth();this.scrollbarGroup.translate(-this.scrollbarStrokeWidth%2/2,-this.scrollbarStrokeWidth%2/2);this.drawScrollbarButton(0);this.drawScrollbarButton(1)},position:function(a, +d,e,c){var b=this.options.vertical,f=0,g=this.rendered?"animate":"attr";this.x=a;this.y=d+this.trackBorderWidth;this.width=e;this.xOffset=this.height=c;this.yOffset=f;b?(this.width=this.yOffset=e=f=this.size,this.xOffset=d=0,this.barWidth=c-2*e,this.x=a+=this.options.margin):(this.height=this.xOffset=c=d=this.size,this.barWidth=e-2*c,this.y+=this.options.margin);this.group[g]({translateX:a,translateY:this.y});this.track[g]({width:e,height:c});this.scrollbarButtons[1].attr({translateX:b?0:e-d,translateY:b? +c-f:0})},drawScrollbarButton:function(a){var b=this.renderer,d=this.scrollbarButtons,c=this.options,e=this.size,f;f=b.g().add(this.group);d.push(f);f=b.rect().addClass("highcharts-scrollbar-button").add(f);f.attr({stroke:c.buttonBorderColor,"stroke-width":c.buttonBorderWidth,fill:c.buttonBackgroundColor});f.attr(f.crisp({x:-.5,y:-.5,width:e+1,height:e+1,r:c.buttonBorderRadius},f.strokeWidth()));f=b.path(this.swapXY(["M",e/2+(a?-1:1),e/2-3,"L",e/2+(a?-1:1),e/2+3,"L",e/2+(a?2:-2),e/2],c.vertical)).addClass("highcharts-scrollbar-arrow").add(d[a]); +f.attr({fill:c.buttonArrowColor})},swapXY:function(a,d){var b=a.length,c;if(d)for(d=0;d=k?this.scrollbarRifles.hide():this.scrollbarRifles.show(!0),!1===b.showFull&&(0>=a&&1<=d?this.group.hide():this.group.show()),this.rendered=!0)},initEvents:function(){var a=this;a.mouseMoveHandler=function(b){var d=a.chart.pointer.normalize(b),c=a.options.vertical? +"chartY":"chartX",e=a.initPositions;!a.grabbedCenter||b.touches&&0===b.touches[0][c]||(d=a.cursorToScrollbarPosition(d)[c],c=a[c],c=d-c,a.hasDragged=!0,a.updatePosition(e[0]+c,e[1]+c),a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b}))};a.mouseUpHandler=function(b){a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b});a.grabbedCenter=a.hasDragged=a.chartX=a.chartY=null};a.mouseDownHandler=function(b){b=a.chart.pointer.normalize(b); +b=a.cursorToScrollbarPosition(b);a.chartX=b.chartX;a.chartY=b.chartY;a.initPositions=[a.from,a.to];a.grabbedCenter=!0};a.buttonToMinClick=function(b){var d=H(a.to-a.from)*a.options.step;a.updatePosition(H(a.from-d),H(a.to-d));k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.buttonToMaxClick=function(b){var d=(a.to-a.from)*a.options.step;a.updatePosition(a.from+d,a.to+d);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.trackClick=function(b){var d=a.chart.pointer.normalize(b), +c=a.to-a.from,e=a.y+a.scrollbarTop,f=a.x+a.scrollbarLeft;a.options.vertical&&d.chartY>e||!a.options.vertical&&d.chartX>f?a.updatePosition(a.from+c,a.to+c):a.updatePosition(a.from-c,a.to-c);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})}},cursorToScrollbarPosition:function(a){var b=this.options,b=b.minWidth>this.calculatedWidth?b.minWidth:0;return{chartX:(a.chartX-this.x-this.xOffset)/(this.barWidth-b),chartY:(a.chartY-this.y-this.yOffset)/(this.barWidth-b)}},updatePosition:function(a, +d){1a&&(d=H(d-a),a=0);this.from=a;this.to=d},update:function(a){this.destroy();this.init(this.chart.renderer,g(!0,this.options,a),this.chart)},addEvents:function(){var a=this.options.inverted?[1,0]:[0,1],d=this.scrollbarButtons,e=this.scrollbarGroup.element,c=this.mouseDownHandler,f=this.mouseMoveHandler,g=this.mouseUpHandler,a=[[d[a[0]].element,"click",this.buttonToMinClick],[d[a[1]].element,"click",this.buttonToMaxClick],[this.track.element,"click",this.trackClick],[e, +"mousedown",c],[w,"mousemove",f],[w,"mouseup",g]];m&&a.push([e,"touchstart",c],[w,"touchmove",f],[w,"touchend",g]);t(a,function(a){B.apply(null,a)});this._events=a},removeEvents:function(){t(this._events,function(a){C.apply(null,a)});this._events=void 0},destroy:function(){var a=this.chart.scroller;this.removeEvents();t(["track","scrollbarRifles","scrollbar","scrollbarGroup","group"],function(a){this[a]&&this[a].destroy&&(this[a]=this[a].destroy())},this);a&&(a.scrollbar=null,r(a.scrollbarButtons))}}; +f(G.prototype,"init",function(a){var b=this;a.apply(b,[].slice.call(arguments,1));b.options.scrollbar&&b.options.scrollbar.enabled&&(b.options.scrollbar.vertical=!b.horiz,b.options.startOnTick=b.options.endOnTick=!1,b.scrollbar=new D(b.chart.renderer,b.options.scrollbar,b.chart),B(b.scrollbar,"changed",function(a){var c=Math.min(h(b.options.min,b.min),b.min,b.dataMin),d=Math.max(h(b.options.max,b.max),b.max,b.dataMax)-c,e;b.horiz&&!b.reversed||!b.horiz&&b.reversed?(e=c+d*this.to,c+=d*this.from):(e= +c+d*(1-this.from),c+=d*(1-this.to));b.setExtremes(c,e,!0,!1,a)}))});f(G.prototype,"render",function(a){var b=Math.min(h(this.options.min,this.min),this.min,this.dataMin),d=Math.max(h(this.options.max,this.max),this.max,this.dataMax),c=this.scrollbar,e;a.apply(this,[].slice.call(arguments,1));c&&(this.horiz?c.position(this.left,this.top+this.height+this.offset+2+(this.opposite?0:this.axisTitleMargin),this.width,this.height):c.position(this.left+this.width+2+this.offset+(this.opposite?this.axisTitleMargin: +0),this.top,this.width,this.height),isNaN(b)||isNaN(d)||!l(this.min)||!l(this.max)?c.setRange(0,0):(e=(this.min-b)/(d-b),b=(this.max-b)/(d-b),this.horiz&&!this.reversed||!this.horiz&&this.reversed?c.setRange(e,b):c.setRange(1-b,1-e)))});f(G.prototype,"getOffset",function(a){var b=this.horiz?2:1,d=this.scrollbar;a.apply(this,[].slice.call(arguments,1));d&&(this.chart.axisOffset[b]+=d.size+d.options.margin)});f(G.prototype,"destroy",function(a){this.scrollbar&&(this.scrollbar=this.scrollbar.destroy()); +a.apply(this,[].slice.call(arguments,1))});a.Scrollbar=D})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.color,l=a.defaultOptions,r=a.defined,w=a.destroyObjectProperties,t=a.doc,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.grep,C=a.hasTouch,f=a.isNumber,d=a.isObject,b=a.isTouchDevice,q=a.merge,E=a.pick,c=a.removeEvent,F=a.Scrollbar,n=a.Series,A=a.seriesTypes,x=a.wrap,J=[].concat(a.defaultDataGroupingUnits),y=function(a){var b=h(arguments,f);if(b.length)return Math[a].apply(0, +b)};J[4]=["day",[1,2,3,4]];J[5]=["week",[1,2,3]];A=void 0===A.areaspline?"line":"areaspline";g(l,{navigator:{height:40,margin:25,maskInside:!0,handles:{backgroundColor:"#f2f2f2",borderColor:"#999999"},maskFill:p("#6685c2").setOpacity(.3).get(),outlineColor:"#cccccc",outlineWidth:1,series:{type:A,color:"#335cad",fillOpacity:.05,lineWidth:1,compare:null,dataGrouping:{approximation:"average",enabled:!0,groupPixelWidth:2,smoothed:!0,units:J},dataLabels:{enabled:!1,zIndex:2},id:"highcharts-navigator-series", +className:"highcharts-navigator-series",lineColor:null,marker:{enabled:!1},pointRange:0,shadow:!1,threshold:null},xAxis:{className:"highcharts-navigator-xaxis",tickLength:0,lineWidth:0,gridLineColor:"#e6e6e6",gridLineWidth:1,tickPixelInterval:200,labels:{align:"left",style:{color:"#999999"},x:3,y:-4},crosshair:!1},yAxis:{className:"highcharts-navigator-yaxis",gridLineWidth:0,startOnTick:!1,endOnTick:!1,minPadding:.1,maxPadding:.1,labels:{enabled:!1},crosshair:!1,title:{text:null},tickLength:0,tickWidth:0}}}); +D.prototype={drawHandle:function(a,b){var c=this.chart.renderer,d=this.handles;this.rendered||(d[b]=c.path(["M",-4.5,.5,"L",3.5,.5,3.5,15.5,-4.5,15.5,-4.5,.5,"M",-1.5,4,"L",-1.5,12,"M",.5,4,"L",.5,12]).attr({zIndex:10-b}).addClass("highcharts-navigator-handle highcharts-navigator-handle-"+["left","right"][b]).add(),c=this.navigatorOptions.handles,d[b].attr({fill:c.backgroundColor,stroke:c.borderColor,"stroke-width":1}).css({cursor:"ew-resize"}));d[b][this.rendered&&!this.hasDragged?"animate":"attr"]({translateX:Math.round(this.scrollerLeft+ +this.scrollbarHeight+parseInt(a,10)),translateY:Math.round(this.top+this.height/2-8)})},update:function(a){this.destroy();q(!0,this.chart.options.navigator,this.options,a);this.init(this.chart)},render:function(a,b,c,d){var e=this.chart,g=e.renderer,k,h,l,n;n=this.scrollbarHeight;var m=this.xAxis,p=this.navigatorOptions,u=p.maskInside,q=this.height,v=this.top,t=this.navigatorEnabled,x=this.outlineHeight,y;y=this.rendered;if(f(a)&&f(b)&&(!this.hasDragged||r(c))&&(this.navigatorLeft=k=E(m.left,e.plotLeft+ +n),this.navigatorWidth=h=E(m.len,e.plotWidth-2*n),this.scrollerLeft=l=k-n,this.scrollerWidth=n=n=h+2*n,c=E(c,m.translate(a)),d=E(d,m.translate(b)),f(c)&&Infinity!==Math.abs(c)||(c=0,d=n),!(m.translate(d,!0)-m.translate(c,!0)f&&tp+d-u&&rk&&re?e=0:e+v>=q&&(e=q-v,x=h.getUnionExtremes().dataMax),e!==d&&(h.fixedWidth=v,d=l.toFixedRange(e, +e+v,null,x),c.setExtremes(d.min,d.max,!0,null,{trigger:"navigator"}))))};h.mouseMoveHandler=function(b){var c=h.scrollbarHeight,d=h.navigatorLeft,e=h.navigatorWidth,f=h.scrollerLeft,g=h.scrollerWidth,k=h.range,l;b.touches&&0===b.touches[0].pageX||(b=a.pointer.normalize(b),l=b.chartX,lf+g-c&&(l=f+g-c),h.grabbedLeft?(h.hasDragged=!0,h.render(0,0,l-d,h.otherHandlePos)):h.grabbedRight?(h.hasDragged=!0,h.render(0,0,h.otherHandlePos,l-d)):h.grabbedCenter&&(h.hasDragged=!0,le+n-k&&(l=e+ +n-k),h.render(0,0,l-n,l-n+k)),h.hasDragged&&h.scrollbar&&h.scrollbar.options.liveRedraw&&(b.DOMType=b.type,setTimeout(function(){h.mouseUpHandler(b)},0)))};h.mouseUpHandler=function(b){var c,d,e=b.DOMEvent||b;if(h.hasDragged||"scrollbar"===b.trigger)h.zoomedMin===h.otherHandlePos?c=h.fixedExtreme:h.zoomedMax===h.otherHandlePos&&(d=h.fixedExtreme),h.zoomedMax===h.navigatorWidth&&(d=h.getUnionExtremes().dataMax),c=l.toFixedRange(h.zoomedMin,h.zoomedMax,c,d),r(c.min)&&a.xAxis[0].setExtremes(c.min,c.max, +!0,h.hasDragged?!1:null,{trigger:"navigator",triggerOp:"navigator-drag",DOMEvent:e});"mousemove"!==b.DOMType&&(h.grabbedLeft=h.grabbedRight=h.grabbedCenter=h.fixedWidth=h.fixedExtreme=h.otherHandlePos=h.hasDragged=n=null)};var c=a.xAxis.length,f=a.yAxis.length,m=e&&e[0]&&e[0].xAxis||a.xAxis[0];a.extraBottomMargin=h.outlineHeight+d.margin;a.isDirtyBox=!0;h.navigatorEnabled?(h.xAxis=l=new G(a,q({breaks:m.options.breaks,ordinal:m.options.ordinal},d.xAxis,{id:"navigator-x-axis",yAxis:"navigator-y-axis", +isX:!0,type:"datetime",index:c,height:g,offset:0,offsetLeft:k,offsetRight:-k,keepOrdinalPadding:!0,startOnTick:!1,endOnTick:!1,minPadding:0,maxPadding:0,zoomEnabled:!1})),h.yAxis=new G(a,q(d.yAxis,{id:"navigator-y-axis",alignTicks:!1,height:g,offset:0,index:f,zoomEnabled:!1})),e||d.series.data?h.addBaseSeries():0===a.series.length&&x(a,"redraw",function(b,c){0=Math.round(a.navigatorWidth);b&&!a.hasNavigatorData&&(b.options.pointStart=this.xData[0],b.setData(this.options.data,!1,null,!1))},destroy:function(){this.removeEvents();this.xAxis&&(m(this.chart.xAxis,this.xAxis),m(this.chart.axes,this.xAxis));this.yAxis&&(m(this.chart.yAxis,this.yAxis),m(this.chart.axes,this.yAxis));k(this.series||[],function(a){a.destroy&&a.destroy()});k("series xAxis yAxis leftShade rightShade outline scrollbarTrack scrollbarRifles scrollbarGroup scrollbar navigatorGroup rendered".split(" "), +function(a){this[a]&&this[a].destroy&&this[a].destroy();this[a]=null},this);k([this.handles,this.elementsToDestroy],function(a){w(a)},this)}};a.Navigator=D;x(G.prototype,"zoom",function(a,b,c){var d=this.chart,e=d.options,f=e.chart.zoomType,g=e.navigator,e=e.rangeSelector,h;this.isXAxis&&(g&&g.enabled||e&&e.enabled)&&("x"===f?d.resetZoomButton="blocked":"y"===f?h=!1:"xy"===f&&(d=this.previousZoom,r(b)?this.previousZoom=[this.min,this.max]:d&&(b=d[0],c=d[1],delete this.previousZoom)));return void 0!== +h?h:a.call(this,b,c)});x(H.prototype,"init",function(a,b,c){B(this,"beforeRender",function(){var a=this.options;if(a.navigator.enabled||a.scrollbar.enabled)this.scroller=this.navigator=new D(this)});a.call(this,b,c)});x(H.prototype,"getMargins",function(a){var b=this.legend,c=b.options,d=this.scroller,e,f;a.apply(this,[].slice.call(arguments,1));d&&(e=d.xAxis,f=d.yAxis,d.top=d.navigatorOptions.top||this.chartHeight-d.height-d.scrollbarHeight-this.spacing[2]-("bottom"===c.verticalAlign&&c.enabled&& +!c.floating?b.legendHeight+E(c.margin,10):0),e&&f&&(e.options.top=f.options.top=d.top,e.setAxisSize(),f.setAxisSize()))});x(n.prototype,"addPoint",function(a,b,c,f,g){var h=this.options.turboThreshold;h&&this.xData.length>h&&d(b,!0)&&this.chart.scroller&&e(20,!0);a.call(this,b,c,f,g)});x(H.prototype,"addSeries",function(a,b,c,d){a=a.call(this,b,!1,d);this.scroller&&this.scroller.setBaseSeries();E(c,!0)&&this.redraw();return a});x(n.prototype,"update",function(a,b,c){a.call(this,b,!1);this.chart.scroller&& +this.chart.scroller.setBaseSeries();E(c,!0)&&this.chart.redraw()})})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.css,l=a.createElement,r=a.dateFormat,w=a.defaultOptions,t=w.global.useUTC,k=a.defined,m=a.destroyObjectProperties,e=a.discardElement,g=a.each,h=a.extend,C=a.fireEvent,f=a.Date,d=a.isNumber,b=a.merge,q=a.pick,E=a.pInt,c=a.splat,F=a.wrap;h(w,{rangeSelector:{buttonTheme:{"stroke-width":0,width:28,height:18,padding:2,zIndex:7},height:35,inputPosition:{align:"right"}, +labelStyle:{color:"#666666"}}});w.lang=b(w.lang,{rangeSelectorZoom:"Zoom",rangeSelectorFrom:"From",rangeSelectorTo:"To"});D.prototype={clickButton:function(a,b){var e=this,f=e.chart,h=e.buttonOptions[a],k=f.xAxis[0],l=f.scroller&&f.scroller.getUnionExtremes()||k||{},n=l.dataMin,m=l.dataMax,p,r=k&&Math.round(Math.min(k.max,q(m,k.max))),w=h.type,z,l=h._range,A,C,D,E=h.dataGrouping;if(null!==n&&null!==m){f.fixedRange=l;E&&(this.forcedDataGrouping=!0,G.prototype.setDataGrouping.call(k||{chart:this.chart}, +E,!1));if("month"===w||"year"===w)k?(w={range:h,max:r,dataMin:n,dataMax:m},p=k.minFromRange.call(w),d(w.newMax)&&(r=w.newMax)):l=h;else if(l)p=Math.max(r-l,n),r=Math.min(p+l,m);else if("ytd"===w)if(k)void 0===m&&(n=Number.MAX_VALUE,m=Number.MIN_VALUE,g(f.series,function(a){a=a.xData;n=Math.min(a[0],n);m=Math.max(a[a.length-1],m)}),b=!1),r=e.getYTDExtremes(m,n,t),p=A=r.min,r=r.max;else{B(f,"beforeRender",function(){e.clickButton(a)});return}else"all"===w&&k&&(p=n,r=m);e.setSelected(a);k?k.setExtremes(p, +r,q(b,1),null,{trigger:"rangeSelectorButton",rangeSelectorButton:h}):(z=c(f.options.xAxis)[0],D=z.range,z.range=l,C=z.min,z.min=A,B(f,"load",function(){z.range=D;z.min=C}))}},setSelected:function(a){this.selected=this.options.selected=a},defaultButtons:[{type:"month",count:1,text:"1m"},{type:"month",count:3,text:"3m"},{type:"month",count:6,text:"6m"},{type:"ytd",text:"YTD"},{type:"year",count:1,text:"1y"},{type:"all",text:"All"}],init:function(a){var b=this,c=a.options.rangeSelector,d=c.buttons|| +[].concat(b.defaultButtons),e=c.selected,f=function(){var a=b.minInput,c=b.maxInput;a&&a.blur&&C(a,"blur");c&&c.blur&&C(c,"blur")};b.chart=a;b.options=c;b.buttons=[];a.extraTopMargin=c.height;b.buttonOptions=d;this.unMouseDown=B(a.container,"mousedown",f);this.unResize=B(a,"resize",f);g(d,b.computeButtonRange);void 0!==e&&d[e]&&this.clickButton(e,!1);B(a,"load",function(){B(a.xAxis[0],"setExtremes",function(c){this.max-this.min!==a.fixedRange&&"rangeSelectorButton"!==c.trigger&&"updatedData"!==c.trigger&& +b.forcedDataGrouping&&this.setDataGrouping(!1,!1)})})},updateButtonStates:function(){var a=this.chart,b=a.xAxis[0],c=Math.round(b.max-b.min),e=!b.hasVisibleSeries,a=a.scroller&&a.scroller.getUnionExtremes()||b,f=a.dataMin,h=a.dataMax,a=this.getYTDExtremes(h,f,t),k=a.min,l=a.max,m=this.selected,p=d(m),q=this.options.allButtonsEnabled,r=this.buttons;g(this.buttonOptions,function(a,d){var g=a._range,n=a.type,u=a.count||1;a=r[d];var t=0;d=d===m;var v=g>h-f,x=g=864E5*{month:28,year:365}[n]*u&&c<=864E5*{month:31,year:366}[n]*u?g=!0:"ytd"===n?(g=l-k===c,y=!d):"all"===n&&(g=b.max-b.min>=h-f,w=!d&&p&&g);n=!q&&(v||x||w||e);g=d&&g||g&&!p&&!y;n?t=3:g&&(p=!0,t=2);a.state!==t&&a.setState(t)})},computeButtonRange:function(a){var b=a.type,c=a.count||1,d={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5};if(d[b])a._range=d[b]*c;else if("month"===b||"year"===b)a._range=864E5*{month:30,year:365}[b]*c},setInputValue:function(a,b){var c= +this.chart.options.rangeSelector,d=this[a+"Input"];k(b)&&(d.previousValue=d.HCTime,d.HCTime=b);d.value=r(c.inputEditDateFormat||"%Y-%m-%d",d.HCTime);this[a+"DateBox"].attr({text:r(c.inputDateFormat||"%b %e, %Y",d.HCTime)})},showInput:function(a){var b=this.inputGroup,c=this[a+"DateBox"];p(this[a+"Input"],{left:b.translateX+c.x+"px",top:b.translateY+"px",width:c.width-2+"px",height:c.height-2+"px",border:"2px solid silver"})},hideInput:function(a){p(this[a+"Input"],{border:0,width:"1px",height:"1px"}); +this.setInputValue(a)},drawInput:function(a){function c(){var a=r.value,b=(m.inputDateParser||Date.parse)(a),c=f.xAxis[0],g=f.scroller&&f.scroller.xAxis?f.scroller.xAxis:c,h=g.dataMin,g=g.dataMax;b!==r.previousValue&&(r.previousValue=b,d(b)||(b=a.split("-"),b=Date.UTC(E(b[0]),E(b[1])-1,E(b[2]))),d(b)&&(t||(b+=6E4*(new Date).getTimezoneOffset()),q?b>e.maxInput.HCTime?b=void 0:bg&&(b=g),void 0!==b&&c.setExtremes(q?b:c.min,q?c.max:b,void 0,void 0,{trigger:"rangeSelectorInput"})))} +var e=this,f=e.chart,g=f.renderer.style||{},k=f.renderer,m=f.options.rangeSelector,n=e.div,q="min"===a,r,B,C=this.inputGroup;this[a+"Label"]=B=k.label(w.lang[q?"rangeSelectorFrom":"rangeSelectorTo"],this.inputGroup.offset).addClass("highcharts-range-label").attr({padding:2}).add(C);C.offset+=B.width+5;this[a+"DateBox"]=k=k.label("",C.offset).addClass("highcharts-range-input").attr({padding:2,width:m.inputBoxWidth||90,height:m.inputBoxHeight||17,stroke:m.inputBoxBorderColor||"#cccccc","stroke-width":1, +"text-align":"center"}).on("click",function(){e.showInput(a);e[a+"Input"].focus()}).add(C);C.offset+=k.width+(q?10:0);this[a+"Input"]=r=l("input",{name:a,className:"highcharts-range-selector",type:"text"},{top:f.plotTop+"px"},n);B.css(b(g,m.labelStyle));k.css(b({color:"#333333"},g,m.inputStyle));p(r,h({position:"absolute",border:0,width:"1px",height:"1px",padding:0,textAlign:"center",fontSize:g.fontSize,fontFamily:g.fontFamily,left:"-9em"},m.inputStyle));r.onfocus=function(){e.showInput(a)};r.onblur= +function(){e.hideInput(a)};r.onchange=c;r.onkeypress=function(a){13===a.keyCode&&c()}},getPosition:function(){var a=this.chart,b=a.options.rangeSelector,a=q((b.buttonPosition||{}).y,a.plotTop-a.axisOffset[0]-b.height);return{buttonTop:a,inputTop:a-10}},getYTDExtremes:function(a,b,c){var d=new f(a),e=d[f.hcGetFullYear]();c=c?f.UTC(e,0,1):+new f(e,0,1);b=Math.max(b||0,c);d=d.getTime();return{max:Math.min(a||d,d),min:b}},render:function(a,b){var c=this,d=c.chart,e=d.renderer,f=d.container,m=d.options, +n=m.exporting&&!1!==m.exporting.enabled&&m.navigation&&m.navigation.buttonOptions,p=m.rangeSelector,r=c.buttons,m=w.lang,t=c.div,t=c.inputGroup,A=p.buttonTheme,z=p.buttonPosition||{},B=p.inputEnabled,C=A&&A.states,D=d.plotLeft,E,G=this.getPosition(),F=c.group,H=c.rendered;!1!==p.enabled&&(H||(c.group=F=e.g("range-selector-buttons").add(),c.zoomText=e.text(m.rangeSelectorZoom,q(z.x,D),15).css(p.labelStyle).add(F),E=q(z.x,D)+c.zoomText.getBBox().width+5,g(c.buttonOptions,function(a,b){r[b]=e.button(a.text, +E,0,function(){c.clickButton(b);c.isActive=!0},A,C&&C.hover,C&&C.select,C&&C.disabled).attr({"text-align":"center"}).add(F);E+=r[b].width+q(p.buttonSpacing,5)}),!1!==B&&(c.div=t=l("div",null,{position:"relative",height:0,zIndex:1}),f.parentNode.insertBefore(t,f),c.inputGroup=t=e.g("input-group").add(),t.offset=0,c.drawInput("min"),c.drawInput("max"))),c.updateButtonStates(),F[H?"animate":"attr"]({translateY:G.buttonTop}),!1!==B&&(t.align(h({y:G.inputTop,width:t.offset,x:n&&G.inputTop<(n.y||0)+n.height- +d.spacing[0]?-40:0},p.inputPosition),!0,d.spacingBox),k(B)||(d=F.getBBox(),t[t.alignAttr.translateXc&&(e?a=b-f:b=a+f);d(a)||(a=b=void 0);return{min:a,max:b}};G.prototype.minFromRange=function(){var a=this.range,b={month:"Month",year:"FullYear"}[a.type],c,e=this.max,f,g,h=function(a,c){var d=new Date(a);d["set"+b](d["get"+ +b]()+c);return d.getTime()-a};d(a)?(c=e-a,g=a):(c=e+h(e,-a.count),this.chart&&(this.chart.fixedRange=e-c));f=q(this.dataMin,Number.MIN_VALUE);d(c)||(c=f);c<=f&&(c=f,void 0===g&&(g=h(c,a.count)),this.newMax=Math.min(c+g,this.dataMax));d(e)||(c=void 0);return c};F(H.prototype,"init",function(a,b,c){B(this,"init",function(){this.options.rangeSelector.enabled&&(this.rangeSelector=new D(this))});a.call(this,b,c)});a.RangeSelector=D})(N);(function(a){var D=a.addEvent,B=a.isNumber;a.Chart.prototype.callbacks.push(function(a){function G(){p= +a.xAxis[0].getExtremes();B(p.min)&&r.render(p.min,p.max)}var p,l=a.scroller,r=a.rangeSelector,w,t;l&&(p=a.xAxis[0].getExtremes(),l.render(p.min,p.max));r&&(t=D(a.xAxis[0],"afterSetExtremes",function(a){r.render(a.min,a.max)}),w=D(a,"redraw",G),G());D(a,"destroy",function(){r&&(w(),t())})})})(N);(function(a){var D=a.arrayMax,B=a.arrayMin,G=a.Axis,H=a.Chart,p=a.defined,l=a.each,r=a.extend,w=a.format,t=a.inArray,k=a.isNumber,m=a.isString,e=a.map,g=a.merge,h=a.pick,C=a.Point,f=a.Renderer,d=a.Series,b= +a.splat,q=a.stop,E=a.SVGRenderer,c=a.VMLRenderer,F=a.wrap,n=d.prototype,A=n.init,x=n.processData,J=C.prototype.tooltipFormatter;a.StockChart=a.stockChart=function(c,d,f){var k=m(c)||c.nodeName,l=arguments[k?1:0],n=l.series,p=a.getOptions(),q,r=h(l.navigator&&l.navigator.enabled,!0)?{startOnTick:!1,endOnTick:!1}:null,t={marker:{enabled:!1,radius:2}},u={shadow:!1,borderWidth:0};l.xAxis=e(b(l.xAxis||{}),function(a){return g({minPadding:0,maxPadding:0,ordinal:!0,title:{text:null},labels:{overflow:"justify"}, +showLastLabel:!0},p.xAxis,a,{type:"datetime",categories:null},r)});l.yAxis=e(b(l.yAxis||{}),function(a){q=h(a.opposite,!0);return g({labels:{y:-2},opposite:q,showLastLabel:!1,title:{text:null}},p.yAxis,a)});l.series=null;l=g({chart:{panning:!0,pinchType:"x"},navigator:{enabled:!0},scrollbar:{enabled:!0},rangeSelector:{enabled:!0},title:{text:null,style:{fontSize:"16px"}},tooltip:{shared:!0,crosshairs:!0},legend:{enabled:!1},plotOptions:{line:t,spline:t,area:t,areaspline:t,arearange:t,areasplinerange:t, +column:u,columnrange:u,candlestick:u,ohlc:u}},l,{_stock:!0,chart:{inverted:!1}});l.series=n;return k?new H(c,l,f):new H(l,d)};F(G.prototype,"autoLabelAlign",function(a){var b=this.chart,c=this.options,b=b._labelPanes=b._labelPanes||{},d=this.options.labels;return this.chart.options._stock&&"yAxis"===this.coll&&(c=c.top+","+c.height,!b[c]&&d.enabled)?(15===d.x&&(d.x=0),void 0===d.align&&(d.align="right"),b[c]=1,"right"):a.call(this,[].slice.call(arguments,1))});F(G.prototype,"getPlotLinePath",function(a, +b,c,d,f,g){var n=this,q=this.isLinked&&!this.series?this.linkedParent.series:this.series,r=n.chart,u=r.renderer,v=n.left,w=n.top,y,x,A,B,C=[],D=[],E,F;if("colorAxis"===n.coll)return a.apply(this,[].slice.call(arguments,1));D=function(a){var b="xAxis"===a?"yAxis":"xAxis";a=n.options[b];return k(a)?[r[b][a]]:m(a)?[r.get(a)]:e(q,function(a){return a[b]})}(n.coll);l(n.isXAxis?r.yAxis:r.xAxis,function(a){if(p(a.options.id)?-1===a.options.id.indexOf("navigator"):1){var b=a.isXAxis?"yAxis":"xAxis",b=p(a.options[b])? +r[b][a.options[b]]:r[b][0];n===b&&D.push(a)}});E=D.length?[]:[n.isXAxis?r.yAxis[0]:r.xAxis[0]];l(D,function(a){-1===t(a,E)&&E.push(a)});F=h(g,n.translate(b,null,null,d));k(F)&&(n.horiz?l(E,function(a){var b;x=a.pos;B=x+a.len;y=A=Math.round(F+n.transB);if(yv+n.width)f?y=A=Math.min(Math.max(v,y),v+n.width):b=!0;b||C.push("M",y,x,"L",A,B)}):l(E,function(a){var b;y=a.pos;A=y+a.len;x=B=Math.round(w+n.height-F);if(xw+n.height)f?x=B=Math.min(Math.max(w,x),n.top+n.height):b=!0;b||C.push("M",y, +x,"L",A,B)}));return 0=e&&(x=-(l.translateX+b.width-e));l.attr({x:m+x,y:k,anchorX:g?m:this.opposite?0:a.chartWidth,anchorY:g?this.opposite?a.chartHeight:0:k+b.height/2})}});n.init=function(){A.apply(this,arguments);this.setCompare(this.options.compare)};n.setCompare=function(a){this.modifyValue= +"value"===a||"percent"===a?function(b,c){var d=this.compareValue;if(void 0!==b&&void 0!==d)return b="value"===a?b-d:b=b/d*100-100,c&&(c.change=b),b}:null;this.userOptions.compare=a;this.chart.hasRendered&&(this.isDirty=!0)};n.processData=function(){var a,b=-1,c,d,e,f;x.apply(this,arguments);if(this.xAxis&&this.processedYData)for(c=this.processedXData,d=this.processedYData,e=d.length,this.pointArrayMap&&(b=t("close",this.pointArrayMap),-1===b&&(b=t(this.pointValKey||"y",this.pointArrayMap))),a=0;a< +e-1;a++)if(f=-1=this.xAxis.min&&0!==f){this.compareValue=f;break}};F(n,"getExtremes",function(a){var b;a.apply(this,[].slice.call(arguments,1));this.modifyValue&&(b=[this.modifyValue(this.dataMin),this.modifyValue(this.dataMax)],this.dataMin=B(b),this.dataMax=D(b))});G.prototype.setCompare=function(a,b){this.isXAxis||(l(this.series,function(b){b.setCompare(a)}),h(b,!0)&&this.chart.redraw())};C.prototype.tooltipFormatter=function(b){b=b.replace("{point.change}",(0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 '; + else + var expandButton = ''; + + return '' + expandButton + '' + ellipsedLabel({ name: item.name, parentClass: "nav-tooltip", childClass: "nav-label" }) + ''; +} + +function menuItemsForGroup(group, level, parent) { + var items = ''; + + if (level > 0) + items += menuItem(group, level - 1, parent, true); + + $.each(group.contents, function (contentName, content) { + if (content.type == 'GROUP') + items += menuItemsForGroup(content, level + 1, group.pathFormatted); + else if (content.type == 'REQUEST') + items += menuItem(content, level, group.pathFormatted); + }); + + return items; +} + +function setDetailsMenu(){ + $('.nav ul').append(menuItemsForGroup(stats, 0)); + $('.nav').expandable(); + $('.nav-tooltip').popover({trigger:'hover'}); +} + +function setGlobalMenu(){ + $('.nav ul') + .append('
  • Ranges
  • ') + .append('
  • Stats
  • ') + .append('
  • Active Users
  • ') + .append('
  • Requests / sec
  • ') + .append('
  • Responses / sec
  • '); +} + +function getLink(link){ + var a = link.split('/'); + return (a.length<=1)? link : a[a.length-1]; +} + +function expandUp(li) { + const parentId = li.attr("data-parent"); + if (parentId != "ROOT") { + const span = $('#' + parentId); + const parentLi = span.parents('li').first(); + span.expand(parentLi, false); + expandUp(parentLi); + } +} + +function setActiveMenu(){ + $('.nav a').each(function() { + const navA = $(this) + if(!navA.hasClass('expand-button') && navA.attr('href') == getLink(window.location.pathname)) { + const li = $(this).parents('li').first(); + li.addClass('on'); + expandUp(li); + return false; + } + }); +} diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/stats.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/stats.js new file mode 100644 index 00000000..d8c5b1da --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/stats.js @@ -0,0 +1,1031 @@ +var stats = { + type: "GROUP", +name: "All Requests", +path: "", +pathFormatted: "group_missing-name--1146707516", +stats: { + "name": "All Requests", + "numberOfRequests": { + "total": "3190", + "ok": "3190", + "ko": "0" + }, + "minResponseTime": { + "total": "33", + "ok": "33", + "ko": "-" + }, + "maxResponseTime": { + "total": "314", + "ok": "314", + "ko": "-" + }, + "meanResponseTime": { + "total": "116", + "ok": "116", + "ko": "-" + }, + "standardDeviation": { + "total": "59", + "ok": "59", + "ko": "-" + }, + "percentiles1": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles2": { + "total": "124", + "ok": "124", + "ko": "-" + }, + "percentiles3": { + "total": "252", + "ok": "252", + "ko": "-" + }, + "percentiles4": { + "total": "292", + "ok": "292", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3190, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "36.667", + "ok": "36.667", + "ko": "-" + } +}, +contents: { +"req_request-0-693933696": { + type: "REQUEST", + name: "request_0", +path: "request_0", +pathFormatted: "req_request-0-693933696", +stats: { + "name": "request_0", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "82", + "ok": "82", + "ko": "-" + }, + "maxResponseTime": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "meanResponseTime": { + "total": "91", + "ok": "91", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "94", + "ok": "94", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "percentiles4": { + "total": "103", + "ok": "103", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_wiq2-ico--1077617062": { + type: "REQUEST", + name: "wiq2.ico", +path: "wiq2.ico", +pathFormatted: "req_wiq2-ico--1077617062", +stats: { + "name": "wiq2.ico", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "160", + "ok": "160", + "ko": "-" + }, + "maxResponseTime": { + "total": "210", + "ok": "210", + "ko": "-" + }, + "meanResponseTime": { + "total": "178", + "ok": "178", + "ko": "-" + }, + "standardDeviation": { + "total": "13", + "ok": "13", + "ko": "-" + }, + "percentiles1": { + "total": "187", + "ok": "187", + "ko": "-" + }, + "percentiles2": { + "total": "191", + "ok": "191", + "ko": "-" + }, + "percentiles3": { + "total": "193", + "ok": "193", + "ko": "-" + }, + "percentiles4": { + "total": "195", + "ok": "195", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_main-18e3ef94-c--35899781": { + type: "REQUEST", + name: "main.18e3ef94.css", +path: "main.18e3ef94.css", +pathFormatted: "req_main-18e3ef94-c--35899781", +stats: { + "name": "main.18e3ef94.css", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "82", + "ok": "82", + "ko": "-" + }, + "maxResponseTime": { + "total": "124", + "ok": "124", + "ko": "-" + }, + "meanResponseTime": { + "total": "93", + "ok": "93", + "ko": "-" + }, + "standardDeviation": { + "total": "8", + "ok": "8", + "ko": "-" + }, + "percentiles1": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles2": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "percentiles3": { + "total": "103", + "ok": "103", + "ko": "-" + }, + "percentiles4": { + "total": "111", + "ok": "111", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_main-4a961c5c-j-546111192": { + type: "REQUEST", + name: "main.4a961c5c.js", +path: "main.4a961c5c.js", +pathFormatted: "req_main-4a961c5c-j-546111192", +stats: { + "name": "main.4a961c5c.js", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "243", + "ok": "243", + "ko": "-" + }, + "maxResponseTime": { + "total": "314", + "ok": "314", + "ko": "-" + }, + "meanResponseTime": { + "total": "269", + "ok": "269", + "ko": "-" + }, + "standardDeviation": { + "total": "21", + "ok": "21", + "ko": "-" + }, + "percentiles1": { + "total": "264", + "ok": "264", + "ko": "-" + }, + "percentiles2": { + "total": "289", + "ok": "289", + "ko": "-" + }, + "percentiles3": { + "total": "294", + "ok": "294", + "ko": "-" + }, + "percentiles4": { + "total": "302", + "ok": "302", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-1-693933697": { + type: "REQUEST", + name: "request_1", +path: "request_1", +pathFormatted: "req_request-1-693933697", +stats: { + "name": "request_1", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "133", + "ok": "133", + "ko": "-" + }, + "meanResponseTime": { + "total": "92", + "ok": "92", + "ko": "-" + }, + "standardDeviation": { + "total": "8", + "ok": "8", + "ko": "-" + }, + "percentiles1": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles2": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles3": { + "total": "102", + "ok": "102", + "ko": "-" + }, + "percentiles4": { + "total": "112", + "ok": "112", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-2-693933698": { + type: "REQUEST", + name: "request_2", +path: "request_2", +pathFormatted: "req_request-2-693933698", +stats: { + "name": "request_2", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "82", + "ok": "82", + "ko": "-" + }, + "maxResponseTime": { + "total": "109", + "ok": "109", + "ko": "-" + }, + "meanResponseTime": { + "total": "91", + "ok": "91", + "ko": "-" + }, + "standardDeviation": { + "total": "8", + "ok": "8", + "ko": "-" + }, + "percentiles1": { + "total": "88", + "ok": "88", + "ko": "-" + }, + "percentiles2": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles3": { + "total": "102", + "ok": "102", + "ko": "-" + }, + "percentiles4": { + "total": "107", + "ok": "107", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-3-693933699": { + type: "REQUEST", + name: "request_3", +path: "request_3", +pathFormatted: "req_request-3-693933699", +stats: { + "name": "request_3", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "111", + "ok": "111", + "ko": "-" + }, + "meanResponseTime": { + "total": "92", + "ok": "92", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles3": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "percentiles4": { + "total": "108", + "ok": "108", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-4-693933700": { + type: "REQUEST", + name: "request_4", +path: "request_4", +pathFormatted: "req_request-4-693933700", +stats: { + "name": "request_4", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "33", + "ok": "33", + "ko": "-" + }, + "maxResponseTime": { + "total": "60", + "ok": "60", + "ko": "-" + }, + "meanResponseTime": { + "total": "37", + "ok": "37", + "ko": "-" + }, + "standardDeviation": { + "total": "3", + "ok": "3", + "ko": "-" + }, + "percentiles1": { + "total": "36", + "ok": "36", + "ko": "-" + }, + "percentiles2": { + "total": "37", + "ok": "37", + "ko": "-" + }, + "percentiles3": { + "total": "40", + "ok": "40", + "ko": "-" + }, + "percentiles4": { + "total": "46", + "ok": "46", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-5-693933701": { + type: "REQUEST", + name: "request_5", +path: "request_5", +pathFormatted: "req_request-5-693933701", +stats: { + "name": "request_5", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "85", + "ok": "85", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-6-693933702": { + type: "REQUEST", + name: "request_6", +path: "request_6", +pathFormatted: "req_request-6-693933702", +stats: { + "name": "request_6", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "maxResponseTime": { + "total": "181", + "ok": "181", + "ko": "-" + }, + "meanResponseTime": { + "total": "108", + "ok": "108", + "ko": "-" + }, + "standardDeviation": { + "total": "10", + "ok": "10", + "ko": "-" + }, + "percentiles1": { + "total": "107", + "ok": "107", + "ko": "-" + }, + "percentiles2": { + "total": "110", + "ok": "110", + "ko": "-" + }, + "percentiles3": { + "total": "123", + "ok": "123", + "ko": "-" + }, + "percentiles4": { + "total": "165", + "ok": "165", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + },"req_request-7-693933703": { + type: "REQUEST", + name: "request_7", +path: "request_7", +pathFormatted: "req_request-7-693933703", +stats: { + "name": "request_7", + "numberOfRequests": { + "total": "290", + "ok": "290", + "ko": "0" + }, + "minResponseTime": { + "total": "121", + "ok": "121", + "ko": "-" + }, + "maxResponseTime": { + "total": "156", + "ok": "156", + "ko": "-" + }, + "meanResponseTime": { + "total": "134", + "ok": "134", + "ko": "-" + }, + "standardDeviation": { + "total": "10", + "ok": "10", + "ko": "-" + }, + "percentiles1": { + "total": "129", + "ok": "129", + "ko": "-" + }, + "percentiles2": { + "total": "144", + "ok": "144", + "ko": "-" + }, + "percentiles3": { + "total": "148", + "ok": "148", + "ko": "-" + }, + "percentiles4": { + "total": "152", + "ok": "152", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.333", + "ok": "3.333", + "ko": "-" + } +} + } +} + +} + +function fillStats(stat){ + $("#numberOfRequests").append(stat.numberOfRequests.total); + $("#numberOfRequestsOK").append(stat.numberOfRequests.ok); + $("#numberOfRequestsKO").append(stat.numberOfRequests.ko); + + $("#minResponseTime").append(stat.minResponseTime.total); + $("#minResponseTimeOK").append(stat.minResponseTime.ok); + $("#minResponseTimeKO").append(stat.minResponseTime.ko); + + $("#maxResponseTime").append(stat.maxResponseTime.total); + $("#maxResponseTimeOK").append(stat.maxResponseTime.ok); + $("#maxResponseTimeKO").append(stat.maxResponseTime.ko); + + $("#meanResponseTime").append(stat.meanResponseTime.total); + $("#meanResponseTimeOK").append(stat.meanResponseTime.ok); + $("#meanResponseTimeKO").append(stat.meanResponseTime.ko); + + $("#standardDeviation").append(stat.standardDeviation.total); + $("#standardDeviationOK").append(stat.standardDeviation.ok); + $("#standardDeviationKO").append(stat.standardDeviation.ko); + + $("#percentiles1").append(stat.percentiles1.total); + $("#percentiles1OK").append(stat.percentiles1.ok); + $("#percentiles1KO").append(stat.percentiles1.ko); + + $("#percentiles2").append(stat.percentiles2.total); + $("#percentiles2OK").append(stat.percentiles2.ok); + $("#percentiles2KO").append(stat.percentiles2.ko); + + $("#percentiles3").append(stat.percentiles3.total); + $("#percentiles3OK").append(stat.percentiles3.ok); + $("#percentiles3KO").append(stat.percentiles3.ko); + + $("#percentiles4").append(stat.percentiles4.total); + $("#percentiles4OK").append(stat.percentiles4.ok); + $("#percentiles4KO").append(stat.percentiles4.ko); + + $("#meanNumberOfRequestsPerSecond").append(stat.meanNumberOfRequestsPerSecond.total); + $("#meanNumberOfRequestsPerSecondOK").append(stat.meanNumberOfRequestsPerSecond.ok); + $("#meanNumberOfRequestsPerSecondKO").append(stat.meanNumberOfRequestsPerSecond.ko); +} diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/stats.json b/testsrc/gatling/results/loginrecord-20240426122058764/js/stats.json new file mode 100644 index 00000000..23c8bfca --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/stats.json @@ -0,0 +1,989 @@ +{ + "type": "GROUP", +"name": "All Requests", +"path": "", +"pathFormatted": "group_missing-name--1146707516", +"stats": { + "name": "All Requests", + "numberOfRequests": { + "total": 3190, + "ok": 3190, + "ko": 0 + }, + "minResponseTime": { + "total": 33, + "ok": 33, + "ko": 0 + }, + "maxResponseTime": { + "total": 314, + "ok": 314, + "ko": 0 + }, + "meanResponseTime": { + "total": 116, + "ok": 116, + "ko": 0 + }, + "standardDeviation": { + "total": 59, + "ok": 59, + "ko": 0 + }, + "percentiles1": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles2": { + "total": 124, + "ok": 124, + "ko": 0 + }, + "percentiles3": { + "total": 252, + "ok": 252, + "ko": 0 + }, + "percentiles4": { + "total": 292, + "ok": 292, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3190, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 36.666666666666664, + "ok": 36.666666666666664, + "ko": 0 + } +}, +"contents": { +"req_request-0-693933696": { + "type": "REQUEST", + "name": "request_0", +"path": "request_0", +"pathFormatted": "req_request-0-693933696", +"stats": { + "name": "request_0", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 82, + "ok": 82, + "ko": 0 + }, + "maxResponseTime": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "meanResponseTime": { + "total": 91, + "ok": 91, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 94, + "ok": 94, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "percentiles4": { + "total": 103, + "ok": 103, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_wiq2-ico--1077617062": { + "type": "REQUEST", + "name": "wiq2.ico", +"path": "wiq2.ico", +"pathFormatted": "req_wiq2-ico--1077617062", +"stats": { + "name": "wiq2.ico", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 160, + "ok": 160, + "ko": 0 + }, + "maxResponseTime": { + "total": 210, + "ok": 210, + "ko": 0 + }, + "meanResponseTime": { + "total": 178, + "ok": 178, + "ko": 0 + }, + "standardDeviation": { + "total": 13, + "ok": 13, + "ko": 0 + }, + "percentiles1": { + "total": 187, + "ok": 187, + "ko": 0 + }, + "percentiles2": { + "total": 191, + "ok": 191, + "ko": 0 + }, + "percentiles3": { + "total": 193, + "ok": 193, + "ko": 0 + }, + "percentiles4": { + "total": 195, + "ok": 195, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_main-18e3ef94-c--35899781": { + "type": "REQUEST", + "name": "main.18e3ef94.css", +"path": "main.18e3ef94.css", +"pathFormatted": "req_main-18e3ef94-c--35899781", +"stats": { + "name": "main.18e3ef94.css", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 82, + "ok": 82, + "ko": 0 + }, + "maxResponseTime": { + "total": 124, + "ok": 124, + "ko": 0 + }, + "meanResponseTime": { + "total": 93, + "ok": 93, + "ko": 0 + }, + "standardDeviation": { + "total": 8, + "ok": 8, + "ko": 0 + }, + "percentiles1": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles2": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "percentiles3": { + "total": 103, + "ok": 103, + "ko": 0 + }, + "percentiles4": { + "total": 111, + "ok": 111, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_main-4a961c5c-j-546111192": { + "type": "REQUEST", + "name": "main.4a961c5c.js", +"path": "main.4a961c5c.js", +"pathFormatted": "req_main-4a961c5c-j-546111192", +"stats": { + "name": "main.4a961c5c.js", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 243, + "ok": 243, + "ko": 0 + }, + "maxResponseTime": { + "total": 314, + "ok": 314, + "ko": 0 + }, + "meanResponseTime": { + "total": 269, + "ok": 269, + "ko": 0 + }, + "standardDeviation": { + "total": 21, + "ok": 21, + "ko": 0 + }, + "percentiles1": { + "total": 264, + "ok": 264, + "ko": 0 + }, + "percentiles2": { + "total": 289, + "ok": 289, + "ko": 0 + }, + "percentiles3": { + "total": 294, + "ok": 294, + "ko": 0 + }, + "percentiles4": { + "total": 302, + "ok": 302, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-1-693933697": { + "type": "REQUEST", + "name": "request_1", +"path": "request_1", +"pathFormatted": "req_request-1-693933697", +"stats": { + "name": "request_1", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 133, + "ok": 133, + "ko": 0 + }, + "meanResponseTime": { + "total": 92, + "ok": 92, + "ko": 0 + }, + "standardDeviation": { + "total": 8, + "ok": 8, + "ko": 0 + }, + "percentiles1": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles2": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles3": { + "total": 102, + "ok": 102, + "ko": 0 + }, + "percentiles4": { + "total": 112, + "ok": 112, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-2-693933698": { + "type": "REQUEST", + "name": "request_2", +"path": "request_2", +"pathFormatted": "req_request-2-693933698", +"stats": { + "name": "request_2", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 82, + "ok": 82, + "ko": 0 + }, + "maxResponseTime": { + "total": 109, + "ok": 109, + "ko": 0 + }, + "meanResponseTime": { + "total": 91, + "ok": 91, + "ko": 0 + }, + "standardDeviation": { + "total": 8, + "ok": 8, + "ko": 0 + }, + "percentiles1": { + "total": 88, + "ok": 88, + "ko": 0 + }, + "percentiles2": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles3": { + "total": 102, + "ok": 102, + "ko": 0 + }, + "percentiles4": { + "total": 107, + "ok": 107, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-3-693933699": { + "type": "REQUEST", + "name": "request_3", +"path": "request_3", +"pathFormatted": "req_request-3-693933699", +"stats": { + "name": "request_3", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 111, + "ok": 111, + "ko": 0 + }, + "meanResponseTime": { + "total": 92, + "ok": 92, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles3": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "percentiles4": { + "total": 108, + "ok": 108, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-4-693933700": { + "type": "REQUEST", + "name": "request_4", +"path": "request_4", +"pathFormatted": "req_request-4-693933700", +"stats": { + "name": "request_4", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 33, + "ok": 33, + "ko": 0 + }, + "maxResponseTime": { + "total": 60, + "ok": 60, + "ko": 0 + }, + "meanResponseTime": { + "total": 37, + "ok": 37, + "ko": 0 + }, + "standardDeviation": { + "total": 3, + "ok": 3, + "ko": 0 + }, + "percentiles1": { + "total": 36, + "ok": 36, + "ko": 0 + }, + "percentiles2": { + "total": 37, + "ok": 37, + "ko": 0 + }, + "percentiles3": { + "total": 40, + "ok": 40, + "ko": 0 + }, + "percentiles4": { + "total": 46, + "ok": 46, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-5-693933701": { + "type": "REQUEST", + "name": "request_5", +"path": "request_5", +"pathFormatted": "req_request-5-693933701", +"stats": { + "name": "request_5", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 85, + "ok": 85, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-6-693933702": { + "type": "REQUEST", + "name": "request_6", +"path": "request_6", +"pathFormatted": "req_request-6-693933702", +"stats": { + "name": "request_6", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "maxResponseTime": { + "total": 181, + "ok": 181, + "ko": 0 + }, + "meanResponseTime": { + "total": 108, + "ok": 108, + "ko": 0 + }, + "standardDeviation": { + "total": 10, + "ok": 10, + "ko": 0 + }, + "percentiles1": { + "total": 107, + "ok": 107, + "ko": 0 + }, + "percentiles2": { + "total": 110, + "ok": 110, + "ko": 0 + }, + "percentiles3": { + "total": 123, + "ok": 123, + "ko": 0 + }, + "percentiles4": { + "total": 165, + "ok": 165, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + },"req_request-7-693933703": { + "type": "REQUEST", + "name": "request_7", +"path": "request_7", +"pathFormatted": "req_request-7-693933703", +"stats": { + "name": "request_7", + "numberOfRequests": { + "total": 290, + "ok": 290, + "ko": 0 + }, + "minResponseTime": { + "total": 121, + "ok": 121, + "ko": 0 + }, + "maxResponseTime": { + "total": 156, + "ok": 156, + "ko": 0 + }, + "meanResponseTime": { + "total": 134, + "ok": 134, + "ko": 0 + }, + "standardDeviation": { + "total": 10, + "ok": 10, + "ko": 0 + }, + "percentiles1": { + "total": 129, + "ok": 129, + "ko": 0 + }, + "percentiles2": { + "total": 144, + "ok": 144, + "ko": 0 + }, + "percentiles3": { + "total": 148, + "ok": 148, + "ko": 0 + }, + "percentiles4": { + "total": 152, + "ok": 152, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 290, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.3333333333333335, + "ok": 3.3333333333333335, + "ko": 0 + } +} + } +} + +} \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/theme.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/theme.js new file mode 100644 index 00000000..b95a7b3c --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/theme.js @@ -0,0 +1,127 @@ +/* + * Copyright 2011-2022 Gatling Corp + * + * Licensed under the Gatling Highcharts License + */ +Highcharts.theme = { + chart: { + backgroundColor: '#f7f7f7', + borderWidth: 0, + borderRadius: 8, + plotBackgroundColor: null, + plotShadow: false, + plotBorderWidth: 0 + }, + xAxis: { + gridLineWidth: 0, + lineColor: '#666', + tickColor: '#666', + labels: { + style: { + color: '#666' + } + }, + title: { + style: { + color: '#666' + } + } + }, + yAxis: { + alternateGridColor: null, + minorTickInterval: null, + gridLineColor: '#999', + lineWidth: 0, + tickWidth: 0, + labels: { + style: { + color: '#666', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#666', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + labels: { + style: { + color: '#CCC' + } + }, + + + rangeSelector: { + buttonTheme: { + fill: '#cfc9c6', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#b2b2a9' + }, + states: { + hover: { + fill: '#92918C', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#8b897d' + } + }, + select: { + fill: '#E37400', + stroke: '#000000', + style: { + color: '#FFF' + } + } + } + }, + inputStyle: { + backgroundColor: '#333', + color: 'silver' + }, + labelStyle: { + color: '#8b897d' + } + }, + + navigator: { + handles: { + backgroundColor: '#f7f7f7', + borderColor: '#92918C' + }, + outlineColor: '#92918C', + outlineWidth: 1, + maskFill: 'rgba(146, 145, 140, 0.5)', + series: { + color: '#5E7BE2', + lineColor: '#5E7BE2' + } + }, + + scrollbar: { + buttonBackgroundColor: '#f7f7f7', + buttonBorderWidth: 1, + buttonBorderColor: '#92918C', + buttonArrowColor: '#92918C', + buttonBorderRadius: 2, + + barBorderWidth: 1, + barBorderRadius: 0, + barBackgroundColor: '#92918C', + barBorderColor: '#92918C', + + rifleColor: '#92918C', + + trackBackgroundColor: '#b0b0a8', + trackBorderWidth: 1, + trackBorderColor: '#b0b0a8' + } +}; + +Highcharts.setOptions(Highcharts.theme); diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/js/unpack.js b/testsrc/gatling/results/loginrecord-20240426122058764/js/unpack.js new file mode 100644 index 00000000..883c33e7 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/js/unpack.js @@ -0,0 +1,38 @@ +'use strict'; + +var unpack = function (array) { + var findNbSeries = function (array) { + var currentPlotPack; + var length = array.length; + + for (var i = 0; i < length; i++) { + currentPlotPack = array[i][1]; + if(currentPlotPack !== null) { + return currentPlotPack.length; + } + } + return 0; + }; + + var i, j; + var nbPlots = array.length; + var nbSeries = findNbSeries(array); + + // Prepare unpacked array + var unpackedArray = new Array(nbSeries); + + for (i = 0; i < nbSeries; i++) { + unpackedArray[i] = new Array(nbPlots); + } + + // Unpack the array + for (i = 0; i < nbPlots; i++) { + var timestamp = array[i][0]; + var values = array[i][1]; + for (j = 0; j < nbSeries; j++) { + unpackedArray[j][i] = [timestamp * 1000, values === null ? null : values[j]]; + } + } + + return unpackedArray; +}; diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_main-18e3ef94-c--35899781.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_main-18e3ef94-c--35899781.html new file mode 100644 index 00000000..e8145773 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_main-18e3ef94-c--35899781.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - main.18e3ef94.css + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_main-4a961c5c-j-546111192.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_main-4a961c5c-j-546111192.html new file mode 100644 index 00000000..a5c92b49 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_main-4a961c5c-j-546111192.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - main.4a961c5c.js + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-0-693933696.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-0-693933696.html new file mode 100644 index 00000000..a193e4be --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-0-693933696.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_0 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-1-693933697.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-1-693933697.html new file mode 100644 index 00000000..b210115a --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-1-693933697.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_1 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-2-693933698.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-2-693933698.html new file mode 100644 index 00000000..a1129291 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-2-693933698.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_2 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-3-693933699.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-3-693933699.html new file mode 100644 index 00000000..85b4d1cc --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-3-693933699.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_3 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-4-693933700.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-4-693933700.html new file mode 100644 index 00000000..fe873850 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-4-693933700.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_4 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-5-693933701.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-5-693933701.html new file mode 100644 index 00000000..bcef60e6 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-5-693933701.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_5 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-6-693933702.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-6-693933702.html new file mode 100644 index 00000000..00062db9 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-6-693933702.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_6 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_request-7-693933703.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-7-693933703.html new file mode 100644 index 00000000..b4e2b696 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_request-7-693933703.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_7 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/req_wiq2-ico--1077617062.html b/testsrc/gatling/results/loginrecord-20240426122058764/req_wiq2-ico--1077617062.html new file mode 100644 index 00000000..bb7a34ad --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/req_wiq2-ico--1077617062.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - wiq2.ico + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + LoginRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/simulation.log b/testsrc/gatling/results/loginrecord-20240426122058764/simulation.log new file mode 100644 index 00000000..8baccf23 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/simulation.log @@ -0,0 +1,3771 @@ +RUN LoginRecord loginrecord 1714134058764 3.10.5 +USER LoginRecord START 1714134059501 +REQUEST request_0 1714134059499 1714134059601 OK +REQUEST request_3 1714134059646 1714134059732 OK +REQUEST request_2 1714134059646 1714134059734 OK +REQUEST main.18e3ef94.css 1714134059645 1714134059735 OK +REQUEST request_1 1714134059646 1714134059745 OK +REQUEST wiq2.ico 1714134059645 1714134059833 OK +USER LoginRecord START 1714134059878 +USER LoginRecord START 1714134059893 +REQUEST main.4a961c5c.js 1714134059645 1714134059903 OK +REQUEST request_0 1714134059877 1714134059977 OK +REQUEST request_0 1714134059893 1714134059991 OK +REQUEST request_3 1714134059980 1714134060065 OK +REQUEST request_2 1714134059980 1714134060066 OK +REQUEST request_3 1714134059993 1714134060078 OK +REQUEST request_1 1714134059992 1714134060079 OK +REQUEST request_1 1714134059979 1714134060081 OK +REQUEST main.18e3ef94.css 1714134059979 1714134060082 OK +REQUEST request_2 1714134059992 1714134060094 OK +REQUEST main.18e3ef94.css 1714134059992 1714134060095 OK +REQUEST wiq2.ico 1714134059979 1714134060168 OK +REQUEST wiq2.ico 1714134059992 1714134060183 OK +REQUEST main.4a961c5c.js 1714134059992 1714134060241 OK +REQUEST main.4a961c5c.js 1714134059979 1714134060273 OK +USER LoginRecord START 1714134060538 +USER LoginRecord START 1714134060539 +REQUEST request_0 1714134060538 1714134060624 OK +REQUEST request_0 1714134060538 1714134060635 OK +USER LoginRecord START 1714134060711 +REQUEST request_3 1714134060627 1714134060714 OK +REQUEST request_1 1714134060626 1714134060715 OK +REQUEST request_2 1714134060637 1714134060721 OK +REQUEST request_1 1714134060636 1714134060722 OK +REQUEST request_2 1714134060626 1714134060727 OK +REQUEST main.18e3ef94.css 1714134060626 1714134060730 OK +REQUEST request_3 1714134060637 1714134060736 OK +REQUEST main.18e3ef94.css 1714134060636 1714134060738 OK +REQUEST wiq2.ico 1714134060625 1714134060793 OK +REQUEST request_0 1714134060710 1714134060795 OK +REQUEST wiq2.ico 1714134060636 1714134060826 OK +REQUEST request_2 1714134060797 1714134060882 OK +REQUEST main.18e3ef94.css 1714134060796 1714134060883 OK +REQUEST request_1 1714134060797 1714134060884 OK +REQUEST request_3 1714134060797 1714134060895 OK +REQUEST main.4a961c5c.js 1714134060626 1714134060914 OK +REQUEST main.4a961c5c.js 1714134060636 1714134060929 OK +REQUEST wiq2.ico 1714134060796 1714134060964 OK +REQUEST main.4a961c5c.js 1714134060796 1714134061086 OK +USER LoginRecord START 1714134061137 +REQUEST request_0 1714134061136 1714134061222 OK +REQUEST request_1 1714134061223 1714134061311 OK +REQUEST main.18e3ef94.css 1714134061223 1714134061322 OK +REQUEST request_2 1714134061224 1714134061324 OK +REQUEST request_3 1714134061224 1714134061324 OK +REQUEST wiq2.ico 1714134061223 1714134061389 OK +REQUEST main.4a961c5c.js 1714134061223 1714134061472 OK +USER LoginRecord START 1714134061513 +REQUEST request_0 1714134061512 1714134061611 OK +USER LoginRecord START 1714134061622 +REQUEST request_1 1714134061613 1714134061695 OK +REQUEST request_2 1714134061613 1714134061699 OK +REQUEST main.18e3ef94.css 1714134061613 1714134061712 OK +REQUEST request_3 1714134061613 1714134061713 OK +REQUEST request_0 1714134061621 1714134061718 OK +REQUEST wiq2.ico 1714134061612 1714134061803 OK +REQUEST main.18e3ef94.css 1714134061720 1714134061805 OK +REQUEST request_1 1714134061720 1714134061806 OK +REQUEST request_2 1714134061720 1714134061806 OK +REQUEST request_3 1714134061721 1714134061818 OK +REQUEST main.4a961c5c.js 1714134061612 1714134061865 OK +USER LoginRecord START 1714134061872 +USER LoginRecord START 1714134061904 +REQUEST wiq2.ico 1714134061719 1714134061910 OK +REQUEST request_0 1714134061872 1714134061969 OK +REQUEST request_0 1714134061904 1714134061989 OK +REQUEST main.4a961c5c.js 1714134061720 1714134062009 OK +REQUEST request_1 1714134061971 1714134062055 OK +REQUEST request_2 1714134061971 1714134062070 OK +REQUEST main.18e3ef94.css 1714134061971 1714134062070 OK +REQUEST request_3 1714134061971 1714134062071 OK +REQUEST request_3 1714134061991 1714134062076 OK +REQUEST request_2 1714134061991 1714134062076 OK +REQUEST main.18e3ef94.css 1714134061990 1714134062077 OK +REQUEST request_1 1714134061990 1714134062087 OK +USER LoginRecord START 1714134062094 +REQUEST wiq2.ico 1714134061990 1714134062155 OK +REQUEST wiq2.ico 1714134061970 1714134062160 OK +REQUEST request_0 1714134062094 1714134062179 OK +REQUEST main.4a961c5c.js 1714134061970 1714134062218 OK +REQUEST request_2 1714134062181 1714134062264 OK +REQUEST request_3 1714134062181 1714134062264 OK +REQUEST main.4a961c5c.js 1714134061990 1714134062277 OK +REQUEST request_1 1714134062180 1714134062278 OK +REQUEST main.18e3ef94.css 1714134062180 1714134062281 OK +REQUEST wiq2.ico 1714134062180 1714134062346 OK +REQUEST main.4a961c5c.js 1714134062180 1714134062467 OK +USER LoginRecord START 1714134062568 +USER LoginRecord START 1714134062631 +REQUEST request_0 1714134062567 1714134062665 OK +REQUEST request_0 1714134062631 1714134062716 OK +USER LoginRecord START 1714134062741 +REQUEST request_1 1714134062667 1714134062752 OK +REQUEST request_2 1714134062667 1714134062766 OK +REQUEST request_3 1714134062667 1714134062766 OK +REQUEST main.18e3ef94.css 1714134062667 1714134062768 OK +REQUEST request_1 1714134062718 1714134062801 OK +REQUEST main.18e3ef94.css 1714134062717 1714134062801 OK +REQUEST request_3 1714134062718 1714134062816 OK +REQUEST request_2 1714134062718 1714134062816 OK +REQUEST request_0 1714134062740 1714134062827 OK +REQUEST wiq2.ico 1714134062666 1714134062856 OK +REQUEST wiq2.ico 1714134062717 1714134062883 OK +REQUEST request_2 1714134062828 1714134062912 OK +REQUEST main.18e3ef94.css 1714134062828 1714134062913 OK +REQUEST main.4a961c5c.js 1714134062666 1714134062913 OK +REQUEST request_3 1714134062829 1714134062927 OK +REQUEST request_1 1714134062828 1714134062927 OK +REQUEST main.4a961c5c.js 1714134062717 1714134062967 OK +REQUEST wiq2.ico 1714134062828 1714134062994 OK +REQUEST main.4a961c5c.js 1714134062828 1714134063116 OK +USER LoginRecord START 1714134063178 +REQUEST request_0 1714134063178 1714134063264 OK +REQUEST main.18e3ef94.css 1714134063265 1714134063352 OK +REQUEST request_1 1714134063265 1714134063364 OK +REQUEST request_3 1714134063265 1714134063365 OK +REQUEST request_2 1714134063265 1714134063365 OK +REQUEST wiq2.ico 1714134063264 1714134063429 OK +REQUEST main.4a961c5c.js 1714134063265 1714134063512 OK +USER LoginRecord START 1714134063707 +REQUEST request_0 1714134063706 1714134063792 OK +USER LoginRecord START 1714134063800 +REQUEST request_3 1714134063794 1714134063879 OK +REQUEST main.18e3ef94.css 1714134063793 1714134063883 OK +REQUEST request_1 1714134063793 1714134063891 OK +REQUEST request_2 1714134063793 1714134063893 OK +REQUEST request_0 1714134063800 1714134063899 OK +REQUEST wiq2.ico 1714134063793 1714134063959 OK +REQUEST request_2 1714134063901 1714134063985 OK +REQUEST main.18e3ef94.css 1714134063900 1714134063986 OK +REQUEST request_3 1714134063901 1714134063998 OK +REQUEST request_1 1714134063900 1714134063999 OK +REQUEST main.4a961c5c.js 1714134063793 1714134064042 OK +USER LoginRecord START 1714134064067 +REQUEST wiq2.ico 1714134063900 1714134064094 OK +REQUEST request_0 1714134064066 1714134064152 OK +REQUEST main.4a961c5c.js 1714134063900 1714134064188 OK +USER LoginRecord START 1714134064208 +REQUEST request_2 1714134064154 1714134064238 OK +REQUEST main.18e3ef94.css 1714134064153 1714134064238 OK +REQUEST request_1 1714134064153 1714134064250 OK +REQUEST request_3 1714134064154 1714134064253 OK +REQUEST request_0 1714134064207 1714134064293 OK +REQUEST wiq2.ico 1714134064153 1714134064321 OK +REQUEST request_3 1714134064294 1714134064378 OK +REQUEST main.18e3ef94.css 1714134064294 1714134064379 OK +REQUEST request_1 1714134064294 1714134064390 OK +REQUEST request_2 1714134064294 1714134064392 OK +USER LoginRecord START 1714134064415 +REQUEST main.4a961c5c.js 1714134064153 1714134064438 OK +REQUEST wiq2.ico 1714134064293 1714134064459 OK +REQUEST request_0 1714134064414 1714134064510 OK +REQUEST main.4a961c5c.js 1714134064294 1714134064582 OK +REQUEST request_1 1714134064512 1714134064596 OK +REQUEST request_2 1714134064512 1714134064596 OK +REQUEST request_3 1714134064512 1714134064612 OK +REQUEST main.18e3ef94.css 1714134064512 1714134064622 OK +REQUEST wiq2.ico 1714134064511 1714134064701 OK +REQUEST main.4a961c5c.js 1714134064511 1714134064763 OK +USER LoginRecord START 1714134065040 +REQUEST request_0 1714134065039 1714134065137 OK +REQUEST request_2 1714134065138 1714134065224 OK +REQUEST main.18e3ef94.css 1714134065138 1714134065225 OK +REQUEST request_1 1714134065138 1714134065234 OK +REQUEST request_3 1714134065138 1714134065238 OK +REQUEST wiq2.ico 1714134065137 1714134065326 OK +USER LoginRecord START 1714134065368 +REQUEST main.4a961c5c.js 1714134065138 1714134065433 OK +REQUEST request_0 1714134065367 1714134065467 OK +REQUEST request_3 1714134065468 1714134065553 OK +REQUEST request_1 1714134065468 1714134065554 OK +REQUEST request_2 1714134065468 1714134065554 OK +REQUEST main.18e3ef94.css 1714134065468 1714134065567 OK +REQUEST wiq2.ico 1714134065468 1714134065661 OK +REQUEST main.4a961c5c.js 1714134065468 1714134065717 OK +USER LoginRecord START 1714134065867 +REQUEST request_0 1714134065867 1714134065971 OK +USER LoginRecord START 1714134066022 +REQUEST request_2 1714134065973 1714134066058 OK +REQUEST request_1 1714134065972 1714134066058 OK +REQUEST request_3 1714134065973 1714134066073 OK +REQUEST main.18e3ef94.css 1714134065972 1714134066075 OK +REQUEST request_0 1714134066022 1714134066118 OK +REQUEST wiq2.ico 1714134065972 1714134066164 OK +REQUEST main.18e3ef94.css 1714134066119 1714134066205 OK +REQUEST request_3 1714134066120 1714134066205 OK +REQUEST request_1 1714134066120 1714134066217 OK +REQUEST request_2 1714134066120 1714134066218 OK +REQUEST main.4a961c5c.js 1714134065972 1714134066223 OK +USER LoginRecord START 1714134066271 +REQUEST wiq2.ico 1714134066119 1714134066309 OK +REQUEST request_0 1714134066271 1714134066368 OK +REQUEST main.4a961c5c.js 1714134066119 1714134066371 OK +REQUEST request_2 1714134066369 1714134066454 OK +REQUEST main.18e3ef94.css 1714134066369 1714134066454 OK +REQUEST request_1 1714134066369 1714134066455 OK +REQUEST request_3 1714134066369 1714134066467 OK +REQUEST wiq2.ico 1714134066368 1714134066561 OK +REQUEST main.4a961c5c.js 1714134066368 1714134066655 OK +USER LoginRecord START 1714134066896 +USER LoginRecord START 1714134066957 +USER LoginRecord START 1714134066957 +USER LoginRecord START 1714134066973 +REQUEST request_0 1714134066896 1714134066993 OK +REQUEST request_0 1714134066957 1714134067041 OK +REQUEST request_0 1714134066957 1714134067054 OK +REQUEST request_0 1714134066973 1714134067071 OK +REQUEST request_3 1714134066995 1714134067078 OK +REQUEST request_2 1714134066995 1714134067079 OK +REQUEST main.18e3ef94.css 1714134066994 1714134067080 OK +USER LoginRecord START 1714134067081 +REQUEST request_1 1714134066994 1714134067093 OK +REQUEST request_3 1714134067042 1714134067126 OK +REQUEST request_2 1714134067042 1714134067128 OK +REQUEST main.18e3ef94.css 1714134067042 1714134067128 OK +REQUEST request_1 1714134067055 1714134067137 OK +REQUEST request_1 1714134067042 1714134067142 OK +REQUEST request_2 1714134067055 1714134067157 OK +REQUEST request_3 1714134067056 1714134067158 OK +REQUEST main.18e3ef94.css 1714134067055 1714134067158 OK +REQUEST request_2 1714134067072 1714134067160 OK +REQUEST main.18e3ef94.css 1714134067071 1714134067163 OK +REQUEST request_1 1714134067072 1714134067163 OK +REQUEST request_0 1714134067081 1714134067165 OK +REQUEST request_3 1714134067072 1714134067169 OK +REQUEST wiq2.ico 1714134066994 1714134067184 OK +REQUEST wiq2.ico 1714134067042 1714134067208 OK +REQUEST wiq2.ico 1714134067055 1714134067246 OK +REQUEST request_2 1714134067166 1714134067250 OK +REQUEST main.18e3ef94.css 1714134067166 1714134067252 OK +REQUEST wiq2.ico 1714134067071 1714134067261 OK +REQUEST request_1 1714134067166 1714134067263 OK +REQUEST request_3 1714134067167 1714134067264 OK +REQUEST main.4a961c5c.js 1714134066994 1714134067282 OK +REQUEST main.4a961c5c.js 1714134067055 1714134067309 OK +REQUEST wiq2.ico 1714134067166 1714134067328 OK +REQUEST main.4a961c5c.js 1714134067042 1714134067329 OK +USER LoginRecord START 1714134067346 +REQUEST main.4a961c5c.js 1714134067071 1714134067361 OK +REQUEST request_0 1714134067346 1714134067430 OK +REQUEST main.4a961c5c.js 1714134067166 1714134067460 OK +REQUEST request_2 1714134067431 1714134067515 OK +REQUEST request_3 1714134067431 1714134067528 OK +REQUEST main.18e3ef94.css 1714134067431 1714134067529 OK +REQUEST request_1 1714134067431 1714134067530 OK +REQUEST wiq2.ico 1714134067431 1714134067594 OK +USER LoginRecord START 1714134067624 +REQUEST request_0 1714134067623 1714134067708 OK +REQUEST main.4a961c5c.js 1714134067431 1714134067721 OK +REQUEST main.18e3ef94.css 1714134067709 1714134067793 OK +REQUEST request_3 1714134067710 1714134067794 OK +REQUEST request_2 1714134067710 1714134067805 OK +REQUEST request_1 1714134067709 1714134067816 OK +REQUEST wiq2.ico 1714134067709 1714134067876 OK +USER LoginRecord START 1714134067936 +REQUEST main.4a961c5c.js 1714134067709 1714134068004 OK +REQUEST request_0 1714134067935 1714134068019 OK +REQUEST request_1 1714134068020 1714134068104 OK +REQUEST request_2 1714134068021 1714134068105 OK +REQUEST main.18e3ef94.css 1714134068020 1714134068107 OK +REQUEST request_3 1714134068021 1714134068117 OK +USER LoginRecord START 1714134068124 +REQUEST wiq2.ico 1714134068020 1714134068184 OK +REQUEST request_0 1714134068124 1714134068207 OK +REQUEST request_2 1714134068208 1714134068292 OK +REQUEST main.18e3ef94.css 1714134068208 1714134068292 OK +REQUEST request_1 1714134068208 1714134068305 OK +REQUEST request_3 1714134068209 1714134068305 OK +REQUEST main.4a961c5c.js 1714134068020 1714134068310 OK +REQUEST wiq2.ico 1714134068208 1714134068371 OK +USER LoginRecord START 1714134068376 +REQUEST request_0 1714134068376 1714134068461 OK +REQUEST main.4a961c5c.js 1714134068208 1714134068496 OK +USER LoginRecord START 1714134068500 +REQUEST request_3 1714134068462 1714134068546 OK +REQUEST main.18e3ef94.css 1714134068462 1714134068546 OK +REQUEST request_1 1714134068462 1714134068558 OK +REQUEST request_2 1714134068462 1714134068559 OK +REQUEST request_0 1714134068500 1714134068583 OK +REQUEST wiq2.ico 1714134068461 1714134068627 OK +REQUEST request_3 1714134068584 1714134068669 OK +REQUEST main.18e3ef94.css 1714134068583 1714134068669 OK +REQUEST request_2 1714134068584 1714134068682 OK +REQUEST request_1 1714134068584 1714134068682 OK +REQUEST wiq2.ico 1714134068583 1714134068746 OK +REQUEST main.4a961c5c.js 1714134068462 1714134068752 OK +REQUEST main.4a961c5c.js 1714134068583 1714134068876 OK +USER LoginRecord START 1714134068887 +USER LoginRecord START 1714134068918 +USER LoginRecord START 1714134068949 +REQUEST request_0 1714134068886 1714134068984 OK +REQUEST request_0 1714134068917 1714134069016 OK +USER LoginRecord START 1714134069027 +REQUEST request_0 1714134068949 1714134069048 OK +REQUEST request_1 1714134068985 1714134069069 OK +REQUEST request_2 1714134068985 1714134069069 OK +REQUEST main.18e3ef94.css 1714134068985 1714134069083 OK +REQUEST request_3 1714134068985 1714134069084 OK +REQUEST request_2 1714134069017 1714134069101 OK +REQUEST main.18e3ef94.css 1714134069017 1714134069103 OK +REQUEST request_1 1714134069017 1714134069103 OK +REQUEST request_3 1714134069017 1714134069116 OK +REQUEST request_0 1714134069026 1714134069123 OK +REQUEST request_2 1714134069049 1714134069133 OK +REQUEST main.18e3ef94.css 1714134069049 1714134069135 OK +REQUEST request_1 1714134069049 1714134069147 OK +REQUEST request_3 1714134069049 1714134069149 OK +REQUEST wiq2.ico 1714134068984 1714134069173 OK +REQUEST wiq2.ico 1714134069017 1714134069209 OK +REQUEST request_3 1714134069124 1714134069210 OK +REQUEST request_1 1714134069124 1714134069224 OK +REQUEST request_2 1714134069124 1714134069224 OK +REQUEST main.18e3ef94.css 1714134069124 1714134069225 OK +REQUEST main.4a961c5c.js 1714134068985 1714134069233 OK +REQUEST wiq2.ico 1714134069049 1714134069241 OK +USER LoginRecord START 1714134069260 +REQUEST main.4a961c5c.js 1714134069017 1714134069265 OK +REQUEST main.4a961c5c.js 1714134069049 1714134069300 OK +REQUEST wiq2.ico 1714134069124 1714134069314 OK +REQUEST request_0 1714134069259 1714134069343 OK +REQUEST main.4a961c5c.js 1714134069124 1714134069375 OK +USER LoginRecord START 1714134069385 +REQUEST main.18e3ef94.css 1714134069343 1714134069431 OK +REQUEST request_2 1714134069344 1714134069432 OK +REQUEST request_1 1714134069343 1714134069442 OK +REQUEST request_3 1714134069344 1714134069442 OK +REQUEST request_0 1714134069385 1714134069484 OK +REQUEST wiq2.ico 1714134069343 1714134069509 OK +REQUEST main.18e3ef94.css 1714134069485 1714134069569 OK +REQUEST request_3 1714134069485 1714134069570 OK +REQUEST request_2 1714134069485 1714134069570 OK +REQUEST request_1 1714134069485 1714134069584 OK +REQUEST main.4a961c5c.js 1714134069343 1714134069636 OK +REQUEST wiq2.ico 1714134069484 1714134069678 OK +USER LoginRecord START 1714134069713 +REQUEST main.4a961c5c.js 1714134069485 1714134069777 OK +REQUEST request_0 1714134069712 1714134069796 OK +REQUEST request_2 1714134069798 1714134069881 OK +REQUEST request_3 1714134069798 1714134069882 OK +REQUEST request_1 1714134069797 1714134069895 OK +REQUEST main.18e3ef94.css 1714134069797 1714134069901 OK +REQUEST wiq2.ico 1714134069797 1714134069962 OK +REQUEST main.4a961c5c.js 1714134069797 1714134070090 OK +USER LoginRecord START 1714134070255 +REQUEST request_0 1714134070255 1714134070354 OK +REQUEST main.18e3ef94.css 1714134070355 1714134070441 OK +REQUEST request_1 1714134070355 1714134070442 OK +REQUEST request_2 1714134070355 1714134070442 OK +REQUEST request_3 1714134070355 1714134070453 OK +REQUEST wiq2.ico 1714134070355 1714134070546 OK +REQUEST main.4a961c5c.js 1714134070355 1714134070641 OK +USER LoginRecord START 1714134070705 +USER LoginRecord START 1714134070735 +REQUEST request_0 1714134070704 1714134070800 OK +REQUEST request_0 1714134070735 1714134070819 OK +REQUEST request_1 1714134070801 1714134070887 OK +REQUEST main.18e3ef94.css 1714134070801 1714134070887 OK +REQUEST request_3 1714134070802 1714134070899 OK +REQUEST request_2 1714134070802 1714134070901 OK +REQUEST request_2 1714134070820 1714134070902 OK +REQUEST main.18e3ef94.css 1714134070819 1714134070905 OK +REQUEST request_3 1714134070820 1714134070917 OK +REQUEST request_1 1714134070819 1714134070917 OK +REQUEST wiq2.ico 1714134070819 1714134070981 OK +REQUEST wiq2.ico 1714134070801 1714134070989 OK +REQUEST main.4a961c5c.js 1714134070801 1714134071053 OK +REQUEST main.4a961c5c.js 1714134070819 1714134071106 OK +USER LoginRecord START 1714134071108 +USER LoginRecord START 1714134071171 +REQUEST request_0 1714134071108 1714134071191 OK +USER LoginRecord START 1714134071203 +REQUEST request_0 1714134071171 1714134071267 OK +REQUEST request_3 1714134071192 1714134071276 OK +REQUEST main.18e3ef94.css 1714134071192 1714134071278 OK +USER LoginRecord START 1714134071282 +REQUEST request_2 1714134071192 1714134071301 OK +REQUEST request_1 1714134071192 1714134071302 OK +REQUEST request_0 1714134071203 1714134071302 OK +USER LoginRecord START 1714134071314 +USER LoginRecord START 1714134071331 +REQUEST request_2 1714134071269 1714134071353 OK +REQUEST request_1 1714134071269 1714134071354 OK +REQUEST main.18e3ef94.css 1714134071268 1714134071355 OK +REQUEST wiq2.ico 1714134071192 1714134071357 OK +REQUEST request_3 1714134071269 1714134071372 OK +REQUEST request_0 1714134071282 1714134071381 OK +REQUEST request_1 1714134071303 1714134071387 OK +REQUEST main.18e3ef94.css 1714134071302 1714134071387 OK +REQUEST request_2 1714134071303 1714134071399 OK +REQUEST request_3 1714134071303 1714134071402 OK +REQUEST request_0 1714134071314 1714134071410 OK +REQUEST request_0 1714134071330 1714134071414 OK +REQUEST main.4a961c5c.js 1714134071192 1714134071443 OK +REQUEST wiq2.ico 1714134071268 1714134071457 OK +REQUEST request_3 1714134071382 1714134071466 OK +REQUEST request_1 1714134071381 1714134071480 OK +REQUEST request_2 1714134071382 1714134071481 OK +REQUEST main.18e3ef94.css 1714134071381 1714134071481 OK +REQUEST wiq2.ico 1714134071302 1714134071491 OK +REQUEST main.18e3ef94.css 1714134071411 1714134071496 OK +REQUEST request_2 1714134071411 1714134071496 OK +REQUEST request_3 1714134071415 1714134071510 OK +REQUEST request_3 1714134071411 1714134071510 OK +REQUEST request_1 1714134071411 1714134071511 OK +REQUEST request_2 1714134071415 1714134071513 OK +REQUEST request_1 1714134071414 1714134071513 OK +REQUEST main.18e3ef94.css 1714134071414 1714134071515 OK +USER LoginRecord START 1714134071534 +REQUEST main.4a961c5c.js 1714134071302 1714134071548 OK +REQUEST main.4a961c5c.js 1714134071268 1714134071554 OK +REQUEST wiq2.ico 1714134071381 1714134071575 OK +REQUEST wiq2.ico 1714134071414 1714134071575 OK +REQUEST wiq2.ico 1714134071411 1714134071599 OK +REQUEST request_0 1714134071534 1714134071618 OK +USER LoginRecord START 1714134071630 +REQUEST main.4a961c5c.js 1714134071381 1714134071631 OK +REQUEST main.4a961c5c.js 1714134071411 1714134071665 OK +REQUEST request_3 1714134071619 1714134071700 OK +REQUEST request_1 1714134071619 1714134071702 OK +REQUEST main.4a961c5c.js 1714134071414 1714134071705 OK +REQUEST request_0 1714134071630 1714134071712 OK +REQUEST request_2 1714134071619 1714134071716 OK +REQUEST main.18e3ef94.css 1714134071618 1714134071717 OK +USER LoginRecord START 1714134071772 +REQUEST wiq2.ico 1714134071618 1714134071782 OK +REQUEST request_1 1714134071713 1714134071797 OK +REQUEST main.18e3ef94.css 1714134071713 1714134071798 OK +REQUEST request_3 1714134071713 1714134071811 OK +REQUEST request_2 1714134071713 1714134071812 OK +REQUEST request_0 1714134071772 1714134071855 OK +REQUEST main.4a961c5c.js 1714134071618 1714134071868 OK +REQUEST wiq2.ico 1714134071712 1714134071876 OK +REQUEST main.18e3ef94.css 1714134071855 1714134071939 OK +REQUEST request_3 1714134071856 1714134071940 OK +REQUEST request_2 1714134071856 1714134071954 OK +REQUEST request_1 1714134071855 1714134071955 OK +REQUEST main.4a961c5c.js 1714134071712 1714134072004 OK +REQUEST wiq2.ico 1714134071855 1714134072019 OK +USER LoginRecord START 1714134072098 +REQUEST main.4a961c5c.js 1714134071855 1714134072147 OK +REQUEST request_0 1714134072098 1714134072182 OK +REQUEST request_3 1714134072184 1714134072268 OK +REQUEST main.18e3ef94.css 1714134072183 1714134072282 OK +REQUEST request_1 1714134072183 1714134072282 OK +REQUEST request_2 1714134072183 1714134072282 OK +USER LoginRecord START 1714134072302 +REQUEST wiq2.ico 1714134072183 1714134072348 OK +REQUEST request_0 1714134072302 1714134072387 OK +REQUEST main.4a961c5c.js 1714134072183 1714134072429 OK +REQUEST request_3 1714134072388 1714134072474 OK +REQUEST request_2 1714134072388 1714134072486 OK +REQUEST main.18e3ef94.css 1714134072388 1714134072488 OK +REQUEST request_1 1714134072388 1714134072488 OK +USER LoginRecord START 1714134072538 +REQUEST wiq2.ico 1714134072388 1714134072554 OK +REQUEST request_0 1714134072538 1714134072635 OK +REQUEST main.4a961c5c.js 1714134072388 1714134072637 OK +REQUEST request_2 1714134072637 1714134072720 OK +REQUEST request_3 1714134072637 1714134072722 OK +REQUEST request_1 1714134072636 1714134072734 OK +REQUEST main.18e3ef94.css 1714134072636 1714134072735 OK +REQUEST wiq2.ico 1714134072636 1714134072828 OK +REQUEST main.4a961c5c.js 1714134072636 1714134072883 OK +USER LoginRecord START 1714134073705 +REQUEST request_0 1714134073705 1714134073790 OK +USER LoginRecord START 1714134073815 +REQUEST request_1 1714134073791 1714134073875 OK +REQUEST request_2 1714134073791 1714134073889 OK +REQUEST request_3 1714134073791 1714134073891 OK +REQUEST main.18e3ef94.css 1714134073791 1714134073894 OK +REQUEST request_0 1714134073815 1714134073914 OK +REQUEST wiq2.ico 1714134073791 1714134073957 OK +REQUEST request_1 1714134073914 1714134073998 OK +REQUEST request_2 1714134073915 1714134073999 OK +USER LoginRecord START 1714134074002 +USER LoginRecord START 1714134074002 +REQUEST main.18e3ef94.css 1714134073914 1714134074012 OK +REQUEST request_3 1714134073915 1714134074012 OK +REQUEST main.4a961c5c.js 1714134073791 1714134074042 OK +REQUEST request_0 1714134074002 1714134074085 OK +REQUEST request_0 1714134074002 1714134074098 OK +REQUEST wiq2.ico 1714134073914 1714134074108 OK +REQUEST main.4a961c5c.js 1714134073914 1714134074161 OK +REQUEST request_1 1714134074085 1714134074169 OK +REQUEST request_2 1714134074086 1714134074184 OK +REQUEST request_1 1714134074099 1714134074185 OK +REQUEST request_3 1714134074086 1714134074185 OK +REQUEST request_3 1714134074099 1714134074185 OK +REQUEST main.18e3ef94.css 1714134074085 1714134074187 OK +REQUEST request_2 1714134074099 1714134074198 OK +REQUEST main.18e3ef94.css 1714134074099 1714134074199 OK +USER LoginRecord START 1714134074222 +REQUEST wiq2.ico 1714134074085 1714134074248 OK +REQUEST wiq2.ico 1714134074098 1714134074290 OK +REQUEST request_0 1714134074221 1714134074304 OK +REQUEST main.4a961c5c.js 1714134074085 1714134074334 OK +USER LoginRecord START 1714134074349 +REQUEST main.4a961c5c.js 1714134074099 1714134074350 OK +USER LoginRecord START 1714134074390 +REQUEST request_1 1714134074305 1714134074398 OK +REQUEST main.18e3ef94.css 1714134074305 1714134074400 OK +REQUEST request_3 1714134074306 1714134074401 OK +REQUEST request_2 1714134074305 1714134074404 OK +USER LoginRecord START 1714134074409 +REQUEST request_0 1714134074348 1714134074430 OK +USER LoginRecord START 1714134074441 +USER LoginRecord START 1714134074456 +REQUEST wiq2.ico 1714134074305 1714134074468 OK +REQUEST request_0 1714134074389 1714134074485 OK +REQUEST request_0 1714134074409 1714134074492 OK +USER LoginRecord START 1714134074504 +REQUEST request_1 1714134074431 1714134074514 OK +REQUEST request_3 1714134074432 1714134074516 OK +REQUEST request_2 1714134074431 1714134074532 OK +REQUEST main.18e3ef94.css 1714134074431 1714134074533 OK +REQUEST request_0 1714134074441 1714134074540 OK +REQUEST request_0 1714134074456 1714134074540 OK +REQUEST main.18e3ef94.css 1714134074486 1714134074571 OK +REQUEST request_2 1714134074486 1714134074571 OK +REQUEST main.18e3ef94.css 1714134074493 1714134074578 OK +REQUEST request_2 1714134074493 1714134074579 OK +REQUEST request_1 1714134074486 1714134074584 OK +REQUEST request_3 1714134074486 1714134074586 OK +REQUEST request_1 1714134074493 1714134074590 OK +REQUEST request_3 1714134074493 1714134074592 OK +REQUEST wiq2.ico 1714134074431 1714134074593 OK +REQUEST main.4a961c5c.js 1714134074305 1714134074594 OK +REQUEST request_0 1714134074504 1714134074606 OK +REQUEST request_3 1714134074541 1714134074624 OK +REQUEST request_1 1714134074541 1714134074624 OK +REQUEST request_3 1714134074541 1714134074626 OK +REQUEST request_1 1714134074541 1714134074629 OK +REQUEST main.18e3ef94.css 1714134074541 1714134074630 OK +REQUEST request_2 1714134074541 1714134074640 OK +REQUEST request_2 1714134074541 1714134074642 OK +REQUEST main.18e3ef94.css 1714134074541 1714134074643 OK +REQUEST wiq2.ico 1714134074493 1714134074655 OK +REQUEST wiq2.ico 1714134074486 1714134074675 OK +REQUEST main.4a961c5c.js 1714134074431 1714134074676 OK +REQUEST main.18e3ef94.css 1714134074607 1714134074691 OK +REQUEST request_3 1714134074607 1714134074694 OK +REQUEST wiq2.ico 1714134074541 1714134074706 OK +REQUEST request_2 1714134074607 1714134074714 OK +REQUEST request_1 1714134074607 1714134074714 OK +REQUEST wiq2.ico 1714134074541 1714134074732 OK +REQUEST main.4a961c5c.js 1714134074486 1714134074737 OK +USER LoginRecord START 1714134074784 +REQUEST main.4a961c5c.js 1714134074493 1714134074784 OK +REQUEST main.4a961c5c.js 1714134074541 1714134074790 OK +REQUEST main.4a961c5c.js 1714134074541 1714134074790 OK +REQUEST wiq2.ico 1714134074606 1714134074800 OK +USER LoginRecord START 1714134074830 +REQUEST main.4a961c5c.js 1714134074607 1714134074857 OK +REQUEST request_0 1714134074784 1714134074868 OK +REQUEST request_0 1714134074830 1714134074929 OK +REQUEST request_3 1714134074869 1714134074952 OK +REQUEST request_2 1714134074869 1714134074952 OK +REQUEST main.18e3ef94.css 1714134074869 1714134074953 OK +REQUEST request_1 1714134074869 1714134074966 OK +REQUEST main.18e3ef94.css 1714134074929 1714134075014 OK +REQUEST request_2 1714134074930 1714134075015 OK +REQUEST request_3 1714134074930 1714134075027 OK +REQUEST request_1 1714134074929 1714134075030 OK +REQUEST wiq2.ico 1714134074869 1714134075034 OK +USER LoginRecord START 1714134075095 +USER LoginRecord START 1714134075110 +REQUEST wiq2.ico 1714134074929 1714134075124 OK +REQUEST main.4a961c5c.js 1714134074869 1714134075161 OK +REQUEST request_0 1714134075095 1714134075193 OK +REQUEST request_0 1714134075110 1714134075195 OK +REQUEST main.4a961c5c.js 1714134074929 1714134075215 OK +REQUEST request_3 1714134075194 1714134075278 OK +REQUEST request_1 1714134075194 1714134075279 OK +REQUEST request_3 1714134075196 1714134075280 OK +REQUEST request_2 1714134075194 1714134075296 OK +REQUEST main.18e3ef94.css 1714134075194 1714134075296 OK +REQUEST request_1 1714134075196 1714134075297 OK +REQUEST request_2 1714134075196 1714134075297 OK +REQUEST main.18e3ef94.css 1714134075196 1714134075299 OK +REQUEST wiq2.ico 1714134075196 1714134075362 OK +REQUEST wiq2.ico 1714134075193 1714134075385 OK +REQUEST main.4a961c5c.js 1714134075193 1714134075446 OK +REQUEST main.4a961c5c.js 1714134075196 1714134075485 OK +USER LoginRecord START 1714134075500 +REQUEST request_0 1714134075500 1714134075584 OK +REQUEST request_2 1714134075585 1714134075671 OK +REQUEST main.18e3ef94.css 1714134075585 1714134075671 OK +REQUEST request_3 1714134075586 1714134075683 OK +REQUEST request_1 1714134075585 1714134075683 OK +REQUEST wiq2.ico 1714134075585 1714134075749 OK +USER LoginRecord START 1714134075826 +USER LoginRecord START 1714134075872 +REQUEST main.4a961c5c.js 1714134075585 1714134075872 OK +REQUEST request_0 1714134075826 1714134075922 OK +REQUEST request_0 1714134075872 1714134075967 OK +REQUEST request_1 1714134075923 1714134076014 OK +REQUEST request_2 1714134075923 1714134076021 OK +REQUEST request_3 1714134075923 1714134076021 OK +REQUEST main.18e3ef94.css 1714134075923 1714134076023 OK +REQUEST request_2 1714134075968 1714134076052 OK +REQUEST request_1 1714134075968 1714134076052 OK +REQUEST request_3 1714134075968 1714134076066 OK +REQUEST main.18e3ef94.css 1714134075968 1714134076066 OK +REQUEST wiq2.ico 1714134075923 1714134076112 OK +REQUEST wiq2.ico 1714134075968 1714134076159 OK +REQUEST main.4a961c5c.js 1714134075923 1714134076176 OK +REQUEST main.4a961c5c.js 1714134075968 1714134076219 OK +USER LoginRecord START 1714134076232 +REQUEST request_0 1714134076231 1714134076329 OK +REQUEST request_2 1714134076330 1714134076413 OK +REQUEST request_1 1714134076330 1714134076413 OK +REQUEST request_3 1714134076330 1714134076427 OK +REQUEST main.18e3ef94.css 1714134076330 1714134076429 OK +REQUEST wiq2.ico 1714134076329 1714134076520 OK +REQUEST main.4a961c5c.js 1714134076330 1714134076580 OK +USER LoginRecord START 1714134076696 +REQUEST request_0 1714134076696 1714134076779 OK +REQUEST request_3 1714134076780 1714134076868 OK +REQUEST request_1 1714134076780 1714134076878 OK +REQUEST request_2 1714134076780 1714134076879 OK +REQUEST main.18e3ef94.css 1714134076780 1714134076879 OK +REQUEST wiq2.ico 1714134076780 1714134076941 OK +REQUEST main.4a961c5c.js 1714134076780 1714134077024 OK +USER LoginRecord START 1714134077393 +REQUEST request_0 1714134077393 1714134077498 OK +REQUEST main.18e3ef94.css 1714134077499 1714134077583 OK +REQUEST request_3 1714134077499 1714134077584 OK +REQUEST request_2 1714134077499 1714134077597 OK +REQUEST request_1 1714134077499 1714134077597 OK +USER LoginRecord START 1714134077626 +REQUEST wiq2.ico 1714134077499 1714134077689 OK +REQUEST request_0 1714134077626 1714134077710 OK +REQUEST main.4a961c5c.js 1714134077499 1714134077787 OK +REQUEST main.18e3ef94.css 1714134077710 1714134077796 OK +REQUEST request_1 1714134077710 1714134077807 OK +REQUEST request_3 1714134077711 1714134077808 OK +REQUEST request_2 1714134077711 1714134077808 OK +REQUEST wiq2.ico 1714134077710 1714134077877 OK +REQUEST request_4 1714134077906 1714134077942 OK +USER LoginRecord START 1714134077982 +REQUEST main.4a961c5c.js 1714134077710 1714134078000 OK +REQUEST request_0 1714134077982 1714134078080 OK +REQUEST request_1 1714134078081 1714134078166 OK +REQUEST request_2 1714134078081 1714134078178 OK +REQUEST main.18e3ef94.css 1714134078081 1714134078180 OK +REQUEST request_3 1714134078081 1714134078181 OK +REQUEST wiq2.ico 1714134078081 1714134078274 OK +REQUEST request_4 1714134078246 1714134078282 OK +REQUEST request_4 1714134078278 1714134078315 OK +REQUEST main.4a961c5c.js 1714134078081 1714134078329 OK +USER LoginRecord START 1714134078947 +REQUEST request_4 1714134078916 1714134078952 OK +REQUEST request_4 1714134078931 1714134078966 OK +REQUEST request_0 1714134078947 1714134079030 OK +REQUEST main.18e3ef94.css 1714134079031 1714134079116 OK +REQUEST request_2 1714134079031 1714134079116 OK +REQUEST request_3 1714134079031 1714134079129 OK +REQUEST request_1 1714134079031 1714134079129 OK +REQUEST request_4 1714134079102 1714134079139 OK +USER LoginRecord START 1714134079181 +REQUEST wiq2.ico 1714134079030 1714134079193 OK +REQUEST main.4a961c5c.js 1714134079031 1714134079276 OK +REQUEST request_0 1714134079181 1714134079277 OK +REQUEST request_1 1714134079277 1714134079359 OK +REQUEST main.18e3ef94.css 1714134079277 1714134079375 OK +REQUEST request_2 1714134079278 1714134079375 OK +REQUEST request_3 1714134079278 1714134079375 OK +REQUEST wiq2.ico 1714134079277 1714134079467 OK +REQUEST request_4 1714134079478 1714134079515 OK +REQUEST main.4a961c5c.js 1714134079277 1714134079524 OK +USER LoginRecord START 1714134079571 +REQUEST request_0 1714134079570 1714134079667 OK +REQUEST request_2 1714134079668 1714134079752 OK +REQUEST main.18e3ef94.css 1714134079668 1714134079753 OK +REQUEST request_1 1714134079668 1714134079764 OK +REQUEST request_3 1714134079668 1714134079766 OK +REQUEST wiq2.ico 1714134079668 1714134079858 OK +REQUEST request_4 1714134079867 1714134079902 OK +REQUEST main.4a961c5c.js 1714134079668 1714134079953 OK +REQUEST request_4 1714134080023 1714134080060 OK +REQUEST request_4 1714134080224 1714134080262 OK +REQUEST request_4 1714134080285 1714134080323 OK +REQUEST request_4 1714134080473 1714134080509 OK +USER LoginRecord START 1714134080597 +REQUEST request_0 1714134080597 1714134080694 OK +USER LoginRecord START 1714134080737 +REQUEST request_2 1714134080695 1714134080777 OK +REQUEST main.18e3ef94.css 1714134080694 1714134080779 OK +REQUEST request_1 1714134080694 1714134080779 OK +REQUEST request_3 1714134080695 1714134080791 OK +REQUEST request_0 1714134080736 1714134080818 OK +REQUEST wiq2.ico 1714134080694 1714134080885 OK +REQUEST request_3 1714134080822 1714134080907 OK +REQUEST request_1 1714134080822 1714134080919 OK +REQUEST request_2 1714134080822 1714134080921 OK +REQUEST main.18e3ef94.css 1714134080821 1714134080923 OK +REQUEST request_4 1714134080927 1714134080982 OK +REQUEST main.4a961c5c.js 1714134080694 1714134080984 OK +REQUEST wiq2.ico 1714134080821 1714134080984 OK +REQUEST request_4 1714134080973 1714134081009 OK +USER LoginRecord START 1714134081036 +USER LoginRecord START 1714134081036 +REQUEST main.4a961c5c.js 1714134080821 1714134081073 OK +REQUEST request_0 1714134081035 1714134081118 OK +REQUEST request_0 1714134081035 1714134081130 OK +USER LoginRecord START 1714134081145 +REQUEST request_4 1714134081129 1714134081166 OK +REQUEST main.18e3ef94.css 1714134081119 1714134081206 OK +REQUEST request_1 1714134081131 1714134081215 OK +REQUEST request_1 1714134081119 1714134081217 OK +REQUEST request_2 1714134081119 1714134081217 OK +REQUEST request_3 1714134081119 1714134081218 OK +REQUEST request_0 1714134081145 1714134081227 OK +REQUEST request_2 1714134081131 1714134081229 OK +REQUEST main.18e3ef94.css 1714134081131 1714134081229 OK +REQUEST request_3 1714134081132 1714134081230 OK +REQUEST wiq2.ico 1714134081119 1714134081285 OK +REQUEST request_1 1714134081227 1714134081309 OK +REQUEST main.18e3ef94.css 1714134081227 1714134081316 OK +REQUEST wiq2.ico 1714134081131 1714134081319 OK +REQUEST request_3 1714134081228 1714134081325 OK +REQUEST request_2 1714134081228 1714134081325 OK +REQUEST main.4a961c5c.js 1714134081119 1714134081366 OK +REQUEST wiq2.ico 1714134081227 1714134081389 OK +REQUEST main.4a961c5c.js 1714134081131 1714134081417 OK +REQUEST main.4a961c5c.js 1714134081227 1714134081481 OK +REQUEST request_4 1714134081517 1714134081554 OK +USER LoginRecord START 1714134081564 +USER LoginRecord START 1714134081580 +REQUEST request_0 1714134081564 1714134081662 OK +REQUEST request_0 1714134081580 1714134081664 OK +REQUEST request_1 1714134081663 1714134081745 OK +REQUEST main.18e3ef94.css 1714134081663 1714134081747 OK +REQUEST request_3 1714134081664 1714134081748 OK +REQUEST main.18e3ef94.css 1714134081664 1714134081754 OK +REQUEST request_2 1714134081664 1714134081762 OK +REQUEST request_3 1714134081663 1714134081762 OK +REQUEST request_2 1714134081663 1714134081763 OK +REQUEST request_1 1714134081664 1714134081763 OK +REQUEST wiq2.ico 1714134081664 1714134081834 OK +REQUEST wiq2.ico 1714134081663 1714134081857 OK +REQUEST main.4a961c5c.js 1714134081664 1714134081914 OK +REQUEST main.4a961c5c.js 1714134081663 1714134081916 OK +REQUEST request_4 1714134082046 1714134082083 OK +USER LoginRecord START 1714134082201 +REQUEST request_4 1714134082200 1714134082240 OK +REQUEST request_0 1714134082200 1714134082285 OK +REQUEST request_1 1714134082285 1714134082369 OK +REQUEST main.18e3ef94.css 1714134082285 1714134082370 OK +REQUEST request_3 1714134082286 1714134082370 OK +REQUEST request_2 1714134082286 1714134082384 OK +REQUEST wiq2.ico 1714134082285 1714134082451 OK +USER LoginRecord START 1714134082464 +REQUEST request_4 1714134082448 1714134082485 OK +USER LoginRecord START 1714134082511 +REQUEST request_0 1714134082464 1714134082562 OK +REQUEST main.4a961c5c.js 1714134082285 1714134082575 OK +REQUEST request_0 1714134082511 1714134082593 OK +REQUEST request_4 1714134082590 1714134082628 OK +REQUEST request_1 1714134082562 1714134082644 OK +REQUEST request_3 1714134082563 1714134082645 OK +USER LoginRecord START 1714134082652 +REQUEST main.18e3ef94.css 1714134082562 1714134082659 OK +REQUEST request_2 1714134082562 1714134082659 OK +REQUEST request_1 1714134082594 1714134082677 OK +REQUEST request_2 1714134082594 1714134082679 OK +REQUEST main.18e3ef94.css 1714134082594 1714134082679 OK +REQUEST request_3 1714134082594 1714134082691 OK +REQUEST request_0 1714134082652 1714134082735 OK +USER LoginRecord START 1714134082745 +REQUEST wiq2.ico 1714134082562 1714134082754 OK +REQUEST wiq2.ico 1714134082594 1714134082756 OK +REQUEST main.4a961c5c.js 1714134082562 1714134082810 OK +REQUEST request_4 1714134082775 1714134082811 OK +REQUEST request_3 1714134082736 1714134082819 OK +REQUEST request_1 1714134082736 1714134082834 OK +REQUEST main.18e3ef94.css 1714134082736 1714134082834 OK +REQUEST request_2 1714134082736 1714134082834 OK +REQUEST request_0 1714134082745 1714134082842 OK +REQUEST main.4a961c5c.js 1714134082594 1714134082886 OK +REQUEST wiq2.ico 1714134082736 1714134082900 OK +REQUEST request_3 1714134082843 1714134082928 OK +REQUEST request_2 1714134082843 1714134082928 OK +REQUEST main.18e3ef94.css 1714134082843 1714134082929 OK +REQUEST request_1 1714134082843 1714134082942 OK +USER LoginRecord START 1714134082962 +REQUEST main.4a961c5c.js 1714134082736 1714134082982 OK +REQUEST wiq2.ico 1714134082842 1714134083035 OK +REQUEST request_0 1714134082962 1714134083045 OK +USER LoginRecord START 1714134083071 +REQUEST request_1 1714134083046 1714134083129 OK +REQUEST request_3 1714134083046 1714134083129 OK +REQUEST main.4a961c5c.js 1714134082842 1714134083134 OK +REQUEST main.18e3ef94.css 1714134083046 1714134083144 OK +REQUEST request_2 1714134083046 1714134083144 OK +REQUEST request_0 1714134083071 1714134083155 OK +REQUEST wiq2.ico 1714134083046 1714134083208 OK +REQUEST request_1 1714134083156 1714134083240 OK +REQUEST request_2 1714134083156 1714134083240 OK +REQUEST request_3 1714134083156 1714134083241 OK +REQUEST main.18e3ef94.css 1714134083156 1714134083259 OK +REQUEST wiq2.ico 1714134083156 1714134083317 OK +REQUEST main.4a961c5c.js 1714134083046 1714134083334 OK +REQUEST main.4a961c5c.js 1714134083156 1714134083451 OK +USER LoginRecord START 1714134083480 +REQUEST request_4 1714134083448 1714134083485 OK +REQUEST request_0 1714134083480 1714134083565 OK +USER LoginRecord START 1714134083590 +REQUEST request_3 1714134083566 1714134083650 OK +REQUEST request_1 1714134083566 1714134083668 OK +REQUEST main.18e3ef94.css 1714134083566 1714134083668 OK +REQUEST request_2 1714134083566 1714134083669 OK +REQUEST request_0 1714134083590 1714134083687 OK +REQUEST wiq2.ico 1714134083566 1714134083731 OK +REQUEST request_4 1714134083729 1714134083764 OK +REQUEST request_1 1714134083688 1714134083771 OK +REQUEST main.18e3ef94.css 1714134083688 1714134083771 OK +REQUEST request_2 1714134083688 1714134083773 OK +REQUEST request_3 1714134083688 1714134083785 OK +REQUEST main.4a961c5c.js 1714134083566 1714134083813 OK +REQUEST wiq2.ico 1714134083687 1714134083879 OK +USER LoginRecord START 1714134083901 +USER LoginRecord START 1714134083916 +USER LoginRecord START 1714134083931 +REQUEST main.4a961c5c.js 1714134083687 1714134083977 OK +REQUEST request_0 1714134083901 1714134083999 OK +REQUEST request_0 1714134083916 1714134084000 OK +REQUEST request_0 1714134083931 1714134084027 OK +REQUEST request_2 1714134084000 1714134084083 OK +REQUEST main.18e3ef94.css 1714134084000 1714134084084 OK +REQUEST request_2 1714134084001 1714134084084 OK +REQUEST main.18e3ef94.css 1714134084001 1714134084085 OK +USER LoginRecord START 1714134084102 +REQUEST request_1 1714134084000 1714134084106 OK +REQUEST request_1 1714134084001 1714134084106 OK +REQUEST request_3 1714134084000 1714134084106 OK +REQUEST request_3 1714134084001 1714134084109 OK +REQUEST request_3 1714134084029 1714134084116 OK +REQUEST main.18e3ef94.css 1714134084029 1714134084129 OK +REQUEST request_1 1714134084029 1714134084129 OK +REQUEST request_2 1714134084029 1714134084129 OK +REQUEST wiq2.ico 1714134084000 1714134084166 OK +REQUEST request_0 1714134084102 1714134084186 OK +REQUEST wiq2.ico 1714134084000 1714134084191 OK +REQUEST wiq2.ico 1714134084029 1714134084219 OK +REQUEST request_4 1714134084226 1714134084262 OK +REQUEST request_2 1714134084187 1714134084270 OK +REQUEST request_3 1714134084187 1714134084271 OK +REQUEST main.18e3ef94.css 1714134084187 1714134084271 OK +REQUEST request_1 1714134084187 1714134084284 OK +USER LoginRecord START 1714134084288 +REQUEST main.4a961c5c.js 1714134084001 1714134084296 OK +REQUEST main.4a961c5c.js 1714134084000 1714134084298 OK +REQUEST main.4a961c5c.js 1714134084029 1714134084318 OK +USER LoginRecord START 1714134084319 +REQUEST wiq2.ico 1714134084186 1714134084353 OK +REQUEST request_0 1714134084287 1714134084386 OK +REQUEST request_0 1714134084319 1714134084402 OK +REQUEST request_4 1714134084381 1714134084415 OK +REQUEST request_2 1714134084387 1714134084470 OK +REQUEST main.4a961c5c.js 1714134084187 1714134084473 OK +REQUEST main.18e3ef94.css 1714134084387 1714134084485 OK +REQUEST request_3 1714134084387 1714134084485 OK +REQUEST request_2 1714134084403 1714134084486 OK +REQUEST request_1 1714134084387 1714134084486 OK +REQUEST request_3 1714134084404 1714134084487 OK +REQUEST request_1 1714134084403 1714134084499 OK +REQUEST main.18e3ef94.css 1714134084403 1714134084502 OK +REQUEST wiq2.ico 1714134084403 1714134084567 OK +REQUEST wiq2.ico 1714134084386 1714134084579 OK +REQUEST main.4a961c5c.js 1714134084387 1714134084639 OK +REQUEST main.4a961c5c.js 1714134084403 1714134084689 OK +REQUEST request_4 1714134084662 1714134084699 OK +USER LoginRecord START 1714134084833 +USER LoginRecord START 1714134084897 +REQUEST request_0 1714134084833 1714134084930 OK +REQUEST request_0 1714134084896 1714134084981 OK +USER LoginRecord START 1714134085005 +USER LoginRecord START 1714134085005 +REQUEST request_3 1714134084931 1714134085013 OK +USER LoginRecord START 1714134085021 +REQUEST request_2 1714134084931 1714134085025 OK +REQUEST request_1 1714134084931 1714134085028 OK +REQUEST main.18e3ef94.css 1714134084931 1714134085031 OK +REQUEST request_3 1714134084982 1714134085064 OK +REQUEST request_1 1714134084982 1714134085077 OK +REQUEST request_2 1714134084982 1714134085079 OK +REQUEST main.18e3ef94.css 1714134084982 1714134085079 OK +REQUEST request_0 1714134085005 1714134085088 OK +REQUEST request_0 1714134085005 1714134085103 OK +REQUEST wiq2.ico 1714134084930 1714134085119 OK +REQUEST request_0 1714134085021 1714134085119 OK +REQUEST wiq2.ico 1714134084982 1714134085147 OK +REQUEST request_1 1714134085089 1714134085174 OK +REQUEST request_3 1714134085089 1714134085175 OK +REQUEST request_2 1714134085089 1714134085187 OK +REQUEST main.18e3ef94.css 1714134085089 1714134085189 OK +REQUEST request_2 1714134085104 1714134085189 OK +USER LoginRecord START 1714134085191 +REQUEST request_1 1714134085104 1714134085201 OK +REQUEST main.18e3ef94.css 1714134085104 1714134085203 OK +REQUEST request_3 1714134085104 1714134085203 OK +REQUEST request_1 1714134085119 1714134085204 OK +REQUEST request_3 1714134085120 1714134085205 OK +REQUEST main.4a961c5c.js 1714134084931 1714134085215 OK +REQUEST request_2 1714134085120 1714134085218 OK +REQUEST main.18e3ef94.css 1714134085119 1714134085218 OK +REQUEST main.4a961c5c.js 1714134084982 1714134085225 OK +REQUEST wiq2.ico 1714134085089 1714134085251 OK +REQUEST request_0 1714134085191 1714134085275 OK +REQUEST wiq2.ico 1714134085103 1714134085296 OK +USER LoginRecord START 1714134085300 +REQUEST wiq2.ico 1714134085119 1714134085311 OK +REQUEST request_4 1714134085284 1714134085319 OK +REQUEST main.4a961c5c.js 1714134085089 1714134085338 OK +REQUEST main.4a961c5c.js 1714134085104 1714134085356 OK +REQUEST request_4 1714134085315 1714134085356 OK +REQUEST request_3 1714134085276 1714134085359 OK +REQUEST request_1 1714134085276 1714134085360 OK +REQUEST main.18e3ef94.css 1714134085276 1714134085360 OK +REQUEST main.4a961c5c.js 1714134085119 1714134085367 OK +REQUEST request_4 1714134085331 1714134085369 OK +REQUEST request_2 1714134085276 1714134085372 OK +REQUEST request_0 1714134085300 1714134085396 OK +REQUEST request_4 1714134085377 1714134085413 OK +REQUEST wiq2.ico 1714134085276 1714134085442 OK +USER LoginRecord START 1714134085470 +REQUEST request_1 1714134085397 1714134085479 OK +REQUEST main.18e3ef94.css 1714134085397 1714134085481 OK +REQUEST request_2 1714134085397 1714134085481 OK +USER LoginRecord START 1714134085486 +REQUEST request_3 1714134085397 1714134085492 OK +REQUEST request_4 1714134085469 1714134085507 OK +REQUEST request_0 1714134085469 1714134085551 OK +REQUEST main.4a961c5c.js 1714134085276 1714134085566 OK +REQUEST request_0 1714134085485 1714134085582 OK +REQUEST wiq2.ico 1714134085396 1714134085584 OK +REQUEST request_1 1714134085552 1714134085635 OK +REQUEST request_2 1714134085552 1714134085635 OK +USER LoginRecord START 1714134085641 +REQUEST request_3 1714134085552 1714134085650 OK +REQUEST main.18e3ef94.css 1714134085552 1714134085652 OK +REQUEST main.18e3ef94.css 1714134085582 1714134085669 OK +REQUEST request_2 1714134085583 1714134085669 OK +REQUEST request_1 1714134085582 1714134085681 OK +REQUEST request_3 1714134085583 1714134085682 OK +REQUEST main.4a961c5c.js 1714134085397 1714134085686 OK +REQUEST wiq2.ico 1714134085552 1714134085714 OK +REQUEST request_0 1714134085641 1714134085738 OK +REQUEST request_4 1714134085734 1714134085772 OK +REQUEST wiq2.ico 1714134085582 1714134085772 OK +USER LoginRecord START 1714134085798 +REQUEST main.4a961c5c.js 1714134085552 1714134085804 OK +REQUEST request_1 1714134085738 1714134085823 OK +REQUEST request_2 1714134085738 1714134085823 OK +REQUEST request_3 1714134085738 1714134085823 OK +REQUEST main.18e3ef94.css 1714134085738 1714134085835 OK +REQUEST main.4a961c5c.js 1714134085582 1714134085835 OK +REQUEST request_0 1714134085798 1714134085880 OK +REQUEST wiq2.ico 1714134085738 1714134085928 OK +REQUEST request_3 1714134085881 1714134085966 OK +REQUEST main.18e3ef94.css 1714134085881 1714134085967 OK +REQUEST request_1 1714134085881 1714134085980 OK +REQUEST request_2 1714134085881 1714134085980 OK +REQUEST main.4a961c5c.js 1714134085738 1714134085985 OK +USER LoginRecord START 1714134086015 +USER LoginRecord START 1714134086015 +REQUEST wiq2.ico 1714134085881 1714134086043 OK +REQUEST request_4 1714134086015 1714134086051 OK +USER LoginRecord START 1714134086076 +REQUEST request_0 1714134086015 1714134086097 OK +USER LoginRecord START 1714134086108 +REQUEST request_0 1714134086015 1714134086110 OK +REQUEST main.4a961c5c.js 1714134085881 1714134086133 OK +REQUEST request_0 1714134086076 1714134086161 OK +REQUEST main.18e3ef94.css 1714134086098 1714134086181 OK +REQUEST request_3 1714134086098 1714134086182 OK +REQUEST request_1 1714134086098 1714134086182 OK +REQUEST request_2 1714134086098 1714134086195 OK +REQUEST request_2 1714134086111 1714134086196 OK +REQUEST main.18e3ef94.css 1714134086111 1714134086199 OK +REQUEST request_0 1714134086107 1714134086206 OK +USER LoginRecord START 1714134086215 +REQUEST request_3 1714134086111 1714134086222 OK +REQUEST request_1 1714134086111 1714134086222 OK +REQUEST request_3 1714134086163 1714134086246 OK +REQUEST request_2 1714134086162 1714134086247 OK +REQUEST main.18e3ef94.css 1714134086162 1714134086247 OK +REQUEST wiq2.ico 1714134086097 1714134086260 OK +REQUEST request_1 1714134086162 1714134086260 OK +REQUEST request_1 1714134086208 1714134086295 OK +REQUEST request_3 1714134086210 1714134086297 OK +REQUEST request_0 1714134086215 1714134086299 OK +REQUEST wiq2.ico 1714134086111 1714134086301 OK +REQUEST request_2 1714134086209 1714134086307 OK +REQUEST main.18e3ef94.css 1714134086208 1714134086310 OK +REQUEST wiq2.ico 1714134086162 1714134086329 OK +REQUEST request_4 1714134086323 1714134086359 OK +REQUEST main.4a961c5c.js 1714134086111 1714134086360 OK +REQUEST request_2 1714134086299 1714134086383 OK +REQUEST request_3 1714134086300 1714134086384 OK +REQUEST main.4a961c5c.js 1714134086098 1714134086385 OK +REQUEST main.18e3ef94.css 1714134086299 1714134086385 OK +REQUEST wiq2.ico 1714134086208 1714134086396 OK +REQUEST request_1 1714134086299 1714134086397 OK +REQUEST main.4a961c5c.js 1714134086162 1714134086450 OK +REQUEST wiq2.ico 1714134086299 1714134086464 OK +REQUEST main.4a961c5c.js 1714134086208 1714134086468 OK +REQUEST request_4 1714134086510 1714134086547 OK +USER LoginRecord START 1714134086588 +REQUEST main.4a961c5c.js 1714134086299 1714134086589 OK +USER LoginRecord START 1714134086667 +REQUEST request_0 1714134086588 1714134086672 OK +REQUEST request_0 1714134086666 1714134086751 OK +REQUEST request_3 1714134086673 1714134086765 OK +REQUEST request_1 1714134086673 1714134086769 OK +REQUEST request_2 1714134086673 1714134086772 OK +REQUEST main.18e3ef94.css 1714134086673 1714134086773 OK +REQUEST request_4 1714134086759 1714134086799 OK +REQUEST request_3 1714134086752 1714134086835 OK +REQUEST request_2 1714134086752 1714134086836 OK +REQUEST wiq2.ico 1714134086673 1714134086836 OK +REQUEST main.18e3ef94.css 1714134086752 1714134086850 OK +REQUEST request_1 1714134086752 1714134086850 OK +REQUEST wiq2.ico 1714134086752 1714134086916 OK +REQUEST request_4 1714134086883 1714134086918 OK +REQUEST main.4a961c5c.js 1714134086673 1714134086925 OK +USER LoginRecord START 1714134086976 +REQUEST request_5 1714134086945 1714134087030 OK +REQUEST main.4a961c5c.js 1714134086752 1714134087044 OK +REQUEST request_0 1714134086976 1714134087073 OK +USER LoginRecord START 1714134087101 +REQUEST request_6 1714134087031 1714134087135 OK +REQUEST request_7 1714134087031 1714134087154 OK +USER LoginRecord END 1714134087156 +REQUEST request_2 1714134087074 1714134087157 OK +REQUEST main.18e3ef94.css 1714134087073 1714134087158 OK +REQUEST request_1 1714134087073 1714134087170 OK +REQUEST request_3 1714134087074 1714134087171 OK +REQUEST request_0 1714134087101 1714134087185 OK +REQUEST wiq2.ico 1714134087073 1714134087262 OK +REQUEST request_1 1714134087186 1714134087270 OK +REQUEST request_3 1714134087186 1714134087271 OK +REQUEST request_4 1714134087241 1714134087276 OK +REQUEST request_2 1714134087186 1714134087283 OK +REQUEST main.18e3ef94.css 1714134087186 1714134087286 OK +REQUEST request_4 1714134087271 1714134087305 OK +REQUEST main.4a961c5c.js 1714134087073 1714134087318 OK +REQUEST request_4 1714134087302 1714134087338 OK +REQUEST wiq2.ico 1714134087186 1714134087350 OK +REQUEST request_5 1714134087286 1714134087368 OK +USER LoginRecord START 1714134087412 +REQUEST request_5 1714134087318 1714134087415 OK +REQUEST request_4 1714134087381 1714134087419 OK +REQUEST request_6 1714134087369 1714134087469 OK +REQUEST main.4a961c5c.js 1714134087186 1714134087473 OK +REQUEST request_0 1714134087412 1714134087495 OK +REQUEST request_7 1714134087369 1714134087518 OK +USER LoginRecord END 1714134087518 +REQUEST request_6 1714134087415 1714134087523 OK +REQUEST request_7 1714134087415 1714134087561 OK +USER LoginRecord END 1714134087561 +REQUEST request_3 1714134087496 1714134087581 OK +REQUEST request_2 1714134087496 1714134087581 OK +REQUEST request_1 1714134087496 1714134087591 OK +REQUEST main.18e3ef94.css 1714134087496 1714134087593 OK +REQUEST wiq2.ico 1714134087496 1714134087662 OK +REQUEST request_4 1714134087647 1714134087682 OK +REQUEST main.4a961c5c.js 1714134087496 1714134087789 OK +REQUEST request_4 1714134087787 1714134087824 OK +USER LoginRecord START 1714134087851 +REQUEST request_0 1714134087850 1714134087951 OK +REQUEST request_2 1714134087951 1714134088034 OK +REQUEST main.18e3ef94.css 1714134087951 1714134088035 OK +REQUEST request_3 1714134087952 1714134088035 OK +REQUEST request_5 1714134087958 1714134088041 OK +REQUEST request_1 1714134087951 1714134088047 OK +REQUEST request_5 1714134087974 1714134088071 OK +REQUEST request_4 1714134088098 1714134088134 OK +REQUEST wiq2.ico 1714134087951 1714134088144 OK +REQUEST request_6 1714134088042 1714134088145 OK +REQUEST request_7 1714134088042 1714134088170 OK +USER LoginRecord END 1714134088170 +REQUEST request_6 1714134088072 1714134088194 OK +REQUEST request_7 1714134088072 1714134088218 OK +USER LoginRecord END 1714134088218 +REQUEST request_5 1714134088146 1714134088228 OK +USER LoginRecord START 1714134088240 +REQUEST main.4a961c5c.js 1714134087951 1714134088241 OK +REQUEST request_6 1714134088228 1714134088331 OK +USER LoginRecord START 1714134088334 +REQUEST request_0 1714134088240 1714134088342 OK +REQUEST request_7 1714134088228 1714134088378 OK +USER LoginRecord END 1714134088378 +USER LoginRecord START 1714134088381 +REQUEST request_2 1714134088343 1714134088427 OK +REQUEST main.18e3ef94.css 1714134088343 1714134088428 OK +REQUEST request_0 1714134088333 1714134088430 OK +REQUEST request_3 1714134088343 1714134088441 OK +REQUEST request_1 1714134088343 1714134088442 OK +REQUEST request_0 1714134088381 1714134088479 OK +REQUEST request_3 1714134088433 1714134088516 OK +REQUEST request_2 1714134088432 1714134088516 OK +REQUEST request_1 1714134088432 1714134088528 OK +REQUEST wiq2.ico 1714134088343 1714134088532 OK +REQUEST main.18e3ef94.css 1714134088432 1714134088533 OK +REQUEST request_2 1714134088480 1714134088562 OK +REQUEST request_1 1714134088480 1714134088563 OK +REQUEST main.18e3ef94.css 1714134088480 1714134088565 OK +REQUEST request_3 1714134088480 1714134088579 OK +REQUEST request_5 1714134088521 1714134088617 OK +REQUEST wiq2.ico 1714134088432 1714134088622 OK +REQUEST main.4a961c5c.js 1714134088343 1714134088626 OK +REQUEST wiq2.ico 1714134088480 1714134088672 OK +REQUEST request_4 1714134088645 1714134088681 OK +REQUEST main.4a961c5c.js 1714134088432 1714134088717 OK +REQUEST request_6 1714134088618 1714134088727 OK +REQUEST request_7 1714134088618 1714134088763 OK +USER LoginRecord END 1714134088763 +REQUEST main.4a961c5c.js 1714134088480 1714134088763 OK +USER LoginRecord START 1714134088800 +USER LoginRecord START 1714134088832 +USER LoginRecord START 1714134088847 +REQUEST request_0 1714134088800 1714134088884 OK +REQUEST request_0 1714134088832 1714134088914 OK +REQUEST request_0 1714134088847 1714134088944 OK +REQUEST request_2 1714134088885 1714134088968 OK +REQUEST request_3 1714134088885 1714134088969 OK +REQUEST request_1 1714134088884 1714134088983 OK +REQUEST main.18e3ef94.css 1714134088884 1714134088984 OK +REQUEST request_2 1714134088915 1714134088999 OK +REQUEST request_3 1714134088915 1714134088999 OK +REQUEST main.18e3ef94.css 1714134088915 1714134089000 OK +REQUEST request_5 1714134088909 1714134089005 OK +REQUEST request_1 1714134088915 1714134089011 OK +REQUEST main.18e3ef94.css 1714134088945 1714134089028 OK +REQUEST request_1 1714134088945 1714134089042 OK +REQUEST request_3 1714134088945 1714134089042 OK +REQUEST request_2 1714134088945 1714134089044 OK +REQUEST wiq2.ico 1714134088884 1714134089048 OK +REQUEST wiq2.ico 1714134088915 1714134089077 OK +REQUEST request_4 1714134089065 1714134089100 OK +REQUEST request_6 1714134089005 1714134089114 OK +REQUEST request_7 1714134089005 1714134089130 OK +USER LoginRecord END 1714134089130 +REQUEST wiq2.ico 1714134088944 1714134089138 OK +REQUEST request_4 1714134089111 1714134089148 OK +REQUEST request_5 1714134089065 1714134089149 OK +REQUEST main.4a961c5c.js 1714134088884 1714134089175 OK +REQUEST main.4a961c5c.js 1714134088915 1714134089201 OK +REQUEST main.4a961c5c.js 1714134088945 1714134089230 OK +USER LoginRecord START 1714134089235 +REQUEST request_6 1714134089149 1714134089249 OK +REQUEST request_7 1714134089149 1714134089275 OK +USER LoginRecord END 1714134089275 +USER LoginRecord START 1714134089282 +REQUEST request_0 1714134089235 1714134089328 OK +REQUEST request_5 1714134089266 1714134089350 OK +REQUEST request_0 1714134089282 1714134089364 OK +REQUEST request_5 1714134089328 1714134089425 OK +REQUEST request_3 1714134089329 1714134089431 OK +REQUEST request_1 1714134089329 1714134089431 OK +REQUEST request_2 1714134089329 1714134089433 OK +REQUEST main.18e3ef94.css 1714134089329 1714134089435 OK +REQUEST request_2 1714134089365 1714134089449 OK +REQUEST request_1 1714134089364 1714134089449 OK +REQUEST main.18e3ef94.css 1714134089364 1714134089450 OK +REQUEST request_6 1714134089350 1714134089460 OK +REQUEST request_3 1714134089365 1714134089463 OK +REQUEST request_4 1714134089453 1714134089488 OK +REQUEST request_7 1714134089351 1714134089497 OK +USER LoginRecord END 1714134089497 +REQUEST wiq2.ico 1714134089329 1714134089517 OK +REQUEST wiq2.ico 1714134089364 1714134089528 OK +REQUEST request_6 1714134089426 1714134089535 OK +REQUEST request_7 1714134089426 1714134089575 OK +USER LoginRecord END 1714134089575 +REQUEST main.4a961c5c.js 1714134089329 1714134089597 OK +REQUEST request_4 1714134089562 1714134089597 OK +REQUEST request_4 1714134089562 1714134089600 OK +REQUEST request_5 1714134089514 1714134089610 OK +REQUEST main.4a961c5c.js 1714134089364 1714134089653 OK +REQUEST request_4 1714134089638 1714134089676 OK +REQUEST request_4 1714134089670 1714134089707 OK +REQUEST request_6 1714134089611 1714134089718 OK +REQUEST request_4 1714134089716 1714134089752 OK +REQUEST request_7 1714134089611 1714134089754 OK +USER LoginRecord END 1714134089754 +REQUEST request_4 1714134089882 1714134089922 OK +USER LoginRecord START 1714134089933 +REQUEST request_0 1714134089932 1714134090017 OK +USER LoginRecord START 1714134090038 +REQUEST request_4 1714134090007 1714134090043 OK +REQUEST request_5 1714134089992 1714134090088 OK +REQUEST request_1 1714134090018 1714134090102 OK +REQUEST request_3 1714134090018 1714134090102 OK +REQUEST request_5 1714134090023 1714134090104 OK +REQUEST main.18e3ef94.css 1714134090018 1714134090115 OK +REQUEST request_2 1714134090018 1714134090116 OK +REQUEST request_0 1714134090038 1714134090133 OK +REQUEST wiq2.ico 1714134090018 1714134090184 OK +USER LoginRecord START 1714134090193 +REQUEST request_4 1714134090162 1714134090198 OK +REQUEST request_6 1714134090089 1714134090209 OK +REQUEST request_1 1714134090133 1714134090216 OK +REQUEST request_6 1714134090105 1714134090218 OK +REQUEST request_3 1714134090134 1714134090218 OK +REQUEST main.18e3ef94.css 1714134090133 1714134090218 OK +REQUEST request_7 1714134090105 1714134090227 OK +USER LoginRecord END 1714134090227 +REQUEST request_2 1714134090134 1714134090230 OK +REQUEST request_7 1714134090089 1714134090231 OK +USER LoginRecord END 1714134090231 +REQUEST main.4a961c5c.js 1714134090018 1714134090268 OK +REQUEST request_5 1714134090178 1714134090272 OK +REQUEST request_0 1714134090193 1714134090277 OK +REQUEST wiq2.ico 1714134090133 1714134090320 OK +REQUEST main.18e3ef94.css 1714134090278 1714134090361 OK +USER LoginRecord START 1714134090365 +REQUEST request_2 1714134090278 1714134090373 OK +REQUEST request_3 1714134090278 1714134090374 OK +REQUEST request_1 1714134090278 1714134090375 OK +REQUEST request_6 1714134090272 1714134090383 OK +REQUEST request_7 1714134090272 1714134090394 OK +USER LoginRecord END 1714134090394 +REQUEST main.4a961c5c.js 1714134090133 1714134090417 OK +REQUEST wiq2.ico 1714134090277 1714134090443 OK +REQUEST request_0 1714134090365 1714134090464 OK +REQUEST request_4 1714134090444 1714134090479 OK +REQUEST request_1 1714134090464 1714134090547 OK +REQUEST main.18e3ef94.css 1714134090464 1714134090560 OK +REQUEST request_3 1714134090464 1714134090562 OK +REQUEST request_2 1714134090464 1714134090562 OK +REQUEST main.4a961c5c.js 1714134090278 1714134090570 OK +USER LoginRecord START 1714134090647 +REQUEST request_5 1714134090569 1714134090652 OK +REQUEST wiq2.ico 1714134090464 1714134090657 OK +REQUEST request_4 1714134090647 1714134090683 OK +REQUEST request_0 1714134090647 1714134090744 OK +REQUEST request_6 1714134090653 1714134090754 OK +REQUEST main.4a961c5c.js 1714134090464 1714134090754 OK +USER LoginRecord START 1714134090772 +REQUEST request_7 1714134090653 1714134090776 OK +USER LoginRecord END 1714134090776 +REQUEST request_2 1714134090745 1714134090827 OK +REQUEST main.18e3ef94.css 1714134090745 1714134090830 OK +REQUEST request_3 1714134090745 1714134090842 OK +REQUEST request_1 1714134090745 1714134090842 OK +REQUEST request_0 1714134090772 1714134090866 OK +REQUEST request_4 1714134090895 1714134090931 OK +REQUEST wiq2.ico 1714134090745 1714134090935 OK +REQUEST request_2 1714134090867 1714134090951 OK +REQUEST request_1 1714134090867 1714134090966 OK +REQUEST request_3 1714134090867 1714134090966 OK +REQUEST main.18e3ef94.css 1714134090867 1714134090966 OK +REQUEST main.4a961c5c.js 1714134090745 1714134090991 OK +REQUEST wiq2.ico 1714134090867 1714134091056 OK +USER LoginRecord START 1714134091084 +REQUEST main.4a961c5c.js 1714134090867 1714134091117 OK +REQUEST request_0 1714134091084 1714134091182 OK +REQUEST request_5 1714134091099 1714134091196 OK +USER LoginRecord START 1714134091249 +REQUEST request_3 1714134091183 1714134091266 OK +REQUEST request_1 1714134091182 1714134091269 OK +REQUEST request_2 1714134091183 1714134091284 OK +REQUEST main.18e3ef94.css 1714134091182 1714134091285 OK +REQUEST request_6 1714134091196 1714134091305 OK +REQUEST request_7 1714134091196 1714134091325 OK +USER LoginRecord END 1714134091325 +REQUEST request_5 1714134091253 1714134091337 OK +REQUEST request_0 1714134091248 1714134091346 OK +REQUEST wiq2.ico 1714134091182 1714134091374 OK +REQUEST main.4a961c5c.js 1714134091182 1714134091430 OK +REQUEST request_1 1714134091346 1714134091431 OK +REQUEST main.18e3ef94.css 1714134091346 1714134091431 OK +REQUEST request_3 1714134091346 1714134091431 OK +REQUEST request_6 1714134091337 1714134091438 OK +REQUEST request_2 1714134091346 1714134091453 OK +USER LoginRecord START 1714134091456 +REQUEST request_7 1714134091337 1714134091460 OK +USER LoginRecord END 1714134091460 +REQUEST request_0 1714134091456 1714134091541 OK +REQUEST wiq2.ico 1714134091346 1714134091542 OK +REQUEST request_5 1714134091486 1714134091583 OK +REQUEST request_2 1714134091542 1714134091627 OK +REQUEST request_3 1714134091542 1714134091639 OK +REQUEST request_1 1714134091542 1714134091640 OK +REQUEST main.18e3ef94.css 1714134091542 1714134091641 OK +REQUEST main.4a961c5c.js 1714134091346 1714134091644 OK +REQUEST request_6 1714134091583 1714134091694 OK +USER LoginRecord START 1714134091706 +REQUEST wiq2.ico 1714134091542 1714134091709 OK +REQUEST request_7 1714134091583 1714134091709 OK +USER LoginRecord END 1714134091709 +REQUEST request_5 1714134091643 1714134091742 OK +REQUEST main.4a961c5c.js 1714134091542 1714134091794 OK +REQUEST request_0 1714134091706 1714134091805 OK +REQUEST request_6 1714134091742 1714134091849 OK +REQUEST request_7 1714134091742 1714134091865 OK +USER LoginRecord END 1714134091866 +REQUEST request_3 1714134091805 1714134091889 OK +REQUEST main.18e3ef94.css 1714134091805 1714134091889 OK +REQUEST request_1 1714134091805 1714134091902 OK +REQUEST request_2 1714134091805 1714134091903 OK +REQUEST request_5 1714134091814 1714134091908 OK +REQUEST wiq2.ico 1714134091805 1714134091993 OK +REQUEST request_6 1714134091909 1714134092015 OK +REQUEST request_7 1714134091909 1714134092054 OK +USER LoginRecord END 1714134092054 +REQUEST request_4 1714134092046 1714134092081 OK +REQUEST main.4a961c5c.js 1714134091805 1714134092096 OK +USER LoginRecord START 1714134092109 +REQUEST request_0 1714134092109 1714134092193 OK +REQUEST request_4 1714134092171 1714134092206 OK +REQUEST request_1 1714134092193 1714134092279 OK +REQUEST request_2 1714134092194 1714134092280 OK +REQUEST request_3 1714134092194 1714134092290 OK +REQUEST main.18e3ef94.css 1714134092193 1714134092291 OK +REQUEST wiq2.ico 1714134092193 1714134092359 OK +REQUEST request_4 1714134092340 1714134092375 OK +REQUEST request_4 1714134092355 1714134092391 OK +REQUEST main.4a961c5c.js 1714134092193 1714134092440 OK +REQUEST request_5 1714134092495 1714134092578 OK +REQUEST request_4 1714134092604 1714134092639 OK +REQUEST request_6 1714134092579 1714134092680 OK +REQUEST request_7 1714134092579 1714134092702 OK +USER LoginRecord END 1714134092702 +REQUEST request_4 1714134092681 1714134092717 OK +USER LoginRecord START 1714134092745 +REQUEST request_4 1714134092745 1714134092781 OK +REQUEST request_4 1714134092793 1714134092828 OK +REQUEST request_4 1714134092793 1714134092829 OK +REQUEST request_4 1714134092793 1714134092830 OK +REQUEST request_0 1714134092745 1714134092841 OK +REQUEST request_5 1714134092777 1714134092873 OK +REQUEST request_4 1714134092870 1714134092909 OK +REQUEST request_1 1714134092842 1714134092925 OK +REQUEST request_2 1714134092842 1714134092943 OK +REQUEST main.18e3ef94.css 1714134092842 1714134092944 OK +REQUEST request_3 1714134092842 1714134092944 OK +REQUEST request_6 1714134092874 1714134092987 OK +REQUEST request_7 1714134092874 1714134093000 OK +USER LoginRecord END 1714134093000 +REQUEST wiq2.ico 1714134092842 1714134093032 OK +REQUEST main.4a961c5c.js 1714134092842 1714134093091 OK +REQUEST request_4 1714134093169 1714134093206 OK +REQUEST request_4 1714134093216 1714134093252 OK +USER LoginRecord START 1714134093359 +REQUEST request_5 1714134093263 1714134093359 OK +REQUEST request_0 1714134093358 1714134093443 OK +REQUEST request_6 1714134093360 1714134093465 OK +REQUEST request_7 1714134093360 1714134093482 OK +USER LoginRecord END 1714134093483 +REQUEST request_4 1714134093452 1714134093491 OK +REQUEST request_5 1714134093420 1714134093516 OK +REQUEST request_3 1714134093444 1714134093527 OK +REQUEST main.18e3ef94.css 1714134093444 1714134093528 OK +REQUEST request_2 1714134093444 1714134093528 OK +REQUEST request_4 1714134093498 1714134093533 OK +REQUEST request_1 1714134093444 1714134093539 OK +REQUEST wiq2.ico 1714134093444 1714134093609 OK +REQUEST request_6 1714134093516 1714134093623 OK +REQUEST request_7 1714134093517 1714134093641 OK +USER LoginRecord END 1714134093641 +REQUEST main.4a961c5c.js 1714134093444 1714134093734 OK +USER LoginRecord START 1714134093781 +REQUEST request_5 1714134093702 1714134093798 OK +REQUEST request_0 1714134093781 1714134093863 OK +USER LoginRecord START 1714134093876 +REQUEST request_6 1714134093799 1714134093905 OK +REQUEST request_4 1714134093876 1714134093911 OK +REQUEST request_7 1714134093799 1714134093921 OK +USER LoginRecord END 1714134093922 +REQUEST request_2 1714134093863 1714134093947 OK +REQUEST request_3 1714134093864 1714134093948 OK +REQUEST request_0 1714134093876 1714134093959 OK +REQUEST main.18e3ef94.css 1714134093863 1714134093962 OK +REQUEST request_1 1714134093863 1714134093962 OK +USER LoginRecord START 1714134094015 +REQUEST wiq2.ico 1714134093863 1714134094025 OK +REQUEST request_3 1714134093960 1714134094045 OK +REQUEST request_2 1714134093960 1714134094056 OK +REQUEST request_1 1714134093959 1714134094058 OK +REQUEST main.18e3ef94.css 1714134093959 1714134094058 OK +USER LoginRecord START 1714134094062 +REQUEST request_0 1714134094015 1714134094111 OK +REQUEST wiq2.ico 1714134093959 1714134094125 OK +REQUEST request_0 1714134094062 1714134094146 OK +REQUEST main.4a961c5c.js 1714134093863 1714134094151 OK +REQUEST request_1 1714134094111 1714134094195 OK +REQUEST main.4a961c5c.js 1714134093959 1714134094206 OK +REQUEST request_3 1714134094111 1714134094208 OK +REQUEST main.18e3ef94.css 1714134094111 1714134094209 OK +REQUEST request_2 1714134094111 1714134094211 OK +REQUEST request_4 1714134094186 1714134094223 OK +REQUEST request_3 1714134094147 1714134094232 OK +REQUEST request_1 1714134094147 1714134094232 OK +REQUEST main.18e3ef94.css 1714134094147 1714134094232 OK +REQUEST request_2 1714134094147 1714134094244 OK +REQUEST request_4 1714134094234 1714134094269 OK +USER LoginRecord START 1714134094283 +REQUEST wiq2.ico 1714134094111 1714134094301 OK +REQUEST wiq2.ico 1714134094147 1714134094313 OK +REQUEST main.4a961c5c.js 1714134094111 1714134094356 OK +REQUEST request_0 1714134094282 1714134094366 OK +REQUEST main.4a961c5c.js 1714134094147 1714134094395 OK +REQUEST request_5 1714134094330 1714134094414 OK +USER LoginRecord START 1714134094440 +REQUEST request_1 1714134094367 1714134094450 OK +REQUEST request_2 1714134094367 1714134094451 OK +REQUEST request_3 1714134094367 1714134094451 OK +REQUEST request_5 1714134094377 1714134094460 OK +REQUEST request_5 1714134094361 1714134094462 OK +REQUEST main.18e3ef94.css 1714134094367 1714134094467 OK +REQUEST request_5 1714134094423 1714134094507 OK +REQUEST request_6 1714134094414 1714134094527 OK +REQUEST wiq2.ico 1714134094367 1714134094532 OK +REQUEST request_7 1714134094414 1714134094538 OK +USER LoginRecord END 1714134094538 +REQUEST request_0 1714134094440 1714134094540 OK +REQUEST request_6 1714134094462 1714134094588 OK +REQUEST request_7 1714134094462 1714134094590 OK +REQUEST request_6 1714134094460 1714134094590 OK +USER LoginRecord END 1714134094591 +REQUEST request_5 1714134094519 1714134094603 OK +REQUEST request_7 1714134094460 1714134094605 OK +USER LoginRecord END 1714134094605 +REQUEST main.4a961c5c.js 1714134094367 1714134094615 OK +REQUEST request_4 1714134094583 1714134094617 OK +REQUEST request_2 1714134094541 1714134094625 OK +REQUEST request_3 1714134094541 1714134094625 OK +REQUEST request_6 1714134094507 1714134094627 OK +REQUEST request_7 1714134094507 1714134094632 OK +USER LoginRecord END 1714134094633 +REQUEST request_1 1714134094541 1714134094640 OK +REQUEST main.18e3ef94.css 1714134094541 1714134094642 OK +USER LoginRecord START 1714134094678 +REQUEST request_6 1714134094604 1714134094704 OK +REQUEST request_7 1714134094604 1714134094726 OK +USER LoginRecord END 1714134094726 +REQUEST wiq2.ico 1714134094540 1714134094729 OK +REQUEST request_0 1714134094678 1714134094774 OK +USER LoginRecord START 1714134094816 +REQUEST main.4a961c5c.js 1714134094541 1714134094825 OK +REQUEST request_1 1714134094775 1714134094859 OK +REQUEST request_5 1714134094786 1714134094869 OK +REQUEST request_3 1714134094775 1714134094873 OK +REQUEST main.18e3ef94.css 1714134094775 1714134094873 OK +REQUEST request_2 1714134094775 1714134094874 OK +REQUEST request_0 1714134094816 1714134094900 OK +REQUEST wiq2.ico 1714134094775 1714134094964 OK +REQUEST request_6 1714134094869 1714134094974 OK +REQUEST request_1 1714134094901 1714134095000 OK +REQUEST request_2 1714134094901 1714134095001 OK +REQUEST request_3 1714134094901 1714134095001 OK +REQUEST main.18e3ef94.css 1714134094901 1714134095002 OK +REQUEST request_7 1714134094869 1714134095016 OK +USER LoginRecord END 1714134095017 +REQUEST main.4a961c5c.js 1714134094775 1714134095020 OK +REQUEST wiq2.ico 1714134094901 1714134095070 OK +REQUEST request_4 1714134095036 1714134095072 OK +USER LoginRecord START 1714134095129 +REQUEST main.4a961c5c.js 1714134094901 1714134095153 OK +REQUEST request_5 1714134095067 1714134095164 OK +REQUEST request_0 1714134095129 1714134095225 OK +REQUEST request_6 1714134095165 1714134095271 OK +REQUEST request_7 1714134095165 1714134095308 OK +USER LoginRecord END 1714134095308 +REQUEST request_2 1714134095226 1714134095310 OK +REQUEST main.18e3ef94.css 1714134095226 1714134095311 OK +REQUEST request_1 1714134095226 1714134095311 OK +REQUEST request_3 1714134095226 1714134095323 OK +USER LoginRecord START 1714134095408 +REQUEST wiq2.ico 1714134095226 1714134095415 OK +REQUEST request_5 1714134095361 1714134095445 OK +USER LoginRecord START 1714134095455 +REQUEST request_0 1714134095408 1714134095506 OK +REQUEST main.4a961c5c.js 1714134095226 1714134095515 OK +REQUEST request_0 1714134095455 1714134095537 OK +REQUEST request_6 1714134095445 1714134095545 OK +REQUEST request_7 1714134095445 1714134095587 OK +USER LoginRecord END 1714134095587 +REQUEST request_1 1714134095506 1714134095590 OK +REQUEST main.18e3ef94.css 1714134095506 1714134095600 OK +REQUEST request_2 1714134095506 1714134095603 OK +REQUEST request_3 1714134095506 1714134095604 OK +REQUEST request_3 1714134095538 1714134095622 OK +REQUEST request_5 1714134095549 1714134095629 OK +REQUEST request_2 1714134095538 1714134095635 OK +REQUEST request_1 1714134095538 1714134095636 OK +REQUEST main.18e3ef94.css 1714134095538 1714134095637 OK +USER LoginRecord START 1714134095672 +REQUEST wiq2.ico 1714134095506 1714134095698 OK +REQUEST wiq2.ico 1714134095538 1714134095701 OK +REQUEST request_6 1714134095629 1714134095731 OK +REQUEST main.4a961c5c.js 1714134095506 1714134095760 OK +REQUEST request_0 1714134095672 1714134095770 OK +REQUEST request_7 1714134095629 1714134095773 OK +USER LoginRecord END 1714134095773 +REQUEST main.4a961c5c.js 1714134095538 1714134095787 OK +REQUEST request_4 1714134095797 1714134095831 OK +USER LoginRecord START 1714134095844 +REQUEST request_1 1714134095771 1714134095855 OK +REQUEST request_2 1714134095771 1714134095855 OK +REQUEST request_3 1714134095771 1714134095870 OK +REQUEST main.18e3ef94.css 1714134095771 1714134095871 OK +REQUEST request_5 1714134095812 1714134095896 OK +REQUEST request_0 1714134095844 1714134095943 OK +REQUEST wiq2.ico 1714134095771 1714134095963 OK +REQUEST request_6 1714134095897 1714134096001 OK +REQUEST request_5 1714134095923 1714134096007 OK +USER LoginRecord START 1714134096016 +REQUEST main.4a961c5c.js 1714134095771 1714134096017 OK +REQUEST request_7 1714134095897 1714134096023 OK +USER LoginRecord END 1714134096024 +REQUEST request_3 1714134095944 1714134096027 OK +REQUEST request_4 1714134096001 1714134096037 OK +REQUEST request_1 1714134095943 1714134096040 OK +REQUEST main.18e3ef94.css 1714134095943 1714134096042 OK +REQUEST request_2 1714134095943 1714134096042 OK +REQUEST request_0 1714134096016 1714134096098 OK +REQUEST request_6 1714134096007 1714134096112 OK +REQUEST request_7 1714134096007 1714134096130 OK +USER LoginRecord END 1714134096130 +REQUEST wiq2.ico 1714134095943 1714134096134 OK +REQUEST request_3 1714134096099 1714134096182 OK +REQUEST main.4a961c5c.js 1714134095943 1714134096194 OK +REQUEST request_2 1714134096099 1714134096195 OK +REQUEST main.18e3ef94.css 1714134096099 1714134096198 OK +REQUEST request_1 1714134096099 1714134096198 OK +USER LoginRecord START 1714134096220 +REQUEST wiq2.ico 1714134096099 1714134096261 OK +REQUEST request_0 1714134096219 1714134096317 OK +REQUEST main.4a961c5c.js 1714134096099 1714134096344 OK +USER LoginRecord START 1714134096374 +REQUEST request_5 1714134096281 1714134096377 OK +REQUEST request_4 1714134096343 1714134096378 OK +REQUEST request_5 1714134096313 1714134096397 OK +REQUEST main.18e3ef94.css 1714134096318 1714134096400 OK +REQUEST request_2 1714134096318 1714134096400 OK +REQUEST request_1 1714134096318 1714134096402 OK +REQUEST request_3 1714134096318 1714134096415 OK +REQUEST request_5 1714134096342 1714134096438 OK +REQUEST request_0 1714134096373 1714134096470 OK +REQUEST request_6 1714134096378 1714134096494 OK +REQUEST request_5 1714134096421 1714134096503 OK +REQUEST request_7 1714134096378 1714134096503 OK +USER LoginRecord END 1714134096503 +REQUEST wiq2.ico 1714134096318 1714134096510 OK +REQUEST request_6 1714134096397 1714134096514 OK +REQUEST request_7 1714134096397 1714134096524 OK +USER LoginRecord END 1714134096525 +USER LoginRecord START 1714134096531 +USER LoginRecord START 1714134096547 +REQUEST request_6 1714134096438 1714134096550 OK +REQUEST request_3 1714134096470 1714134096554 OK +REQUEST request_1 1714134096470 1714134096554 OK +REQUEST request_7 1714134096438 1714134096561 OK +USER LoginRecord END 1714134096561 +REQUEST main.4a961c5c.js 1714134096318 1714134096565 OK +REQUEST request_2 1714134096470 1714134096571 OK +REQUEST main.18e3ef94.css 1714134096470 1714134096572 OK +REQUEST request_6 1714134096503 1714134096606 OK +REQUEST request_0 1714134096531 1714134096614 OK +REQUEST request_0 1714134096547 1714134096644 OK +REQUEST request_7 1714134096503 1714134096646 OK +USER LoginRecord END 1714134096646 +REQUEST wiq2.ico 1714134096470 1714134096659 OK +REQUEST request_3 1714134096614 1714134096698 OK +REQUEST request_1 1714134096614 1714134096699 OK +REQUEST request_2 1714134096614 1714134096711 OK +REQUEST main.18e3ef94.css 1714134096614 1714134096713 OK +REQUEST main.4a961c5c.js 1714134096470 1714134096722 OK +REQUEST request_1 1714134096645 1714134096728 OK +REQUEST request_2 1714134096645 1714134096747 OK +REQUEST request_3 1714134096645 1714134096747 OK +REQUEST main.18e3ef94.css 1714134096645 1714134096748 OK +USER LoginRecord START 1714134096765 +REQUEST request_5 1714134096686 1714134096769 OK +REQUEST wiq2.ico 1714134096614 1714134096776 OK +REQUEST wiq2.ico 1714134096645 1714134096837 OK +REQUEST request_0 1714134096764 1714134096847 OK +REQUEST main.4a961c5c.js 1714134096614 1714134096866 OK +REQUEST request_6 1714134096769 1714134096871 OK +REQUEST main.4a961c5c.js 1714134096645 1714134096897 OK +REQUEST request_7 1714134096769 1714134096914 OK +USER LoginRecord END 1714134096915 +REQUEST request_5 1714134096826 1714134096924 OK +REQUEST request_2 1714134096847 1714134096932 OK +REQUEST main.18e3ef94.css 1714134096847 1714134096932 OK +REQUEST request_1 1714134096847 1714134096933 OK +REQUEST request_3 1714134096848 1714134096944 OK +USER LoginRecord START 1714134096968 +USER LoginRecord START 1714134096983 +REQUEST wiq2.ico 1714134096847 1714134097010 OK +REQUEST request_6 1714134096924 1714134097036 OK +REQUEST request_7 1714134096924 1714134097048 OK +USER LoginRecord END 1714134097048 +REQUEST request_0 1714134096967 1714134097064 OK +REQUEST request_0 1714134096982 1714134097079 OK +REQUEST main.4a961c5c.js 1714134096847 1714134097092 OK +REQUEST request_3 1714134097065 1714134097149 OK +REQUEST request_1 1714134097065 1714134097150 OK +REQUEST request_2 1714134097065 1714134097150 OK +REQUEST request_3 1714134097080 1714134097164 OK +REQUEST main.18e3ef94.css 1714134097065 1714134097164 OK +REQUEST main.18e3ef94.css 1714134097079 1714134097165 OK +REQUEST request_2 1714134097080 1714134097165 OK +REQUEST request_1 1714134097079 1714134097176 OK +USER LoginRecord START 1714134097201 +REQUEST request_5 1714134097138 1714134097236 OK +REQUEST wiq2.ico 1714134097065 1714134097255 OK +REQUEST wiq2.ico 1714134097079 1714134097271 OK +REQUEST request_0 1714134097201 1714134097283 OK +REQUEST request_4 1714134097279 1714134097315 OK +REQUEST main.4a961c5c.js 1714134097065 1714134097317 OK +REQUEST request_6 1714134097236 1714134097344 OK +REQUEST main.4a961c5c.js 1714134097079 1714134097366 OK +REQUEST request_1 1714134097283 1714134097366 OK +REQUEST request_3 1714134097283 1714134097368 OK +REQUEST request_7 1714134097236 1714134097379 OK +USER LoginRecord END 1714134097379 +REQUEST request_2 1714134097283 1714134097380 OK +REQUEST main.18e3ef94.css 1714134097283 1714134097381 OK +REQUEST wiq2.ico 1714134097283 1714134097450 OK +REQUEST main.4a961c5c.js 1714134097283 1714134097533 OK +USER LoginRecord START 1714134097560 +REQUEST request_4 1714134097528 1714134097565 OK +REQUEST request_0 1714134097560 1714134097658 OK +REQUEST request_1 1714134097658 1714134097742 OK +REQUEST main.18e3ef94.css 1714134097658 1714134097757 OK +REQUEST request_3 1714134097659 1714134097757 OK +REQUEST request_2 1714134097659 1714134097757 OK +REQUEST request_5 1714134097686 1714134097784 OK +REQUEST wiq2.ico 1714134097658 1714134097852 OK +REQUEST request_6 1714134097784 1714134097892 OK +REQUEST main.4a961c5c.js 1714134097658 1714134097905 OK +REQUEST request_7 1714134097784 1714134097906 OK +USER LoginRecord END 1714134097906 +USER LoginRecord START 1714134097968 +USER LoginRecord START 1714134097968 +REQUEST request_4 1714134097968 1714134098004 OK +USER LoginRecord START 1714134098046 +REQUEST request_0 1714134097968 1714134098052 OK +REQUEST request_0 1714134097968 1714134098064 OK +REQUEST request_1 1714134098053 1714134098136 OK +REQUEST request_0 1714134098046 1714134098143 OK +REQUEST request_2 1714134098065 1714134098151 OK +REQUEST request_2 1714134098053 1714134098153 OK +REQUEST request_3 1714134098053 1714134098153 OK +REQUEST main.18e3ef94.css 1714134098065 1714134098153 OK +REQUEST main.18e3ef94.css 1714134098053 1714134098154 OK +REQUEST request_1 1714134098065 1714134098161 OK +REQUEST request_3 1714134098065 1714134098162 OK +REQUEST request_5 1714134098108 1714134098192 OK +REQUEST wiq2.ico 1714134098053 1714134098219 OK +REQUEST main.18e3ef94.css 1714134098143 1714134098228 OK +REQUEST request_1 1714134098143 1714134098230 OK +REQUEST request_5 1714134098156 1714134098240 OK +REQUEST request_3 1714134098144 1714134098245 OK +REQUEST request_2 1714134098144 1714134098245 OK +REQUEST wiq2.ico 1714134098065 1714134098254 OK +REQUEST request_6 1714134098192 1714134098297 OK +REQUEST main.4a961c5c.js 1714134098053 1714134098302 OK +REQUEST main.4a961c5c.js 1714134098065 1714134098313 OK +REQUEST request_7 1714134098192 1714134098315 OK +USER LoginRecord END 1714134098315 +REQUEST wiq2.ico 1714134098143 1714134098333 OK +REQUEST request_6 1714134098240 1714134098341 OK +REQUEST request_7 1714134098240 1714134098385 OK +USER LoginRecord END 1714134098386 +REQUEST main.4a961c5c.js 1714134098143 1714134098395 OK +USER LoginRecord START 1714134098422 +REQUEST request_0 1714134098422 1714134098506 OK +REQUEST request_5 1714134098499 1714134098582 OK +REQUEST request_3 1714134098507 1714134098590 OK +REQUEST request_2 1714134098507 1714134098591 OK +USER LoginRecord START 1714134098593 +REQUEST request_1 1714134098507 1714134098604 OK +REQUEST main.18e3ef94.css 1714134098507 1714134098605 OK +USER LoginRecord START 1714134098608 +REQUEST wiq2.ico 1714134098507 1714134098672 OK +REQUEST request_6 1714134098583 1714134098682 OK +REQUEST request_0 1714134098593 1714134098689 OK +REQUEST request_5 1714134098608 1714134098691 OK +REQUEST request_0 1714134098608 1714134098692 OK +REQUEST request_5 1714134098608 1714134098704 OK +REQUEST request_7 1714134098583 1714134098725 OK +USER LoginRecord END 1714134098725 +USER LoginRecord START 1714134098747 +REQUEST request_5 1714134098685 1714134098770 OK +REQUEST main.18e3ef94.css 1714134098690 1714134098773 OK +REQUEST main.18e3ef94.css 1714134098692 1714134098775 OK +REQUEST request_2 1714134098692 1714134098775 OK +REQUEST request_3 1714134098690 1714134098786 OK +REQUEST request_1 1714134098690 1714134098786 OK +REQUEST request_2 1714134098690 1714134098791 OK +REQUEST request_6 1714134098691 1714134098798 OK +REQUEST main.4a961c5c.js 1714134098507 1714134098798 OK +REQUEST request_1 1714134098692 1714134098798 OK +REQUEST request_5 1714134098716 1714134098802 OK +REQUEST request_3 1714134098692 1714134098802 OK +REQUEST request_7 1714134098691 1714134098814 OK +USER LoginRecord END 1714134098814 +REQUEST request_6 1714134098705 1714134098829 OK +REQUEST request_0 1714134098747 1714134098834 OK +REQUEST wiq2.ico 1714134098692 1714134098856 OK +REQUEST request_7 1714134098705 1714134098857 OK +USER LoginRecord END 1714134098857 +REQUEST request_5 1714134098762 1714134098859 OK +REQUEST wiq2.ico 1714134098690 1714134098879 OK +USER LoginRecord START 1714134098886 +REQUEST request_6 1714134098770 1714134098889 OK +REQUEST request_6 1714134098802 1714134098913 OK +REQUEST request_7 1714134098770 1714134098914 OK +USER LoginRecord END 1714134098915 +REQUEST request_2 1714134098835 1714134098918 OK +REQUEST main.18e3ef94.css 1714134098835 1714134098921 OK +REQUEST request_7 1714134098802 1714134098925 OK +USER LoginRecord END 1714134098926 +REQUEST request_1 1714134098835 1714134098934 OK +REQUEST request_3 1714134098835 1714134098936 OK +REQUEST request_6 1714134098860 1714134098972 OK +REQUEST request_0 1714134098886 1714134098980 OK +REQUEST main.4a961c5c.js 1714134098690 1714134098987 OK +REQUEST main.4a961c5c.js 1714134098692 1714134098989 OK +REQUEST wiq2.ico 1714134098834 1714134098998 OK +REQUEST request_7 1714134098860 1714134099002 OK +USER LoginRecord END 1714134099002 +REQUEST request_5 1714134098933 1714134099017 OK +REQUEST request_4 1714134098995 1714134099031 OK +REQUEST request_3 1714134098980 1714134099064 OK +REQUEST request_1 1714134098980 1714134099079 OK +REQUEST request_2 1714134098980 1714134099083 OK +REQUEST main.18e3ef94.css 1714134098980 1714134099085 OK +REQUEST main.4a961c5c.js 1714134098835 1714134099086 OK +USER LoginRecord START 1714134099104 +REQUEST request_6 1714134099017 1714134099121 OK +REQUEST request_4 1714134099088 1714134099123 OK +USER LoginRecord START 1714134099151 +REQUEST request_5 1714134099056 1714134099153 OK +REQUEST wiq2.ico 1714134098980 1714134099169 OK +REQUEST request_7 1714134099017 1714134099170 OK +USER LoginRecord END 1714134099171 +REQUEST request_0 1714134099104 1714134099201 OK +REQUEST request_0 1714134099151 1714134099235 OK +REQUEST request_6 1714134099154 1714134099261 OK +REQUEST main.4a961c5c.js 1714134098980 1714134099266 OK +USER LoginRecord START 1714134099275 +REQUEST request_3 1714134099202 1714134099285 OK +REQUEST request_2 1714134099202 1714134099286 OK +USER LoginRecord START 1714134099291 +REQUEST request_7 1714134099154 1714134099298 OK +USER LoginRecord END 1714134099299 +REQUEST request_1 1714134099201 1714134099299 OK +REQUEST main.18e3ef94.css 1714134099201 1714134099300 OK +REQUEST request_5 1714134099213 1714134099308 OK +REQUEST request_1 1714134099235 1714134099320 OK +REQUEST main.18e3ef94.css 1714134099235 1714134099320 OK +REQUEST request_3 1714134099236 1714134099333 OK +REQUEST request_2 1714134099236 1714134099334 OK +REQUEST request_0 1714134099275 1714134099372 OK +REQUEST request_0 1714134099291 1714134099386 OK +REQUEST wiq2.ico 1714134099201 1714134099392 OK +REQUEST wiq2.ico 1714134099235 1714134099400 OK +USER LoginRecord START 1714134099402 +REQUEST request_4 1714134099371 1714134099409 OK +REQUEST request_6 1714134099308 1714134099419 OK +REQUEST request_7 1714134099308 1714134099433 OK +USER LoginRecord END 1714134099434 +REQUEST request_4 1714134099418 1714134099454 OK +REQUEST request_3 1714134099373 1714134099455 OK +REQUEST request_1 1714134099373 1714134099471 OK +REQUEST main.18e3ef94.css 1714134099373 1714134099471 OK +REQUEST request_2 1714134099373 1714134099471 OK +REQUEST main.18e3ef94.css 1714134099387 1714134099475 OK +USER LoginRecord START 1714134099480 +REQUEST main.4a961c5c.js 1714134099235 1714134099483 OK +REQUEST request_1 1714134099387 1714134099483 OK +REQUEST request_3 1714134099387 1714134099484 OK +REQUEST request_2 1714134099387 1714134099484 OK +REQUEST main.4a961c5c.js 1714134099201 1714134099492 OK +REQUEST request_0 1714134099402 1714134099499 OK +REQUEST request_4 1714134099496 1714134099536 OK +REQUEST request_5 1714134099480 1714134099563 OK +REQUEST wiq2.ico 1714134099373 1714134099563 OK +REQUEST wiq2.ico 1714134099387 1714134099575 OK +REQUEST request_0 1714134099480 1714134099576 OK +REQUEST request_2 1714134099499 1714134099582 OK +REQUEST request_3 1714134099499 1714134099582 OK +REQUEST request_1 1714134099499 1714134099615 OK +REQUEST main.4a961c5c.js 1714134099373 1714134099622 OK +REQUEST main.18e3ef94.css 1714134099499 1714134099622 OK +REQUEST main.4a961c5c.js 1714134099387 1714134099635 OK +REQUEST request_1 1714134099576 1714134099663 OK +REQUEST main.18e3ef94.css 1714134099576 1714134099667 OK +REQUEST request_6 1714134099563 1714134099669 OK +REQUEST request_3 1714134099576 1714134099674 OK +REQUEST request_2 1714134099576 1714134099674 OK +REQUEST request_7 1714134099563 1714134099685 OK +USER LoginRecord END 1714134099685 +REQUEST wiq2.ico 1714134099499 1714134099689 OK +REQUEST wiq2.ico 1714134099576 1714134099766 OK +REQUEST request_5 1714134099696 1714134099778 OK +REQUEST main.4a961c5c.js 1714134099499 1714134099805 OK +REQUEST main.4a961c5c.js 1714134099576 1714134099822 OK +REQUEST request_6 1714134099779 1714134099880 OK +REQUEST request_7 1714134099779 1714134099924 OK +USER LoginRecord END 1714134099924 +REQUEST request_4 1714134099915 1714134099950 OK +REQUEST request_4 1714134099931 1714134099968 OK +REQUEST request_5 1714134099946 1714134100045 OK +USER LoginRecord START 1714134100101 +USER LoginRecord START 1714134100116 +REQUEST request_6 1714134100045 1714134100153 OK +REQUEST request_0 1714134100101 1714134100183 OK +REQUEST request_7 1714134100045 1714134100187 OK +USER LoginRecord END 1714134100187 +REQUEST request_0 1714134100116 1714134100202 OK +REQUEST request_1 1714134100184 1714134100268 OK +REQUEST main.18e3ef94.css 1714134100184 1714134100269 OK +REQUEST request_2 1714134100184 1714134100269 OK +REQUEST request_3 1714134100184 1714134100281 OK +USER LoginRecord START 1714134100287 +REQUEST request_2 1714134100203 1714134100289 OK +REQUEST main.18e3ef94.css 1714134100203 1714134100290 OK +REQUEST request_3 1714134100203 1714134100299 OK +REQUEST request_1 1714134100203 1714134100299 OK +REQUEST wiq2.ico 1714134100184 1714134100346 OK +USER LoginRecord START 1714134100364 +REQUEST wiq2.ico 1714134100203 1714134100368 OK +USER LoginRecord START 1714134100379 +REQUEST request_0 1714134100287 1714134100383 OK +REQUEST main.4a961c5c.js 1714134100184 1714134100433 OK +REQUEST request_0 1714134100364 1714134100448 OK +REQUEST main.4a961c5c.js 1714134100203 1714134100450 OK +REQUEST request_0 1714134100379 1714134100463 OK +REQUEST request_3 1714134100384 1714134100466 OK +REQUEST request_2 1714134100384 1714134100467 OK +REQUEST request_1 1714134100384 1714134100480 OK +REQUEST main.18e3ef94.css 1714134100384 1714134100483 OK +REQUEST request_2 1714134100448 1714134100532 OK +REQUEST request_1 1714134100448 1714134100533 OK +REQUEST main.18e3ef94.css 1714134100448 1714134100533 OK +REQUEST request_3 1714134100448 1714134100548 OK +REQUEST request_1 1714134100464 1714134100548 OK +REQUEST main.18e3ef94.css 1714134100464 1714134100550 OK +USER LoginRecord START 1714134100552 +REQUEST request_3 1714134100464 1714134100564 OK +REQUEST request_2 1714134100464 1714134100566 OK +REQUEST wiq2.ico 1714134100384 1714134100576 OK +REQUEST wiq2.ico 1714134100448 1714134100612 OK +REQUEST request_4 1714134100583 1714134100616 OK +REQUEST wiq2.ico 1714134100464 1714134100630 OK +REQUEST request_0 1714134100552 1714134100649 OK +REQUEST main.4a961c5c.js 1714134100384 1714134100675 OK +REQUEST main.4a961c5c.js 1714134100464 1714134100712 OK +REQUEST request_3 1714134100650 1714134100733 OK +REQUEST request_1 1714134100650 1714134100736 OK +USER LoginRecord START 1714134100738 +REQUEST main.4a961c5c.js 1714134100448 1714134100740 OK +REQUEST request_2 1714134100650 1714134100746 OK +REQUEST main.18e3ef94.css 1714134100650 1714134100748 OK +REQUEST request_0 1714134100738 1714134100822 OK +REQUEST wiq2.ico 1714134100649 1714134100840 OK +REQUEST request_4 1714134100816 1714134100851 OK +REQUEST main.4a961c5c.js 1714134100649 1714134100900 OK +REQUEST request_1 1714134100823 1714134100905 OK +REQUEST request_3 1714134100823 1714134100906 OK +REQUEST main.18e3ef94.css 1714134100823 1714134100919 OK +REQUEST request_2 1714134100823 1714134100920 OK +REQUEST request_4 1714134100892 1714134100928 OK +REQUEST wiq2.ico 1714134100823 1714134100986 OK +REQUEST request_4 1714134100986 1714134101022 OK +REQUEST main.4a961c5c.js 1714134100823 1714134101114 OK +USER LoginRecord START 1714134101127 +REQUEST request_4 1714134101143 1714134101177 OK +REQUEST request_5 1714134101095 1714134101179 OK +REQUEST request_0 1714134101127 1714134101211 OK +REQUEST request_6 1714134101179 1714134101282 OK +REQUEST main.18e3ef94.css 1714134101211 1714134101295 OK +REQUEST request_2 1714134101211 1714134101295 OK +REQUEST request_1 1714134101211 1714134101295 OK +USER LoginRecord START 1714134101298 +REQUEST request_5 1714134101222 1714134101304 OK +REQUEST request_3 1714134101211 1714134101308 OK +USER LoginRecord START 1714134101314 +REQUEST request_7 1714134101179 1714134101321 OK +USER LoginRecord END 1714134101321 +REQUEST wiq2.ico 1714134101211 1714134101375 OK +REQUEST request_4 1714134101345 1714134101380 OK +REQUEST request_0 1714134101298 1714134101396 OK +REQUEST request_0 1714134101314 1714134101398 OK +REQUEST request_6 1714134101304 1714134101405 OK +USER LoginRecord START 1714134101408 +REQUEST request_7 1714134101304 1714134101445 OK +USER LoginRecord END 1714134101445 +REQUEST request_5 1714134101377 1714134101461 OK +REQUEST request_2 1714134101396 1714134101480 OK +REQUEST request_3 1714134101397 1714134101481 OK +REQUEST request_3 1714134101398 1714134101482 OK +REQUEST main.18e3ef94.css 1714134101396 1714134101482 OK +REQUEST main.18e3ef94.css 1714134101398 1714134101483 OK +REQUEST request_4 1714134101452 1714134101487 OK +USER LoginRecord START 1714134101487 +REQUEST request_0 1714134101408 1714134101491 OK +REQUEST request_1 1714134101396 1714134101494 OK +REQUEST request_2 1714134101398 1714134101497 OK +REQUEST request_1 1714134101398 1714134101497 OK +REQUEST main.4a961c5c.js 1714134101211 1714134101500 OK +REQUEST request_5 1714134101408 1714134101503 OK +REQUEST wiq2.ico 1714134101398 1714134101565 OK +REQUEST request_6 1714134101461 1714134101567 OK +REQUEST request_0 1714134101486 1714134101571 OK +REQUEST request_2 1714134101492 1714134101575 OK +REQUEST request_7 1714134101461 1714134101584 OK +USER LoginRecord END 1714134101585 +REQUEST wiq2.ico 1714134101396 1714134101588 OK +REQUEST request_3 1714134101492 1714134101590 OK +REQUEST request_1 1714134101491 1714134101590 OK +REQUEST main.18e3ef94.css 1714134101491 1714134101592 OK +REQUEST request_6 1714134101503 1714134101624 OK +REQUEST request_7 1714134101503 1714134101651 OK +USER LoginRecord END 1714134101651 +REQUEST main.18e3ef94.css 1714134101571 1714134101655 OK +REQUEST request_1 1714134101571 1714134101655 OK +REQUEST request_2 1714134101571 1714134101655 OK +REQUEST wiq2.ico 1714134101491 1714134101656 OK +REQUEST request_3 1714134101571 1714134101669 OK +REQUEST main.4a961c5c.js 1714134101396 1714134101686 OK +REQUEST main.4a961c5c.js 1714134101398 1714134101688 OK +REQUEST request_5 1714134101644 1714134101726 OK +REQUEST wiq2.ico 1714134101571 1714134101738 OK +REQUEST main.4a961c5c.js 1714134101491 1714134101785 OK +REQUEST request_5 1714134101724 1714134101820 OK +REQUEST request_6 1714134101726 1714134101830 OK +USER LoginRecord START 1714134101847 +REQUEST request_7 1714134101726 1714134101852 OK +USER LoginRecord END 1714134101853 +REQUEST request_4 1714134101817 1714134101855 OK +REQUEST main.4a961c5c.js 1714134101571 1714134101864 OK +REQUEST request_5 1714134101785 1714134101868 OK +REQUEST request_5 1714134101832 1714134101913 OK +REQUEST request_5 1714134101832 1714134101914 OK +REQUEST request_5 1714134101832 1714134101927 OK +REQUEST request_6 1714134101821 1714134101932 OK +REQUEST request_7 1714134101821 1714134101942 OK +USER LoginRecord END 1714134101943 +REQUEST request_0 1714134101847 1714134101944 OK +REQUEST request_6 1714134101868 1714134101979 OK +REQUEST request_7 1714134101868 1714134102014 OK +USER LoginRecord END 1714134102015 +REQUEST request_5 1714134101924 1714134102020 OK +REQUEST request_4 1714134101986 1714134102022 OK +REQUEST request_2 1714134101944 1714134102028 OK +REQUEST request_3 1714134101945 1714134102035 OK +REQUEST request_7 1714134101914 1714134102038 OK +REQUEST request_7 1714134101914 1714134102039 OK +REQUEST request_1 1714134101944 1714134102041 OK +REQUEST main.18e3ef94.css 1714134101944 1714134102046 OK +REQUEST request_7 1714134101928 1714134102050 OK +REQUEST request_6 1714134101928 1714134102051 OK +USER LoginRecord END 1714134102051 +REQUEST request_6 1714134101914 1714134102082 OK +USER LoginRecord END 1714134102083 +REQUEST request_6 1714134101914 1714134102095 OK +USER LoginRecord END 1714134102096 +REQUEST wiq2.ico 1714134101944 1714134102134 OK +REQUEST request_6 1714134102020 1714134102139 OK +REQUEST request_7 1714134102021 1714134102146 OK +USER LoginRecord END 1714134102147 +REQUEST main.4a961c5c.js 1714134101944 1714134102193 OK +USER LoginRecord START 1714134102219 +REQUEST request_0 1714134102218 1714134102303 OK +REQUEST request_5 1714134102218 1714134102315 OK +USER LoginRecord START 1714134102328 +REQUEST request_4 1714134102312 1714134102347 OK +REQUEST request_5 1714134102265 1714134102348 OK +REQUEST request_4 1714134102312 1714134102348 OK +REQUEST request_4 1714134102328 1714134102362 OK +REQUEST request_2 1714134102303 1714134102386 OK +REQUEST main.18e3ef94.css 1714134102303 1714134102387 OK +REQUEST request_1 1714134102303 1714134102401 OK +REQUEST request_3 1714134102303 1714134102401 OK +REQUEST request_0 1714134102328 1714134102427 OK +REQUEST request_6 1714134102315 1714134102438 OK +REQUEST request_7 1714134102315 1714134102439 OK +USER LoginRecord END 1714134102439 +USER LoginRecord START 1714134102452 +REQUEST wiq2.ico 1714134102303 1714134102469 OK +REQUEST request_7 1714134102348 1714134102469 OK +REQUEST request_6 1714134102348 1714134102469 OK +USER LoginRecord END 1714134102469 +REQUEST request_1 1714134102427 1714134102511 OK +REQUEST request_4 1714134102482 1714134102518 OK +REQUEST request_3 1714134102428 1714134102534 OK +REQUEST main.18e3ef94.css 1714134102427 1714134102534 OK +REQUEST request_2 1714134102428 1714134102535 OK +REQUEST request_0 1714134102452 1714134102536 OK +REQUEST main.4a961c5c.js 1714134102303 1714134102592 OK +REQUEST request_5 1714134102497 1714134102594 OK +REQUEST request_2 1714134102536 1714134102619 OK +REQUEST wiq2.ico 1714134102427 1714134102619 OK +REQUEST main.18e3ef94.css 1714134102536 1714134102621 OK +REQUEST request_3 1714134102536 1714134102633 OK +REQUEST request_1 1714134102536 1714134102633 OK +REQUEST request_5 1714134102545 1714134102643 OK +REQUEST main.4a961c5c.js 1714134102427 1714134102677 OK +REQUEST request_4 1714134102654 1714134102691 OK +REQUEST wiq2.ico 1714134102536 1714134102702 OK +REQUEST request_6 1714134102594 1714134102703 OK +REQUEST request_4 1714134102701 1714134102737 OK +REQUEST request_7 1714134102594 1714134102750 OK +USER LoginRecord END 1714134102750 +REQUEST request_6 1714134102643 1714134102752 OK +USER LoginRecord START 1714134102761 +REQUEST request_7 1714134102644 1714134102769 OK +USER LoginRecord END 1714134102769 +USER LoginRecord START 1714134102776 +REQUEST main.4a961c5c.js 1714134102536 1714134102786 OK +REQUEST request_0 1714134102761 1714134102845 OK +REQUEST request_0 1714134102776 1714134102872 OK +REQUEST main.18e3ef94.css 1714134102846 1714134102929 OK +REQUEST request_3 1714134102846 1714134102943 OK +REQUEST request_2 1714134102846 1714134102944 OK +REQUEST request_1 1714134102846 1714134102944 OK +REQUEST request_3 1714134102872 1714134102955 OK +REQUEST main.18e3ef94.css 1714134102872 1714134102955 OK +REQUEST request_2 1714134102872 1714134102971 OK +REQUEST request_1 1714134102872 1714134102971 OK +REQUEST request_5 1714134102916 1714134103011 OK +REQUEST wiq2.ico 1714134102846 1714134103012 OK +REQUEST wiq2.ico 1714134102872 1714134103060 OK +REQUEST main.4a961c5c.js 1714134102846 1714134103092 OK +REQUEST request_6 1714134103011 1714134103119 OK +REQUEST request_7 1714134103011 1714134103154 OK +USER LoginRecord END 1714134103155 +REQUEST main.4a961c5c.js 1714134102872 1714134103161 OK +REQUEST request_4 1714134103228 1714134103264 OK +REQUEST request_4 1714134103228 1714134103264 OK +REQUEST request_5 1714134103228 1714134103311 OK +REQUEST request_5 1714134103275 1714134103372 OK +REQUEST request_4 1714134103339 1714134103375 OK +REQUEST request_4 1714134103369 1714134103404 OK +REQUEST request_4 1714134103369 1714134103405 OK +REQUEST request_6 1714134103311 1714134103410 OK +REQUEST request_7 1714134103311 1714134103436 OK +USER LoginRecord END 1714134103436 +REQUEST request_6 1714134103372 1714134103477 OK +REQUEST request_7 1714134103372 1714134103495 OK +USER LoginRecord END 1714134103495 +REQUEST request_4 1714134103570 1714134103605 OK +USER LoginRecord START 1714134103663 +REQUEST request_5 1714134103632 1714134103714 OK +REQUEST request_4 1714134103694 1714134103730 OK +REQUEST request_0 1714134103663 1714134103760 OK +REQUEST request_6 1714134103714 1714134103814 OK +REQUEST request_7 1714134103714 1714134103839 OK +USER LoginRecord END 1714134103839 +REQUEST request_1 1714134103760 1714134103844 OK +REQUEST request_4 1714134103819 1714134103856 OK +REQUEST request_2 1714134103760 1714134103869 OK +REQUEST main.18e3ef94.css 1714134103760 1714134103870 OK +REQUEST request_3 1714134103761 1714134103871 OK +REQUEST request_4 1714134103850 1714134103886 OK +USER LoginRecord START 1714134103897 +USER LoginRecord START 1714134103928 +REQUEST wiq2.ico 1714134103760 1714134103953 OK +USER LoginRecord START 1714134103975 +REQUEST request_0 1714134103897 1714134103994 OK +REQUEST main.4a961c5c.js 1714134103760 1714134104003 OK +REQUEST request_0 1714134103927 1714134104010 OK +REQUEST request_4 1714134103990 1714134104026 OK +REQUEST request_0 1714134103975 1714134104072 OK +REQUEST request_1 1714134103995 1714134104079 OK +REQUEST request_2 1714134103995 1714134104079 OK +USER LoginRecord START 1714134104082 +REQUEST request_3 1714134103995 1714134104090 OK +REQUEST main.18e3ef94.css 1714134103995 1714134104094 OK +REQUEST request_3 1714134104011 1714134104095 OK +REQUEST request_2 1714134104011 1714134104095 OK +REQUEST request_1 1714134104010 1714134104108 OK +REQUEST main.18e3ef94.css 1714134104010 1714134104108 OK +REQUEST request_1 1714134104072 1714134104155 OK +REQUEST request_3 1714134104073 1714134104156 OK +REQUEST main.18e3ef94.css 1714134104072 1714134104157 OK +REQUEST request_5 1714134104081 1714134104164 OK +REQUEST request_2 1714134104073 1714134104171 OK +REQUEST wiq2.ico 1714134104010 1714134104176 OK +REQUEST request_0 1714134104081 1714134104181 OK +REQUEST request_4 1714134104144 1714134104182 OK +REQUEST wiq2.ico 1714134103994 1714134104184 OK +REQUEST main.4a961c5c.js 1714134103995 1714134104245 OK +REQUEST wiq2.ico 1714134104072 1714134104265 OK +REQUEST request_3 1714134104182 1714134104266 OK +USER LoginRecord START 1714134104270 +REQUEST request_6 1714134104165 1714134104271 OK +REQUEST request_1 1714134104181 1714134104279 OK +REQUEST request_2 1714134104181 1714134104279 OK +REQUEST main.18e3ef94.css 1714134104181 1714134104283 OK +REQUEST request_7 1714134104165 1714134104287 OK +USER LoginRecord END 1714134104287 +REQUEST main.4a961c5c.js 1714134104010 1714134104298 OK +REQUEST request_0 1714134104269 1714134104351 OK +REQUEST main.4a961c5c.js 1714134104072 1714134104360 OK +REQUEST wiq2.ico 1714134104181 1714134104372 OK +USER LoginRecord START 1714134104378 +REQUEST request_4 1714134104363 1714134104398 OK +REQUEST request_4 1714134104394 1714134104428 OK +REQUEST request_3 1714134104352 1714134104437 OK +REQUEST main.18e3ef94.css 1714134104352 1714134104438 OK +USER LoginRecord START 1714134104441 +REQUEST request_2 1714134104352 1714134104450 OK +REQUEST request_1 1714134104352 1714134104450 OK +REQUEST main.4a961c5c.js 1714134104181 1714134104473 OK +REQUEST request_0 1714134104378 1714134104476 OK +REQUEST request_4 1714134104456 1714134104491 OK +REQUEST request_4 1714134104471 1714134104506 OK +REQUEST wiq2.ico 1714134104351 1714134104513 OK +REQUEST request_0 1714134104440 1714134104524 OK +REQUEST request_3 1714134104476 1714134104559 OK +REQUEST request_1 1714134104476 1714134104572 OK +REQUEST request_2 1714134104476 1714134104573 OK +REQUEST main.18e3ef94.css 1714134104476 1714134104573 OK +REQUEST main.4a961c5c.js 1714134104352 1714134104596 OK +REQUEST request_1 1714134104525 1714134104609 OK +REQUEST request_3 1714134104525 1714134104609 OK +REQUEST request_2 1714134104525 1714134104622 OK +REQUEST main.18e3ef94.css 1714134104524 1714134104622 OK +REQUEST request_4 1714134104595 1714134104631 OK +REQUEST wiq2.ico 1714134104476 1714134104668 OK +REQUEST wiq2.ico 1714134104524 1714134104690 OK +REQUEST main.4a961c5c.js 1714134104476 1714134104724 OK +USER LoginRecord START 1714134104736 +REQUEST main.4a961c5c.js 1714134104524 1714134104777 OK +REQUEST request_0 1714134104736 1714134104822 OK +REQUEST request_1 1714134104823 1714134104908 OK +REQUEST request_2 1714134104823 1714134104908 OK +REQUEST request_3 1714134104823 1714134104920 OK +REQUEST main.18e3ef94.css 1714134104823 1714134104922 OK +REQUEST request_5 1714134104847 1714134104929 OK +REQUEST request_4 1714134104926 1714134104961 OK +REQUEST wiq2.ico 1714134104822 1714134104990 OK +REQUEST request_6 1714134104930 1714134105030 OK +USER LoginRecord START 1714134105038 +USER LoginRecord START 1714134105068 +REQUEST request_7 1714134104930 1714134105073 OK +USER LoginRecord END 1714134105073 +REQUEST request_4 1714134105053 1714134105090 OK +REQUEST main.4a961c5c.js 1714134104823 1714134105110 OK +REQUEST request_5 1714134105037 1714134105121 OK +REQUEST request_0 1714134105038 1714134105142 OK +REQUEST request_0 1714134105068 1714134105154 OK +REQUEST request_6 1714134105121 1714134105222 OK +REQUEST request_1 1714134105143 1714134105225 OK +REQUEST request_2 1714134105143 1714134105227 OK +REQUEST main.18e3ef94.css 1714134105143 1714134105228 OK +REQUEST request_2 1714134105154 1714134105238 OK +REQUEST request_3 1714134105143 1714134105239 OK +REQUEST request_3 1714134105154 1714134105239 OK +REQUEST request_1 1714134105154 1714134105255 OK +REQUEST main.18e3ef94.css 1714134105154 1714134105256 OK +REQUEST request_7 1714134105121 1714134105263 OK +USER LoginRecord END 1714134105263 +REQUEST wiq2.ico 1714134105154 1714134105321 OK +REQUEST wiq2.ico 1714134105143 1714134105333 OK +USER LoginRecord START 1714134105365 +REQUEST request_4 1714134105334 1714134105368 OK +REQUEST main.4a961c5c.js 1714134105143 1714134105431 OK +REQUEST main.4a961c5c.js 1714134105154 1714134105443 OK +REQUEST request_0 1714134105365 1714134105447 OK +REQUEST request_5 1714134105380 1714134105464 OK +REQUEST request_4 1714134105474 1714134105511 OK +REQUEST request_3 1714134105448 1714134105531 OK +REQUEST request_2 1714134105448 1714134105532 OK +REQUEST request_1 1714134105448 1714134105548 OK +REQUEST main.18e3ef94.css 1714134105448 1714134105549 OK +REQUEST request_6 1714134105465 1714134105568 OK +REQUEST wiq2.ico 1714134105448 1714134105608 OK +REQUEST request_7 1714134105465 1714134105610 OK +USER LoginRecord END 1714134105611 +REQUEST main.4a961c5c.js 1714134105448 1714134105692 OK +USER LoginRecord START 1714134105770 +USER LoginRecord START 1714134105801 +REQUEST request_4 1714134105801 1714134105836 OK +USER LoginRecord START 1714134105847 +REQUEST request_0 1714134105769 1714134105854 OK +REQUEST request_0 1714134105801 1714134105898 OK +REQUEST request_0 1714134105847 1714134105931 OK +REQUEST request_3 1714134105855 1714134105939 OK +REQUEST main.18e3ef94.css 1714134105855 1714134105952 OK +REQUEST request_2 1714134105855 1714134105953 OK +REQUEST request_1 1714134105855 1714134105955 OK +USER LoginRecord START 1714134105957 +REQUEST request_2 1714134105899 1714134105982 OK +REQUEST request_1 1714134105899 1714134105983 OK +REQUEST request_3 1714134105899 1714134105983 OK +REQUEST main.18e3ef94.css 1714134105899 1714134105997 OK +REQUEST request_1 1714134105932 1714134106015 OK +REQUEST request_2 1714134105932 1714134106017 OK +REQUEST wiq2.ico 1714134105855 1714134106020 OK +REQUEST request_3 1714134105932 1714134106030 OK +REQUEST main.18e3ef94.css 1714134105932 1714134106031 OK +REQUEST request_0 1714134105956 1714134106052 OK +REQUEST wiq2.ico 1714134105899 1714134106091 OK +REQUEST wiq2.ico 1714134105932 1714134106097 OK +USER LoginRecord START 1714134106128 +REQUEST main.18e3ef94.css 1714134106052 1714134106135 OK +REQUEST request_2 1714134106052 1714134106136 OK +REQUEST request_1 1714134106052 1714134106136 OK +REQUEST main.4a961c5c.js 1714134105855 1714134106143 OK +REQUEST request_3 1714134106052 1714134106148 OK +REQUEST main.4a961c5c.js 1714134105932 1714134106181 OK +REQUEST main.4a961c5c.js 1714134105899 1714134106189 OK +USER LoginRecord START 1714134106221 +REQUEST request_0 1714134106127 1714134106224 OK +REQUEST wiq2.ico 1714134106052 1714134106244 OK +REQUEST request_4 1714134106252 1714134106288 OK +USER LoginRecord START 1714134106298 +REQUEST request_0 1714134106220 1714134106305 OK +REQUEST request_1 1714134106225 1714134106306 OK +REQUEST main.18e3ef94.css 1714134106225 1714134106315 OK +REQUEST request_3 1714134106225 1714134106322 OK +REQUEST request_2 1714134106225 1714134106324 OK +REQUEST main.4a961c5c.js 1714134106052 1714134106341 OK +REQUEST request_3 1714134106306 1714134106387 OK +REQUEST request_0 1714134106298 1714134106397 OK +REQUEST request_2 1714134106306 1714134106403 OK +REQUEST request_1 1714134106305 1714134106404 OK +REQUEST main.18e3ef94.css 1714134106305 1714134106406 OK +REQUEST wiq2.ico 1714134106225 1714134106413 OK +REQUEST request_5 1714134106330 1714134106425 OK +REQUEST main.4a961c5c.js 1714134106225 1714134106469 OK +REQUEST wiq2.ico 1714134106305 1714134106471 OK +REQUEST request_3 1714134106398 1714134106484 OK +REQUEST request_2 1714134106398 1714134106486 OK +REQUEST main.18e3ef94.css 1714134106398 1714134106486 OK +REQUEST request_1 1714134106398 1714134106531 OK +REQUEST request_6 1714134106426 1714134106553 OK +REQUEST main.4a961c5c.js 1714134106305 1714134106555 OK +REQUEST request_7 1714134106426 1714134106574 OK +USER LoginRecord END 1714134106574 +REQUEST wiq2.ico 1714134106397 1714134106592 OK +USER LoginRecord START 1714134106642 +REQUEST request_5 1714134106580 1714134106676 OK +REQUEST request_4 1714134106642 1714134106678 OK +REQUEST main.4a961c5c.js 1714134106398 1714134106712 OK +REQUEST request_0 1714134106642 1714134106725 OK +REQUEST request_4 1714134106721 1714134106759 OK +REQUEST request_6 1714134106676 1714134106784 OK +REQUEST request_4 1714134106767 1714134106803 OK +REQUEST request_1 1714134106726 1714134106810 OK +REQUEST main.18e3ef94.css 1714134106726 1714134106812 OK +REQUEST request_7 1714134106676 1714134106819 OK +USER LoginRecord END 1714134106820 +REQUEST request_3 1714134106726 1714134106824 OK +REQUEST request_2 1714134106726 1714134106824 OK +USER LoginRecord START 1714134106861 +REQUEST wiq2.ico 1714134106726 1714134106890 OK +USER LoginRecord START 1714134106923 +REQUEST request_0 1714134106861 1714134106946 OK +REQUEST main.4a961c5c.js 1714134106726 1714134106975 OK +REQUEST request_0 1714134106923 1714134107022 OK +REQUEST request_1 1714134106947 1714134107033 OK +REQUEST request_2 1714134106948 1714134107053 OK +REQUEST request_3 1714134106948 1714134107054 OK +REQUEST main.18e3ef94.css 1714134106947 1714134107056 OK +USER LoginRecord START 1714134107061 +REQUEST request_5 1714134107015 1714134107098 OK +REQUEST request_1 1714134107022 1714134107107 OK +REQUEST request_2 1714134107022 1714134107107 OK +REQUEST main.18e3ef94.css 1714134107022 1714134107109 OK +REQUEST wiq2.ico 1714134106947 1714134107112 OK +REQUEST request_3 1714134107022 1714134107119 OK +REQUEST request_0 1714134107061 1714134107160 OK +REQUEST main.4a961c5c.js 1714134106947 1714134107195 OK +REQUEST request_6 1714134107098 1714134107202 OK +REQUEST request_4 1714134107181 1714134107217 OK +REQUEST request_7 1714134107098 1714134107221 OK +USER LoginRecord END 1714134107222 +REQUEST wiq2.ico 1714134107022 1714134107232 OK +REQUEST main.18e3ef94.css 1714134107161 1714134107246 OK +REQUEST request_4 1714134107216 1714134107252 OK +REQUEST request_1 1714134107161 1714134107258 OK +REQUEST request_2 1714134107161 1714134107258 OK +REQUEST request_3 1714134107161 1714134107258 OK +REQUEST main.4a961c5c.js 1714134107022 1714134107272 OK +USER LoginRecord START 1714134107278 +REQUEST request_4 1714134107246 1714134107282 OK +USER LoginRecord START 1714134107309 +REQUEST wiq2.ico 1714134107161 1714134107351 OK +REQUEST request_0 1714134107278 1714134107364 OK +USER LoginRecord START 1714134107403 +REQUEST request_0 1714134107308 1714134107404 OK +USER LoginRecord START 1714134107434 +REQUEST request_1 1714134107364 1714134107446 OK +REQUEST main.4a961c5c.js 1714134107161 1714134107450 OK +REQUEST main.18e3ef94.css 1714134107364 1714134107454 OK +REQUEST request_2 1714134107364 1714134107455 OK +REQUEST request_3 1714134107364 1714134107462 OK +REQUEST request_0 1714134107402 1714134107487 OK +REQUEST request_2 1714134107405 1714134107487 OK +REQUEST main.18e3ef94.css 1714134107405 1714134107489 OK +REQUEST request_1 1714134107405 1714134107500 OK +REQUEST request_3 1714134107405 1714134107501 OK +REQUEST request_0 1714134107433 1714134107517 OK +REQUEST wiq2.ico 1714134107364 1714134107530 OK +REQUEST request_2 1714134107489 1714134107584 OK +REQUEST main.18e3ef94.css 1714134107488 1714134107585 OK +REQUEST request_1 1714134107488 1714134107587 OK +REQUEST request_3 1714134107489 1714134107589 OK +REQUEST wiq2.ico 1714134107405 1714134107595 OK +REQUEST request_1 1714134107517 1714134107602 OK +REQUEST request_2 1714134107517 1714134107615 OK +REQUEST main.18e3ef94.css 1714134107517 1714134107617 OK +REQUEST request_3 1714134107517 1714134107617 OK +REQUEST request_4 1714134107599 1714134107634 OK +REQUEST wiq2.ico 1714134107488 1714134107650 OK +REQUEST main.4a961c5c.js 1714134107364 1714134107655 OK +REQUEST wiq2.ico 1714134107517 1714134107680 OK +REQUEST main.4a961c5c.js 1714134107405 1714134107690 OK +REQUEST request_4 1714134107667 1714134107702 OK +USER LoginRecord START 1714134107731 +REQUEST main.4a961c5c.js 1714134107488 1714134107746 OK +REQUEST main.4a961c5c.js 1714134107517 1714134107771 OK +USER LoginRecord START 1714134107825 +REQUEST request_0 1714134107731 1714134107829 OK +REQUEST request_0 1714134107825 1714134107908 OK +REQUEST request_3 1714134107829 1714134107914 OK +REQUEST request_2 1714134107829 1714134107927 OK +REQUEST main.18e3ef94.css 1714134107829 1714134107927 OK +REQUEST request_1 1714134107829 1714134107928 OK +REQUEST request_1 1714134107908 1714134107992 OK +REQUEST main.18e3ef94.css 1714134107908 1714134107993 OK +REQUEST request_3 1714134107908 1714134108007 OK +REQUEST request_2 1714134107908 1714134108008 OK +REQUEST wiq2.ico 1714134107829 1714134108022 OK +USER LoginRecord START 1714134108041 +REQUEST wiq2.ico 1714134107908 1714134108071 OK +REQUEST main.4a961c5c.js 1714134107829 1714134108076 OK +REQUEST request_5 1714134108041 1714134108124 OK +REQUEST request_0 1714134108041 1714134108138 OK +REQUEST main.4a961c5c.js 1714134107908 1714134108157 OK +USER LoginRecord START 1714134108198 +REQUEST request_5 1714134108136 1714134108221 OK +REQUEST request_1 1714134108138 1714134108221 OK +REQUEST request_6 1714134108124 1714134108224 OK +REQUEST request_2 1714134108138 1714134108226 OK +REQUEST main.18e3ef94.css 1714134108138 1714134108226 OK +REQUEST request_3 1714134108138 1714134108235 OK +USER LoginRecord START 1714134108246 +REQUEST request_7 1714134108124 1714134108248 OK +USER LoginRecord END 1714134108249 +REQUEST request_0 1714134108198 1714134108296 OK +REQUEST request_4 1714134108276 1714134108312 OK +REQUEST request_6 1714134108221 1714134108321 OK +REQUEST wiq2.ico 1714134108138 1714134108328 OK +REQUEST request_0 1714134108245 1714134108329 OK +REQUEST request_7 1714134108221 1714134108345 OK +USER LoginRecord END 1714134108346 +REQUEST request_2 1714134108297 1714134108381 OK +REQUEST request_3 1714134108297 1714134108381 OK +REQUEST main.18e3ef94.css 1714134108297 1714134108382 OK +USER LoginRecord START 1714134108385 +REQUEST request_1 1714134108297 1714134108394 OK +REQUEST main.18e3ef94.css 1714134108330 1714134108413 OK +REQUEST main.4a961c5c.js 1714134108138 1714134108425 OK +REQUEST request_2 1714134108330 1714134108426 OK +REQUEST request_3 1714134108330 1714134108427 OK +REQUEST request_1 1714134108330 1714134108429 OK +REQUEST request_4 1714134108424 1714134108459 OK +REQUEST request_0 1714134108385 1714134108470 OK +REQUEST wiq2.ico 1714134108297 1714134108489 OK +REQUEST wiq2.ico 1714134108329 1714134108493 OK +REQUEST request_5 1714134108415 1714134108501 OK +REQUEST request_5 1714134108461 1714134108544 OK +REQUEST request_3 1714134108470 1714134108554 OK +REQUEST request_2 1714134108470 1714134108555 OK +REQUEST request_1 1714134108470 1714134108567 OK +REQUEST main.18e3ef94.css 1714134108470 1714134108569 OK +REQUEST main.4a961c5c.js 1714134108297 1714134108584 OK +USER LoginRecord START 1714134108585 +REQUEST request_6 1714134108501 1714134108606 OK +REQUEST main.4a961c5c.js 1714134108330 1714134108616 OK +REQUEST request_4 1714134108583 1714134108619 OK +REQUEST request_7 1714134108501 1714134108624 OK +USER LoginRecord END 1714134108625 +REQUEST request_5 1714134108540 1714134108636 OK +REQUEST wiq2.ico 1714134108470 1714134108636 OK +REQUEST request_6 1714134108544 1714134108647 OK +REQUEST request_0 1714134108585 1714134108680 OK +REQUEST request_7 1714134108544 1714134108685 OK +USER LoginRecord END 1714134108686 +REQUEST request_6 1714134108636 1714134108743 OK +REQUEST main.4a961c5c.js 1714134108470 1714134108761 OK +REQUEST request_2 1714134108681 1714134108765 OK +REQUEST request_1 1714134108681 1714134108765 OK +REQUEST request_7 1714134108637 1714134108779 OK +USER LoginRecord END 1714134108779 +REQUEST main.18e3ef94.css 1714134108681 1714134108780 OK +REQUEST request_3 1714134108681 1714134108780 OK +REQUEST request_4 1714134108756 1714134108798 OK +USER LoginRecord START 1714134108866 +REQUEST wiq2.ico 1714134108681 1714134108871 OK +REQUEST main.4a961c5c.js 1714134108681 1714134108928 OK +REQUEST request_0 1714134108866 1714134108951 OK +USER LoginRecord START 1714134108974 +USER LoginRecord START 1714134109021 +REQUEST request_1 1714134108952 1714134109035 OK +REQUEST request_4 1714134109005 1714134109041 OK +REQUEST request_5 1714134108959 1714134109042 OK +REQUEST request_3 1714134108952 1714134109050 OK +REQUEST main.18e3ef94.css 1714134108952 1714134109051 OK +REQUEST request_2 1714134108952 1714134109051 OK +REQUEST request_5 1714134108974 1714134109058 OK +REQUEST request_0 1714134108974 1714134109069 OK +REQUEST wiq2.ico 1714134108951 1714134109116 OK +REQUEST request_0 1714134109021 1714134109120 OK +REQUEST request_6 1714134109042 1714134109158 OK +REQUEST request_1 1714134109071 1714134109159 OK +REQUEST request_4 1714134109130 1714134109165 OK +REQUEST main.18e3ef94.css 1714134109071 1714134109168 OK +REQUEST request_6 1714134109058 1714134109173 OK +REQUEST request_2 1714134109072 1714134109174 OK +REQUEST request_3 1714134109072 1714134109175 OK +REQUEST request_7 1714134109058 1714134109182 OK +USER LoginRecord END 1714134109182 +REQUEST request_7 1714134109042 1714134109185 OK +USER LoginRecord END 1714134109185 +REQUEST main.4a961c5c.js 1714134108951 1714134109197 OK +REQUEST request_1 1714134109120 1714134109203 OK +REQUEST main.18e3ef94.css 1714134109120 1714134109203 OK +REQUEST request_2 1714134109120 1714134109203 OK +REQUEST request_3 1714134109120 1714134109215 OK +USER LoginRecord START 1714134109240 +REQUEST wiq2.ico 1714134109070 1714134109257 OK +REQUEST wiq2.ico 1714134109120 1714134109307 OK +REQUEST main.4a961c5c.js 1714134109071 1714134109318 OK +REQUEST request_0 1714134109240 1714134109325 OK +REQUEST main.4a961c5c.js 1714134109120 1714134109404 OK +REQUEST main.18e3ef94.css 1714134109326 1714134109409 OK +REQUEST request_2 1714134109326 1714134109410 OK +REQUEST request_3 1714134109326 1714134109410 OK +REQUEST request_1 1714134109326 1714134109421 OK +USER LoginRecord START 1714134109443 +REQUEST request_4 1714134109443 1714134109479 OK +REQUEST wiq2.ico 1714134109326 1714134109493 OK +USER LoginRecord START 1714134109506 +REQUEST request_0 1714134109443 1714134109540 OK +REQUEST request_0 1714134109505 1714134109603 OK +REQUEST main.4a961c5c.js 1714134109326 1714134109610 OK +REQUEST request_1 1714134109540 1714134109625 OK +REQUEST request_3 1714134109540 1714134109637 OK +REQUEST main.18e3ef94.css 1714134109540 1714134109637 OK +REQUEST request_2 1714134109540 1714134109638 OK +USER LoginRecord START 1714134109677 +REQUEST request_4 1714134109645 1714134109680 OK +REQUEST request_3 1714134109604 1714134109687 OK +REQUEST request_2 1714134109604 1714134109688 OK +REQUEST main.18e3ef94.css 1714134109604 1714134109701 OK +REQUEST request_1 1714134109604 1714134109702 OK +USER LoginRecord START 1714134109708 +USER LoginRecord START 1714134109708 +REQUEST request_5 1714134109622 1714134109717 OK +REQUEST wiq2.ico 1714134109540 1714134109730 OK +USER LoginRecord START 1714134109754 +REQUEST request_0 1714134109676 1714134109762 OK +REQUEST main.4a961c5c.js 1714134109540 1714134109790 OK +REQUEST wiq2.ico 1714134109604 1714134109795 OK +REQUEST request_0 1714134109707 1714134109806 OK +REQUEST request_0 1714134109707 1714134109809 OK +REQUEST request_6 1714134109718 1714134109828 OK +REQUEST request_4 1714134109802 1714134109837 OK +REQUEST request_1 1714134109762 1714134109845 OK +REQUEST request_2 1714134109762 1714134109845 OK +REQUEST main.18e3ef94.css 1714134109762 1714134109845 OK +REQUEST request_0 1714134109754 1714134109851 OK +REQUEST main.4a961c5c.js 1714134109604 1714134109852 OK +REQUEST request_3 1714134109763 1714134109858 OK +REQUEST request_7 1714134109718 1714134109861 OK +USER LoginRecord END 1714134109861 +REQUEST request_1 1714134109806 1714134109888 OK +REQUEST main.18e3ef94.css 1714134109806 1714134109889 OK +REQUEST request_2 1714134109807 1714134109890 OK +REQUEST request_2 1714134109809 1714134109891 OK +REQUEST request_1 1714134109809 1714134109892 OK +USER LoginRecord START 1714134109896 +REQUEST request_3 1714134109807 1714134109900 OK +REQUEST request_3 1714134109809 1714134109903 OK +REQUEST main.18e3ef94.css 1714134109809 1714134109905 OK +REQUEST wiq2.ico 1714134109762 1714134109930 OK +REQUEST request_2 1714134109851 1714134109933 OK +REQUEST request_1 1714134109851 1714134109934 OK +REQUEST request_3 1714134109851 1714134109947 OK +REQUEST main.18e3ef94.css 1714134109851 1714134109949 OK +REQUEST request_5 1714134109863 1714134109957 OK +REQUEST wiq2.ico 1714134109806 1714134109968 OK +REQUEST request_0 1714134109895 1714134109978 OK +REQUEST wiq2.ico 1714134109809 1714134110002 OK +REQUEST request_5 1714134109942 1714134110027 OK +REQUEST wiq2.ico 1714134109851 1714134110040 OK +REQUEST main.4a961c5c.js 1714134109762 1714134110048 OK +REQUEST request_1 1714134109978 1714134110061 OK +REQUEST request_6 1714134109957 1714134110071 OK +REQUEST request_2 1714134109978 1714134110076 OK +REQUEST request_3 1714134109978 1714134110077 OK +REQUEST main.18e3ef94.css 1714134109978 1714134110079 OK +REQUEST request_7 1714134109957 1714134110080 OK +USER LoginRecord END 1714134110080 +REQUEST main.4a961c5c.js 1714134109806 1714134110094 OK +REQUEST main.4a961c5c.js 1714134109809 1714134110098 OK +REQUEST request_5 1714134110036 1714134110118 OK +USER LoginRecord START 1714134110131 +REQUEST request_6 1714134110027 1714134110132 OK +REQUEST request_4 1714134110099 1714134110135 OK +REQUEST main.4a961c5c.js 1714134109851 1714134110138 OK +REQUEST wiq2.ico 1714134109978 1714134110144 OK +REQUEST request_7 1714134110027 1714134110152 OK +USER LoginRecord END 1714134110152 +REQUEST request_0 1714134110131 1714134110215 OK +REQUEST request_6 1714134110118 1714134110217 OK +USER LoginRecord START 1714134110224 +REQUEST main.4a961c5c.js 1714134109978 1714134110229 OK +USER LoginRecord START 1714134110240 +REQUEST request_7 1714134110119 1714134110263 OK +USER LoginRecord END 1714134110263 +REQUEST request_5 1714134110193 1714134110276 OK +REQUEST main.18e3ef94.css 1714134110215 1714134110298 OK +REQUEST request_2 1714134110215 1714134110301 OK +REQUEST request_0 1714134110224 1714134110307 OK +REQUEST request_3 1714134110215 1714134110311 OK +REQUEST request_1 1714134110215 1714134110313 OK +REQUEST request_0 1714134110240 1714134110337 OK +USER LoginRecord START 1714134110347 +REQUEST request_6 1714134110276 1714134110377 OK +REQUEST wiq2.ico 1714134110215 1714134110380 OK +REQUEST request_1 1714134110307 1714134110389 OK +REQUEST request_7 1714134110276 1714134110399 OK +USER LoginRecord END 1714134110399 +REQUEST request_2 1714134110308 1714134110404 OK +REQUEST request_3 1714134110308 1714134110404 OK +REQUEST main.18e3ef94.css 1714134110307 1714134110407 OK +REQUEST main.18e3ef94.css 1714134110338 1714134110422 OK +REQUEST request_2 1714134110338 1714134110423 OK +REQUEST request_0 1714134110347 1714134110429 OK +REQUEST request_1 1714134110338 1714134110434 OK +REQUEST request_3 1714134110338 1714134110434 OK +REQUEST wiq2.ico 1714134110307 1714134110469 OK +REQUEST request_4 1714134110442 1714134110479 OK +REQUEST request_5 1714134110395 1714134110493 OK +REQUEST main.4a961c5c.js 1714134110215 1714134110507 OK +REQUEST request_3 1714134110430 1714134110513 OK +REQUEST request_1 1714134110430 1714134110527 OK +REQUEST request_2 1714134110430 1714134110528 OK +REQUEST wiq2.ico 1714134110337 1714134110529 OK +REQUEST main.18e3ef94.css 1714134110430 1714134110529 OK +USER LoginRecord START 1714134110537 +REQUEST main.4a961c5c.js 1714134110307 1714134110554 OK +REQUEST request_5 1714134110489 1714134110571 OK +REQUEST wiq2.ico 1714134110430 1714134110591 OK +REQUEST request_6 1714134110493 1714134110603 OK +USER LoginRecord START 1714134110614 +REQUEST request_0 1714134110537 1714134110624 OK +REQUEST main.4a961c5c.js 1714134110338 1714134110629 OK +REQUEST request_7 1714134110493 1714134110635 OK +USER LoginRecord END 1714134110635 +REQUEST request_6 1714134110571 1714134110671 OK +REQUEST main.4a961c5c.js 1714134110430 1714134110678 OK +REQUEST request_7 1714134110571 1714134110695 OK +USER LoginRecord END 1714134110696 +REQUEST main.18e3ef94.css 1714134110625 1714134110708 OK +REQUEST request_2 1714134110625 1714134110709 OK +REQUEST request_0 1714134110613 1714134110710 OK +REQUEST request_3 1714134110625 1714134110723 OK +REQUEST request_1 1714134110625 1714134110723 OK +REQUEST wiq2.ico 1714134110625 1714134110791 OK +REQUEST request_3 1714134110711 1714134110793 OK +REQUEST main.18e3ef94.css 1714134110711 1714134110795 OK +REQUEST request_2 1714134110711 1714134110807 OK +REQUEST request_1 1714134110711 1714134110807 OK +REQUEST main.4a961c5c.js 1714134110625 1714134110876 OK +REQUEST wiq2.ico 1714134110711 1714134110902 OK +REQUEST request_5 1714134110857 1714134110944 OK +REQUEST main.4a961c5c.js 1714134110711 1714134110962 OK +REQUEST request_6 1714134110944 1714134111045 OK +REQUEST request_7 1714134110944 1714134111092 OK +USER LoginRecord END 1714134111092 +REQUEST request_5 1714134111029 1714134111126 OK +REQUEST request_4 1714134111105 1714134111140 OK +REQUEST request_6 1714134111126 1714134111233 OK +REQUEST request_7 1714134111126 1714134111250 OK +USER LoginRecord END 1714134111250 +USER LoginRecord START 1714134111326 +USER LoginRecord START 1714134111358 +REQUEST request_0 1714134111326 1714134111423 OK +REQUEST request_5 1714134111353 1714134111436 OK +REQUEST request_0 1714134111358 1714134111441 OK +REQUEST request_5 1714134111358 1714134111452 OK +REQUEST request_5 1714134111373 1714134111469 OK +USER LoginRecord START 1714134111483 +REQUEST request_2 1714134111423 1714134111510 OK +REQUEST request_3 1714134111423 1714134111510 OK +REQUEST request_1 1714134111423 1714134111522 OK +REQUEST main.18e3ef94.css 1714134111423 1714134111531 OK +REQUEST request_3 1714134111441 1714134111533 OK +REQUEST request_2 1714134111441 1714134111534 OK +REQUEST request_7 1714134111436 1714134111560 OK +REQUEST request_1 1714134111441 1714134111564 OK +REQUEST main.18e3ef94.css 1714134111441 1714134111565 OK +REQUEST request_0 1714134111483 1714134111586 OK +REQUEST request_7 1714134111452 1714134111590 OK +REQUEST request_6 1714134111436 1714134111603 OK +USER LoginRecord END 1714134111603 +REQUEST wiq2.ico 1714134111441 1714134111604 OK +REQUEST request_6 1714134111452 1714134111610 OK +USER LoginRecord END 1714134111610 +REQUEST request_5 1714134111531 1714134111613 OK +REQUEST wiq2.ico 1714134111423 1714134111614 OK +REQUEST request_7 1714134111469 1714134111617 OK +REQUEST request_6 1714134111469 1714134111634 OK +USER LoginRecord END 1714134111634 +REQUEST request_2 1714134111587 1714134111669 OK +REQUEST main.18e3ef94.css 1714134111586 1714134111671 OK +REQUEST request_1 1714134111586 1714134111683 OK +REQUEST request_3 1714134111587 1714134111684 OK +REQUEST main.4a961c5c.js 1714134111423 1714134111709 OK +REQUEST request_6 1714134111613 1714134111716 OK +REQUEST main.4a961c5c.js 1714134111441 1714134111742 OK +REQUEST request_7 1714134111614 1714134111756 OK +USER LoginRecord END 1714134111756 +REQUEST request_4 1714134111735 1714134111774 OK +REQUEST wiq2.ico 1714134111586 1714134111775 OK +REQUEST request_5 1714134111703 1714134111788 OK +REQUEST request_5 1714134111750 1714134111846 OK +REQUEST main.4a961c5c.js 1714134111586 1714134111871 OK +REQUEST request_6 1714134111788 1714134111889 OK +REQUEST request_7 1714134111788 1714134111933 OK +USER LoginRecord END 1714134111934 +REQUEST request_6 1714134111846 1714134111954 OK +REQUEST request_7 1714134111846 1714134111969 OK +USER LoginRecord END 1714134111969 +USER LoginRecord START 1714134112096 +REQUEST request_0 1714134112095 1714134112178 OK +REQUEST request_4 1714134112157 1714134112193 OK +REQUEST request_4 1714134112219 1714134112254 OK +REQUEST request_3 1714134112179 1714134112262 OK +REQUEST request_1 1714134112179 1714134112277 OK +REQUEST main.18e3ef94.css 1714134112179 1714134112277 OK +REQUEST request_2 1714134112179 1714134112278 OK +REQUEST wiq2.ico 1714134112179 1714134112341 OK +REQUEST request_5 1714134112265 1714134112347 OK +REQUEST request_5 1714134112265 1714134112361 OK +REQUEST request_4 1714134112361 1714134112397 OK +USER LoginRecord START 1714134112409 +REQUEST main.4a961c5c.js 1714134112179 1714134112425 OK +REQUEST request_4 1714134112409 1714134112444 OK +REQUEST request_6 1714134112347 1714134112450 OK +REQUEST request_6 1714134112361 1714134112470 OK +REQUEST request_7 1714134112347 1714134112472 OK +USER LoginRecord END 1714134112473 +REQUEST request_5 1714134112377 1714134112474 OK +REQUEST request_5 1714134112409 1714134112491 OK +REQUEST request_5 1714134112409 1714134112504 OK +REQUEST request_7 1714134112361 1714134112504 OK +USER LoginRecord END 1714134112504 +REQUEST request_0 1714134112409 1714134112507 OK +REQUEST request_6 1714134112475 1714134112587 OK +REQUEST request_2 1714134112507 1714134112590 OK +REQUEST main.18e3ef94.css 1714134112507 1714134112592 OK +REQUEST request_3 1714134112507 1714134112603 OK +REQUEST request_1 1714134112507 1714134112605 OK +REQUEST request_7 1714134112491 1714134112615 OK +REQUEST request_7 1714134112475 1714134112617 OK +USER LoginRecord END 1714134112617 +REQUEST request_7 1714134112504 1714134112626 OK +REQUEST request_6 1714134112491 1714134112626 OK +USER LoginRecord END 1714134112627 +REQUEST request_6 1714134112504 1714134112639 OK +USER LoginRecord END 1714134112639 +USER LoginRecord START 1714134112648 +REQUEST request_4 1714134112616 1714134112651 OK +REQUEST wiq2.ico 1714134112507 1714134112700 OK +REQUEST request_5 1714134112616 1714134112711 OK +USER LoginRecord START 1714134112727 +REQUEST request_0 1714134112647 1714134112745 OK +REQUEST main.4a961c5c.js 1714134112507 1714134112757 OK +REQUEST request_6 1714134112712 1714134112818 OK +REQUEST request_0 1714134112727 1714134112823 OK +REQUEST request_3 1714134112746 1714134112830 OK +REQUEST request_7 1714134112712 1714134112836 OK +USER LoginRecord END 1714134112836 +REQUEST request_5 1714134112743 1714134112840 OK +REQUEST request_1 1714134112745 1714134112843 OK +REQUEST request_2 1714134112746 1714134112844 OK +REQUEST main.18e3ef94.css 1714134112745 1714134112844 OK +REQUEST request_4 1714134112836 1714134112872 OK +REQUEST request_1 1714134112823 1714134112911 OK +REQUEST request_2 1714134112824 1714134112914 OK +REQUEST request_3 1714134112824 1714134112924 OK +REQUEST main.18e3ef94.css 1714134112823 1714134112925 OK +REQUEST wiq2.ico 1714134112745 1714134112937 OK +REQUEST request_6 1714134112840 1714134112951 OK +REQUEST request_5 1714134112867 1714134112963 OK +REQUEST request_7 1714134112840 1714134112965 OK +USER LoginRecord END 1714134112965 +REQUEST request_5 1714134112897 1714134112981 OK +REQUEST wiq2.ico 1714134112823 1714134113010 OK +REQUEST main.4a961c5c.js 1714134112745 1714134113032 OK +REQUEST request_4 1714134113023 1714134113060 OK +REQUEST main.4a961c5c.js 1714134112823 1714134113071 OK +REQUEST request_6 1714134112963 1714134113077 OK +USER LoginRecord START 1714134113086 +REQUEST request_6 1714134112981 1714134113088 OK +REQUEST request_7 1714134112981 1714134113105 OK +USER LoginRecord END 1714134113106 +REQUEST request_7 1714134112963 1714134113107 OK +USER LoginRecord END 1714134113108 +REQUEST request_5 1714134113039 1714134113137 OK +REQUEST request_0 1714134113085 1714134113170 OK +REQUEST request_4 1714134113162 1714134113197 OK +REQUEST request_6 1714134113137 1714134113244 OK +REQUEST request_3 1714134113170 1714134113253 OK +REQUEST request_1 1714134113170 1714134113255 OK +REQUEST main.18e3ef94.css 1714134113170 1714134113257 OK +REQUEST request_2 1714134113170 1714134113267 OK +REQUEST request_7 1714134113137 1714134113279 OK +USER LoginRecord END 1714134113279 +REQUEST request_5 1714134113193 1714134113289 OK +REQUEST wiq2.ico 1714134113170 1714134113336 OK +REQUEST request_6 1714134113289 1714134113397 OK +REQUEST request_7 1714134113290 1714134113413 OK +USER LoginRecord END 1714134113414 +REQUEST main.4a961c5c.js 1714134113170 1714134113421 OK +USER LoginRecord START 1714134113490 +REQUEST request_5 1714134113411 1714134113507 OK +REQUEST request_5 1714134113443 1714134113526 OK +USER LoginRecord START 1714134113551 +REQUEST request_4 1714134113521 1714134113556 OK +REQUEST request_0 1714134113490 1714134113573 OK +REQUEST request_5 1714134113506 1714134113603 OK +REQUEST request_5 1714134113521 1714134113604 OK +REQUEST request_6 1714134113507 1714134113626 OK +REQUEST request_6 1714134113526 1714134113631 OK +REQUEST request_0 1714134113551 1714134113637 OK +REQUEST request_7 1714134113507 1714134113652 OK +REQUEST request_7 1714134113526 1714134113652 OK +USER LoginRecord END 1714134113652 +USER LoginRecord END 1714134113652 +REQUEST request_1 1714134113573 1714134113656 OK +REQUEST request_3 1714134113573 1714134113656 OK +REQUEST request_2 1714134113573 1714134113669 OK +REQUEST main.18e3ef94.css 1714134113573 1714134113671 OK +REQUEST request_6 1714134113603 1714134113719 OK +REQUEST request_3 1714134113638 1714134113721 OK +REQUEST request_2 1714134113638 1714134113722 OK +REQUEST main.18e3ef94.css 1714134113638 1714134113723 OK +REQUEST request_7 1714134113603 1714134113731 OK +USER LoginRecord END 1714134113731 +REQUEST request_6 1714134113604 1714134113733 OK +REQUEST request_1 1714134113638 1714134113733 OK +REQUEST wiq2.ico 1714134113573 1714134113734 OK +REQUEST request_5 1714134113645 1714134113742 OK +REQUEST request_7 1714134113604 1714134113753 OK +USER LoginRecord END 1714134113753 +REQUEST request_4 1714134113771 1714134113809 OK +REQUEST wiq2.ico 1714134113637 1714134113812 OK +REQUEST request_4 1714134113801 1714134113837 OK +REQUEST request_6 1714134113742 1714134113851 OK +REQUEST main.4a961c5c.js 1714134113573 1714134113864 OK +REQUEST request_7 1714134113742 1714134113891 OK +USER LoginRecord END 1714134113891 +REQUEST main.4a961c5c.js 1714134113638 1714134113930 OK +USER LoginRecord START 1714134113940 +REQUEST request_0 1714134113940 1714134114037 OK +REQUEST request_4 1714134114019 1714134114055 OK +REQUEST request_5 1714134113971 1714134114068 OK +USER LoginRecord START 1714134114081 +REQUEST request_1 1714134114037 1714134114120 OK +REQUEST request_2 1714134114037 1714134114122 OK +REQUEST request_3 1714134114038 1714134114122 OK +REQUEST main.18e3ef94.css 1714134114037 1714134114135 OK +REQUEST request_0 1714134114081 1714134114175 OK +REQUEST request_6 1714134114068 1714134114179 OK +REQUEST request_5 1714134114097 1714134114181 OK +REQUEST request_7 1714134114068 1714134114194 OK +USER LoginRecord END 1714134114195 +REQUEST wiq2.ico 1714134114037 1714134114229 OK +REQUEST request_4 1714134114205 1714134114239 OK +REQUEST request_3 1714134114176 1714134114259 OK +REQUEST request_2 1714134114176 1714134114282 OK +REQUEST request_1 1714134114176 1714134114283 OK +REQUEST request_6 1714134114181 1714134114292 OK +REQUEST main.18e3ef94.css 1714134114176 1714134114292 OK +USER LoginRecord START 1714134114292 +REQUEST request_7 1714134114181 1714134114306 OK +USER LoginRecord END 1714134114306 +REQUEST main.4a961c5c.js 1714134114037 1714134114324 OK +REQUEST wiq2.ico 1714134114176 1714134114365 OK +REQUEST request_0 1714134114292 1714134114389 OK +REQUEST request_4 1714134114360 1714134114396 OK +REQUEST request_5 1714134114375 1714134114459 OK +REQUEST request_2 1714134114390 1714134114473 OK +REQUEST request_3 1714134114390 1714134114474 OK +REQUEST main.4a961c5c.js 1714134114176 1714134114485 OK +USER LoginRecord START 1714134114486 +REQUEST request_1 1714134114390 1714134114487 OK +REQUEST main.18e3ef94.css 1714134114390 1714134114487 OK +REQUEST request_6 1714134114459 1714134114559 OK +REQUEST wiq2.ico 1714134114389 1714134114581 OK +REQUEST request_7 1714134114459 1714134114582 OK +USER LoginRecord END 1714134114582 +REQUEST request_0 1714134114485 1714134114583 OK +REQUEST request_5 1714134114517 1714134114600 OK +REQUEST request_4 1714134114581 1714134114616 OK +REQUEST main.18e3ef94.css 1714134114583 1714134114667 OK +REQUEST request_1 1714134114583 1714134114668 OK +REQUEST request_2 1714134114583 1714134114668 OK +REQUEST main.4a961c5c.js 1714134114390 1714134114675 OK +REQUEST request_3 1714134114583 1714134114682 OK +USER LoginRecord START 1714134114689 +REQUEST request_6 1714134114600 1714134114702 OK +REQUEST request_7 1714134114600 1714134114747 OK +USER LoginRecord END 1714134114747 +USER LoginRecord START 1714134114751 +REQUEST request_4 1714134114735 1714134114771 OK +REQUEST wiq2.ico 1714134114583 1714134114776 OK +REQUEST request_0 1714134114688 1714134114784 OK +USER LoginRecord START 1714134114829 +REQUEST main.4a961c5c.js 1714134114583 1714134114833 OK +REQUEST request_0 1714134114751 1714134114846 OK +REQUEST request_2 1714134114784 1714134114867 OK +REQUEST main.18e3ef94.css 1714134114784 1714134114867 OK +REQUEST request_1 1714134114784 1714134114880 OK +REQUEST request_3 1714134114784 1714134114882 OK +REQUEST request_4 1714134114875 1714134114911 OK +REQUEST request_0 1714134114829 1714134114913 OK +REQUEST request_5 1714134114844 1714134114926 OK +REQUEST request_3 1714134114847 1714134114931 OK +REQUEST request_4 1714134114906 1714134114941 OK +REQUEST request_2 1714134114847 1714134114943 OK +REQUEST request_1 1714134114847 1714134114945 OK +REQUEST main.18e3ef94.css 1714134114847 1714134114946 OK +USER LoginRecord START 1714134114969 +REQUEST wiq2.ico 1714134114784 1714134114971 OK +REQUEST request_3 1714134114914 1714134114997 OK +REQUEST request_2 1714134114914 1714134114997 OK +REQUEST request_1 1714134114914 1714134115010 OK +REQUEST main.18e3ef94.css 1714134114914 1714134115015 OK +REQUEST request_6 1714134114926 1714134115033 OK +REQUEST wiq2.ico 1714134114846 1714134115036 OK +USER LoginRecord START 1714134115047 +REQUEST request_7 1714134114926 1714134115048 OK +USER LoginRecord END 1714134115048 +REQUEST request_0 1714134114969 1714134115066 OK +REQUEST main.4a961c5c.js 1714134114784 1714134115075 OK +REQUEST wiq2.ico 1714134114913 1714134115078 OK +REQUEST main.4a961c5c.js 1714134114846 1714134115092 OK +REQUEST request_4 1714134115093 1714134115128 OK +REQUEST request_0 1714134115047 1714134115131 OK +REQUEST request_1 1714134115066 1714134115149 OK +REQUEST main.18e3ef94.css 1714134115066 1714134115152 OK +REQUEST request_2 1714134115067 1714134115164 OK +REQUEST request_3 1714134115067 1714134115164 OK +USER LoginRecord START 1714134115187 +REQUEST main.4a961c5c.js 1714134114914 1714134115204 OK +REQUEST main.18e3ef94.css 1714134115132 1714134115215 OK +REQUEST request_1 1714134115132 1714134115229 OK +REQUEST request_2 1714134115132 1714134115229 OK +REQUEST request_3 1714134115132 1714134115229 OK +REQUEST wiq2.ico 1714134115066 1714134115258 OK +REQUEST request_0 1714134115186 1714134115283 OK +REQUEST wiq2.ico 1714134115131 1714134115298 OK +REQUEST main.4a961c5c.js 1714134115066 1714134115316 OK +REQUEST request_4 1714134115325 1714134115360 OK +REQUEST request_3 1714134115283 1714134115368 OK +REQUEST main.4a961c5c.js 1714134115132 1714134115377 OK +REQUEST request_2 1714134115283 1714134115380 OK +REQUEST request_1 1714134115283 1714134115380 OK +REQUEST main.18e3ef94.css 1714134115283 1714134115381 OK +USER LoginRecord START 1714134115387 +REQUEST request_5 1714134115294 1714134115391 OK +REQUEST request_4 1714134115371 1714134115407 OK +REQUEST wiq2.ico 1714134115283 1714134115472 OK +REQUEST request_0 1714134115386 1714134115483 OK +USER LoginRecord START 1714134115496 +REQUEST request_6 1714134115391 1714134115500 OK +REQUEST request_7 1714134115391 1714134115515 OK +USER LoginRecord END 1714134115515 +REQUEST main.4a961c5c.js 1714134115283 1714134115532 OK +REQUEST request_3 1714134115484 1714134115566 OK +REQUEST request_2 1714134115484 1714134115568 OK +REQUEST request_4 1714134115542 1714134115578 OK +REQUEST request_0 1714134115496 1714134115579 OK +REQUEST request_1 1714134115483 1714134115580 OK +REQUEST main.18e3ef94.css 1714134115483 1714134115582 OK +USER LoginRecord START 1714134115618 +REQUEST request_2 1714134115579 1714134115663 OK +REQUEST main.18e3ef94.css 1714134115579 1714134115663 OK +REQUEST wiq2.ico 1714134115483 1714134115673 OK +REQUEST request_3 1714134115579 1714134115675 OK +REQUEST request_1 1714134115579 1714134115675 OK +REQUEST request_0 1714134115618 1714134115701 OK +REQUEST wiq2.ico 1714134115579 1714134115741 OK +REQUEST main.4a961c5c.js 1714134115483 1714134115770 OK +USER LoginRecord START 1714134115775 +REQUEST request_5 1714134115681 1714134115777 OK +REQUEST request_1 1714134115701 1714134115785 OK +REQUEST main.18e3ef94.css 1714134115701 1714134115785 OK +REQUEST request_2 1714134115701 1714134115786 OK +REQUEST request_3 1714134115701 1714134115799 OK +REQUEST request_5 1714134115774 1714134115856 OK +REQUEST wiq2.ico 1714134115701 1714134115862 OK +REQUEST main.4a961c5c.js 1714134115579 1714134115865 OK +REQUEST request_0 1714134115774 1714134115869 OK +REQUEST request_6 1714134115777 1714134115885 OK +REQUEST request_7 1714134115777 1714134115899 OK +USER LoginRecord END 1714134115899 +REQUEST request_5 1714134115805 1714134115902 OK +REQUEST request_4 1714134115913 1714134115947 OK +REQUEST request_3 1714134115869 1714134115958 OK +REQUEST request_1 1714134115869 1714134115959 OK +REQUEST request_2 1714134115869 1714134115959 OK +REQUEST request_6 1714134115856 1714134115962 OK +REQUEST main.18e3ef94.css 1714134115869 1714134115968 OK +REQUEST main.4a961c5c.js 1714134115701 1714134115988 OK +REQUEST request_7 1714134115857 1714134116007 OK +USER LoginRecord END 1714134116007 +REQUEST request_6 1714134115902 1714134116013 OK +REQUEST request_7 1714134115902 1714134116027 OK +USER LoginRecord END 1714134116027 +REQUEST wiq2.ico 1714134115869 1714134116058 OK +USER LoginRecord START 1714134116132 +REQUEST main.4a961c5c.js 1714134115869 1714134116155 OK +USER LoginRecord START 1714134116210 +REQUEST request_0 1714134116132 1714134116231 OK +REQUEST request_0 1714134116210 1714134116293 OK +REQUEST request_5 1714134116226 1714134116311 OK +REQUEST request_2 1714134116231 1714134116316 OK +REQUEST request_3 1714134116231 1714134116316 OK +REQUEST request_1 1714134116231 1714134116326 OK +REQUEST request_4 1714134116304 1714134116340 OK +REQUEST main.18e3ef94.css 1714134116231 1714134116341 OK +REQUEST request_5 1714134116258 1714134116355 OK +REQUEST request_4 1714134116320 1714134116356 OK +REQUEST request_1 1714134116293 1714134116376 OK +REQUEST request_2 1714134116293 1714134116376 OK +REQUEST main.18e3ef94.css 1714134116293 1714134116378 OK +REQUEST request_5 1714134116289 1714134116384 OK +REQUEST request_3 1714134116293 1714134116389 OK +REQUEST request_6 1714134116311 1714134116418 OK +REQUEST wiq2.ico 1714134116231 1714134116425 OK +REQUEST request_4 1714134116397 1714134116431 OK +REQUEST request_7 1714134116311 1714134116440 OK +USER LoginRecord END 1714134116441 +REQUEST request_6 1714134116355 1714134116465 OK +REQUEST wiq2.ico 1714134116293 1714134116465 OK +REQUEST request_6 1714134116384 1714134116493 OK +REQUEST request_7 1714134116355 1714134116501 OK +USER LoginRecord END 1714134116501 +REQUEST main.4a961c5c.js 1714134116231 1714134116518 OK +REQUEST request_7 1714134116384 1714134116530 OK +USER LoginRecord END 1714134116530 +REQUEST main.4a961c5c.js 1714134116293 1714134116579 OK +USER LoginRecord START 1714134116613 +REQUEST request_0 1714134116613 1714134116697 OK +USER LoginRecord START 1714134116707 +REQUEST request_5 1714134116645 1714134116729 OK +REQUEST request_3 1714134116697 1714134116782 OK +REQUEST request_5 1714134116707 1714134116790 OK +REQUEST request_0 1714134116707 1714134116792 OK +REQUEST request_2 1714134116697 1714134116796 OK +REQUEST request_1 1714134116697 1714134116798 OK +REQUEST main.18e3ef94.css 1714134116697 1714134116800 OK +REQUEST request_6 1714134116729 1714134116831 OK +REQUEST request_4 1714134116800 1714134116836 OK +REQUEST wiq2.ico 1714134116697 1714134116861 OK +REQUEST request_7 1714134116729 1714134116872 OK +USER LoginRecord END 1714134116872 +REQUEST request_1 1714134116792 1714134116873 OK +REQUEST request_3 1714134116792 1714134116877 OK +REQUEST request_2 1714134116792 1714134116890 OK +REQUEST main.18e3ef94.css 1714134116792 1714134116891 OK +REQUEST request_6 1714134116790 1714134116893 OK +REQUEST request_7 1714134116790 1714134116938 OK +USER LoginRecord END 1714134116938 +USER LoginRecord START 1714134116940 +REQUEST main.4a961c5c.js 1714134116697 1714134116944 OK +REQUEST wiq2.ico 1714134116792 1714134116954 OK +USER LoginRecord START 1714134117019 +REQUEST request_0 1714134116940 1714134117023 OK +REQUEST main.4a961c5c.js 1714134116792 1714134117037 OK +REQUEST request_4 1714134117003 1714134117039 OK +REQUEST request_4 1714134117003 1714134117040 OK +REQUEST request_0 1714134117018 1714134117101 OK +REQUEST main.18e3ef94.css 1714134117023 1714134117105 OK +REQUEST request_2 1714134117023 1714134117107 OK +REQUEST request_1 1714134117023 1714134117126 OK +USER LoginRecord START 1714134117127 +REQUEST request_3 1714134117023 1714134117129 OK +REQUEST request_4 1714134117096 1714134117134 OK +USER LoginRecord START 1714134117143 +REQUEST wiq2.ico 1714134117023 1714134117185 OK +REQUEST request_2 1714134117102 1714134117186 OK +REQUEST main.18e3ef94.css 1714134117102 1714134117187 OK +REQUEST request_1 1714134117102 1714134117188 OK +REQUEST request_3 1714134117103 1714134117188 OK +REQUEST request_0 1714134117127 1714134117210 OK +REQUEST request_0 1714134117142 1714134117238 OK +REQUEST wiq2.ico 1714134117102 1714134117264 OK +REQUEST request_1 1714134117211 1714134117295 OK +REQUEST request_4 1714134117267 1714134117302 OK +REQUEST request_3 1714134117211 1714134117306 OK +REQUEST main.18e3ef94.css 1714134117211 1714134117308 OK +REQUEST request_2 1714134117211 1714134117308 OK +REQUEST main.4a961c5c.js 1714134117023 1714134117321 OK +REQUEST request_1 1714134117238 1714134117322 OK +REQUEST main.18e3ef94.css 1714134117238 1714134117323 OK +REQUEST request_2 1714134117238 1714134117323 OK +REQUEST request_3 1714134117238 1714134117335 OK +REQUEST wiq2.ico 1714134117211 1714134117374 OK +REQUEST main.4a961c5c.js 1714134117102 1714134117390 OK +REQUEST request_5 1714134117314 1714134117411 OK +REQUEST wiq2.ico 1714134117238 1714134117428 OK +REQUEST main.4a961c5c.js 1714134117211 1714134117503 OK +REQUEST request_6 1714134117411 1714134117519 OK +REQUEST request_4 1714134117485 1714134117522 OK +REQUEST main.4a961c5c.js 1714134117238 1714134117526 OK +REQUEST request_7 1714134117412 1714134117537 OK +REQUEST request_4 1714134117500 1714134117537 OK +USER LoginRecord END 1714134117537 +REQUEST request_5 1714134117469 1714134117554 OK +REQUEST request_6 1714134117554 1714134117653 OK +REQUEST request_4 1714134117624 1714134117660 OK +REQUEST request_4 1714134117640 1714134117675 OK +REQUEST request_7 1714134117554 1714134117678 OK +USER LoginRecord END 1714134117679 +REQUEST request_5 1714134117624 1714134117707 OK +REQUEST request_6 1714134117707 1714134117805 OK +REQUEST request_4 1714134117811 1714134117847 OK +REQUEST request_7 1714134117707 1714134117853 OK +USER LoginRecord END 1714134117853 +REQUEST request_4 1714134117827 1714134117864 OK +REQUEST request_5 1714134117811 1714134117894 OK +REQUEST request_6 1714134117895 1714134117996 OK +REQUEST request_7 1714134117895 1714134118020 OK +USER LoginRecord END 1714134118020 +USER LoginRecord START 1714134118059 +REQUEST request_5 1714134118043 1714134118127 OK +REQUEST request_0 1714134118058 1714134118143 OK +REQUEST request_6 1714134118127 1714134118225 OK +REQUEST request_2 1714134118143 1714134118226 OK +REQUEST request_3 1714134118143 1714134118240 OK +REQUEST request_1 1714134118143 1714134118240 OK +REQUEST main.18e3ef94.css 1714134118143 1714134118241 OK +REQUEST request_5 1714134118167 1714134118250 OK +REQUEST request_7 1714134118127 1714134118250 OK +USER LoginRecord END 1714134118250 +REQUEST wiq2.ico 1714134118143 1714134118309 OK +REQUEST request_6 1714134118250 1714134118352 OK +REQUEST main.4a961c5c.js 1714134118143 1714134118393 OK +REQUEST request_7 1714134118250 1714134118403 OK +USER LoginRecord END 1714134118404 +REQUEST request_4 1714134118448 1714134118483 OK +REQUEST request_4 1714134118463 1714134118499 OK +REQUEST request_5 1714134118494 1714134118592 OK +REQUEST request_6 1714134118592 1714134118699 OK +REQUEST request_4 1714134118682 1714134118718 OK +REQUEST request_7 1714134118592 1714134118735 OK +USER LoginRecord END 1714134118735 +REQUEST request_4 1714134118714 1714134118751 OK +REQUEST request_5 1714134118682 1714134118779 OK +REQUEST request_4 1714134118745 1714134118781 OK +USER LoginRecord START 1714134118807 +REQUEST request_6 1714134118779 1714134118885 OK +REQUEST request_0 1714134118806 1714134118904 OK +REQUEST request_7 1714134118779 1714134118924 OK +USER LoginRecord END 1714134118924 +REQUEST request_5 1714134118838 1714134118934 OK +REQUEST request_4 1714134118904 1714134118940 OK +REQUEST main.18e3ef94.css 1714134118904 1714134118988 OK +REQUEST request_3 1714134118904 1714134118988 OK +REQUEST request_1 1714134118904 1714134119004 OK +REQUEST request_2 1714134118904 1714134119007 OK +REQUEST request_6 1714134118934 1714134119045 OK +REQUEST request_7 1714134118935 1714134119060 OK +USER LoginRecord END 1714134119060 +REQUEST wiq2.ico 1714134118904 1714134119096 OK +REQUEST request_4 1714134119118 1714134119155 OK +REQUEST main.4a961c5c.js 1714134118904 1714134119190 OK +REQUEST request_5 1714134119149 1714134119231 OK +REQUEST request_6 1714134119231 1714134119333 OK +REQUEST request_7 1714134119231 1714134119355 OK +USER LoginRecord END 1714134119356 +REQUEST request_4 1714134119510 1714134119552 OK +REQUEST request_5 1714134119495 1714134119592 OK +REQUEST request_6 1714134119592 1714134119698 OK +REQUEST request_7 1714134119592 1714134119715 OK +USER LoginRecord END 1714134119715 +REQUEST request_4 1714134119698 1714134119733 OK +REQUEST request_4 1714134119698 1714134119734 OK +REQUEST request_4 1714134119793 1714134119828 OK +REQUEST request_4 1714134119866 1714134119902 OK +REQUEST request_4 1714134120197 1714134120232 OK +REQUEST request_5 1714134120150 1714134120245 OK +REQUEST request_6 1714134120245 1714134120352 OK +REQUEST request_7 1714134120245 1714134120387 OK +USER LoginRecord END 1714134120387 +REQUEST request_4 1714134120603 1714134120639 OK +REQUEST request_4 1714134120680 1714134120715 OK +REQUEST request_4 1714134120788 1714134120822 OK +REQUEST request_5 1714134120788 1714134120883 OK +REQUEST request_6 1714134120883 1714134120993 OK +REQUEST request_7 1714134120883 1714134121008 OK +USER LoginRecord END 1714134121009 +REQUEST request_4 1714134121102 1714134121138 OK +REQUEST request_4 1714134121165 1714134121200 OK +REQUEST request_5 1714134121195 1714134121291 OK +REQUEST request_5 1714134121257 1714134121354 OK +REQUEST request_6 1714134121291 1714134121401 OK +REQUEST request_7 1714134121291 1714134121416 OK +USER LoginRecord END 1714134121417 +REQUEST request_6 1714134121354 1714134121464 OK +REQUEST request_7 1714134121355 1714134121480 OK +USER LoginRecord END 1714134121480 +REQUEST request_5 1714134121413 1714134121510 OK +REQUEST request_5 1714134121459 1714134121541 OK +REQUEST request_6 1714134121510 1714134121619 OK +REQUEST request_7 1714134121510 1714134121633 OK +USER LoginRecord END 1714134121633 +REQUEST request_6 1714134121541 1714134121643 OK +REQUEST request_7 1714134121541 1714134121663 OK +USER LoginRecord END 1714134121664 +REQUEST request_5 1714134121662 1714134121758 OK +REQUEST request_6 1714134121758 1714134121866 OK +REQUEST request_7 1714134121759 1714134121885 OK +USER LoginRecord END 1714134121885 +REQUEST request_5 1714134121881 1714134121964 OK +REQUEST request_4 1714134122018 1714134122058 OK +REQUEST request_6 1714134121964 1714134122066 OK +REQUEST request_7 1714134121964 1714134122109 OK +USER LoginRecord END 1714134122109 +REQUEST request_5 1714134122065 1714134122162 OK +REQUEST request_6 1714134122162 1714134122272 OK +REQUEST request_5 1714134122203 1714134122288 OK +REQUEST request_4 1714134122251 1714134122288 OK +REQUEST request_7 1714134122162 1714134122305 OK +USER LoginRecord END 1714134122305 +REQUEST request_4 1714134122299 1714134122355 OK +REQUEST request_6 1714134122288 1714134122392 OK +REQUEST request_4 1714134122361 1714134122398 OK +REQUEST request_7 1714134122288 1714134122411 OK +USER LoginRecord END 1714134122411 +REQUEST request_4 1714134122488 1714134122524 OK +REQUEST request_4 1714134122598 1714134122634 OK +REQUEST request_5 1714134122567 1714134122663 OK +REQUEST request_6 1714134122663 1714134122773 OK +REQUEST request_4 1714134122738 1714134122773 OK +REQUEST request_7 1714134122663 1714134122807 OK +USER LoginRecord END 1714134122807 +REQUEST request_4 1714134122784 1714134122829 OK +REQUEST request_5 1714134122816 1714134122898 OK +REQUEST request_5 1714134122846 1714134122942 OK +REQUEST request_6 1714134122898 1714134123001 OK +REQUEST request_7 1714134122898 1714134123040 OK +USER LoginRecord END 1714134123041 +REQUEST request_6 1714134122943 1714134123053 OK +REQUEST request_7 1714134122943 1714134123086 OK +USER LoginRecord END 1714134123087 +REQUEST request_5 1714134123063 1714134123148 OK +REQUEST request_4 1714134123125 1714134123162 OK +REQUEST request_6 1714134123148 1714134123248 OK +REQUEST request_7 1714134123148 1714134123293 OK +USER LoginRecord END 1714134123293 +REQUEST request_5 1714134123250 1714134123332 OK +REQUEST request_6 1714134123332 1714134123433 OK +REQUEST request_7 1714134123332 1714134123477 OK +USER LoginRecord END 1714134123477 +REQUEST request_4 1714134123436 1714134123479 OK +REQUEST request_4 1714134123452 1714134123489 OK +REQUEST request_5 1714134123405 1714134123501 OK +REQUEST request_6 1714134123501 1714134123610 OK +REQUEST request_7 1714134123501 1714134123645 OK +USER LoginRecord END 1714134123645 +REQUEST request_5 1714134123623 1714134123720 OK +REQUEST request_4 1714134123700 1714134123736 OK +REQUEST request_6 1714134123720 1714134123829 OK +REQUEST request_7 1714134123720 1714134123865 OK +USER LoginRecord END 1714134123866 +REQUEST request_5 1714134123779 1714134123874 OK +REQUEST request_6 1714134123874 1714134123983 OK +REQUEST request_7 1714134123874 1714134124016 OK +USER LoginRecord END 1714134124016 +REQUEST request_5 1714134123920 1714134124017 OK +REQUEST request_5 1714134123952 1714134124036 OK +REQUEST request_6 1714134124018 1714134124129 OK +REQUEST request_6 1714134124036 1714134124140 OK +REQUEST request_7 1714134124036 1714134124159 OK +USER LoginRecord END 1714134124159 +REQUEST request_7 1714134124018 1714134124161 OK +USER LoginRecord END 1714134124161 +REQUEST request_4 1714134124155 1714134124192 OK +REQUEST request_5 1714134124139 1714134124222 OK +REQUEST request_4 1714134124187 1714134124223 OK +REQUEST request_4 1714134124203 1714134124239 OK +REQUEST request_6 1714134124222 1714134124322 OK +REQUEST request_7 1714134124222 1714134124367 OK +USER LoginRecord END 1714134124367 +REQUEST request_4 1714134124342 1714134124378 OK +REQUEST request_5 1714134124374 1714134124471 OK +REQUEST request_5 1714134124421 1714134124516 OK +REQUEST request_4 1714134124482 1714134124520 OK +REQUEST request_6 1714134124471 1714134124580 OK +REQUEST request_4 1714134124559 1714134124595 OK +REQUEST request_7 1714134124471 1714134124616 OK +USER LoginRecord END 1714134124616 +REQUEST request_6 1714134124516 1714134124623 OK +REQUEST request_7 1714134124516 1714134124641 OK +USER LoginRecord END 1714134124641 +REQUEST request_5 1714134124590 1714134124687 OK +REQUEST request_4 1714134124715 1714134124751 OK +REQUEST request_6 1714134124688 1714134124792 OK +REQUEST request_7 1714134124688 1714134124832 OK +USER LoginRecord END 1714134124832 +REQUEST request_4 1714134124981 1714134125016 OK +REQUEST request_5 1714134124949 1714134125032 OK +REQUEST request_6 1714134125032 1714134125131 OK +REQUEST request_7 1714134125032 1714134125157 OK +USER LoginRecord END 1714134125158 +REQUEST request_4 1714134125204 1714134125240 OK +REQUEST request_4 1714134125284 1714134125319 OK +REQUEST request_5 1714134125362 1714134125444 OK +REQUEST request_5 1714134125347 1714134125445 OK +REQUEST request_4 1714134125458 1714134125494 OK +REQUEST request_5 1714134125442 1714134125540 OK +REQUEST request_6 1714134125445 1714134125547 OK +REQUEST request_6 1714134125445 1714134125554 OK +REQUEST request_7 1714134125445 1714134125568 OK +USER LoginRecord END 1714134125568 +REQUEST request_7 1714134125445 1714134125587 OK +USER LoginRecord END 1714134125587 +REQUEST request_6 1714134125540 1714134125646 OK +REQUEST request_7 1714134125540 1714134125665 OK +USER LoginRecord END 1714134125666 +REQUEST request_4 1714134125662 1714134125697 OK +REQUEST request_4 1714134125693 1714134125729 OK +REQUEST request_4 1714134125755 1714134125794 OK +REQUEST request_4 1714134125785 1714134125820 OK +REQUEST request_5 1714134125849 1714134125933 OK +REQUEST request_6 1714134125933 1714134126033 OK +REQUEST request_7 1714134125933 1714134126058 OK +USER LoginRecord END 1714134126058 +REQUEST request_4 1714134126086 1714134126121 OK +REQUEST request_5 1714134126054 1714134126136 OK +REQUEST request_5 1714134126054 1714134126151 OK +REQUEST request_4 1714134126166 1714134126201 OK +REQUEST request_6 1714134126136 1714134126245 OK +REQUEST request_5 1714134126150 1714134126247 OK +REQUEST request_7 1714134126137 1714134126261 OK +USER LoginRecord END 1714134126261 +REQUEST request_6 1714134126151 1714134126264 OK +REQUEST request_7 1714134126151 1714134126293 OK +USER LoginRecord END 1714134126293 +REQUEST request_6 1714134126247 1714134126356 OK +REQUEST request_5 1714134126307 1714134126389 OK +REQUEST request_7 1714134126247 1714134126392 OK +USER LoginRecord END 1714134126392 +REQUEST request_4 1714134126433 1714134126470 OK +REQUEST request_6 1714134126390 1714134126493 OK +REQUEST request_7 1714134126390 1714134126512 OK +USER LoginRecord END 1714134126513 +REQUEST request_5 1714134126528 1714134126610 OK +REQUEST request_5 1714134126544 1714134126628 OK +REQUEST request_4 1714134126592 1714134126629 OK +REQUEST request_4 1714134126624 1714134126660 OK +REQUEST request_6 1714134126610 1714134126717 OK +REQUEST request_6 1714134126628 1714134126736 OK +REQUEST request_7 1714134126610 1714134126755 OK +USER LoginRecord END 1714134126756 +REQUEST request_5 1714134126670 1714134126765 OK +REQUEST request_7 1714134126628 1714134126771 OK +USER LoginRecord END 1714134126771 +REQUEST request_5 1714134126686 1714134126783 OK +REQUEST request_4 1714134126765 1714134126801 OK +REQUEST request_6 1714134126766 1714134126885 OK +REQUEST request_6 1714134126783 1714134126898 OK +REQUEST request_7 1714134126783 1714134126908 OK +USER LoginRecord END 1714134126908 +REQUEST request_7 1714134126766 1714134126910 OK +USER LoginRecord END 1714134126910 +REQUEST request_5 1714134126860 1714134126956 OK +REQUEST request_5 1714134126875 1714134126958 OK +REQUEST request_4 1714134126938 1714134126974 OK +REQUEST request_6 1714134126958 1714134127068 OK +REQUEST request_6 1714134126956 1714134127072 OK +REQUEST request_7 1714134126956 1714134127102 OK +USER LoginRecord END 1714134127102 +REQUEST request_7 1714134126958 1714134127102 OK +USER LoginRecord END 1714134127103 +REQUEST request_4 1714134127200 1714134127237 OK +REQUEST request_4 1714134127327 1714134127363 OK +REQUEST request_4 1714134127419 1714134127457 OK +REQUEST request_5 1714134127496 1714134127579 OK +REQUEST request_5 1714134127511 1714134127608 OK +REQUEST request_4 1714134127620 1714134127655 OK +REQUEST request_6 1714134127579 1714134127682 OK +REQUEST request_6 1714134127608 1714134127717 OK +REQUEST request_7 1714134127579 1714134127725 OK +USER LoginRecord END 1714134127726 +REQUEST request_7 1714134127609 1714134127752 OK +USER LoginRecord END 1714134127752 +REQUEST request_5 1714134127728 1714134127812 OK +REQUEST request_4 1714134127805 1714134127841 OK +REQUEST request_5 1714134127758 1714134127854 OK +REQUEST request_5 1714134127790 1714134127872 OK +REQUEST request_4 1714134127867 1714134127904 OK +REQUEST request_6 1714134127812 1714134127916 OK +REQUEST request_7 1714134127812 1714134127953 OK +USER LoginRecord END 1714134127954 +REQUEST request_6 1714134127854 1714134127975 OK +REQUEST request_7 1714134127854 1714134127976 OK +USER LoginRecord END 1714134127976 +REQUEST request_6 1714134127872 1714134127980 OK +REQUEST request_7 1714134127872 1714134127996 OK +USER LoginRecord END 1714134127996 +REQUEST request_5 1714134127945 1714134128028 OK +REQUEST request_4 1714134128056 1714134128093 OK +REQUEST request_6 1714134128028 1714134128127 OK +REQUEST request_4 1714134128102 1714134128138 OK +REQUEST request_4 1714134128102 1714134128139 OK +REQUEST request_7 1714134128028 1714134128173 OK +USER LoginRecord END 1714134128173 +REQUEST request_4 1714134128150 1714134128186 OK +REQUEST request_5 1714134128165 1714134128263 OK +REQUEST request_4 1714134128242 1714134128279 OK +REQUEST request_6 1714134128263 1714134128370 OK +REQUEST request_7 1714134128263 1714134128389 OK +USER LoginRecord END 1714134128389 +REQUEST request_4 1714134128509 1714134128544 OK +REQUEST request_4 1714134128555 1714134128591 OK +REQUEST request_5 1714134128555 1714134128651 OK +REQUEST request_4 1714134128633 1714134128671 OK +REQUEST request_4 1714134128679 1714134128715 OK +REQUEST request_6 1714134128651 1714134128755 OK +REQUEST request_7 1714134128651 1714134128794 OK +USER LoginRecord END 1714134128794 +REQUEST request_5 1714134128742 1714134128825 OK +REQUEST request_5 1714134128742 1714134128839 OK +REQUEST request_4 1714134128882 1714134128917 OK +REQUEST request_6 1714134128825 1714134128929 OK +REQUEST request_5 1714134128834 1714134128932 OK +REQUEST request_6 1714134128839 1714134128950 OK +REQUEST request_7 1714134128839 1714134128965 OK +USER LoginRecord END 1714134128965 +REQUEST request_7 1714134128825 1714134128970 OK +USER LoginRecord END 1714134128971 +REQUEST request_5 1714134128913 1714134129010 OK +REQUEST request_4 1714134128975 1714134129011 OK +REQUEST request_6 1714134128932 1714134129039 OK +REQUEST request_7 1714134128932 1714134129074 OK +USER LoginRecord END 1714134129075 +REQUEST request_6 1714134129010 1714134129117 OK +REQUEST request_7 1714134129010 1714134129133 OK +USER LoginRecord END 1714134129134 +REQUEST request_5 1714134129240 1714134129323 OK +REQUEST request_6 1714134129323 1714134129423 OK +REQUEST request_7 1714134129323 1714134129467 OK +USER LoginRecord END 1714134129467 +REQUEST request_5 1714134129643 1714134129741 OK +REQUEST request_4 1714134129721 1714134129757 OK +REQUEST request_4 1714134129752 1714134129787 OK +REQUEST request_5 1714134129721 1714134129817 OK +REQUEST request_6 1714134129741 1714134129849 OK +REQUEST request_7 1714134129741 1714134129866 OK +USER LoginRecord END 1714134129866 +REQUEST request_5 1714134129829 1714134129910 OK +REQUEST request_4 1714134129876 1714134129916 OK +REQUEST request_6 1714134129817 1714134129926 OK +REQUEST request_7 1714134129817 1714134129943 OK +USER LoginRecord END 1714134129943 +REQUEST request_6 1714134129910 1714134130012 OK +REQUEST request_7 1714134129911 1714134130056 OK +USER LoginRecord END 1714134130056 +REQUEST request_5 1714134130141 1714134130239 OK +REQUEST request_5 1714134130204 1714134130301 OK +REQUEST request_6 1714134130240 1714134130347 OK +REQUEST request_7 1714134130240 1714134130362 OK +USER LoginRecord END 1714134130362 +REQUEST request_6 1714134130302 1714134130409 OK +REQUEST request_7 1714134130302 1714134130424 OK +USER LoginRecord END 1714134130424 +REQUEST request_4 1714134130437 1714134130473 OK +REQUEST request_4 1714134130765 1714134130806 OK +REQUEST request_4 1714134131048 1714134131086 OK +REQUEST request_4 1714134131079 1714134131115 OK +REQUEST request_5 1714134131063 1714134131145 OK +REQUEST request_6 1714134131146 1714134131248 OK +REQUEST request_7 1714134131146 1714134131271 OK +USER LoginRecord END 1714134131271 +REQUEST request_5 1714134131294 1714134131377 OK +REQUEST request_5 1714134131358 1714134131442 OK +REQUEST request_4 1714134131435 1714134131475 OK +REQUEST request_6 1714134131378 1714134131477 OK +REQUEST request_5 1714134131404 1714134131488 OK +REQUEST request_7 1714134131378 1714134131522 OK +USER LoginRecord END 1714134131522 +REQUEST request_6 1714134131442 1714134131543 OK +REQUEST request_7 1714134131443 1714134131587 OK +USER LoginRecord END 1714134131587 +REQUEST request_6 1714134131488 1714134131589 OK +REQUEST request_5 1714134131529 1714134131624 OK +REQUEST request_7 1714134131488 1714134131633 OK +USER LoginRecord END 1714134131633 +REQUEST request_5 1714134131638 1714134131720 OK +REQUEST request_6 1714134131625 1714134131730 OK +REQUEST request_7 1714134131625 1714134131770 OK +USER LoginRecord END 1714134131770 +REQUEST request_6 1714134131721 1714134131820 OK +REQUEST request_7 1714134131721 1714134131844 OK +USER LoginRecord END 1714134131844 +REQUEST request_5 1714134131778 1714134131861 OK +REQUEST request_4 1714134131872 1714134131907 OK +REQUEST request_5 1714134131840 1714134131937 OK +REQUEST request_6 1714134131861 1714134131963 OK +REQUEST request_4 1714134131936 1714134131972 OK +REQUEST request_7 1714134131861 1714134131984 OK +USER LoginRecord END 1714134131984 +REQUEST request_6 1714134131937 1714134132046 OK +REQUEST request_7 1714134131937 1714134132060 OK +USER LoginRecord END 1714134132060 +REQUEST request_5 1714134132172 1714134132256 OK +REQUEST request_6 1714134132256 1714134132360 OK +REQUEST request_4 1714134132328 1714134132364 OK +REQUEST request_7 1714134132256 1714134132379 OK +USER LoginRecord END 1714134132379 +REQUEST request_4 1714134132498 1714134132534 OK +REQUEST request_5 1714134132483 1714134132580 OK +REQUEST request_5 1714134132498 1714134132594 OK +REQUEST request_6 1714134132580 1714134132693 OK +REQUEST request_6 1714134132594 1714134132703 OK +REQUEST request_7 1714134132580 1714134132705 OK +USER LoginRecord END 1714134132705 +REQUEST request_4 1714134132686 1714134132721 OK +REQUEST request_7 1714134132594 1714134132738 OK +USER LoginRecord END 1714134132739 +REQUEST request_5 1714134132747 1714134132843 OK +REQUEST request_4 1714134132839 1714134132876 OK +REQUEST request_6 1714134132843 1714134132950 OK +REQUEST request_7 1714134132843 1714134132969 OK +USER LoginRecord END 1714134132969 +REQUEST request_4 1714134133090 1714134133127 OK +REQUEST request_4 1714134133106 1714134133166 OK +REQUEST request_4 1714134133216 1714134133254 OK +REQUEST request_5 1714134133200 1714134133286 OK +REQUEST request_5 1714134133232 1714134133329 OK +REQUEST request_5 1714134133248 1714134133332 OK +REQUEST request_4 1714134133326 1714134133367 OK +REQUEST request_6 1714134133286 1714134133404 OK +REQUEST request_7 1714134133286 1714134133409 OK +USER LoginRecord END 1714134133409 +REQUEST request_4 1714134133389 1714134133424 OK +REQUEST request_6 1714134133332 1714134133441 OK +REQUEST request_6 1714134133329 1714134133450 OK +REQUEST request_5 1714134133389 1714134133472 OK +REQUEST request_7 1714134133329 1714134133472 OK +USER LoginRecord END 1714134133472 +REQUEST request_7 1714134133332 1714134133474 OK +USER LoginRecord END 1714134133475 +REQUEST request_6 1714134133472 1714134133573 OK +REQUEST request_4 1714134133544 1714134133582 OK +REQUEST request_7 1714134133472 1714134133595 OK +USER LoginRecord END 1714134133595 +REQUEST request_5 1714134133529 1714134133613 OK +REQUEST request_5 1714134133606 1714134133691 OK +REQUEST request_6 1714134133613 1714134133713 OK +REQUEST request_7 1714134133613 1714134133737 OK +USER LoginRecord END 1714134133737 +REQUEST request_6 1714134133691 1714134133791 OK +REQUEST request_4 1714134133776 1714134133815 OK +REQUEST request_7 1714134133691 1714134133816 OK +USER LoginRecord END 1714134133817 +REQUEST request_5 1714134133761 1714134133844 OK +REQUEST request_4 1714134133870 1714134133914 OK +REQUEST request_6 1714134133844 1714134133945 OK +REQUEST request_7 1714134133844 1714134133969 OK +USER LoginRecord END 1714134133969 +REQUEST request_4 1714134133994 1714134134031 OK +REQUEST request_5 1714134134025 1714134134110 OK +REQUEST request_4 1714134134166 1714134134205 OK +REQUEST request_6 1714134134110 1714134134213 OK +REQUEST request_7 1714134134110 1714134134255 OK +USER LoginRecord END 1714134134256 +REQUEST request_5 1714134134244 1714134134340 OK +REQUEST request_5 1714134134321 1714134134405 OK +REQUEST request_6 1714134134340 1714134134451 OK +REQUEST request_7 1714134134340 1714134134482 OK +USER LoginRecord END 1714134134483 +REQUEST request_6 1714134134405 1714134134508 OK +REQUEST request_7 1714134134405 1714134134527 OK +USER LoginRecord END 1714134134528 +REQUEST request_4 1714134134522 1714134134558 OK +REQUEST request_5 1714134134507 1714134134603 OK +REQUEST request_4 1714134134585 1714134134629 OK +REQUEST request_6 1714134134603 1714134134710 OK +REQUEST request_7 1714134134603 1714134134749 OK +USER LoginRecord END 1714134134749 +REQUEST request_5 1714134134710 1714134134807 OK +REQUEST request_5 1714134134742 1714134134824 OK +REQUEST request_5 1714134134804 1714134134900 OK +REQUEST request_6 1714134134807 1714134134918 OK +REQUEST request_5 1714134134834 1714134134919 OK +REQUEST request_6 1714134134824 1714134134929 OK +REQUEST request_7 1714134134807 1714134134953 OK +USER LoginRecord END 1714134134953 +REQUEST request_7 1714134134824 1714134134970 OK +USER LoginRecord END 1714134134971 +REQUEST request_4 1714134134959 1714134134995 OK +REQUEST request_6 1714134134900 1714134135015 OK +REQUEST request_6 1714134134919 1714134135027 OK +REQUEST request_7 1714134134900 1714134135046 OK +USER LoginRecord END 1714134135046 +REQUEST request_7 1714134134919 1714134135063 OK +USER LoginRecord END 1714134135063 +REQUEST request_4 1714134135051 1714134135087 OK +REQUEST request_5 1714134135128 1714134135226 OK +REQUEST request_5 1714134135207 1714134135291 OK +REQUEST request_6 1714134135226 1714134135336 OK +REQUEST request_7 1714134135226 1714134135349 OK +USER LoginRecord END 1714134135349 +REQUEST request_4 1714134135332 1714134135371 OK +REQUEST request_6 1714134135291 1714134135393 OK +REQUEST request_4 1714134135394 1714134135429 OK +REQUEST request_7 1714134135291 1714134135435 OK +USER LoginRecord END 1714134135435 +REQUEST request_4 1714134135519 1714134135554 OK +REQUEST request_5 1714134135472 1714134135555 OK +REQUEST request_4 1714134135535 1714134135572 OK +REQUEST request_6 1714134135555 1714134135655 OK +REQUEST request_7 1714134135555 1714134135680 OK +USER LoginRecord END 1714134135680 +REQUEST request_5 1714134135643 1714134135726 OK +REQUEST request_5 1714134135675 1714134135757 OK +REQUEST request_6 1714134135726 1714134135830 OK +REQUEST request_7 1714134135727 1714134135851 OK +USER LoginRecord END 1714134135851 +REQUEST request_6 1714134135758 1714134135865 OK +REQUEST request_7 1714134135758 1714134135900 OK +USER LoginRecord END 1714134135900 +REQUEST request_5 1714134135813 1714134135910 OK +REQUEST request_6 1714134135910 1714134136018 OK +REQUEST request_7 1714134135910 1714134136056 OK +USER LoginRecord END 1714134136056 +REQUEST request_5 1714134135984 1714134136080 OK +REQUEST request_6 1714134136080 1714134136186 OK +REQUEST request_7 1714134136080 1714134136226 OK +USER LoginRecord END 1714134136226 +REQUEST request_5 1714134136250 1714134136333 OK +REQUEST request_6 1714134136333 1714134136436 OK +REQUEST request_4 1714134136405 1714134136440 OK +REQUEST request_7 1714134136333 1714134136457 OK +USER LoginRecord END 1714134136457 +REQUEST request_5 1714134136373 1714134136458 OK +REQUEST request_5 1714134136467 1714134136551 OK +REQUEST request_6 1714134136458 1714134136560 OK +REQUEST request_7 1714134136458 1714134136602 OK +USER LoginRecord END 1714134136602 +REQUEST request_6 1714134136551 1714134136650 OK +REQUEST request_7 1714134136551 1714134136694 OK +USER LoginRecord END 1714134136694 +REQUEST request_5 1714134136670 1714134136766 OK +REQUEST request_6 1714134136767 1714134136874 OK +REQUEST request_7 1714134136767 1714134136891 OK +USER LoginRecord END 1714134136891 +REQUEST request_5 1714134136843 1714134136939 OK +REQUEST request_5 1714134136906 1714134136990 OK +REQUEST request_6 1714134136939 1714134137047 OK +REQUEST request_7 1714134136939 1714134137082 OK +USER LoginRecord END 1714134137082 +REQUEST request_6 1714134136990 1714134137092 OK +REQUEST request_7 1714134136990 1714134137135 OK +USER LoginRecord END 1714134137135 +REQUEST request_5 1714134137107 1714134137191 OK +REQUEST request_4 1714134137199 1714134137238 OK +REQUEST request_5 1714134137153 1714134137239 OK +REQUEST request_5 1714134137153 1714134137249 OK +REQUEST request_6 1714134137192 1714134137295 OK +REQUEST request_5 1714134137199 1714134137295 OK +REQUEST request_7 1714134137192 1714134137334 OK +USER LoginRecord END 1714134137334 +REQUEST request_6 1714134137239 1714134137346 OK +REQUEST request_7 1714134137240 1714134137363 OK +USER LoginRecord END 1714134137363 +REQUEST request_7 1714134137249 1714134137371 OK +REQUEST request_5 1714134137292 1714134137374 OK +REQUEST request_6 1714134137249 1714134137375 OK +USER LoginRecord END 1714134137375 +REQUEST request_6 1714134137296 1714134137406 OK +REQUEST request_7 1714134137296 1714134137420 OK +USER LoginRecord END 1714134137420 +REQUEST request_6 1714134137374 1714134137476 OK +REQUEST request_7 1714134137374 1714134137517 OK +USER LoginRecord END 1714134137517 +REQUEST request_5 1714134137556 1714134137640 OK +REQUEST request_5 1714134137602 1714134137700 OK +REQUEST request_6 1714134137640 1714134137740 OK +REQUEST request_5 1714134137680 1714134137764 OK +REQUEST request_7 1714134137640 1714134137784 OK +USER LoginRecord END 1714134137784 +REQUEST request_6 1714134137700 1714134137806 OK +REQUEST request_5 1714134137726 1714134137825 OK +REQUEST request_7 1714134137700 1714134137847 OK +USER LoginRecord END 1714134137847 +REQUEST request_6 1714134137764 1714134137865 OK +REQUEST request_7 1714134137765 1714134137908 OK +USER LoginRecord END 1714134137908 +REQUEST request_6 1714134137825 1714134137933 OK +REQUEST request_7 1714134137825 1714134137947 OK +USER LoginRecord END 1714134137948 +REQUEST request_5 1714134137928 1714134138011 OK +REQUEST request_6 1714134138012 1714134138113 OK +REQUEST request_5 1714134138022 1714134138120 OK +REQUEST request_7 1714134138012 1714134138157 OK +USER LoginRecord END 1714134138157 +REQUEST request_6 1714134138120 1714134138227 OK +REQUEST request_7 1714134138120 1714134138263 OK +USER LoginRecord END 1714134138264 +REQUEST request_5 1714134138768 1714134138851 OK +REQUEST request_5 1714134138800 1714134138897 OK +REQUEST request_6 1714134138852 1714134138954 OK +REQUEST request_7 1714134138852 1714134138997 OK +USER LoginRecord END 1714134138997 +REQUEST request_6 1714134138897 1714134139006 OK +REQUEST request_5 1714134138924 1714134139009 OK +REQUEST request_7 1714134138897 1714134139022 OK +USER LoginRecord END 1714134139022 +REQUEST request_6 1714134139009 1714134139110 OK +REQUEST request_7 1714134139009 1714134139154 OK +USER LoginRecord END 1714134139154 +REQUEST request_5 1714134139485 1714134139581 OK +REQUEST request_6 1714134139581 1714134139688 OK +REQUEST request_7 1714134139582 1714134139705 OK +USER LoginRecord END 1714134139706 +REQUEST request_5 1714134139811 1714134139897 OK +REQUEST request_6 1714134139897 1714134140001 OK +REQUEST request_7 1714134139897 1714134140020 OK +USER LoginRecord END 1714134140020 +REQUEST request_5 1714134140095 1714134140193 OK +REQUEST request_5 1714134140127 1714134140211 OK +REQUEST request_6 1714134140193 1714134140304 OK +REQUEST request_6 1714134140211 1714134140316 OK +REQUEST request_7 1714134140211 1714134140337 OK +USER LoginRecord END 1714134140337 +REQUEST request_7 1714134140194 1714134140337 OK +USER LoginRecord END 1714134140337 +REQUEST request_5 1714134140481 1714134140577 OK +REQUEST request_6 1714134140577 1714134140682 OK +REQUEST request_7 1714134140577 1714134140721 OK +USER LoginRecord END 1714134140722 +REQUEST request_5 1714134140914 1714134140998 OK +REQUEST request_5 1714134140976 1714134141072 OK +REQUEST request_6 1714134140999 1714134141102 OK +REQUEST request_7 1714134140999 1714134141124 OK +USER LoginRecord END 1714134141124 +REQUEST request_6 1714134141072 1714134141180 OK +REQUEST request_7 1714134141072 1714134141217 OK +USER LoginRecord END 1714134141218 +REQUEST request_5 1714134141379 1714134141464 OK +REQUEST request_6 1714134141464 1714134141563 OK +REQUEST request_7 1714134141464 1714134141590 OK +USER LoginRecord END 1714134141590 +REQUEST request_5 1714134141549 1714134141633 OK +REQUEST request_6 1714134141633 1714134141731 OK +REQUEST request_7 1714134141633 1714134141776 OK +USER LoginRecord END 1714134141776 +REQUEST request_5 1714134141736 1714134141820 OK +REQUEST request_6 1714134141820 1714134141921 OK +REQUEST request_7 1714134141820 1714134141943 OK +USER LoginRecord END 1714134141944 +REQUEST request_5 1714134141891 1714134141986 OK +REQUEST request_6 1714134141987 1714134142091 OK +REQUEST request_7 1714134141987 1714134142111 OK +USER LoginRecord END 1714134142111 +REQUEST request_5 1714134142137 1714134142222 OK +REQUEST request_5 1714134142169 1714134142252 OK +REQUEST request_6 1714134142222 1714134142324 OK +REQUEST request_5 1714134142262 1714134142346 OK +REQUEST request_6 1714134142253 1714134142355 OK +REQUEST request_7 1714134142222 1714134142365 OK +USER LoginRecord END 1714134142365 +REQUEST request_7 1714134142253 1714134142378 OK +USER LoginRecord END 1714134142378 +REQUEST request_6 1714134142346 1714134142446 OK +REQUEST request_5 1714134142371 1714134142455 OK +REQUEST request_7 1714134142346 1714134142489 OK +USER LoginRecord END 1714134142490 +REQUEST request_5 1714134142433 1714134142529 OK +REQUEST request_6 1714134142455 1714134142556 OK +REQUEST request_7 1714134142455 1714134142600 OK +USER LoginRecord END 1714134142600 +REQUEST request_6 1714134142530 1714134142638 OK +REQUEST request_7 1714134142530 1714134142654 OK +USER LoginRecord END 1714134142654 +REQUEST request_5 1714134142589 1714134142673 OK +REQUEST request_6 1714134142673 1714134142772 OK +REQUEST request_7 1714134142674 1714134142796 OK +USER LoginRecord END 1714134142796 +REQUEST request_5 1714134142823 1714134142920 OK +REQUEST request_5 1714134142916 1714134142999 OK +REQUEST request_6 1714134142921 1714134143031 OK +REQUEST request_7 1714134142921 1714134143067 OK +USER LoginRecord END 1714134143067 +REQUEST request_6 1714134143000 1714134143102 OK +REQUEST request_7 1714134143000 1714134143124 OK +USER LoginRecord END 1714134143124 +REQUEST request_5 1714134143041 1714134143125 OK +REQUEST request_6 1714134143125 1714134143224 OK +REQUEST request_7 1714134143125 1714134143270 OK +USER LoginRecord END 1714134143270 +REQUEST request_5 1714134143211 1714134143294 OK +REQUEST request_6 1714134143295 1714134143393 OK +REQUEST request_7 1714134143295 1714134143441 OK +USER LoginRecord END 1714134143441 +REQUEST request_5 1714134143569 1714134143667 OK +REQUEST request_5 1714134143630 1714134143714 OK +REQUEST request_6 1714134143667 1714134143774 OK +REQUEST request_7 1714134143667 1714134143812 OK +USER LoginRecord END 1714134143812 +REQUEST request_6 1714134143715 1714134143816 OK +REQUEST request_7 1714134143715 1714134143840 OK +USER LoginRecord END 1714134143840 +REQUEST request_5 1714134144004 1714134144086 OK +REQUEST request_6 1714134144086 1714134144189 OK +REQUEST request_5 1714134144095 1714134144191 OK +REQUEST request_7 1714134144086 1714134144229 OK +USER LoginRecord END 1714134144229 +REQUEST request_6 1714134144192 1714134144297 OK +REQUEST request_7 1714134144192 1714134144319 OK +USER LoginRecord END 1714134144319 +REQUEST request_5 1714134144375 1714134144460 OK +REQUEST request_5 1714134144438 1714134144520 OK +REQUEST request_6 1714134144460 1714134144559 OK +REQUEST request_7 1714134144460 1714134144586 OK +USER LoginRecord END 1714134144586 +REQUEST request_6 1714134144521 1714134144618 OK +REQUEST request_5 1714134144562 1714134144644 OK +REQUEST request_7 1714134144521 1714134144665 OK +USER LoginRecord END 1714134144665 +REQUEST request_5 1714134144577 1714134144675 OK +REQUEST request_6 1714134144645 1714134144748 OK +REQUEST request_7 1714134144645 1714134144770 OK +USER LoginRecord END 1714134144770 +REQUEST request_6 1714134144675 1714134144794 OK +REQUEST request_7 1714134144675 1714134144819 OK +USER LoginRecord END 1714134144820 +REQUEST request_5 1714134145447 1714134145530 OK +REQUEST request_6 1714134145530 1714134145629 OK +REQUEST request_7 1714134145530 1714134145655 OK +USER LoginRecord END 1714134145655 +REQUEST request_5 1714134146239 1714134146336 OK +REQUEST request_6 1714134146337 1714134146443 OK +REQUEST request_7 1714134146337 1714134146463 OK +USER LoginRecord END 1714134146464 diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/bootstrap.min.css b/testsrc/gatling/results/loginrecord-20240426122058764/style/bootstrap.min.css new file mode 100644 index 00000000..76a2b9ba --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/bootstrap.min.css @@ -0,0 +1,27 @@ +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;} +.tooltip.right{margin-left:3px;} +.tooltip.bottom{margin-top:3px;} +.tooltip.left{margin-left:-3px;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:750px;padding:1px;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-content{padding:9px 14px;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} +.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow:after{content:"";z-index:-1;} +.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#ffffff;}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0, 0, 0, 0.25);bottom:-1px;left:-11px;} +.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#ffffff;}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0, 0, 0, 0.25);bottom:-11px;left:-1px;} +.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#ffffff;}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0, 0, 0, 0.25);top:-1px;left:-11px;} +.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#ffffff;}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0, 0, 0, 0.25);bottom:-11px;right:-1px;} diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/close.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/close.svg new file mode 100644 index 00000000..c161bb90 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/executions.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/executions.svg new file mode 100644 index 00000000..84068cd4 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/executions.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/expand.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/expand.svg new file mode 100644 index 00000000..f6e75e0d --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/expand.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/favicon.ico b/testsrc/gatling/results/loginrecord-20240426122058764/style/favicon.ico new file mode 100644 index 00000000..d2d20e11 Binary files /dev/null and b/testsrc/gatling/results/loginrecord-20240426122058764/style/favicon.ico differ diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/fullscreen.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/fullscreen.svg new file mode 100644 index 00000000..91f3b279 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/fullscreen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-dark.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-dark.svg new file mode 100644 index 00000000..7eb4d51c --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-enterprise-dark.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-enterprise-dark.svg new file mode 100644 index 00000000..1127d75e --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-enterprise-dark.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-enterprise-light.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-enterprise-light.svg new file mode 100644 index 00000000..4a6e1dec --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-enterprise-light.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-light.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-light.svg new file mode 100644 index 00000000..f519eef7 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/logo-light.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/sort-down.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/sort-down.svg new file mode 100644 index 00000000..db58a09d --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/sort-up.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/sort-up.svg new file mode 100644 index 00000000..bba9d846 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/sort.svg b/testsrc/gatling/results/loginrecord-20240426122058764/style/sort.svg new file mode 100644 index 00000000..43b658e2 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/loginrecord-20240426122058764/style/style.css b/testsrc/gatling/results/loginrecord-20240426122058764/style/style.css new file mode 100644 index 00000000..edc96263 --- /dev/null +++ b/testsrc/gatling/results/loginrecord-20240426122058764/style/style.css @@ -0,0 +1,1199 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +:root { + --gatling-background-color: #f2f2f2; + --gatling-background-light-color: #f7f7f7; + --gatling-border-color: #dddddd; + --gatling-blue-color: #4a9fe5; + --gatling-dark-blue-color: #24275e; + --gatling-danger-color: #f15b4f; + --gatling-danger-light-color: #f5d1ce; + --gatling-enterprise-color: #6161d6; + --gatling-enterprise-light-color: #c4c4ed; + --gatling-gray-medium-color: #bbb; + --gatling-hover-color: #e6e6e6; + --gatling-hover-background-color: #e6e6e6; + --gatling-light-color: #ffffff; + --gatling-orange-color: #f78557; + --gatling-success-color: #68b65c; + --gatling-text-color: #1f2024; + --gatling-total-color: #ffa900; + + --gatling-border-radius: 2px; + --gatling-spacing-small: 5px; + --gatling-spacing: 10px; + --gatling-spacing-layout: 20px; + + --gatling-font-weight-normal: 400; + --gatling-font-weight-medium: 500; + --gatling-font-weight-bold: 700; + --gatling-font-size-secondary: 12px; + --gatling-font-size-default: 14px; + --gatling-font-size-heading: 16px; + --gatling-font-size-section: 22px; + --gatling-font-size-header: 34px; + + --gatling-media-desktop-large: 1920px; +} + +html[data-theme="dark"] { + --gatling-background-color: #1e2225; + --gatling-background-light-color: #272c30; + --gatling-border-color: #555555; + --gatling-blue-color: #1188ff; + --gatling-dark-blue-color: #17223B; + --gatling-danger-color: #d9534f; + --gatling-danger-light-color: #c9302c; + --gatling-enterprise-color: #b2a2ea; + --gatling-enterprise-light-color: #343479; + --gatling-gray-medium-color: #999; + --gatling-hover-color: #30363b; + --gatling-hover-background-color: #2c2c2c; + --gatling-light-color: #394046; + --gatling-orange-color: #fe8e5f; + --gatling-success-color: #5cb85c; + --gatling-text-color: #dee2e6; + --gatling-total-color: #ffa900; +} + +* { + min-height: 0; + min-width: 0; +} + +html, +body { + height: 100%; + width: 100%; +} + +body { + color: var(--gatling-text-color); + font-family: arial; + font-size: var(--gatling-font-size-secondary); + margin: 0; +} + +.app-container { + display: flex; + flex-direction: column; + + height: 100%; + width: 100%; +} + +.head { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + + flex: 1; + + background-color: var(--gatling-light-color); + border-bottom: 1px solid var(--gatling-border-color); + min-height: 69px; + padding: 0 var(--gatling-spacing-layout); +} + +.head .spacer { + flex-grow: 1; +} + +.head .theme-toggle { + margin-left: 20px; + background: none; + color: var(--gatling-text-color); + border: none; +} + +.head .theme-toggle:hover { + color: var(--gatling-gray-medium-color); + cursor: pointer; +} + +body .toggle-dark, body .toggle-light { + display: block; +} + +[data-theme="dark"] body .toggle-dark { + display: none; +} + +[data-theme="light"] body .toggle-light { + display: none; +} + +[data-theme="dark"] body .logo-enterprise-light { + display: none; +} + +[data-theme="light"] body .logo-enterprise-dark { + display: none; +} + +.gatling-open-source { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + gap: var(--gatling-spacing-layout); +} + +.gatling-documentation { + display: flex; + align-items: center; + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-orange-color); + border: 1px solid var(--gatling-orange-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 23px; + + font-size: var(--gatling-font-size-default); +} + +.gatling-documentation:hover { + background-color: var(--gatling-orange-color); + color: var(--gatling-light-color); +} + +.gatling-logo { + height: 35px; +} + +.gatling-logo img { + height: 100%; +} + +[data-theme="dark"] .gatling-logo-light { + display: none; +} + +[data-theme="light"] .gatling-logo-dark { + display: none; +} + +.container { + display: flex; + align-items: stretch; + height: 100%; +} + +.nav { + min-width: 210px; + width: 210px; + max-height: calc(100vh - var(--gatling-spacing-layout) - var(--gatling-spacing-layout)); + background: var(--gatling-light-color); + border-right: 1px solid var(--gatling-border-color); + overflow-y: auto; +} + +@media print { + .nav { + display: none; + } +} + +@media screen and (min-width: 1920px) { + .nav { + min-width: 310px; + width: 310px; + } +} + +.nav ul { + display: flex; + flex-direction: column; + + padding: 0; + margin: 0; +} + +.nav li { + display: flex; + list-style: none; + width: 100%; + padding: 0; +} + +.nav .item { + display: inline-flex; + align-items: center; + margin: 0 auto; + white-space: nowrap; + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + margin: 0; + width: 100%; +} + +.nav .item .nav-label { + padding: var(--gatling-spacing) var(--gatling-spacing-layout); +} + +.nav .item:hover { + background-color: var(--gatling-hover-color); +} + +.nav .on .item { + background-color: var(--gatling-orange-color); +} + +.nav .on .item span { + color: var(--gatling-light-color); +} + +.cadre { + width: 100%; + height: 100%; + overflow-y: scroll; + scroll-behavior: smooth; +} + +@media print { + .cadre { + overflow-y: unset; + } +} + +.frise { + position: absolute; + top: 60px; + z-index: -1; + + background-color: var(--gatling-background-color); + height: 530px; +} + +.global { + height: 650px +} + +a { + text-decoration: none; +} + +a:hover { + color: var(--gatling-hover-color); +} + +img { + border: 0; +} + +h1 { + color: var(--gatling-dark-blue-color); + font-size: var(--gatling-font-size-section); + font-weight: var(--gatling-font-weight-medium); + text-align: center; + margin: 0; +} + +h1 span { + color: var(--gatling-hover-color); +} + +.enterprise { + display: flex; + align-items: center; + justify-content: center; + gap: var(--gatling-spacing-small); + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-enterprise-color); + color: var(--gatling-enterprise-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 25px; +} + +.enterprise:hover { + background-color: var(--gatling-hover-color); + color: var(--gatling-enterprise-color); +} + +.enterprise img { + display: block; + width: 160px; +} + +.simulation-card { + display: flex; + flex-direction: column; + align-self: stretch; + flex: 1; + gap: var(--gatling-spacing-layout); + max-height: 375px; +} + +#simulation-information { + flex: 1; +} + +.simulation-version-information { + display: flex; + flex-direction: column; + + gap: var(--gatling-spacing); + font-size: var(--gatling-font-size-default); + + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing); +} + +.simulation-information-container { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing); +} + +.withTooltip .popover-title { + display: none; +} + +.popover-content p { + margin: 0; +} + +html[data-theme="dark"] div.popover { + background-color: var(--gatling-light-color); + border-bottom: none; +} + +html[data-theme="dark"] div.popover.right .arrow { + border-right-color: var(--gatling-light-color); +} + +.ellipsed-name { + display: block; + + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.simulation-information-item { + display: flex; + flex-direction: row; + align-items: flex-start; + gap: var(--gatling-spacing-small); +} + +.simulation-information-item.description { + flex-direction: column; +} + +.simulation-information-label { + display: inline-block; + font-weight: var(--gatling-font-weight-bold); + min-width: fit-content; +} + +.simulation-information-title { + display: block; + text-align: center; + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + width: 100%; +} + +.simulation-tooltip span { + display: inline-block; + word-wrap: break-word; + overflow: hidden; + text-overflow: ellipsis; +} + +.content { + display: flex; + flex-direction: column; +} + +.content-in { + width: 100%; + height: 100%; + + overflow-x: scroll; +} + +html[data-theme="dark"] .content-in { + background-color: var(--gatling-background-color); +} + +@media print { + .content-in { + overflow-x: unset; + } +} + +.container-article { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + min-width: 1050px; + width: 1050px; + margin: 0 auto; + padding: var(--gatling-spacing-layout); + box-sizing: border-box; +} + +@media screen and (min-width: 1920px) { + .container-article { + min-width: 1350px; + width: 1350px; + } + + #responses * .highcharts-tracker { + transform: translate(400px, 70px); + } +} + +.content-header { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + background-color: var(--gatling-background-light-color); + border-bottom: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-layout) var(--gatling-spacing-layout) 0; +} + +.onglet { + font-size: var(--gatling-font-size-header); + font-weight: var(--gatling-font-weight-medium); + text-align: center; +} + +.sous-menu { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; +} + +.sous-menu-spacer { + display: flex; + align-items: center; + flex-direction: row; +} + +.sous-menu .item { + margin-bottom: -1px; +} + +.sous-menu a { + display: block; + + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-normal); + padding: var(--gatling-spacing-small) var(--gatling-spacing) var(--gatling-spacing); + border-bottom: 2px solid transparent; + color: var(--gatling-text-color); + text-align: center; + width: 100px; +} + +.sous-menu a:hover { + border-bottom-color: var(--gatling-text-color); +} + +.sous-menu .ouvert a { + border-bottom-color: var(--gatling-orange-color); + font-weight: var(--gatling-font-weight-bold); +} + +.article { + position: relative; + + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); +} + +.infos { + width: 340px; + color: var(--gatling-light-color); +} + +.infos-title { + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-bottom: 0; + border-top-left-radius: var(--gatling-border-radius); + border-top-right-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.info { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + height: 100%; + margin: 0; +} + +.info table { + margin: auto; + padding-right: 15px; +} + +.alert-danger { + background-color: var(--gatling-danger-light-color); + border: 1px solid var(--gatling-danger-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-layout); + font-weight: var(--gatling-font-weight-bold); +} + +.infos h2 { + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + height: 19px; + margin: 0; + padding: 3.5px 0 0 35px; +} + +.infos .first::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.infos .second::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .infos .first::before, +html[data-theme="dark"] .infos .second::before { + filter: invert(0.9); +} + +.infos th { + text-align: center; +} + +.infos td { + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing-small); + -webkit-border-radius: var(--gatling-border-radius); + -moz-border-radius: var(--gatling-border-radius); + -ms-border-radius: var(--gatling-border-radius); + -o-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + text-align: right; + width: 50px; +} + +.infos .title { + width: 120px; +} + +.infos .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); +} + +.infos .total { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); +} + +.infos .ko { + background-color: var(--gatling-danger-color); + -webkit-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); +} + +.schema-container { + display: flex; + align-items: center; + justify-content: space-between; + gap: var(--gatling-spacing-layout); +} + +.schema { + background: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); +} + +.ranges { + height: 375px; + width: 500px; +} + +.ranges-large { + height: 375px; + width: 530px; +} + +.geant { + height: 362px; +} + +.extensible-geant { + width: 100%; +} + +.polar { + height: 375px; + width: 230px; +} + +.chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .highcharts-background { + fill: var(--gatling-background-light-color); +} + +html[data-theme="dark"] .highcharts-button-normal rect { + fill: var(--gatling-background-color) !important; +} + +html[data-theme="dark"] .highcharts-button-disabled rect { + fill: var(--gatling-background-light-color) !important; +} + +html[data-theme="dark"] .highcharts-button-pressed rect { + fill: var(--gatling-orange-color) !important; +} + +html[data-theme="dark"] .highcharts-axis text, +html[data-theme="dark"] .highcharts-axis-labels text, +html[data-theme="dark"] .highcharts-button text, +html[data-theme="dark"] .highcharts-legend-item text, +html[data-theme="dark"] .highcharts-range-selector-buttons text { + fill: var(--gatling-text-color) !important; +} + +.statistics { + display: flex; + flex-direction: column; + + background-color: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border-collapse: collapse; + color: var(--gatling-text-color); + max-height: 100%; +} + +.statistics .title { + display: flex; + text-align: center; + justify-content: space-between; + + min-height: 49.5px; + box-sizing: border-box; + + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing); +} + +.title_base { + display: flex; + align-items: center; + text-align: left; + user-select: none; +} + +.title_base_stats { + color: var(--gatling-text-color); + margin-right: 20px; +} + +.toggle-table { + position: relative; + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: 25px; + width: 40px; + height: 20px; + margin: 0 var(--gatling-spacing-small); +} + +.toggle-table::before { + position: absolute; + top: calc(50% - 9px); + left: 1px; + content: ""; + width: 50%; + height: 18px; + border-radius: 50%; + background-color: var(--gatling-text-color); +} + +.toggle-table.off::before { + left: unset; + right: 1px; +} + +.title_expanded { + cursor: pointer; + color: var(--gatling-text-color); +} + +.expand-table, +.collapse-table { + font-size: var(--gatling-font-size-secondary); + font-weight: var(--gatling-font-weight-normal); +} + +.title_expanded span.expand-table { + color: var(--gatling-gray-medium-color); +} + +.title_collapsed { + cursor: pointer; + color: var(--gatling-text-color); +} + +.title_collapsed span.collapse-table { + color: var(--gatling-gray-medium-color); +} + +#container_statistics_head { + position: sticky; + top: -1px; + + background: var(--gatling-background-light-color); + margin-top: -1px; + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); +} + +#container_statistics_body { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + margin-top: -1px; + padding: 0px var(--gatling-spacing-small) var(--gatling-spacing-small) var(--gatling-spacing-small); +} + +#container_errors { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); + margin-top: -1px; +} + +#container_assertions { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small); + margin-top: -1px; +} + +.statistics-in { + border-spacing: var(--gatling-spacing-small); + border-collapse: collapse; + margin: 0; +} + +.statistics .scrollable { + max-height: 100%; + overflow-y: auto; +} + +#statistics_table_container .statistics .scrollable { + max-height: 785px; +} + +.statistics-in a { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .header { + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small); +} + +.sortable { + cursor: pointer; +} + +.sortable span::after { + content: ''; + display: inline-block; + margin-left: 5px; + vertical-align: middle; + width: 12px; + height: 12px; + background: url('sort.svg'); + background-size: contain; +} + +.sorted-up span::after { + background: url('sort-up.svg'); + background-size: contain; +} + +.sorted-down span::after { + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .sortable span::after { + filter: invert(0.9); +} + +.executions::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.response-time::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .executions::before, +html[data-theme="dark"] .response-time::before { + filter: invert(0.9); +} + +.statistics-in td { + background-color: var(--gatling-light-color); + border: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-small); + min-width: 50px; +} + +.statistics-in .col-1 { + width: 175px; + max-width: 175px; +} +@media screen and (min-width: 1200px) { + .statistics-in .col-1 { + width: 50%; + } +} + +.expandable-container { + display: flex; + flex-direction: row; + box-sizing: border-box; + max-width: 100%; +} + +.statistics-in .value { + text-align: right; + width: 50px; +} + +.statistics-in .total { + color: var(--gatling-text-color); +} + +.statistics-in .col-2 { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .error-col-1 { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); +} + +.statistics-in .error-col-2 { + text-align: center; +} + +.statistics-in .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .ko { + background-color: var(--gatling-danger-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .expand-button { + padding-left: var(--gatling-spacing); + cursor: pointer; +} + +.expand-button.hidden { + background: none; + cursor: default; +} + +.statistics-button { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-small) var(--gatling-spacing); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); +} + +#statistics_full_screen{ + padding: var(--gatling-spacing-small); +} + +#statistics_full_screen > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] #statistics_full_screen > img { + filter: invert(0.9); +} + +#statistics_full_screen:disabled { + display: none; +} + +.statistics-button:hover:not(:disabled) { + cursor: pointer; + background-color: var(--gatling-hover-color); +} + +.statistics-in .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('expand.svg'); + background-size: contain; +} + +.statistics-in .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .statistics-in .expand-button.collapse, +html[data-theme="dark"] .statistics-in .expand-button.expand { + filter: invert(0.9); +} + +.nav .expand-button { + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.nav .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('expand.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +.nav .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('sort-down.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +html[data-theme="dark"] .nav .expand-button.expand, +html[data-theme="dark"] .nav .expand-button.collapse { + filter: invert(0.9); +} + +.right { + display: flex; + align-items: center; + gap: var(--gatling-spacing); + float: right; + font-size: var(--gatling-font-size-default); +} + +.withTooltip { + outline: none; +} + +.withTooltip:hover { + text-decoration: none; +} + +.withTooltip .tooltipContent { + position: absolute; + z-index: 10; + display: none; + + background: var(--gatling-orange-color); + -webkit-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + -moz-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); + margin-top: -5px; + padding: var(--gatling-spacing-small); +} + +.withTooltip:hover .tooltipContent { + display: inline; +} + +.button-modal { + padding: var(--gatling-spacing-small); +} + +.button-modal > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] .button-modal > img { + filter: invert(0.9); +} + +.statistics-table-modal { + background-color: var(--gatling-background-color); + height: calc(100% - 60px); + width: calc(100% - 60px); + border-radius: var(--gatling-border-radius); +} + +.statistics-table-modal::backdrop { + position: fixed; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + + background-color: rgba(100, 100, 100, 0.9); +} + +.statistics-table-modal-container { + display: flex; + flex-direction: column; + + width: 100%; + height: calc(100% - 35px); + overflow-x: auto; +} + +.button-modal { + cursor: pointer; + + height: 25px; + width: 25px; + + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); +} + +.button-modal:hover { + background-color: var(--gatling-background-color); +} + +.statistics-table-modal-header { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-bottom: var(--gatling-spacing); +} + +.statistics-table-modal-content { + flex: 1; + overflow-y: auto; + min-width: 1050px; +} + +.statistics-table-modal-footer { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-top: var(--gatling-spacing); +} diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/index.html b/testsrc/gatling/results/playgamerecord-20240426125611412/index.html new file mode 100644 index 00000000..9f61435e --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/index.html @@ -0,0 +1,1139 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - Global Information + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    +
    +
    + Gatling Version + + Version: + 3.10.5 + + + Released: + 2024-03-22 + +
    +
    + Run Information +
    + + Date: + 2024-04-26 12:56:12 GMT + + + Duration: + 1m 25s + + + Description: + + + +
    +
    +
    +
    + +
    + +
    + +
    +
    +
    +
    +
    + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/all_sessions.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/all_sessions.js new file mode 100644 index 00000000..a0c5d95b --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/all_sessions.js @@ -0,0 +1,11 @@ +allUsersData = { + +color: '#FFA900', +name: 'Active Users', +data: [ + [1714136172000,4],[1714136173000,9],[1714136174000,15],[1714136175000,25],[1714136176000,29],[1714136177000,36],[1714136178000,39],[1714136179000,43],[1714136180000,45],[1714136181000,50],[1714136182000,56],[1714136183000,59],[1714136184000,64],[1714136185000,71],[1714136186000,75],[1714136187000,81],[1714136188000,84],[1714136189000,89],[1714136190000,94],[1714136191000,97],[1714136192000,101],[1714136193000,105],[1714136194000,116],[1714136195000,120],[1714136196000,126],[1714136197000,133],[1714136198000,139],[1714136199000,142],[1714136200000,143],[1714136201000,144],[1714136202000,142],[1714136203000,143],[1714136204000,137],[1714136205000,138],[1714136206000,137],[1714136207000,142],[1714136208000,143],[1714136209000,143],[1714136210000,145],[1714136211000,145],[1714136212000,143],[1714136213000,143],[1714136214000,147],[1714136215000,148],[1714136216000,148],[1714136217000,148],[1714136218000,148],[1714136219000,153],[1714136220000,149],[1714136221000,143],[1714136222000,145],[1714136223000,139],[1714136224000,136],[1714136225000,132],[1714136226000,133],[1714136227000,129],[1714136228000,125],[1714136229000,127],[1714136230000,128],[1714136231000,131],[1714136232000,126],[1714136233000,121],[1714136234000,114],[1714136235000,110],[1714136236000,102],[1714136237000,99],[1714136238000,93],[1714136239000,89],[1714136240000,84],[1714136241000,76],[1714136242000,72],[1714136243000,67],[1714136244000,61],[1714136245000,55],[1714136246000,50],[1714136247000,47],[1714136248000,44],[1714136249000,37],[1714136250000,36],[1714136251000,33],[1714136252000,29],[1714136253000,23],[1714136254000,21],[1714136255000,15],[1714136256000,6],[1714136257000,4] +], +tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 } + , zIndex: 20 + , yAxis: 1 +}; \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/assertions.xml b/testsrc/gatling/results/playgamerecord-20240426125611412/js/assertions.xml new file mode 100644 index 00000000..f932ca11 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/assertions.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/bootstrap.min.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/bootstrap.min.js new file mode 100644 index 00000000..ea41042e --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/** +* Bootstrap.js by @fat & @mdo +* plugins: bootstrap-tooltip.js, bootstrap-popover.js +* Copyright 2012 Twitter, Inc. +* http://www.apache.org/licenses/LICENSE-2.0.txt +*/ +!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}},a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
    ',trigger:"hover",title:"",delay:0,html:!1}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content > *")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}}),a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

    '})}(window.jQuery) \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/ellipsis.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/ellipsis.js new file mode 100644 index 00000000..781d0dec --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/ellipsis.js @@ -0,0 +1,26 @@ +function parentId(name) { + return "parent-" + name; +} + +function isEllipsed(name) { + const child = document.getElementById(name); + const parent = document.getElementById(parentId(name)); + const emptyData = parent.getAttribute("data-content") === ""; + const hasOverflow = child.clientWidth < child.scrollWidth; + + if (hasOverflow) { + if (emptyData) { + parent.setAttribute("data-content", name); + } + } else { + if (!emptyData) { + parent.setAttribute("data-content", ""); + } + } +} + +function ellipsedLabel ({ name, parentClass = "", childClass = "" }) { + const child = "" + name + ""; + + return "" + child + ""; +} diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/gatling.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/gatling.js new file mode 100644 index 00000000..5b9e992f --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/gatling.js @@ -0,0 +1,137 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +(function ($) { + $.fn.expandable = function () { + var scope = this; + + this.find('.expand-button:not([class*=hidden])').addClass('collapse').on('click', function () { + var $this = $(this); + + if ($this.hasClass('expand')) + $this.expand(scope); + else + $this.collapse(scope); + }); + + this.find('.expand-all-button').on('click', function () { + $(this).expandAll(scope); + }); + + this.find('.collapse-all-button').on('click', function () { + $(this).collapseAll(scope); + }); + + this.collapseAll(this); + + return this; + }; + + $.fn.expand = function (scope, recursive) { + return this.each(function () { + var $this = $(this); + + if (recursive) { + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + } + + if ($this.hasClass('expand')) { + $('*[data-parent=' + $this.attr('id') + ']').toggle(true); + $this.toggleClass('expand').toggleClass('collapse'); + } + }); + }; + + $.fn.expandAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.expand').expand(scope, true); + $('*[data-parent=ROOT]').find('.expand-button.collapse').expand(scope, true); + }; + + $.fn.collapse = function (scope) { + return this.each(function () { + var $this = $(this); + + scope.find('*[data-parent=' + $this.attr('id') + '] .expand-button.collapse').collapse(scope); + scope.find('*[data-parent=' + $this.attr('id') + ']').toggle(false); + $this.toggleClass('expand').toggleClass('collapse'); + }); + }; + + $.fn.collapseAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.collapse').collapse(scope); + }; + + $.fn.sortable = function (target) { + var table = this; + + this.find('thead .sortable').on('click', function () { + var $this = $(this); + + if ($this.hasClass('sorted-down')) { + var desc = false; + var style = 'sorted-up'; + } + else { + var desc = true; + var style = 'sorted-down'; + } + + $(target).sortTable($this.attr('id'), desc); + + table.find('thead .sortable').removeClass('sorted-up sorted-down'); + $this.addClass(style); + + return false; + }); + + return this; + }; + + $.fn.sortTable = function (col, desc) { + function getValue(line) { + var cell = $(line).find('.' + col); + + if (cell.hasClass('value')) + var value = cell.text(); + else + var value = cell.find('.value').text(); + + return parseFloat(value); + } + + function sortLines (lines, group) { + var notErrorTable = col.search("error") == -1; + var linesToSort = notErrorTable ? lines.filter('*[data-parent=' + group + ']') : lines; + + var sortedLines = linesToSort.sort(function (a, b) { + return desc ? getValue(b) - getValue(a): getValue(a) - getValue(b); + }).toArray(); + + var result = []; + $.each(sortedLines, function (i, line) { + result.push(line); + if (notErrorTable) + result = result.concat(sortLines(lines, $(line).attr('id'))); + }); + + return result; + } + + this.find('tbody').append(sortLines(this.find('tbody tr').detach(), 'ROOT')); + + return this; + }; +})(jQuery); diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/global_stats.json b/testsrc/gatling/results/playgamerecord-20240426125611412/js/global_stats.json new file mode 100644 index 00000000..f34cbee8 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/global_stats.json @@ -0,0 +1,77 @@ +{ + "name": "All Requests", + "numberOfRequests": { + "total": 5472, + "ok": 4256, + "ko": 1216 + }, + "minResponseTime": { + "total": 39, + "ok": 39, + "ko": 39 + }, + "maxResponseTime": { + "total": 145, + "ok": 145, + "ko": 100 + }, + "meanResponseTime": { + "total": 83, + "ok": 83, + "ko": 82 + }, + "standardDeviation": { + "total": 21, + "ok": 22, + "ko": 18 + }, + "percentiles1": { + "total": 84, + "ok": 85, + "ko": 84 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 96 + }, + "percentiles3": { + "total": 108, + "ok": 110, + "ko": 97 + }, + "percentiles4": { + "total": 118, + "ok": 120, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 4256, + "percentage": 78 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 1216, + "percentage": 22 +}, + "meanNumberOfRequestsPerSecond": { + "total": 63.627906976744185, + "ok": 49.48837209302326, + "ko": 14.13953488372093 + } +} \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/highcharts-more.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/highcharts-more.js new file mode 100644 index 00000000..2d788932 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/highcharts-more.js @@ -0,0 +1,60 @@ +/* + Highcharts JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(x){"object"===typeof module&&module.exports?module.exports=x:x(Highcharts)})(function(x){(function(b){function r(b,a,d){this.init(b,a,d)}var t=b.each,w=b.extend,m=b.merge,q=b.splat;w(r.prototype,{init:function(b,a,d){var f=this,h=f.defaultOptions;f.chart=a;f.options=b=m(h,a.angular?{background:{}}:void 0,b);(b=b.background)&&t([].concat(q(b)).reverse(),function(a){var c,h=d.userOptions;c=m(f.defaultBackgroundOptions,a);a.backgroundColor&&(c.backgroundColor=a.backgroundColor);c.color=c.backgroundColor; +d.options.plotBands.unshift(c);h.plotBands=h.plotBands||[];h.plotBands!==d.options.plotBands&&h.plotBands.unshift(c)})},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{className:"highcharts-pane",shape:"circle",borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"}});b.Pane=r})(x);(function(b){var r=b.CenteredSeriesMixin, +t=b.each,w=b.extend,m=b.map,q=b.merge,e=b.noop,a=b.Pane,d=b.pick,f=b.pInt,h=b.splat,u=b.wrap,c,l,k=b.Axis.prototype;b=b.Tick.prototype;c={getOffset:e,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:e,setCategories:e,setTitle:e};l={defaultRadialGaugeOptions:{labels:{align:"center",x:0,y:null},minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2}, +defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(a){a=this.options=q(this.defaultOptions,this.defaultRadialOptions,a);a.plotBands||(a.plotBands=[])},getOffset:function(){k.getOffset.call(this);this.chart.axisOffset[this.side]=0;this.center=this.pane.center= +r.getCenter.call(this.pane)},getLinePath:function(a,g){a=this.center;var c=this.chart,f=d(g,a[2]/2-this.offset);this.isCircular||void 0!==g?g=this.chart.renderer.symbols.arc(this.left+a[0],this.top+a[1],f,f,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}):(g=this.postTranslate(this.angleRad,f),g=["M",a[0]+c.plotLeft,a[1]+c.plotTop,"L",g.x,g.y]);return g},setAxisTranslation:function(){k.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/ +(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===d(this.userMax,this.options.max)&&this.endAngleRad-this.startAngleRad===2*Math.PI)this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){k.setAxisSize.call(this);this.isRadial&&(this.center=this.pane.center=r.getCenter.call(this.pane),this.isCircular&& +(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*d(this.sector,1)/2)},getPosition:function(a,g){return this.postTranslate(this.isCircular?this.translate(a):this.angleRad,d(this.isCircular?g:this.translate(a),this.center[2]/2)-this.offset)},postTranslate:function(a,g){var d=this.chart,c=this.center;a=this.startAngleRad+a;return{x:d.plotLeft+c[0]+Math.cos(a)*g,y:d.plotTop+c[1]+Math.sin(a)*g}},getPlotBandPath:function(a,g,c){var h=this.center,p=this.startAngleRad, +k=h[2]/2,n=[d(c.outerRadius,"100%"),c.innerRadius,d(c.thickness,10)],b=Math.min(this.offset,0),l=/%$/,u,e=this.isCircular;"polygon"===this.options.gridLineInterpolation?h=this.getPlotLinePath(a).concat(this.getPlotLinePath(g,!0)):(a=Math.max(a,this.min),g=Math.min(g,this.max),e||(n[0]=this.translate(a),n[1]=this.translate(g)),n=m(n,function(a){l.test(a)&&(a=f(a,10)*k/100);return a}),"circle"!==c.shape&&e?(a=p+this.translate(a),g=p+this.translate(g)):(a=-Math.PI/2,g=1.5*Math.PI,u=!0),n[0]-=b,n[2]-= +b,h=this.chart.renderer.symbols.arc(this.left+h[0],this.top+h[1],n[0],n[0],{start:Math.min(a,g),end:Math.max(a,g),innerR:d(n[1],n[0]-n[2]),open:u}));return h},getPlotLinePath:function(a,g){var d=this,c=d.center,f=d.chart,h=d.getPosition(a),k,b,p;d.isCircular?p=["M",c[0]+f.plotLeft,c[1]+f.plotTop,"L",h.x,h.y]:"circle"===d.options.gridLineInterpolation?(a=d.translate(a))&&(p=d.getLinePath(0,a)):(t(f.xAxis,function(a){a.pane===d.pane&&(k=a)}),p=[],a=d.translate(a),c=k.tickPositions,k.autoConnect&&(c= +c.concat([c[0]])),g&&(c=[].concat(c).reverse()),t(c,function(g,d){b=k.getPosition(g,a);p.push(d?"L":"M",b.x,b.y)}));return p},getTitlePosition:function(){var a=this.center,g=this.chart,d=this.options.title;return{x:g.plotLeft+a[0]+(d.x||0),y:g.plotTop+a[1]-{high:.5,middle:.25,low:0}[d.align]*a[2]+(d.y||0)}}};u(k,"init",function(f,g,k){var b=g.angular,p=g.polar,n=k.isX,u=b&&n,e,A=g.options,m=k.pane||0;if(b){if(w(this,u?c:l),e=!n)this.defaultRadialOptions=this.defaultRadialGaugeOptions}else p&&(w(this, +l),this.defaultRadialOptions=(e=n)?this.defaultRadialXOptions:q(this.defaultYAxisOptions,this.defaultRadialYOptions));b||p?(this.isRadial=!0,g.inverted=!1,A.chart.zoomType=null):this.isRadial=!1;f.call(this,g,k);u||!b&&!p||(f=this.options,g.panes||(g.panes=[]),this.pane=g=g.panes[m]=g.panes[m]||new a(h(A.pane)[m],g,this),g=g.options,this.angleRad=(f.angle||0)*Math.PI/180,this.startAngleRad=(g.startAngle-90)*Math.PI/180,this.endAngleRad=(d(g.endAngle,g.startAngle+360)-90)*Math.PI/180,this.offset=f.offset|| +0,this.isCircular=e)});u(k,"autoLabelAlign",function(a){if(!this.isRadial)return a.apply(this,[].slice.call(arguments,1))});u(b,"getPosition",function(a,d,c,f,h){var g=this.axis;return g.getPosition?g.getPosition(c):a.call(this,d,c,f,h)});u(b,"getLabelPosition",function(a,g,c,f,h,k,b,l,u){var n=this.axis,p=k.y,e=20,y=k.align,v=(n.translate(this.pos)+n.startAngleRad+Math.PI/2)/Math.PI*180%360;n.isRadial?(a=n.getPosition(this.pos,n.center[2]/2+d(k.distance,-25)),"auto"===k.rotation?f.attr({rotation:v}): +null===p&&(p=n.chart.renderer.fontMetrics(f.styles.fontSize).b-f.getBBox().height/2),null===y&&(n.isCircular?(this.label.getBBox().width>n.len*n.tickInterval/(n.max-n.min)&&(e=0),y=v>e&&v<180-e?"left":v>180+e&&v<360-e?"right":"center"):y="center",f.attr({align:y})),a.x+=k.x,a.y+=p):a=a.call(this,g,c,f,h,k,b,l,u);return a});u(b,"getMarkPath",function(a,d,c,f,h,k,b){var g=this.axis;g.isRadial?(a=g.getPosition(this.pos,g.center[2]/2+f),d=["M",d,c,"L",a.x,a.y]):d=a.call(this,d,c,f,h,k,b);return d})})(x); +(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.Series,q=b.seriesType,e=b.seriesTypes;q("arearange","area",{lineWidth:1,marker:null,threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{series.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0},states:{hover:{halo:!1}}},{pointArrayMap:["low","high"],dataLabelCollections:["dataLabel", +"dataLabelUpper"],toYData:function(a){return[a.low,a.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(a){var d=this.chart,f=this.xAxis.postTranslate(a.rectPlotX,this.yAxis.len-a.plotHigh);a.plotHighX=f.x-d.plotLeft;a.plotHigh=f.y-d.plotTop},translate:function(){var a=this,d=a.yAxis,f=!!a.modifyValue;e.area.prototype.translate.apply(a);r(a.points,function(h){var b=h.low,c=h.high,l=h.plotY;null===c||null===b?h.isNull=!0:(h.plotLow=l,h.plotHigh=d.translate(f?a.modifyValue(c,h):c,0,1, +0,1),f&&(h.yBottom=h.plotHigh))});this.chart.polar&&r(this.points,function(d){a.highToXY(d)})},getGraphPath:function(a){var d=[],f=[],h,b=e.area.prototype.getGraphPath,c,l,k;k=this.options;var p=k.step;a=a||this.points;for(h=a.length;h--;)c=a[h],c.isNull||k.connectEnds||a[h+1]&&!a[h+1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1}),l={polarPlotY:c.polarPlotY,rectPlotX:c.rectPlotX,yBottom:c.yBottom,plotX:w(c.plotHighX,c.plotX),plotY:c.plotHigh,isNull:c.isNull},f.push(l),d.push(l),c.isNull|| +k.connectEnds||a[h-1]&&!a[h-1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1});a=b.call(this,a);p&&(!0===p&&(p="left"),k.step={left:"right",center:"center",right:"left"}[p]);d=b.call(this,d);f=b.call(this,f);k.step=p;k=[].concat(a,d);this.chart.polar||"M"!==f[0]||(f[0]="L");this.graphPath=k;this.areaPath=this.areaPath.concat(a,f);k.isArea=!0;k.xMap=a.xMap;this.areaPath.xMap=a.xMap;return k},drawDataLabels:function(){var a=this.data,d=a.length,f,h=[],b=m.prototype,c=this.options.dataLabels, +l=c.align,k=c.verticalAlign,p=c.inside,g,n,e=this.chart.inverted;if(c.enabled||this._hasPointLabels){for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.y=g.high,g._plotY=g.plotY,g.plotY=g.plotHigh,h[f]=g.dataLabel,g.dataLabel=g.dataLabelUpper,g.below=n,e?l||(c.align=n?"right":"left"):k||(c.verticalAlign=n?"top":"bottom"),c.x=c.xHigh,c.y=c.yHigh;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments);for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.dataLabelUpper= +g.dataLabel,g.dataLabel=h[f],g.y=g.low,g.plotY=g._plotY,g.below=!n,e?l||(c.align=n?"left":"right"):k||(c.verticalAlign=n?"bottom":"top"),c.x=c.xLow,c.y=c.yLow;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments)}c.align=l;c.verticalAlign=k},alignDataLabel:function(){e.column.prototype.alignDataLabel.apply(this,arguments)},setStackedPoints:t,getSymbol:t,drawPoints:t})})(x);(function(b){var r=b.seriesType;r("areasplinerange","arearange",null,{getPointSpline:b.seriesTypes.spline.prototype.getPointSpline})})(x); +(function(b){var r=b.defaultPlotOptions,t=b.each,w=b.merge,m=b.noop,q=b.pick,e=b.seriesType,a=b.seriesTypes.column.prototype;e("columnrange","arearange",w(r.column,r.arearange,{lineWidth:1,pointRange:null}),{translate:function(){var d=this,f=d.yAxis,b=d.xAxis,u=b.startAngleRad,c,l=d.chart,k=d.xAxis.isRadial,p;a.translate.apply(d);t(d.points,function(a){var g=a.shapeArgs,h=d.options.minPointLength,e,v;a.plotHigh=p=f.translate(a.high,0,1,0,1);a.plotLow=a.plotY;v=p;e=q(a.rectPlotY,a.plotY)-p;Math.abs(e)< +h?(h-=e,e+=h,v-=h/2):0>e&&(e*=-1,v-=e);k?(c=a.barX+u,a.shapeType="path",a.shapeArgs={d:d.polarArc(v+e,v,c,c+a.pointWidth)}):(g.height=e,g.y=v,a.tooltipPos=l.inverted?[f.len+f.pos-l.plotLeft-v-e/2,b.len+b.pos-l.plotTop-g.x-g.width/2,e]:[b.left-l.plotLeft+g.x+g.width/2,f.pos-l.plotTop+v+e/2,e])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:m,crispCol:a.crispCol,drawPoints:a.drawPoints,drawTracker:a.drawTracker,getColumnMetrics:a.getColumnMetrics,animate:function(){return a.animate.apply(this, +arguments)},polarArc:function(){return a.polarArc.apply(this,arguments)},pointAttribs:a.pointAttribs})})(x);(function(b){var r=b.each,t=b.isNumber,w=b.merge,m=b.pick,q=b.pInt,e=b.Series,a=b.seriesType,d=b.TrackerMixin;a("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2,borderWidth:1,borderColor:"#cccccc"},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:b.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0, +trackerGroups:["group","dataLabelsGroup"],translate:function(){var a=this.yAxis,d=this.options,b=a.center;this.generatePoints();r(this.points,function(c){var f=w(d.dial,c.dial),k=q(m(f.radius,80))*b[2]/200,h=q(m(f.baseLength,70))*k/100,g=q(m(f.rearLength,10))*k/100,n=f.baseWidth||3,u=f.topWidth||1,e=d.overshoot,v=a.startAngleRad+a.translate(c.y,null,null,null,!0);t(e)?(e=e/180*Math.PI,v=Math.max(a.startAngleRad-e,Math.min(a.endAngleRad+e,v))):!1===d.wrap&&(v=Math.max(a.startAngleRad,Math.min(a.endAngleRad, +v)));v=180*v/Math.PI;c.shapeType="path";c.shapeArgs={d:f.path||["M",-g,-n/2,"L",h,-n/2,k,-u/2,k,u/2,h,n/2,-g,n/2,"z"],translateX:b[0],translateY:b[1],rotation:v};c.plotX=b[0];c.plotY=b[1]})},drawPoints:function(){var a=this,d=a.yAxis.center,b=a.pivot,c=a.options,l=c.pivot,k=a.chart.renderer;r(a.points,function(d){var g=d.graphic,b=d.shapeArgs,f=b.d,h=w(c.dial,d.dial);g?(g.animate(b),b.d=f):(d.graphic=k[d.shapeType](b).attr({rotation:b.rotation,zIndex:1}).addClass("highcharts-dial").add(a.group),d.graphic.attr({stroke:h.borderColor|| +"none","stroke-width":h.borderWidth||0,fill:h.backgroundColor||"#000000"}))});b?b.animate({translateX:d[0],translateY:d[1]}):(a.pivot=k.circle(0,0,m(l.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(d[0],d[1]).add(a.group),a.pivot.attr({"stroke-width":l.borderWidth||0,stroke:l.borderColor||"#cccccc",fill:l.backgroundColor||"#000000"}))},animate:function(a){var d=this;a||(r(d.points,function(a){var c=a.graphic;c&&(c.attr({rotation:180*d.yAxis.startAngleRad/Math.PI}),c.animate({rotation:a.shapeArgs.rotation}, +d.options.animation))}),d.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);e.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,d){e.prototype.setData.call(this,a,!1);this.processData();this.generatePoints();m(d,!0)&&this.chart.redraw()},drawTracker:d&&d.drawTrackerPoint},{setState:function(a){this.state=a}})})(x);(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.seriesType, +q=b.seriesTypes;m("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,states:{hover:{brightness:-.3}},whiskerWidth:2},{pointArrayMap:["low","q1","median", +"q3","high"],toYData:function(b){return[b.low,b.q1,b.median,b.q3,b.high]},pointValKey:"high",pointAttribs:function(b){var a=this.options,d=b&&b.color||this.color;return{fill:b.fillColor||a.fillColor||d,stroke:a.lineColor||d,"stroke-width":a.lineWidth||0}},drawDataLabels:t,translate:function(){var b=this.yAxis,a=this.pointArrayMap;q.column.prototype.translate.apply(this);r(this.points,function(d){r(a,function(a){null!==d[a]&&(d[a+"Plot"]=b.translate(d[a],0,1,0,1))})})},drawPoints:function(){var b= +this,a=b.options,d=b.chart.renderer,f,h,u,c,l,k,p=0,g,n,m,q,v=!1!==b.doQuartiles,t,x=b.options.whiskerLength;r(b.points,function(e){var r=e.graphic,y=r?"animate":"attr",I=e.shapeArgs,z={},B={},G={},H=e.color||b.color;void 0!==e.plotY&&(g=I.width,n=Math.floor(I.x),m=n+g,q=Math.round(g/2),f=Math.floor(v?e.q1Plot:e.lowPlot),h=Math.floor(v?e.q3Plot:e.lowPlot),u=Math.floor(e.highPlot),c=Math.floor(e.lowPlot),r||(e.graphic=r=d.g("point").add(b.group),e.stem=d.path().addClass("highcharts-boxplot-stem").add(r), +x&&(e.whiskers=d.path().addClass("highcharts-boxplot-whisker").add(r)),v&&(e.box=d.path(void 0).addClass("highcharts-boxplot-box").add(r)),e.medianShape=d.path(void 0).addClass("highcharts-boxplot-median").add(r),z.stroke=e.stemColor||a.stemColor||H,z["stroke-width"]=w(e.stemWidth,a.stemWidth,a.lineWidth),z.dashstyle=e.stemDashStyle||a.stemDashStyle,e.stem.attr(z),x&&(B.stroke=e.whiskerColor||a.whiskerColor||H,B["stroke-width"]=w(e.whiskerWidth,a.whiskerWidth,a.lineWidth),e.whiskers.attr(B)),v&&(r= +b.pointAttribs(e),e.box.attr(r)),G.stroke=e.medianColor||a.medianColor||H,G["stroke-width"]=w(e.medianWidth,a.medianWidth,a.lineWidth),e.medianShape.attr(G)),k=e.stem.strokeWidth()%2/2,p=n+q+k,e.stem[y]({d:["M",p,h,"L",p,u,"M",p,f,"L",p,c]}),v&&(k=e.box.strokeWidth()%2/2,f=Math.floor(f)+k,h=Math.floor(h)+k,n+=k,m+=k,e.box[y]({d:["M",n,h,"L",n,f,"L",m,f,"L",m,h,"L",n,h,"z"]})),x&&(k=e.whiskers.strokeWidth()%2/2,u+=k,c+=k,t=/%$/.test(x)?q*parseFloat(x)/100:x/2,e.whiskers[y]({d:["M",p-t,u,"L",p+t,u, +"M",p-t,c,"L",p+t,c]})),l=Math.round(e.medianPlot),k=e.medianShape.strokeWidth()%2/2,l+=k,e.medianShape[y]({d:["M",n,l,"L",m,l]}))})},setStackedPoints:t})})(x);(function(b){var r=b.each,t=b.noop,w=b.seriesType,m=b.seriesTypes;w("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},whiskerWidth:null},{type:"errorbar", +pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:m.arearange?function(){var b=this.pointValKey;m.arearange.prototype.drawDataLabels.call(this);r(this.data,function(e){e.y=e[b]})}:t,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||m.column.prototype.getColumnMetrics.call(this)}})})(x);(function(b){var r=b.correctFloat,t=b.isNumber,w=b.pick,m=b.Point,q=b.Series,e=b.seriesType,a=b.seriesTypes; +e("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",translate:function(){var d=this.options,b=this.yAxis,h,e,c,l,k,p,g,n,m,q=w(d.minPointLength,5),v=d.threshold,t=d.stacking;a.column.prototype.translate.apply(this);this.minPointLengthOffset=0;g=n=v;e=this.points;h=0;for(d=e.length;hl.height&&(l.y+=l.height,l.height*=-1),c.plotY=l.y=Math.round(l.y)- +this.borderWidth%2/2,l.height=Math.max(Math.round(l.height),.001),c.yBottom=l.y+l.height,l.height<=q&&(l.height=q,this.minPointLengthOffset+=q),l.y-=this.minPointLengthOffset,l=c.plotY+(c.negative?l.height:0)-this.minPointLengthOffset,this.chart.inverted?c.tooltipPos[0]=b.len-l:c.tooltipPos[1]=l},processData:function(a){var b=this.yData,d=this.options.data,e,c=b.length,l,k,p,g,n,m;k=l=p=g=this.options.threshold||0;for(m=0;ma[k-1].y&&(l[2]+=c.height,l[5]+=c.height),e=e.concat(l);return e},drawGraph:function(){q.prototype.drawGraph.call(this);this.graph.attr({d:this.getCrispPath()})},getExtremes:b.noop},{getClassName:function(){var a=m.prototype.getClassName.call(this);this.isSum?a+=" highcharts-sum":this.isIntermediateSum&&(a+=" highcharts-intermediate-sum"); +return a},isValid:function(){return t(this.y,!0)||this.isSum||this.isIntermediateSum}})})(x);(function(b){var r=b.Series,t=b.seriesType,w=b.seriesTypes;t("polygon","scatter",{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var b=r.prototype.getGraphPath.call(this),q=b.length+1;q--;)(q===b.length||"M"===b[q])&&0=this.minPxSize/2?(d.shapeType="circle",d.shapeArgs={x:d.plotX,y:d.plotY,r:c},d.dlBox={x:d.plotX-c,y:d.plotY-c,width:2*c,height:2*c}):d.shapeArgs=d.plotY=d.dlBox=void 0},drawLegendSymbol:function(a,b){var d=this.chart.renderer,c=d.fontMetrics(a.itemStyle.fontSize).f/2;b.legendSymbol=d.circle(c,a.baseline-c,c).attr({zIndex:3}).add(b.legendGroup);b.legendSymbol.isMarker= +!0},drawPoints:l.column.prototype.drawPoints,alignDataLabel:l.column.prototype.alignDataLabel,buildKDTree:a,applyZones:a},{haloPath:function(a){return h.prototype.haloPath.call(this,this.shapeArgs.r+a)},ttBelow:!1});w.prototype.beforePadding=function(){var a=this,b=this.len,c=this.chart,h=0,l=b,u=this.isXAxis,m=u?"xData":"yData",w=this.min,x={},A=Math.min(c.plotWidth,c.plotHeight),C=Number.MAX_VALUE,D=-Number.MAX_VALUE,E=this.max-w,z=b/E,F=[];q(this.series,function(b){var g=b.options;!b.bubblePadding|| +!b.visible&&c.options.chart.ignoreHiddenSeries||(a.allowZoomOutside=!0,F.push(b),u&&(q(["minSize","maxSize"],function(a){var b=g[a],d=/%$/.test(b),b=f(b);x[a]=d?A*b/100:b}),b.minPxSize=x.minSize,b.maxPxSize=Math.max(x.maxSize,x.minSize),b=b.zData,b.length&&(C=d(g.zMin,Math.min(C,Math.max(t(b),!1===g.displayNegative?g.zThreshold:-Number.MAX_VALUE))),D=d(g.zMax,Math.max(D,r(b))))))});q(F,function(b){var d=b[m],c=d.length,f;u&&b.getRadii(C,D,b.minPxSize,b.maxPxSize);if(0f&&(f+=360),a.clientX=f):a.clientX=a.plotX};m.spline&&q(m.spline.prototype,"getPointSpline",function(a,b,f,h){var d,c,e,k,p,g,n;this.chart.polar?(d=f.plotX, +c=f.plotY,a=b[h-1],e=b[h+1],this.connectEnds&&(a||(a=b[b.length-2]),e||(e=b[1])),a&&e&&(k=a.plotX,p=a.plotY,b=e.plotX,g=e.plotY,k=(1.5*d+k)/2.5,p=(1.5*c+p)/2.5,e=(1.5*d+b)/2.5,n=(1.5*c+g)/2.5,b=Math.sqrt(Math.pow(k-d,2)+Math.pow(p-c,2)),g=Math.sqrt(Math.pow(e-d,2)+Math.pow(n-c,2)),k=Math.atan2(p-c,k-d),p=Math.atan2(n-c,e-d),n=Math.PI/2+(k+p)/2,Math.abs(k-n)>Math.PI/2&&(n-=Math.PI),k=d+Math.cos(n)*b,p=c+Math.sin(n)*b,e=d+Math.cos(Math.PI+n)*g,n=c+Math.sin(Math.PI+n)*g,f.rightContX=e,f.rightContY=n), +h?(f=["C",a.rightContX||a.plotX,a.rightContY||a.plotY,k||d,p||c,d,c],a.rightContX=a.rightContY=null):f=["M",d,c]):f=a.call(this,b,f,h);return f});q(e,"translate",function(a){var b=this.chart;a.call(this);if(b.polar&&(this.kdByAngle=b.tooltip&&b.tooltip.shared,!this.preventPostTranslate))for(a=this.points,b=a.length;b--;)this.toXY(a[b])});q(e,"getGraphPath",function(a,b){var d=this,e,m;if(this.chart.polar){b=b||this.points;for(e=0;eb.center[1]}),q(m,"alignDataLabel",function(a,b,f,h,m,c){this.chart.polar?(a=b.rectPlotX/Math.PI*180,null===h.align&&(h.align=20a?"left":200a?"right":"center"),null===h.verticalAlign&&(h.verticalAlign=45>a||315a?"top":"middle"),e.alignDataLabel.call(this,b,f,h,m,c)):a.call(this, +b,f,h,m,c)}));q(b,"getCoordinates",function(a,b){var d=this.chart,e={xAxis:[],yAxis:[]};d.polar?t(d.axes,function(a){var c=a.isXAxis,f=a.center,h=b.chartX-f[0]-d.plotLeft,f=b.chartY-f[1]-d.plotTop;e[c?"xAxis":"yAxis"].push({axis:a,value:a.translate(c?Math.PI-Math.atan2(h,f):Math.sqrt(Math.pow(h,2)+Math.pow(f,2)),!0)})}):e=a.call(this,b);return e})})(x)}); diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/highstock.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/highstock.js new file mode 100644 index 00000000..34a3f91c --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/highstock.js @@ -0,0 +1,496 @@ +/* + Highstock JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(N,a){"object"===typeof module&&module.exports?module.exports=N.document?a(N):a:N.Highcharts=a(N)})("undefined"!==typeof window?window:this,function(N){N=function(){var a=window,D=a.document,B=a.navigator&&a.navigator.userAgent||"",G=D&&D.createElementNS&&!!D.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,H=/(edge|msie|trident)/i.test(B)&&!window.opera,p=!G,l=/Firefox/.test(B),r=l&&4>parseInt(B.split("Firefox/")[1],10);return a.Highcharts?a.Highcharts.error(16,!0):{product:"Highstock", +version:"5.0.3",deg2rad:2*Math.PI/360,doc:D,hasBidiBug:r,hasTouch:D&&void 0!==D.documentElement.ontouchstart,isMS:H,isWebKit:/AppleWebKit/.test(B),isFirefox:l,isTouchDevice:/(Mobile|Android|Windows Phone)/.test(B),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:G,vml:p,win:a,charts:[],marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){}}}();(function(a){var D=[],B=a.charts,G=a.doc,H=a.win;a.error=function(a,l){a="Highcharts error #"+ +a+": www.highcharts.com/errors/"+a;if(l)throw Error(a);H.console&&console.log(a)};a.Fx=function(a,l,r){this.options=l;this.elem=a;this.prop=r};a.Fx.prototype={dSetter:function(){var a=this.paths[0],l=this.paths[1],r=[],w=this.now,t=a.length,k;if(1===w)r=this.toD;else if(t===l.length&&1>w)for(;t--;)k=parseFloat(a[t]),r[t]=isNaN(k)?a[t]:w*parseFloat(l[t]-k)+k;else r=l;this.elem.attr("d",r)},update:function(){var a=this.elem,l=this.prop,r=this.now,w=this.options.step;if(this[l+"Setter"])this[l+"Setter"](); +else a.attr?a.element&&a.attr(l,r):a.style[l]=r+this.unit;w&&w.call(a,r,this)},run:function(a,l,r){var p=this,t=function(a){return t.stopped?!1:p.step(a)},k;this.startTime=+new Date;this.start=a;this.end=l;this.unit=r;this.now=this.start;this.pos=0;t.elem=this.elem;t()&&1===D.push(t)&&(t.timerId=setInterval(function(){for(k=0;k=k+this.startTime){this.now=this.end;this.pos=1;this.update();a=m[this.prop]=!0;for(e in m)!0!==m[e]&&(a=!1);a&&t&&t.call(p);p=!1}else this.pos=w.easing((l-this.startTime)/k),this.now=this.start+(this.end-this.start)*this.pos,this.update(),p=!0;return p},initPath:function(p,l,r){function w(a){for(b=a.length;b--;)"M"!==a[b]&&"L"!==a[b]||a.splice(b+1,0,a[b+1],a[b+2],a[b+1],a[b+2])}function t(a,c){for(;a.lengthm?"AM":"PM",P:12>m?"am":"pm",S:q(t.getSeconds()),L:q(Math.round(l%1E3),3)},a.dateFormats);for(k in w)for(;-1!==p.indexOf("%"+k);)p= +p.replace("%"+k,"function"===typeof w[k]?w[k](l):w[k]);return r?p.substr(0,1).toUpperCase()+p.substr(1):p};a.formatSingle=function(p,l){var r=/\.([0-9])/,w=a.defaultOptions.lang;/f$/.test(p)?(r=(r=p.match(r))?r[1]:-1,null!==l&&(l=a.numberFormat(l,r,w.decimalPoint,-1=r&&(l=[1/r])));for(w=0;w=p||!t&&k<=(l[w]+(l[w+1]||l[w]))/ +2);w++);return m*r};a.stableSort=function(a,l){var r=a.length,p,t;for(t=0;tr&&(r=a[l]);return r};a.destroyObjectProperties=function(a,l){for(var r in a)a[r]&&a[r]!==l&&a[r].destroy&&a[r].destroy(),delete a[r]};a.discardElement=function(p){var l= +a.garbageBin;l||(l=a.createElement("div"));p&&l.appendChild(p);l.innerHTML=""};a.correctFloat=function(a,l){return parseFloat(a.toPrecision(l||14))};a.setAnimation=function(p,l){l.renderer.globalAnimation=a.pick(p,l.options.chart.animation,!0)};a.animObject=function(p){return a.isObject(p)?a.merge(p):{duration:p?500:0}};a.timeUnits={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5,month:24192E5,year:314496E5};a.numberFormat=function(p,l,r,w){p=+p||0;l=+l;var t=a.defaultOptions.lang, +k=(p.toString().split(".")[1]||"").length,m,e,g=Math.abs(p);-1===l?l=Math.min(k,20):a.isNumber(l)||(l=2);m=String(a.pInt(g.toFixed(l)));e=3p?"-":"")+(e?m.substr(0,e)+w:"");p+=m.substr(e).replace(/(\d{3})(?=\d)/g,"$1"+w);l&&(w=Math.abs(g-m+Math.pow(10,-Math.max(l,k)-1)),p+=r+w.toFixed(l).slice(2));return p};Math.easeInOutSine=function(a){return-.5*(Math.cos(Math.PI*a)-1)};a.getStyle=function(p,l){return"width"===l?Math.min(p.offsetWidth, +p.scrollWidth)-a.getStyle(p,"padding-left")-a.getStyle(p,"padding-right"):"height"===l?Math.min(p.offsetHeight,p.scrollHeight)-a.getStyle(p,"padding-top")-a.getStyle(p,"padding-bottom"):(p=H.getComputedStyle(p,void 0))&&a.pInt(p.getPropertyValue(l))};a.inArray=function(a,l){return l.indexOf?l.indexOf(a):[].indexOf.call(l,a)};a.grep=function(a,l){return[].filter.call(a,l)};a.map=function(a,l){for(var r=[],p=0,t=a.length;pl;l++)w[l]+=p(255*a),0>w[l]&&(w[l]=0),255z.width)z={width:0,height:0}}else z=this.htmlGetBBox();b.isSVG&&(a=z.width, +b=z.height,c&&L&&"11px"===L.fontSize&&"16.9"===b.toPrecision(3)&&(z.height=b=14),v&&(z.width=Math.abs(b*Math.sin(d))+Math.abs(a*Math.cos(d)),z.height=Math.abs(b*Math.cos(d))+Math.abs(a*Math.sin(d))));if(g&&0]*>/g,"")))},textSetter:function(a){a!==this.textStr&&(delete this.bBox,this.textStr=a,this.added&&this.renderer.buildText(this))},fillSetter:function(a,c,v){"string"===typeof a?v.setAttribute(c, +a):a&&this.colorGradient(a,c,v)},visibilitySetter:function(a,c,v){"inherit"===a?v.removeAttribute(c):v.setAttribute(c,a)},zIndexSetter:function(a,c){var v=this.renderer,z=this.parentGroup,b=(z||v).element||v.box,d,n=this.element,f;d=this.added;var e;k(a)&&(n.zIndex=a,a=+a,this[c]===a&&(d=!1),this[c]=a);if(d){(a=this.zIndex)&&z&&(z.handleZ=!0);c=b.childNodes;for(e=0;ea||!k(a)&&k(d)||0>a&&!k(d)&&b!==v.box)&&(b.insertBefore(n,z),f=!0);f||b.appendChild(n)}return f}, +_defaultSetter:function(a,c,v){v.setAttribute(c,a)}};D.prototype.yGetter=D.prototype.xGetter;D.prototype.translateXSetter=D.prototype.translateYSetter=D.prototype.rotationSetter=D.prototype.verticalAlignSetter=D.prototype.scaleXSetter=D.prototype.scaleYSetter=function(a,c){this[c]=a;this.doTransform=!0};D.prototype["stroke-widthSetter"]=D.prototype.strokeSetter=function(a,c,v){this[c]=a;this.stroke&&this["stroke-width"]?(D.prototype.fillSetter.call(this,this.stroke,"stroke",v),v.setAttribute("stroke-width", +this["stroke-width"]),this.hasStroke=!0):"stroke-width"===c&&0===a&&this.hasStroke&&(v.removeAttribute("stroke"),this.hasStroke=!1)};B=a.SVGRenderer=function(){this.init.apply(this,arguments)};B.prototype={Element:D,SVG_NS:K,init:function(a,c,v,b,d,n){var z;b=this.createElement("svg").attr({version:"1.1","class":"highcharts-root"}).css(this.getStyle(b));z=b.element;a.appendChild(z);-1===a.innerHTML.indexOf("xmlns")&&p(z,"xmlns",this.SVG_NS);this.isSVG=!0;this.box=z;this.boxWrapper=b;this.alignedObjects= +[];this.url=(E||A)&&g.getElementsByTagName("base").length?R.location.href.replace(/#.*?$/,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(g.createTextNode("Created with Highstock 5.0.3"));this.defs=this.createElement("defs").add();this.allowHTML=n;this.forExport=d;this.gradients={};this.cache={};this.cacheKeys=[];this.imgCount=0;this.setSize(c,v,!1);var f;E&&a.getBoundingClientRect&&(c=function(){w(a,{left:0,top:0});f=a.getBoundingClientRect(); +w(a,{left:Math.ceil(f.left)-f.left+"px",top:Math.ceil(f.top)-f.top+"px"})},c(),this.unSubPixelFix=G(R,"resize",c))},getStyle:function(a){return this.style=C({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},a)},setStyle:function(a){this.boxWrapper.css(this.getStyle(a))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();e(this.gradients||{});this.gradients= +null;a&&(this.defs=a.destroy());this.unSubPixelFix&&this.unSubPixelFix();return this.alignedObjects=null},createElement:function(a){var c=new this.Element;c.init(this,a);return c},draw:J,getRadialAttr:function(a,c){return{cx:a[0]-a[2]/2+c.cx*a[2],cy:a[1]-a[2]/2+c.cy*a[2],r:c.r*a[2]}},buildText:function(a){for(var c=a.element,z=this,b=z.forExport,n=y(a.textStr,"").toString(),f=-1!==n.indexOf("\x3c"),e=c.childNodes,q,F,x,A,I=p(c,"x"),m=a.styles,k=a.textWidth,C=m&&m.lineHeight,M=m&&m.textOutline,J=m&& +"ellipsis"===m.textOverflow,E=e.length,O=k&&!a.added&&this.box,t=function(a){var v;v=/(px|em)$/.test(a&&a.style.fontSize)?a.style.fontSize:m&&m.fontSize||z.style.fontSize||12;return C?u(C):z.fontMetrics(v,a.getAttribute("style")?a:c).h};E--;)c.removeChild(e[E]);f||M||J||k||-1!==n.indexOf(" ")?(q=/<.*class="([^"]+)".*>/,F=/<.*style="([^"]+)".*>/,x=/<.*href="(http[^"]+)".*>/,O&&O.appendChild(c),n=f?n.replace(/<(b|strong)>/g,'\x3cspan style\x3d"font-weight:bold"\x3e').replace(/<(i|em)>/g,'\x3cspan style\x3d"font-style:italic"\x3e').replace(//g,"\x3c/span\x3e").split(//g):[n],n=d(n,function(a){return""!==a}),h(n,function(d,n){var f,e=0;d=d.replace(/^\s+|\s+$/g,"").replace(//g,"\x3c/span\x3e|||");f=d.split("|||");h(f,function(d){if(""!==d||1===f.length){var u={},y=g.createElementNS(z.SVG_NS,"tspan"),L,h;q.test(d)&&(L=d.match(q)[1],p(y,"class",L));F.test(d)&&(h=d.match(F)[1].replace(/(;| |^)color([ :])/,"$1fill$2"),p(y,"style",h));x.test(d)&&!b&&(p(y, +"onclick",'location.href\x3d"'+d.match(x)[1]+'"'),w(y,{cursor:"pointer"}));d=(d.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"\x3c").replace(/>/g,"\x3e");if(" "!==d){y.appendChild(g.createTextNode(d));e?u.dx=0:n&&null!==I&&(u.x=I);p(y,u);c.appendChild(y);!e&&n&&(!v&&b&&w(y,{display:"block"}),p(y,"dy",t(y)));if(k){u=d.replace(/([^\^])-/g,"$1- ").split(" ");L="nowrap"===m.whiteSpace;for(var C=1k,void 0===A&&(A=M),J&&A?(Q/=2,""===l||!M&&.5>Q?u=[]:(l=d.substring(0,l.length+(M?-1:1)*Math.ceil(Q)),u=[l+(3k&&(k=P)),u.length&&y.appendChild(g.createTextNode(u.join(" ").replace(/- /g, +"-")));a.rotation=R}e++}}})}),A&&a.attr("title",a.textStr),O&&O.removeChild(c),M&&a.applyTextOutline&&a.applyTextOutline(M)):c.appendChild(g.createTextNode(n.replace(/</g,"\x3c").replace(/>/g,"\x3e")))},getContrast:function(a){a=r(a).rgba;return 510v?d>c+f&&de?d>c+f&&db&&e>a+f&&ed&&e>a+f&&ea?a+3:Math.round(1.2*a);return{h:c,b:Math.round(.8*c),f:a}},rotCorr:function(a, +c,v){var b=a;c&&v&&(b=Math.max(b*Math.cos(c*m),4));return{x:-a/3*Math.sin(c*m),y:b}},label:function(a,c,v,b,d,n,f,e,K){var q=this,u=q.g("button"!==K&&"label"),y=u.text=q.text("",0,0,f).attr({zIndex:1}),g,F,z=0,A=3,L=0,m,M,J,E,O,t={},l,R,r=/^url\((.*?)\)$/.test(b),p=r,P,w,Q,S;K&&u.addClass("highcharts-"+K);p=r;P=function(){return(l||0)%2/2};w=function(){var a=y.element.style,c={};F=(void 0===m||void 0===M||O)&&k(y.textStr)&&y.getBBox();u.width=(m||F.width||0)+2*A+L;u.height=(M||F.height||0)+2*A;R= +A+q.fontMetrics(a&&a.fontSize,y).b;p&&(g||(u.box=g=q.symbols[b]||r?q.symbol(b):q.rect(),g.addClass(("button"===K?"":"highcharts-label-box")+(K?" highcharts-"+K+"-box":"")),g.add(u),a=P(),c.x=a,c.y=(e?-R:0)+a),c.width=Math.round(u.width),c.height=Math.round(u.height),g.attr(C(c,t)),t={})};Q=function(){var a=L+A,c;c=e?0:R;k(m)&&F&&("center"===O||"right"===O)&&(a+={center:.5,right:1}[O]*(m-F.width));if(a!==y.x||c!==y.y)y.attr("x",a),void 0!==c&&y.attr("y",c);y.x=a;y.y=c};S=function(a,c){g?g.attr(a,c): +t[a]=c};u.onAdd=function(){y.add(u);u.attr({text:a||0===a?a:"",x:c,y:v});g&&k(d)&&u.attr({anchorX:d,anchorY:n})};u.widthSetter=function(a){m=a};u.heightSetter=function(a){M=a};u["text-alignSetter"]=function(a){O=a};u.paddingSetter=function(a){k(a)&&a!==A&&(A=u.padding=a,Q())};u.paddingLeftSetter=function(a){k(a)&&a!==L&&(L=a,Q())};u.alignSetter=function(a){a={left:0,center:.5,right:1}[a];a!==z&&(z=a,F&&u.attr({x:J}))};u.textSetter=function(a){void 0!==a&&y.textSetter(a);w();Q()};u["stroke-widthSetter"]= +function(a,c){a&&(p=!0);l=this["stroke-width"]=a;S(c,a)};u.strokeSetter=u.fillSetter=u.rSetter=function(a,c){"fill"===c&&a&&(p=!0);S(c,a)};u.anchorXSetter=function(a,c){d=a;S(c,Math.round(a)-P()-J)};u.anchorYSetter=function(a,c){n=a;S(c,a-E)};u.xSetter=function(a){u.x=a;z&&(a-=z*((m||F.width)+2*A));J=Math.round(a);u.attr("translateX",J)};u.ySetter=function(a){E=u.y=Math.round(a);u.attr("translateY",E)};var T=u.css;return C(u,{css:function(a){if(a){var c={};a=x(a);h(u.textProps,function(v){void 0!== +a[v]&&(c[v]=a[v],delete a[v])});y.css(c)}return T.call(u,a)},getBBox:function(){return{width:F.width+2*A,height:F.height+2*A,x:F.x-A,y:F.y-A}},shadow:function(a){a&&(w(),g&&g.shadow(a));return u},destroy:function(){I(u.element,"mouseenter");I(u.element,"mouseleave");y&&(y=y.destroy());g&&(g=g.destroy());D.prototype.destroy.call(u);u=q=w=Q=S=null}})}};a.Renderer=B})(N);(function(a){var D=a.attr,B=a.createElement,G=a.css,H=a.defined,p=a.each,l=a.extend,r=a.isFirefox,w=a.isMS,t=a.isWebKit,k=a.pInt,m= +a.SVGRenderer,e=a.win,g=a.wrap;l(a.SVGElement.prototype,{htmlCss:function(a){var e=this.element;if(e=a&&"SPAN"===e.tagName&&a.width)delete a.width,this.textWidth=e,this.updateTransform();a&&"ellipsis"===a.textOverflow&&(a.whiteSpace="nowrap",a.overflow="hidden");this.styles=l(this.styles,a);G(this.element,a);return this},htmlGetBBox:function(){var a=this.element;"text"===a.nodeName&&(a.style.position="absolute");return{x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var a= +this.renderer,e=this.element,f=this.translateX||0,d=this.translateY||0,b=this.x||0,q=this.y||0,g=this.textAlign||"left",c={left:0,center:.5,right:1}[g],F=this.styles;G(e,{marginLeft:f,marginTop:d});this.shadows&&p(this.shadows,function(a){G(a,{marginLeft:f+1,marginTop:d+1})});this.inverted&&p(e.childNodes,function(c){a.invertChild(c,e)});if("SPAN"===e.tagName){var n=this.rotation,A=k(this.textWidth),x=F&&F.whiteSpace,m=[n,g,e.innerHTML,this.textWidth,this.textAlign].join();m!==this.cTT&&(F=a.fontMetrics(e.style.fontSize).b, +H(n)&&this.setSpanRotation(n,c,F),G(e,{width:"",whiteSpace:x||"nowrap"}),e.offsetWidth>A&&/[ \-]/.test(e.textContent||e.innerText)&&G(e,{width:A+"px",display:"block",whiteSpace:x||"normal"}),this.getSpanCorrection(e.offsetWidth,F,c,n,g));G(e,{left:b+(this.xCorr||0)+"px",top:q+(this.yCorr||0)+"px"});t&&(F=e.offsetHeight);this.cTT=m}}else this.alignOnAdd=!0},setSpanRotation:function(a,g,f){var d={},b=w?"-ms-transform":t?"-webkit-transform":r?"MozTransform":e.opera?"-o-transform":"";d[b]=d.transform= +"rotate("+a+"deg)";d[b+(r?"Origin":"-origin")]=d.transformOrigin=100*g+"% "+f+"px";G(this.element,d)},getSpanCorrection:function(a,e,f){this.xCorr=-a*f;this.yCorr=-e}});l(m.prototype,{html:function(a,e,f){var d=this.createElement("span"),b=d.element,q=d.renderer,h=q.isSVG,c=function(a,c){p(["opacity","visibility"],function(b){g(a,b+"Setter",function(a,b,d,n){a.call(this,b,d,n);c[d]=b})})};d.textSetter=function(a){a!==b.innerHTML&&delete this.bBox;b.innerHTML=this.textStr=a;d.htmlUpdateTransform()}; +h&&c(d,d.element.style);d.xSetter=d.ySetter=d.alignSetter=d.rotationSetter=function(a,c){"align"===c&&(c="textAlign");d[c]=a;d.htmlUpdateTransform()};d.attr({text:a,x:Math.round(e),y:Math.round(f)}).css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize,position:"absolute"});b.style.whiteSpace="nowrap";d.css=d.htmlCss;h&&(d.add=function(a){var n,f=q.box.parentNode,e=[];if(this.parentGroup=a){if(n=a.div,!n){for(;a;)e.push(a),a=a.parentGroup;p(e.reverse(),function(a){var b,d=D(a.element, +"class");d&&(d={className:d});n=a.div=a.div||B("div",d,{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px",display:a.display,opacity:a.opacity,pointerEvents:a.styles&&a.styles.pointerEvents},n||f);b=n.style;l(a,{translateXSetter:function(c,d){b.left=c+"px";a[d]=c;a.doTransform=!0},translateYSetter:function(c,d){b.top=c+"px";a[d]=c;a.doTransform=!0}});c(a,b)})}}else n=f;n.appendChild(b);d.added=!0;d.alignOnAdd&&d.htmlUpdateTransform();return d});return d}})})(N);(function(a){var D, +B,G=a.createElement,H=a.css,p=a.defined,l=a.deg2rad,r=a.discardElement,w=a.doc,t=a.each,k=a.erase,m=a.extend;D=a.extendClass;var e=a.isArray,g=a.isNumber,h=a.isObject,C=a.merge;B=a.noop;var f=a.pick,d=a.pInt,b=a.SVGElement,q=a.SVGRenderer,E=a.win;a.svg||(B={docMode8:w&&8===w.documentMode,init:function(a,b){var c=["\x3c",b,' filled\x3d"f" stroked\x3d"f"'],d=["position: ","absolute",";"],f="div"===b;("shape"===b||f)&&d.push("left:0;top:0;width:1px;height:1px;");d.push("visibility: ",f?"hidden":"visible"); +c.push(' style\x3d"',d.join(""),'"/\x3e');b&&(c=f||"span"===b||"img"===b?c.join(""):a.prepVML(c),this.element=G(c));this.renderer=a},add:function(a){var c=this.renderer,b=this.element,d=c.box,f=a&&a.inverted,d=a?a.element||a:d;a&&(this.parentGroup=a);f&&c.invertChild(b,d);d.appendChild(b);this.added=!0;this.alignOnAdd&&!this.deferUpdateTransform&&this.updateTransform();if(this.onAdd)this.onAdd();this.className&&this.attr("class",this.className);return this},updateTransform:b.prototype.htmlUpdateTransform, +setSpanRotation:function(){var a=this.rotation,b=Math.cos(a*l),d=Math.sin(a*l);H(this.element,{filter:a?["progid:DXImageTransform.Microsoft.Matrix(M11\x3d",b,", M12\x3d",-d,", M21\x3d",d,", M22\x3d",b,", sizingMethod\x3d'auto expand')"].join(""):"none"})},getSpanCorrection:function(a,b,d,e,q){var c=e?Math.cos(e*l):1,n=e?Math.sin(e*l):0,u=f(this.elemHeight,this.element.offsetHeight),g;this.xCorr=0>c&&-a;this.yCorr=0>n&&-u;g=0>c*n;this.xCorr+=n*b*(g?1-d:d);this.yCorr-=c*b*(e?g?d:1-d:1);q&&"left"!== +q&&(this.xCorr-=a*d*(0>c?-1:1),e&&(this.yCorr-=u*d*(0>n?-1:1)),H(this.element,{textAlign:q}))},pathToVML:function(a){for(var c=a.length,b=[];c--;)g(a[c])?b[c]=Math.round(10*a[c])-5:"Z"===a[c]?b[c]="x":(b[c]=a[c],!a.isArc||"wa"!==a[c]&&"at"!==a[c]||(b[c+5]===b[c+7]&&(b[c+7]+=a[c+7]>a[c+5]?1:-1),b[c+6]===b[c+8]&&(b[c+8]+=a[c+8]>a[c+6]?1:-1)));return b.join(" ")||"x"},clip:function(a){var c=this,b;a?(b=a.members,k(b,c),b.push(c),c.destroyClip=function(){k(b,c)},a=a.getCSS(c)):(c.destroyClip&&c.destroyClip(), +a={clip:c.docMode8?"inherit":"rect(auto)"});return c.css(a)},css:b.prototype.htmlCss,safeRemoveChild:function(a){a.parentNode&&r(a)},destroy:function(){this.destroyClip&&this.destroyClip();return b.prototype.destroy.apply(this)},on:function(a,b){this.element["on"+a]=function(){var a=E.event;a.target=a.srcElement;b(a)};return this},cutOffPath:function(a,b){var c;a=a.split(/[ ,]/);c=a.length;if(9===c||11===c)a[c-4]=a[c-2]=d(a[c-2])-10*b;return a.join(" ")},shadow:function(a,b,e){var c=[],n,q=this.element, +g=this.renderer,u,I=q.style,F,v=q.path,K,h,m,z;v&&"string"!==typeof v.value&&(v="x");h=v;if(a){m=f(a.width,3);z=(a.opacity||.15)/m;for(n=1;3>=n;n++)K=2*m+1-2*n,e&&(h=this.cutOffPath(v.value,K+.5)),F=['\x3cshape isShadow\x3d"true" strokeweight\x3d"',K,'" filled\x3d"false" path\x3d"',h,'" coordsize\x3d"10 10" style\x3d"',q.style.cssText,'" /\x3e'],u=G(g.prepVML(F),null,{left:d(I.left)+f(a.offsetX,1),top:d(I.top)+f(a.offsetY,1)}),e&&(u.cutOff=K+1),F=['\x3cstroke color\x3d"',a.color||"#000000",'" opacity\x3d"', +z*n,'"/\x3e'],G(g.prepVML(F),null,null,u),b?b.element.appendChild(u):q.parentNode.insertBefore(u,q),c.push(u);this.shadows=c}return this},updateShadows:B,setAttr:function(a,b){this.docMode8?this.element[a]=b:this.element.setAttribute(a,b)},classSetter:function(a){(this.added?this.element:this).className=a},dashstyleSetter:function(a,b,d){(d.getElementsByTagName("stroke")[0]||G(this.renderer.prepVML(["\x3cstroke/\x3e"]),null,null,d))[b]=a||"solid";this[b]=a},dSetter:function(a,b,d){var c=this.shadows; +a=a||[];this.d=a.join&&a.join(" ");d.path=a=this.pathToVML(a);if(c)for(d=c.length;d--;)c[d].path=c[d].cutOff?this.cutOffPath(a,c[d].cutOff):a;this.setAttr(b,a)},fillSetter:function(a,b,d){var c=d.nodeName;"SPAN"===c?d.style.color=a:"IMG"!==c&&(d.filled="none"!==a,this.setAttr("fillcolor",this.renderer.color(a,d,b,this)))},"fill-opacitySetter":function(a,b,d){G(this.renderer.prepVML(["\x3c",b.split("-")[0],' opacity\x3d"',a,'"/\x3e']),null,null,d)},opacitySetter:B,rotationSetter:function(a,b,d){d= +d.style;this[b]=d[b]=a;d.left=-Math.round(Math.sin(a*l)+1)+"px";d.top=Math.round(Math.cos(a*l))+"px"},strokeSetter:function(a,b,d){this.setAttr("strokecolor",this.renderer.color(a,d,b,this))},"stroke-widthSetter":function(a,b,d){d.stroked=!!a;this[b]=a;g(a)&&(a+="px");this.setAttr("strokeweight",a)},titleSetter:function(a,b){this.setAttr(b,a)},visibilitySetter:function(a,b,d){"inherit"===a&&(a="visible");this.shadows&&t(this.shadows,function(c){c.style[b]=a});"DIV"===d.nodeName&&(a="hidden"===a?"-999em": +0,this.docMode8||(d.style[b]=a?"visible":"hidden"),b="top");d.style[b]=a},xSetter:function(a,b,d){this[b]=a;"x"===b?b="left":"y"===b&&(b="top");this.updateClipping?(this[b]=a,this.updateClipping()):d.style[b]=a},zIndexSetter:function(a,b,d){d.style[b]=a}},B["stroke-opacitySetter"]=B["fill-opacitySetter"],a.VMLElement=B=D(b,B),B.prototype.ySetter=B.prototype.widthSetter=B.prototype.heightSetter=B.prototype.xSetter,B={Element:B,isIE8:-1l[0]&&c.push([1,l[1]]);t(c,function(c,b){q.test(c[1])?(n=a.color(c[1]),v=n.get("rgb"),K=n.get("a")):(v=c[1],K=1);r.push(100*c[0]+"% "+v);b?(m=K,k=v):(z=K,E=v)});if("fill"===d)if("gradient"===g)d=A.x1||A[0]||0,c=A.y1||A[1]||0,F=A.x2||A[2]||0,A=A.y2||A[3]||0,C='angle\x3d"'+(90-180*Math.atan((A-c)/(F-d))/Math.PI)+'"',p();else{var h=A.r,w=2*h,B=2*h,D=A.cx,H=A.cy,V=b.radialReference,U,h=function(){V&&(U=f.getBBox(),D+=(V[0]- +U.x)/U.width-.5,H+=(V[1]-U.y)/U.height-.5,w*=V[2]/U.width,B*=V[2]/U.height);C='src\x3d"'+a.getOptions().global.VMLRadialGradientURL+'" size\x3d"'+w+","+B+'" origin\x3d"0.5,0.5" position\x3d"'+D+","+H+'" color2\x3d"'+E+'" ';p()};f.added?h():f.onAdd=h;h=k}else h=v}else q.test(c)&&"IMG"!==b.tagName?(n=a.color(c),f[d+"-opacitySetter"](n.get("a"),d,b),h=n.get("rgb")):(h=b.getElementsByTagName(d),h.length&&(h[0].opacity=1,h[0].type="solid"),h=c);return h},prepVML:function(a){var c=this.isIE8;a=a.join(""); +c?(a=a.replace("/\x3e",' xmlns\x3d"urn:schemas-microsoft-com:vml" /\x3e'),a=-1===a.indexOf('style\x3d"')?a.replace("/\x3e",' style\x3d"display:inline-block;behavior:url(#default#VML);" /\x3e'):a.replace('style\x3d"','style\x3d"display:inline-block;behavior:url(#default#VML);')):a=a.replace("\x3c","\x3chcv:");return a},text:q.prototype.html,path:function(a){var c={coordsize:"10 10"};e(a)?c.d=a:h(a)&&m(c,a);return this.createElement("shape").attr(c)},circle:function(a,b,d){var c=this.symbol("circle"); +h(a)&&(d=a.r,b=a.y,a=a.x);c.isCircle=!0;c.r=d;return c.attr({x:a,y:b})},g:function(a){var c;a&&(c={className:"highcharts-"+a,"class":"highcharts-"+a});return this.createElement("div").attr(c)},image:function(a,b,d,f,e){var c=this.createElement("img").attr({src:a});1f&&m-d*bg&&(F=Math.round((e-m)/Math.cos(f*w)));else if(e=m+(1-d)*b,m-d*bg&&(E=g-a.x+E*d,c=-1),E=Math.min(q, +E),EE||k.autoRotation&&(C.styles||{}).width)F=E;F&&(n.width=F,(k.options.labels.style||{}).textOverflow||(n.textOverflow="ellipsis"),C.css(n))},getPosition:function(a,k,m,e){var g=this.axis,h=g.chart,l=e&&h.oldChartHeight||h.chartHeight;return{x:a?g.translate(k+m,null,null,e)+g.transB:g.left+g.offset+(g.opposite?(e&&h.oldChartWidth||h.chartWidth)-g.right-g.left:0),y:a?l-g.bottom+g.offset-(g.opposite?g.height:0):l-g.translate(k+m,null, +null,e)-g.transB}},getLabelPosition:function(a,k,m,e,g,h,l,f){var d=this.axis,b=d.transA,q=d.reversed,E=d.staggerLines,c=d.tickRotCorr||{x:0,y:0},F=g.y;B(F)||(F=0===d.side?m.rotation?-8:-m.getBBox().height:2===d.side?c.y+8:Math.cos(m.rotation*w)*(c.y-m.getBBox(!1,0).height/2));a=a+g.x+c.x-(h&&e?h*b*(q?-1:1):0);k=k+F-(h&&!e?h*b*(q?1:-1):0);E&&(m=l/(f||1)%E,d.opposite&&(m=E-m-1),k+=d.labelOffset/E*m);return{x:a,y:Math.round(k)}},getMarkPath:function(a,k,m,e,g,h){return h.crispLine(["M",a,k,"L",a+(g? +0:-m),k+(g?m:0)],e)},render:function(a,k,m){var e=this.axis,g=e.options,h=e.chart.renderer,C=e.horiz,f=this.type,d=this.label,b=this.pos,q=g.labels,E=this.gridLine,c=f?f+"Tick":"tick",F=e.tickSize(c),n=this.mark,A=!n,x=q.step,p={},y=!0,u=e.tickmarkOffset,I=this.getPosition(C,b,u,k),M=I.x,I=I.y,v=C&&M===e.pos+e.len||!C&&I===e.pos?-1:1,K=f?f+"Grid":"grid",O=g[K+"LineWidth"],R=g[K+"LineColor"],z=g[K+"LineDashStyle"],K=l(g[c+"Width"],!f&&e.isXAxis?1:0),c=g[c+"Color"];m=l(m,1);this.isActive=!0;E||(p.stroke= +R,p["stroke-width"]=O,z&&(p.dashstyle=z),f||(p.zIndex=1),k&&(p.opacity=0),this.gridLine=E=h.path().attr(p).addClass("highcharts-"+(f?f+"-":"")+"grid-line").add(e.gridGroup));if(!k&&E&&(b=e.getPlotLinePath(b+u,E.strokeWidth()*v,k,!0)))E[this.isNew?"attr":"animate"]({d:b,opacity:m});F&&(e.opposite&&(F[0]=-F[0]),A&&(this.mark=n=h.path().addClass("highcharts-"+(f?f+"-":"")+"tick").add(e.axisGroup),n.attr({stroke:c,"stroke-width":K})),n[A?"attr":"animate"]({d:this.getMarkPath(M,I,F[0],n.strokeWidth()* +v,C,h),opacity:m}));d&&H(M)&&(d.xy=I=this.getLabelPosition(M,I,d,C,q,u,a,x),this.isFirst&&!this.isLast&&!l(g.showFirstLabel,1)||this.isLast&&!this.isFirst&&!l(g.showLastLabel,1)?y=!1:!C||e.isRadial||q.step||q.rotation||k||0===m||this.handleOverflow(I),x&&a%x&&(y=!1),y&&H(I.y)?(I.opacity=m,d[this.isNew?"attr":"animate"](I)):(r(d),d.attr("y",-9999)),this.isNew=!1)},destroy:function(){G(this,this.axis)}}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.AxisPlotLineOrBandExtension, +l=a.color,r=a.correctFloat,w=a.defaultOptions,t=a.defined,k=a.deg2rad,m=a.destroyObjectProperties,e=a.each,g=a.error,h=a.extend,C=a.fireEvent,f=a.format,d=a.getMagnitude,b=a.grep,q=a.inArray,E=a.isArray,c=a.isNumber,F=a.isString,n=a.merge,A=a.normalizeTickInterval,x=a.pick,J=a.PlotLineOrBand,y=a.removeEvent,u=a.splat,I=a.syncTimeout,M=a.Tick;a.Axis=function(){this.init.apply(this,arguments)};a.Axis.prototype={defaultOptions:{dateTimeLabelFormats:{millisecond:"%H:%M:%S.%L",second:"%H:%M:%S",minute:"%H:%M", +hour:"%H:%M",day:"%e. %b",week:"%e. %b",month:"%b '%y",year:"%Y"},endOnTick:!1,labels:{enabled:!0,style:{color:"#666666",cursor:"default",fontSize:"11px"},x:0},minPadding:.01,maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:!1,tickLength:10,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb", +lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},maxPadding:.05,minPadding:.05,startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{enabled:!1,formatter:function(){return a.numberFormat(this.total,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"#000000",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15}, +title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},init:function(a,c){var b=c.isX;this.chart=a;this.horiz=a.inverted?!b:b;this.isXAxis=b;this.coll=this.coll||(b?"xAxis":"yAxis");this.opposite=c.opposite;this.side=c.side||(this.horiz?this.opposite?0:2:this.opposite?1:3);this.setOptions(c);var d=this.options,v=d.type;this.labelFormatter=d.labels.formatter||this.defaultLabelFormatter; +this.userOptions=c;this.minPixelPadding=0;this.reversed=d.reversed;this.visible=!1!==d.visible;this.zoomEnabled=!1!==d.zoomEnabled;this.hasNames="category"===v||!0===d.categories;this.categories=d.categories||this.hasNames;this.names=this.names||[];this.isLog="logarithmic"===v;this.isDatetimeAxis="datetime"===v;this.isLinked=t(d.linkedTo);this.ticks={};this.labelEdge=[];this.minorTicks={};this.plotLinesAndBands=[];this.alternateBands={};this.len=0;this.minRange=this.userMinRange=d.minRange||d.maxZoom; +this.range=d.range;this.offset=d.offset||0;this.stacks={};this.oldStacks={};this.stacksTouched=0;this.min=this.max=null;this.crosshair=x(d.crosshair,u(a.options.tooltip.crosshairs)[b?0:1],!1);var f;c=this.options.events;-1===q(this,a.axes)&&(b?a.axes.splice(a.xAxis.length,0,this):a.axes.push(this),a[this.coll].push(this));this.series=this.series||[];a.inverted&&b&&void 0===this.reversed&&(this.reversed=!0);this.removePlotLine=this.removePlotBand=this.removePlotBandOrLine;for(f in c)D(this,f,c[f]); +this.isLog&&(this.val2lin=this.log2lin,this.lin2val=this.lin2log)},setOptions:function(a){this.options=n(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],n(w[this.coll],a))},defaultLabelFormatter:function(){var c=this.axis,b=this.value,d=c.categories,e=this.dateTimeLabelFormat,q=w.lang,u=q.numericSymbols,q=q.numericSymbolMagnitude||1E3,n=u&&u.length,g,y=c.options.labels.format, +c=c.isLog?b:c.tickInterval;if(y)g=f(y,this);else if(d)g=b;else if(e)g=a.dateFormat(e,b);else if(n&&1E3<=c)for(;n--&&void 0===g;)d=Math.pow(q,n+1),c>=d&&0===10*b%d&&null!==u[n]&&0!==b&&(g=a.numberFormat(b/d,-1)+u[n]);void 0===g&&(g=1E4<=Math.abs(b)?a.numberFormat(b,-1):a.numberFormat(b,-1,void 0,""));return g},getSeriesExtremes:function(){var a=this,d=a.chart;a.hasVisibleSeries=!1;a.dataMin=a.dataMax=a.threshold=null;a.softThreshold=!a.isXAxis;a.buildStacks&&a.buildStacks();e(a.series,function(v){if(v.visible|| +!d.options.chart.ignoreHiddenSeries){var f=v.options,e=f.threshold,q;a.hasVisibleSeries=!0;a.isLog&&0>=e&&(e=null);if(a.isXAxis)f=v.xData,f.length&&(v=H(f),c(v)||v instanceof Date||(f=b(f,function(a){return c(a)}),v=H(f)),a.dataMin=Math.min(x(a.dataMin,f[0]),v),a.dataMax=Math.max(x(a.dataMax,f[0]),G(f)));else if(v.getExtremes(),q=v.dataMax,v=v.dataMin,t(v)&&t(q)&&(a.dataMin=Math.min(x(a.dataMin,v),v),a.dataMax=Math.max(x(a.dataMax,q),q)),t(e)&&(a.threshold=e),!f.softThreshold||a.isLog)a.softThreshold= +!1}})},translate:function(a,b,d,f,e,q){var v=this.linkedParent||this,u=1,n=0,g=f?v.oldTransA:v.transA;f=f?v.oldMin:v.min;var K=v.minPixelPadding;e=(v.isOrdinal||v.isBroken||v.isLog&&e)&&v.lin2val;g||(g=v.transA);d&&(u*=-1,n=v.len);v.reversed&&(u*=-1,n-=u*(v.sector||v.len));b?(a=(a*u+n-K)/g+f,e&&(a=v.lin2val(a))):(e&&(a=v.val2lin(a)),a=u*(a-f)*g+n+u*K+(c(q)?g*q:0));return a},toPixels:function(a,c){return this.translate(a,!1,!this.horiz,null,!0)+(c?0:this.pos)},toValue:function(a,c){return this.translate(a- +(c?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a,b,d,f,e){var v=this.chart,q=this.left,u=this.top,n,g,K=d&&v.oldChartHeight||v.chartHeight,y=d&&v.oldChartWidth||v.chartWidth,z;n=this.transB;var h=function(a,c,b){if(ab)f?a=Math.min(Math.max(c,a),b):z=!0;return a};e=x(e,this.translate(a,null,null,d));a=d=Math.round(e+n);n=g=Math.round(K-e-n);c(e)?this.horiz?(n=u,g=K-this.bottom,a=d=h(a,q,q+this.width)):(a=q,d=y-this.right,n=g=h(n,u,u+this.height)):z=!0;return z&&!f?null:v.renderer.crispLine(["M", +a,n,"L",d,g],b||1)},getLinearTickPositions:function(a,b,d){var v,f=r(Math.floor(b/a)*a),e=r(Math.ceil(d/a)*a),q=[];if(b===d&&c(b))return[b];for(b=f;b<=e;){q.push(b);b=r(b+a);if(b===v)break;v=b}return q},getMinorTickPositions:function(){var a=this.options,c=this.tickPositions,b=this.minorTickInterval,d=[],f,e=this.pointRangePadding||0;f=this.min-e;var e=this.max+e,q=e-f;if(q&&q/b=this.minRange,q,u,n,g,y,h;this.isXAxis&&void 0===this.minRange&&!this.isLog&&(t(a.min)||t(a.max)?this.minRange=null:(e(this.series,function(a){g=a.xData;for(u=y=a.xIncrement? +1:g.length-1;0=E?(p=E,m=0):b.dataMax<=E&&(J=E,I=0)),b.min=x(w,p,b.dataMin),b.max=x(B,J,b.dataMax));q&&(!a&&0>=Math.min(b.min, +x(b.dataMin,b.min))&&g(10,1),b.min=r(u(b.min),15),b.max=r(u(b.max),15));b.range&&t(b.max)&&(b.userMin=b.min=w=Math.max(b.min,b.minFromRange()),b.userMax=B=b.max,b.range=null);C(b,"foundExtremes");b.beforePadding&&b.beforePadding();b.adjustForMinRange();!(l||b.axisPointRange||b.usePercentage||h)&&t(b.min)&&t(b.max)&&(u=b.max-b.min)&&(!t(w)&&m&&(b.min-=u*m),!t(B)&&I&&(b.max+=u*I));c(f.floor)?b.min=Math.max(b.min,f.floor):c(f.softMin)&&(b.min=Math.min(b.min,f.softMin));c(f.ceiling)?b.max=Math.min(b.max, +f.ceiling):c(f.softMax)&&(b.max=Math.max(b.max,f.softMax));M&&t(b.dataMin)&&(E=E||0,!t(w)&&b.min=E?b.min=E:!t(B)&&b.max>E&&b.dataMax<=E&&(b.max=E));b.tickInterval=b.min===b.max||void 0===b.min||void 0===b.max?1:h&&!k&&F===b.linkedParent.options.tickPixelInterval?k=b.linkedParent.tickInterval:x(k,this.tickAmount?(b.max-b.min)/Math.max(this.tickAmount-1,1):void 0,l?1:(b.max-b.min)*F/Math.max(b.len,F));y&&!a&&e(b.series,function(a){a.processData(b.min!==b.oldMin||b.max!==b.oldMax)});b.setAxisTranslation(!0); +b.beforeSetTickPositions&&b.beforeSetTickPositions();b.postProcessTickInterval&&(b.tickInterval=b.postProcessTickInterval(b.tickInterval));b.pointRange&&!k&&(b.tickInterval=Math.max(b.pointRange,b.tickInterval));a=x(f.minTickInterval,b.isDatetimeAxis&&b.closestPointRange);!k&&b.tickIntervalb.tickInterval&&1E3b.max)),!!this.tickAmount));this.tickAmount||(b.tickInterval= +b.unsquish());this.setTickPositions()},setTickPositions:function(){var a=this.options,b,c=a.tickPositions,d=a.tickPositioner,f=a.startOnTick,e=a.endOnTick,q;this.tickmarkOffset=this.categories&&"between"===a.tickmarkPlacement&&1===this.tickInterval?.5:0;this.minorTickInterval="auto"===a.minorTickInterval&&this.tickInterval?this.tickInterval/5:a.minorTickInterval;this.tickPositions=b=c&&c.slice();!b&&(b=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,a.units), +this.min,this.max,a.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),b.length>this.len&&(b=[b[0],b.pop()]),this.tickPositions=b,d&&(d=d.apply(this,[this.min,this.max])))&&(this.tickPositions=b=d);this.isLinked||(this.trimTicks(b,f,e),this.min===this.max&&t(this.min)&&!this.tickAmount&&(q=!0,this.min-=.5,this.max+=.5),this.single=q,c||d||this.adjustTickAmount())}, +trimTicks:function(a,b,c){var d=a[0],f=a[a.length-1],v=this.minPointOffset||0;if(b)this.min=d;else for(;this.min-v>a[0];)a.shift();if(c)this.max=f;else for(;this.max+vb&&(this.finalTickAmt=b,b=5);this.tickAmount=b},adjustTickAmount:function(){var a=this.tickInterval,b=this.tickPositions,c=this.tickAmount,d=this.finalTickAmt,f=b&&b.length;if(fc&&(this.tickInterval*= +2,this.setTickPositions());if(t(d)){for(a=c=b.length;a--;)(3===d&&1===a%2||2>=d&&0=f&&(b=f)),this.displayBtn=void 0!==a||void 0!==b,this.setExtremes(a,b,!1,void 0,{trigger:"zoom"});return!0},setAxisSize:function(){var a=this.chart,b=this.options,c=b.offsetLeft||0,d=this.horiz,f=x(b.width,a.plotWidth-c+(b.offsetRight||0)),e=x(b.height,a.plotHeight),q=x(b.top,a.plotTop),b=x(b.left,a.plotLeft+c),c=/%$/;c.test(e)&&(e=Math.round(parseFloat(e)/ +100*a.plotHeight));c.test(q)&&(q=Math.round(parseFloat(q)/100*a.plotHeight+a.plotTop));this.left=b;this.top=q;this.width=f;this.height=e;this.bottom=a.chartHeight-e-q;this.right=a.chartWidth-f-b;this.len=Math.max(d?f:e,0);this.pos=d?b:q},getExtremes:function(){var a=this.isLog,b=this.lin2log;return{min:a?r(b(this.min)):this.min,max:a?r(b(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var b=this.isLog,c=this.lin2log, +d=b?c(this.min):this.min,b=b?c(this.max):this.max;null===a?a=d:d>a?a=d:ba?"right":195a?"left":"center"},tickSize:function(a){var b=this.options,c=b[a+"Length"],d=x(b[a+"Width"],"tick"===a&&this.isXAxis?1:0);if(d&&c)return"inside"===b[a+"Position"]&&(c=-c),[c,d]},labelMetrics:function(){return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize, +this.ticks[0]&&this.ticks[0].label)},unsquish:function(){var a=this.options.labels,b=this.horiz,c=this.tickInterval,d=c,f=this.len/(((this.categories?1:0)+this.max-this.min)/c),q,u=a.rotation,n=this.labelMetrics(),g,y=Number.MAX_VALUE,h,I=function(a){a/=f||1;a=1=a)g=I(Math.abs(n.h/Math.sin(k*a))),b=g+Math.abs(a/360),b(c.step||0)&&!c.rotation&&(this.staggerLines||1)*a.plotWidth/d||!b&&(f&&f-a.spacing[3]||.33*a.chartWidth)},renderUnsquish:function(){var a=this.chart,b=a.renderer,c=this.tickPositions,d=this.ticks,f=this.options.labels,q=this.horiz,u=this.getSlotWidth(),g=Math.max(1, +Math.round(u-2*(f.padding||5))),y={},h=this.labelMetrics(),I=f.style&&f.style.textOverflow,A,x=0,m,k;F(f.rotation)||(y.rotation=f.rotation||0);e(c,function(a){(a=d[a])&&a.labelLength>x&&(x=a.labelLength)});this.maxLabelLength=x;if(this.autoRotation)x>g&&x>h.h?y.rotation=this.labelRotation:this.labelRotation=0;else if(u&&(A={width:g+"px"},!I))for(A.textOverflow="clip",m=c.length;!q&&m--;)if(k=c[m],g=d[k].label)g.styles&&"ellipsis"===g.styles.textOverflow?g.css({textOverflow:"clip"}):d[k].labelLength> +u&&g.css({width:u+"px"}),g.getBBox().height>this.len/c.length-(h.h-h.f)&&(g.specCss={textOverflow:"ellipsis"});y.rotation&&(A={width:(x>.5*a.chartHeight?.33*a.chartHeight:a.chartHeight)+"px"},I||(A.textOverflow="ellipsis"));if(this.labelAlign=f.align||this.autoLabelAlign(this.labelRotation))y.align=this.labelAlign;e(c,function(a){var b=(a=d[a])&&a.label;b&&(b.attr(y),A&&b.css(n(A,b.specCss)),delete b.specCss,a.rotation=y.rotation)});this.tickRotCorr=b.rotCorr(h.b,this.labelRotation||0,0!==this.side)}, +hasData:function(){return this.hasVisibleSeries||t(this.min)&&t(this.max)&&!!this.tickPositions},getOffset:function(){var a=this,b=a.chart,c=b.renderer,d=a.options,f=a.tickPositions,q=a.ticks,u=a.horiz,n=a.side,g=b.inverted?[1,0,3,2][n]:n,y,h,I=0,A,m=0,k=d.title,F=d.labels,E=0,l=a.opposite,C=b.axisOffset,b=b.clipOffset,p=[-1,1,1,-1][n],r,J=d.className,w=a.axisParent,B=this.tickSize("tick");y=a.hasData();a.showAxis=h=y||x(d.showEmpty,!0);a.staggerLines=a.horiz&&F.staggerLines;a.axisGroup||(a.gridGroup= +c.g("grid").attr({zIndex:d.gridZIndex||1}).addClass("highcharts-"+this.coll.toLowerCase()+"-grid "+(J||"")).add(w),a.axisGroup=c.g("axis").attr({zIndex:d.zIndex||2}).addClass("highcharts-"+this.coll.toLowerCase()+" "+(J||"")).add(w),a.labelGroup=c.g("axis-labels").attr({zIndex:F.zIndex||7}).addClass("highcharts-"+a.coll.toLowerCase()+"-labels "+(J||"")).add(w));if(y||a.isLinked)e(f,function(b){q[b]?q[b].addLabel():q[b]=new M(a,b)}),a.renderUnsquish(),!1===F.reserveSpace||0!==n&&2!==n&&{1:"left",3:"right"}[n]!== +a.labelAlign&&"center"!==a.labelAlign||e(f,function(a){E=Math.max(q[a].getLabelSize(),E)}),a.staggerLines&&(E*=a.staggerLines,a.labelOffset=E*(a.opposite?-1:1));else for(r in q)q[r].destroy(),delete q[r];k&&k.text&&!1!==k.enabled&&(a.axisTitle||((r=k.textAlign)||(r=(u?{low:"left",middle:"center",high:"right"}:{low:l?"right":"left",middle:"center",high:l?"left":"right"})[k.align]),a.axisTitle=c.text(k.text,0,0,k.useHTML).attr({zIndex:7,rotation:k.rotation||0,align:r}).addClass("highcharts-axis-title").css(k.style).add(a.axisGroup), +a.axisTitle.isNew=!0),h&&(I=a.axisTitle.getBBox()[u?"height":"width"],A=k.offset,m=t(A)?0:x(k.margin,u?5:10)),a.axisTitle[h?"show":"hide"](!0));a.renderLine();a.offset=p*x(d.offset,C[n]);a.tickRotCorr=a.tickRotCorr||{x:0,y:0};c=0===n?-a.labelMetrics().h:2===n?a.tickRotCorr.y:0;m=Math.abs(E)+m;E&&(m=m-c+p*(u?x(F.y,a.tickRotCorr.y+8*p):F.x));a.axisTitleMargin=x(A,m);C[n]=Math.max(C[n],a.axisTitleMargin+I+p*a.offset,m,y&&f.length&&B?B[0]:0);d=d.offset?0:2*Math.floor(a.axisLine.strokeWidth()/2);b[g]= +Math.max(b[g],d)},getLinePath:function(a){var b=this.chart,c=this.opposite,d=this.offset,f=this.horiz,e=this.left+(c?this.width:0)+d,d=b.chartHeight-this.bottom-(c?this.height:0)+d;c&&(a*=-1);return b.renderer.crispLine(["M",f?this.left:e,f?d:this.top,"L",f?b.chartWidth-this.right:e,f?d:b.chartHeight-this.bottom],a)},renderLine:function(){this.axisLine||(this.axisLine=this.chart.renderer.path().addClass("highcharts-axis-line").add(this.axisGroup),this.axisLine.attr({stroke:this.options.lineColor, +"stroke-width":this.options.lineWidth,zIndex:7}))},getTitlePosition:function(){var a=this.horiz,b=this.left,c=this.top,d=this.len,f=this.options.title,e=a?b:c,q=this.opposite,u=this.offset,n=f.x||0,g=f.y||0,y=this.chart.renderer.fontMetrics(f.style&&f.style.fontSize,this.axisTitle).f,d={low:e+(a?0:d),middle:e+d/2,high:e+(a?d:0)}[f.align],b=(a?c+this.height:b)+(a?1:-1)*(q?-1:1)*this.axisTitleMargin+(2===this.side?y:0);return{x:a?d+n:b+(q?this.width:0)+u+n,y:a?b+g-(q?this.height:0)+u:d+g}},render:function(){var a= +this,b=a.chart,d=b.renderer,f=a.options,q=a.isLog,u=a.lin2log,n=a.isLinked,g=a.tickPositions,y=a.axisTitle,h=a.ticks,A=a.minorTicks,x=a.alternateBands,m=f.stackLabels,k=f.alternateGridColor,F=a.tickmarkOffset,E=a.axisLine,l=b.hasRendered&&c(a.oldMin),C=a.showAxis,p=B(d.globalAnimation),r,t;a.labelEdge.length=0;a.overlap=!1;e([h,A,x],function(a){for(var b in a)a[b].isActive=!1});if(a.hasData()||n)a.minorTickInterval&&!a.categories&&e(a.getMinorTickPositions(),function(b){A[b]||(A[b]=new M(a,b,"minor")); +l&&A[b].isNew&&A[b].render(null,!0);A[b].render(null,!1,1)}),g.length&&(e(g,function(b,c){if(!n||b>=a.min&&b<=a.max)h[b]||(h[b]=new M(a,b)),l&&h[b].isNew&&h[b].render(c,!0,.1),h[b].render(c)}),F&&(0===a.min||a.single)&&(h[-1]||(h[-1]=new M(a,-1,null,!0)),h[-1].render(-1))),k&&e(g,function(c,d){t=void 0!==g[d+1]?g[d+1]+F:a.max-F;0===d%2&&c=e.second?0:A*Math.floor(c.getMilliseconds()/A));if(n>=e.second)c[B.hcSetSeconds](n>=e.minute?0:A*Math.floor(c.getSeconds()/ +A));if(n>=e.minute)c[B.hcSetMinutes](n>=e.hour?0:A*Math.floor(c[B.hcGetMinutes]()/A));if(n>=e.hour)c[B.hcSetHours](n>=e.day?0:A*Math.floor(c[B.hcGetHours]()/A));if(n>=e.day)c[B.hcSetDate](n>=e.month?1:A*Math.floor(c[B.hcGetDate]()/A));n>=e.month&&(c[B.hcSetMonth](n>=e.year?0:A*Math.floor(c[B.hcGetMonth]()/A)),g=c[B.hcGetFullYear]());if(n>=e.year)c[B.hcSetFullYear](g-g%A);if(n===e.week)c[B.hcSetDate](c[B.hcGetDate]()-c[B.hcGetDay]()+m(f,1));g=c[B.hcGetFullYear]();f=c[B.hcGetMonth]();var C=c[B.hcGetDate](), +y=c[B.hcGetHours]();if(B.hcTimezoneOffset||B.hcGetTimezoneOffset)x=(!q||!!B.hcGetTimezoneOffset)&&(k-h>4*e.month||t(h)!==t(k)),c=c.getTime(),c=new B(c+t(c));q=c.getTime();for(h=1;qr&&(!t||b<=w)&&void 0!==b&&h.push(b),b>w&&(q=!0),b=d;else r=e(r),w= +e(w),a=k[t?"minorTickInterval":"tickInterval"],a=p("auto"===a?null:a,this._minorAutoInterval,k.tickPixelInterval/(t?5:1)*(w-r)/((t?m/this.tickPositions.length:m)||1)),a=H(a,null,B(a)),h=G(this.getLinearTickPositions(a,r,w),g),t||(this._minorAutoInterval=a/5);t||(this.tickInterval=a);return h};D.prototype.log2lin=function(a){return Math.log(a)/Math.LN10};D.prototype.lin2log=function(a){return Math.pow(10,a)}})(N);(function(a){var D=a.dateFormat,B=a.each,G=a.extend,H=a.format,p=a.isNumber,l=a.map,r= +a.merge,w=a.pick,t=a.splat,k=a.stop,m=a.syncTimeout,e=a.timeUnits;a.Tooltip=function(){this.init.apply(this,arguments)};a.Tooltip.prototype={init:function(a,e){this.chart=a;this.options=e;this.crosshairs=[];this.now={x:0,y:0};this.isHidden=!0;this.split=e.split&&!a.inverted;this.shared=e.shared||this.split},cleanSplit:function(a){B(this.chart.series,function(e){var g=e&&e.tt;g&&(!g.isActive||a?e.tt=g.destroy():g.isActive=!1)})},getLabel:function(){var a=this.chart.renderer,e=this.options;this.label|| +(this.split?this.label=a.g("tooltip"):(this.label=a.label("",0,0,e.shape||"callout",null,null,e.useHTML,null,"tooltip").attr({padding:e.padding,r:e.borderRadius}),this.label.attr({fill:e.backgroundColor,"stroke-width":e.borderWidth}).css(e.style).shadow(e.shadow)),this.label.attr({zIndex:8}).add());return this.label},update:function(a){this.destroy();this.init(this.chart,r(!0,this.options,a))},destroy:function(){this.label&&(this.label=this.label.destroy());this.split&&this.tt&&(this.cleanSplit(this.chart, +!0),this.tt=this.tt.destroy());clearTimeout(this.hideTimer);clearTimeout(this.tooltipTimeout)},move:function(a,e,m,f){var d=this,b=d.now,q=!1!==d.options.animation&&!d.isHidden&&(1h-q?h:h-q);else if(v)b[a]=Math.max(g,e+q+f>c?e:e+q);else return!1},x=function(a,c,f,e){var q;ec-d?q=!1:b[a]=ec-f/2?c-f-2:e-f/2;return q},k=function(a){var b=c;c=h;h=b;g=a},y=function(){!1!==A.apply(0,c)?!1!==x.apply(0,h)||g||(k(!0),y()):g?b.x=b.y=0:(k(!0),y())};(f.inverted||1y&&(q=!1);a=(e.series&&e.series.yAxis&&e.series.yAxis.pos)+(e.plotY||0);a-=d.plotTop;f.push({target:e.isHeader?d.plotHeight+c:a,rank:e.isHeader?1:0,size:n.tt.getBBox().height+1,point:e,x:y,tt:A})});this.cleanSplit(); +a.distribute(f,d.plotHeight+c);B(f,function(a){var b=a.point;a.tt.attr({visibility:void 0===a.pos?"hidden":"inherit",x:q||b.isHeader?a.x:b.plotX+d.plotLeft+w(m.distance,16),y:a.pos+d.plotTop,anchorX:b.plotX+d.plotLeft,anchorY:b.isHeader?a.pos+d.plotTop-15:b.plotY+d.plotTop})})},updatePosition:function(a){var e=this.chart,g=this.getLabel(),g=(this.options.positioner||this.getPosition).call(this,g.width,g.height,a);this.move(Math.round(g.x),Math.round(g.y||0),a.plotX+e.plotLeft,a.plotY+e.plotTop)}, +getXDateFormat:function(a,h,m){var f;h=h.dateTimeLabelFormats;var d=m&&m.closestPointRange,b,q={millisecond:15,second:12,minute:9,hour:6,day:3},g,c="millisecond";if(d){g=D("%m-%d %H:%M:%S.%L",a.x);for(b in e){if(d===e.week&&+D("%w",a.x)===m.options.startOfWeek&&"00:00:00.000"===g.substr(6)){b="week";break}if(e[b]>d){b=c;break}if(q[b]&&g.substr(q[b])!=="01-01 00:00:00.000".substr(q[b]))break;"week"!==b&&(c=b)}b&&(f=h[b])}else f=h.day;return f||h.year},tooltipFooterHeaderFormatter:function(a,e){var g= +e?"footer":"header";e=a.series;var f=e.tooltipOptions,d=f.xDateFormat,b=e.xAxis,q=b&&"datetime"===b.options.type&&p(a.key),g=f[g+"Format"];q&&!d&&(d=this.getXDateFormat(a,f,b));q&&d&&(g=g.replace("{point.key}","{point.key:"+d+"}"));return H(g,{point:a,series:e})},bodyFormatter:function(a){return l(a,function(a){var e=a.series.tooltipOptions;return(e.pointFormatter||a.point.tooltipFormatter).call(a.point,e.pointFormat)})}}})(N);(function(a){var D=a.addEvent,B=a.attr,G=a.charts,H=a.color,p=a.css,l= +a.defined,r=a.doc,w=a.each,t=a.extend,k=a.fireEvent,m=a.offset,e=a.pick,g=a.removeEvent,h=a.splat,C=a.Tooltip,f=a.win;a.Pointer=function(a,b){this.init(a,b)};a.Pointer.prototype={init:function(a,b){this.options=b;this.chart=a;this.runChartClick=b.chart.events&&!!b.chart.events.click;this.pinchDown=[];this.lastValidTouch={};C&&b.tooltip.enabled&&(a.tooltip=new C(a,b.tooltip),this.followTouchMove=e(b.tooltip.followTouchMove,!0));this.setDOMEvents()},zoomOption:function(a){var b=this.chart,d=b.options.chart, +f=d.zoomType||"",b=b.inverted;/touch/.test(a.type)&&(f=e(d.pinchType,f));this.zoomX=a=/x/.test(f);this.zoomY=f=/y/.test(f);this.zoomHor=a&&!b||f&&b;this.zoomVert=f&&!b||a&&b;this.hasZoom=a||f},normalize:function(a,b){var d,e;a=a||f.event;a.target||(a.target=a.srcElement);e=a.touches?a.touches.length?a.touches.item(0):a.changedTouches[0]:a;b||(this.chartPosition=b=m(this.chart.container));void 0===e.pageX?(d=Math.max(a.x,a.clientX-b.left),b=a.y):(d=e.pageX-b.left,b=e.pageY-b.top);return t(a,{chartX:Math.round(d), +chartY:Math.round(b)})},getCoordinates:function(a){var b={xAxis:[],yAxis:[]};w(this.chart.axes,function(d){b[d.isXAxis?"xAxis":"yAxis"].push({axis:d,value:d.toValue(a[d.horiz?"chartX":"chartY"])})});return b},runPointActions:function(d){var b=this.chart,f=b.series,g=b.tooltip,c=g?g.shared:!1,h=!0,n=b.hoverPoint,m=b.hoverSeries,x,k,y,u=[],I;if(!c&&!m)for(x=0;xb.series.index?-1:1}));if(c)for(x=u.length;x--;)(u[x].x!==u[0].x||u[x].series.noSharedTooltip)&&u.splice(x,1);if(u[0]&&(u[0]!==this.prevKDPoint||g&&g.isHidden)){if(c&& +!u[0].series.noSharedTooltip){for(x=0;xh+k&&(f=h+k),cm+y&&(c=m+y),this.hasDragged=Math.sqrt(Math.pow(l-f,2)+Math.pow(v-c,2)),10x.max&&(l=x.max-c,v=!0);v?(u-=.8*(u-g[f][0]),J||(M-=.8*(M-g[f][1])),p()):g[f]=[u,M];A||(e[f]=F-E,e[q]=c);e=A?1/n:n;m[q]=c;m[f]=l;k[A?a?"scaleY":"scaleX":"scale"+d]=n;k["translate"+d]=e* +E+(u-e*y)},pinch:function(a){var r=this,t=r.chart,k=r.pinchDown,m=a.touches,e=m.length,g=r.lastValidTouch,h=r.hasZoom,C=r.selectionMarker,f={},d=1===e&&(r.inClass(a.target,"highcharts-tracker")&&t.runTrackerClick||r.runChartClick),b={};1b-6&&n(u||d.chartWidth- +2*x-v-e.x)&&(this.itemX=v,this.itemY+=p+this.lastLineHeight+I,this.lastLineHeight=0);this.maxItemWidth=Math.max(this.maxItemWidth,c);this.lastItemY=p+this.itemY+I;this.lastLineHeight=Math.max(g,this.lastLineHeight);a._legendItemPos=[this.itemX,this.itemY];f?this.itemX+=c:(this.itemY+=p+g+I,this.lastLineHeight=g);this.offsetWidth=u||Math.max((f?this.itemX-v-l:c)+x,this.offsetWidth)},getAllItems:function(){var a=[];l(this.chart.series,function(d){var b=d&&d.options;d&&m(b.showInLegend,p(b.linkedTo)? +!1:void 0,!0)&&(a=a.concat(d.legendItems||("point"===b.legendType?d.data:d)))});return a},adjustMargins:function(a,d){var b=this.chart,e=this.options,f=e.align.charAt(0)+e.verticalAlign.charAt(0)+e.layout.charAt(0);e.floating||l([/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/],function(c,g){c.test(f)&&!p(a[g])&&(b[t[g]]=Math.max(b[t[g]],b.legend[(g+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][g]*e[g%2?"x":"y"]+m(e.margin,12)+d[g]))})},render:function(){var a=this,d=a.chart,b=d.renderer, +e=a.group,h,c,m,n,k=a.box,x=a.options,p=a.padding;a.itemX=a.initialItemX;a.itemY=a.initialItemY;a.offsetWidth=0;a.lastItemY=0;e||(a.group=e=b.g("legend").attr({zIndex:7}).add(),a.contentGroup=b.g().attr({zIndex:1}).add(e),a.scrollGroup=b.g().add(a.contentGroup));a.renderTitle();h=a.getAllItems();g(h,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});x.reversed&&h.reverse();a.allItems=h;a.display=c=!!h.length;a.lastLineHeight=0;l(h,function(b){a.renderItem(b)}); +m=(x.width||a.offsetWidth)+p;n=a.lastItemY+a.lastLineHeight+a.titleHeight;n=a.handleOverflow(n);n+=p;k||(a.box=k=b.rect().addClass("highcharts-legend-box").attr({r:x.borderRadius}).add(e),k.isNew=!0);k.attr({stroke:x.borderColor,"stroke-width":x.borderWidth||0,fill:x.backgroundColor||"none"}).shadow(x.shadow);0b&&!1!==h.enabled?(this.clipHeight=g=Math.max(b-20-this.titleHeight-I,0),this.currentPage=m(this.currentPage,1),this.fullHeight=a,l(v,function(a,b){var c=a._legendItemPos[1];a=Math.round(a.legendItem.getBBox().height);var d=u.length;if(!d||c-u[d-1]>g&&(r||c)!==u[d-1])u.push(r||c),d++;b===v.length-1&&c+a-u[d-1]>g&&u.push(c);c!==r&&(r=c)}),n||(n=d.clipRect= +e.clipRect(0,I,9999,0),d.contentGroup.clip(n)),t(g),y||(this.nav=y=e.g().attr({zIndex:1}).add(this.group),this.up=e.symbol("triangle",0,0,p,p).on("click",function(){d.scroll(-1,k)}).add(y),this.pager=e.text("",15,10).addClass("highcharts-legend-navigation").css(h.style).add(y),this.down=e.symbol("triangle-down",0,0,p,p).on("click",function(){d.scroll(1,k)}).add(y)),d.scroll(0),a=b):y&&(t(),y.hide(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0);return a},scroll:function(a,d){var b=this.pages, +f=b.length;a=this.currentPage+a;var g=this.clipHeight,c=this.options.navigation,h=this.pager,n=this.padding;a>f&&(a=f);0f&&(g=typeof a[0],"string"===g?e.name=a[0]:"number"===g&&(e.x=a[0]),d++);b=h.value;)h=e[++g];h&&h.color&&!this.options.color&&(this.color=h.color);return h},destroy:function(){var a=this.series.chart,e=a.hoverPoints,g;a.pointCount--;e&&(this.setState(),H(e,this),e.length||(a.hoverPoints=null));if(this===a.hoverPoint)this.onMouseOut();if(this.graphic||this.dataLabel)k(this), +this.destroyElements();this.legendItem&&a.legend.destroyItem(this);for(g in this)this[g]=null},destroyElements:function(){for(var a=["graphic","dataLabel","dataLabelUpper","connector","shadowGroup"],e,g=6;g--;)e=a[g],this[e]&&(this[e]=this[e].destroy())},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(a){var e=this.series,g= +e.tooltipOptions,h=t(g.valueDecimals,""),k=g.valuePrefix||"",f=g.valueSuffix||"";B(e.pointArrayMap||["y"],function(d){d="{point."+d;if(k||f)a=a.replace(d+"}",k+d+"}"+f);a=a.replace(d+"}",d+":,."+h+"f}")});return l(a,{point:this,series:this.series})},firePointEvent:function(a,e,g){var h=this,k=this.series.options;(k.point.events[a]||h.options&&h.options.events&&h.options.events[a])&&this.importEvents();"click"===a&&k.allowPointSelect&&(g=function(a){h.select&&h.select(null,a.ctrlKey||a.metaKey||a.shiftKey)}); +p(this,a,e,g)},visible:!0}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.correctFloat,l=a.Date,r=a.defaultOptions,w=a.defaultPlotOptions,t=a.defined,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.fireEvent,C=a.grep,f=a.isArray,d=a.isNumber,b=a.isString,q=a.merge,E=a.pick,c=a.removeEvent,F=a.splat,n=a.stableSort,A=a.SVGElement,x=a.syncTimeout,J=a.win;a.Series=a.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{}, +marker:{lineWidth:0,lineColor:"#ffffff",radius:4,states:{hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":a.numberFormat(this.y,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0,padding:5},cropThreshold:300,pointRange:0,softThreshold:!0,states:{hover:{lineWidthPlus:1, +marker:{},halo:{size:10,opacity:.25}},select:{marker:{}}},stickyTracking:!0,turboThreshold:1E3},{isCartesian:!0,pointClass:a.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",init:function(a,b){var c=this,d,e,f=a.series,u,y=function(a,b){return E(a.options.index,a._i)-E(b.options.index,b._i)};c.chart=a;c.options=b=c.setOptions(b);c.linkedSeries=[];c.bindAxes();g(c,{name:b.name,state:"",visible:!1!==b.visible,selected:!0=== +b.selected});e=b.events;for(d in e)D(c,d,e[d]);if(e&&e.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=!0;c.getColor();c.getSymbol();k(c.parallelArrays,function(a){c[a+"Data"]=[]});c.setData(b.data,!1);c.isCartesian&&(a.hasCartesianSeries=!0);f.length&&(u=f[f.length-1]);c._i=E(u&&u._i,-1)+1;f.push(c);n(f,y);this.yAxis&&n(this.yAxis.series,y);k(f,function(a,b){a.index=b;a.name=a.name||"Series "+(b+1)})},bindAxes:function(){var a=this,b=a.options,c=a.chart, +d;k(a.axisTypes||[],function(f){k(c[f],function(c){d=c.options;if(b[f]===d.index||void 0!==b[f]&&b[f]===d.id||void 0===b[f]&&0===d.index)c.series.push(a),a[f]=c,c.isDirty=!0});a[f]||a.optionalAxis===f||e(18,!0)})},updateParallelArrays:function(a,b){var c=a.series,e=arguments,f=d(b)?function(d){var e="y"===d&&c.toYData?c.toYData(a):a[d];c[d+"Data"][b]=e}:function(a){Array.prototype[b].apply(c[a+"Data"],Array.prototype.slice.call(e,2))};k(c.parallelArrays,f)},autoIncrement:function(){var a=this.options, +b=this.xIncrement,c,d=a.pointIntervalUnit,b=E(b,a.pointStart,0);this.pointInterval=c=E(this.pointInterval,a.pointInterval,1);d&&(a=new l(b),"day"===d?a=+a[l.hcSetDate](a[l.hcGetDate]()+c):"month"===d?a=+a[l.hcSetMonth](a[l.hcGetMonth]()+c):"year"===d&&(a=+a[l.hcSetFullYear](a[l.hcGetFullYear]()+c)),c=a-b);this.xIncrement=b+c;return b},setOptions:function(a){var b=this.chart,c=b.options.plotOptions,b=b.userOptions||{},d=b.plotOptions||{},e=c[this.type];this.userOptions=a;c=q(e,c.series,a);this.tooltipOptions= +q(r.tooltip,r.plotOptions[this.type].tooltip,b.tooltip,d.series&&d.series.tooltip,d[this.type]&&d[this.type].tooltip,a.tooltip);null===e.marker&&delete c.marker;this.zoneAxis=c.zoneAxis;a=this.zones=(c.zones||[]).slice();!c.negativeColor&&!c.negativeFillColor||c.zones||a.push({value:c[this.zoneAxis+"Threshold"]||c.threshold||0,className:"highcharts-negative",color:c.negativeColor,fillColor:c.negativeFillColor});a.length&&t(a[a.length-1].value)&&a.push({color:this.color,fillColor:this.fillColor}); +return c},getCyclic:function(a,b,c){var d,e=this.userOptions,f=a+"Index",g=a+"Counter",u=c?c.length:E(this.chart.options.chart[a+"Count"],this.chart[a+"Count"]);b||(d=E(e[f],e["_"+f]),t(d)||(e["_"+f]=d=this.chart[g]%u,this.chart[g]+=1),c&&(b=c[d]));void 0!==d&&(this[f]=d);this[a]=b},getColor:function(){this.options.colorByPoint?this.options.color=null:this.getCyclic("color",this.options.color||w[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol, +this.chart.options.symbols)},drawLegendSymbol:a.LegendSymbolMixin.drawLineMarker,setData:function(a,c,g,n){var u=this,q=u.points,h=q&&q.length||0,y,m=u.options,x=u.chart,A=null,I=u.xAxis,l=m.turboThreshold,p=this.xData,r=this.yData,F=(y=u.pointArrayMap)&&y.length;a=a||[];y=a.length;c=E(c,!0);if(!1!==n&&y&&h===y&&!u.cropped&&!u.hasGroupedData&&u.visible)k(a,function(a,b){q[b].update&&a!==m.data[b]&&q[b].update(a,!1,null,!1)});else{u.xIncrement=null;u.colorCounter=0;k(this.parallelArrays,function(a){u[a+ +"Data"].length=0});if(l&&y>l){for(g=0;null===A&&gh||this.forceCrop))if(b[d-1]l)b=[],c=[];else if(b[0]l)f=this.cropData(this.xData,this.yData,A,l),b=f.xData,c=f.yData,f=f.start,g=!0;for(h=b.length||1;--h;)d=x?y(b[h])-y(b[h-1]):b[h]-b[h-1],0d&&this.requireSorting&&e(15);this.cropped=g;this.cropStart=f;this.processedXData=b;this.processedYData=c;this.closestPointRange=n},cropData:function(a,b,c,d){var e=a.length,f=0,g=e,n=E(this.cropShoulder,1),u;for(u=0;u=c){f=Math.max(0,u- +n);break}for(c=u;cd){g=c+n;break}return{xData:a.slice(f,g),yData:b.slice(f,g),start:f,end:g}},generatePoints:function(){var a=this.options.data,b=this.data,c,d=this.processedXData,e=this.processedYData,f=this.pointClass,g=d.length,n=this.cropStart||0,q,h=this.hasGroupedData,k,m=[],x;b||h||(b=[],b.length=a.length,b=this.data=b);for(x=0;x=q&&(c[x-1]||k)<=h,y&&k)if(y=m.length)for(;y--;)null!==m[y]&&(g[n++]=m[y]);else g[n++]=m;this.dataMin=H(g);this.dataMax=G(g)},translate:function(){this.processedXData||this.processData();this.generatePoints();var a=this.options,b=a.stacking,c=this.xAxis,e=c.categories,f=this.yAxis,g=this.points,n=g.length,q=!!this.modifyValue,h=a.pointPlacement,k="between"===h||d(h),m=a.threshold,x=a.startFromThreshold?m:0,A,l,r,F,J=Number.MAX_VALUE;"between"===h&&(h=.5);d(h)&&(h*=E(a.pointRange||c.pointRange)); +for(a=0;a=B&&(C.isNull=!0);C.plotX=A=p(Math.min(Math.max(-1E5,c.translate(w,0,0,0,1,h,"flags"===this.type)),1E5));b&&this.visible&&!C.isNull&&D&&D[w]&&(F=this.getStackIndicator(F,w,this.index),G=D[w],B=G.points[F.key],l=B[0],B=B[1],l===x&&F.key===D[w].base&&(l=E(m,f.min)),f.isLog&&0>=l&&(l=null),C.total=C.stackTotal=G.total,C.percentage=G.total&&C.y/G.total*100,C.stackY= +B,G.setOffset(this.pointXOffset||0,this.barW||0));C.yBottom=t(l)?f.translate(l,0,1,0,1):null;q&&(B=this.modifyValue(B,C));C.plotY=l="number"===typeof B&&Infinity!==B?Math.min(Math.max(-1E5,f.translate(B,0,1,0,1)),1E5):void 0;C.isInside=void 0!==l&&0<=l&&l<=f.len&&0<=A&&A<=c.len;C.clientX=k?p(c.translate(w,0,0,0,1,h)):A;C.negative=C.y<(m||0);C.category=e&&void 0!==e[C.x]?e[C.x]:C.x;C.isNull||(void 0!==r&&(J=Math.min(J,Math.abs(A-r))),r=A)}this.closestPointRangePx=J},getValidPoints:function(a,b){var c= +this.chart;return C(a||this.points||[],function(a){return b&&!c.isInsidePlot(a.plotX,a.plotY,c.inverted)?!1:!a.isNull})},setClip:function(a){var b=this.chart,c=this.options,d=b.renderer,e=b.inverted,f=this.clipBox,g=f||b.clipBox,n=this.sharedClipKey||["_sharedClip",a&&a.duration,a&&a.easing,g.height,c.xAxis,c.yAxis].join(),q=b[n],h=b[n+"m"];q||(a&&(g.width=0,b[n+"m"]=h=d.clipRect(-99,e?-b.plotLeft:-b.plotTop,99,e?b.chartWidth:b.chartHeight)),b[n]=q=d.clipRect(g),q.count={length:0});a&&!q.count[this.index]&& +(q.count[this.index]=!0,q.count.length+=1);!1!==c.clip&&(this.group.clip(a||f?q:b.clipRect),this.markerGroup.clip(h),this.sharedClipKey=n);a||(q.count[this.index]&&(delete q.count[this.index],--q.count.length),0===q.count.length&&n&&b[n]&&(f||(b[n]=b[n].destroy()),b[n+"m"]&&(b[n+"m"]=b[n+"m"].destroy())))},animate:function(a){var b=this.chart,c=B(this.options.animation),d;a?this.setClip(c):(d=this.sharedClipKey,(a=b[d])&&a.animate({width:b.plotSizeX},c),b[d+"m"]&&b[d+"m"].animate({width:b.plotSizeX+ +99},c),this.animate=null)},afterAnimate:function(){this.setClip();h(this,"afterAnimate")},drawPoints:function(){var a=this.points,b=this.chart,c,e,f,g,n=this.options.marker,q,h,k,m,x=this.markerGroup,A=E(n.enabled,this.xAxis.isRadial?!0:null,this.closestPointRangePx>2*n.radius);if(!1!==n.enabled||this._hasPointMarkers)for(e=a.length;e--;)f=a[e],c=f.plotY,g=f.graphic,q=f.marker||{},h=!!f.marker,k=A&&void 0===q.enabled||q.enabled,m=f.isInside,k&&d(c)&&null!==f.y?(c=E(q.symbol,this.symbol),f.hasImage= +0===c.indexOf("url"),k=this.markerAttribs(f,f.selected&&"select"),g?g[m?"show":"hide"](!0).animate(k):m&&(0e&&b.shadow));g&&(g.startX=c.xMap, +g.isArea=c.isArea)})},applyZones:function(){var a=this,b=this.chart,c=b.renderer,d=this.zones,e,f,g=this.clips||[],n,q=this.graph,h=this.area,m=Math.max(b.chartWidth,b.chartHeight),x=this[(this.zoneAxis||"y")+"Axis"],A,l,p=b.inverted,r,F,C,t,J=!1;d.length&&(q||h)&&x&&void 0!==x.min&&(l=x.reversed,r=x.horiz,q&&q.hide(),h&&h.hide(),A=x.getExtremes(),k(d,function(d,u){e=l?r?b.plotWidth:0:r?0:x.toPixels(A.min);e=Math.min(Math.max(E(f,e),0),m);f=Math.min(Math.max(Math.round(x.toPixels(E(d.value,A.max), +!0)),0),m);J&&(e=f=x.toPixels(A.max));F=Math.abs(e-f);C=Math.min(e,f);t=Math.max(e,f);x.isXAxis?(n={x:p?t:C,y:0,width:F,height:m},r||(n.x=b.plotHeight-n.x)):(n={x:0,y:p?t:C,width:m,height:F},r&&(n.y=b.plotWidth-n.y));p&&c.isVML&&(n=x.isXAxis?{x:0,y:l?C:t,height:n.width,width:b.chartWidth}:{x:n.y-b.plotLeft-b.spacingBox.x,y:0,width:n.height,height:b.chartHeight});g[u]?g[u].animate(n):(g[u]=c.clipRect(n),q&&a["zone-graph-"+u].clip(g[u]),h&&a["zone-area-"+u].clip(g[u]));J=d.value>A.max}),this.clips= +g)},invertGroups:function(a){function b(){var b={width:c.yAxis.len,height:c.xAxis.len};k(["group","markerGroup"],function(d){c[d]&&c[d].attr(b).invert(a)})}var c=this,d;c.xAxis&&(d=D(c.chart,"resize",b),D(c,"destroy",d),b(a),c.invertGroups=b)},plotGroup:function(a,b,c,d,e){var f=this[a],g=!f;g&&(this[a]=f=this.chart.renderer.g(b).attr({zIndex:d||.1}).add(e),f.addClass("highcharts-series-"+this.index+" highcharts-"+this.type+"-series highcharts-color-"+this.colorIndex+" "+(this.options.className|| +"")));f.attr({visibility:c})[g?"attr":"animate"](this.getPlotBox());return f},getPlotBox:function(){var a=this.chart,b=this.xAxis,c=this.yAxis;a.inverted&&(b=c,c=this.xAxis);return{translateX:b?b.left:a.plotLeft,translateY:c?c.top:a.plotTop,scaleX:1,scaleY:1}},render:function(){var a=this,b=a.chart,c,d=a.options,e=!!a.animate&&b.renderer.isSVG&&B(d.animation).duration,f=a.visible?"inherit":"hidden",g=d.zIndex,n=a.hasRendered,q=b.seriesGroup,h=b.inverted;c=a.plotGroup("group","series",f,g,q);a.markerGroup= +a.plotGroup("markerGroup","markers",f,g,q);e&&a.animate(!0);c.inverted=a.isCartesian?h:!1;a.drawGraph&&(a.drawGraph(),a.applyZones());a.drawDataLabels&&a.drawDataLabels();a.visible&&a.drawPoints();a.drawTracker&&!1!==a.options.enableMouseTracking&&a.drawTracker();a.invertGroups(h);!1===d.clip||a.sharedClipKey||n||c.clip(b.clipRect);e&&a.animate();n||(a.animationTimeout=x(function(){a.afterAnimate()},e));a.isDirty=a.isDirtyData=!1;a.hasRendered=!0},redraw:function(){var a=this.chart,b=this.isDirty|| +this.isDirtyData,c=this.group,d=this.xAxis,e=this.yAxis;c&&(a.inverted&&c.attr({width:a.plotWidth,height:a.plotHeight}),c.animate({translateX:E(d&&d.left,a.plotLeft),translateY:E(e&&e.top,a.plotTop)}));this.translate();this.render();b&&delete this.kdTree},kdDimensions:1,kdAxisArray:["clientX","plotY"],searchPoint:function(a,b){var c=this.xAxis,d=this.yAxis,e=this.chart.inverted;return this.searchKDTree({clientX:e?c.len-a.chartY+c.pos:a.chartX-c.pos,plotY:e?d.len-a.chartX+d.pos:a.chartY-d.pos},b)}, +buildKDTree:function(){function a(c,d,e){var f,g;if(g=c&&c.length)return f=b.kdAxisArray[d%e],c.sort(function(a,b){return a[f]-b[f]}),g=Math.floor(g/2),{point:c[g],left:a(c.slice(0,g),d+1,e),right:a(c.slice(g+1),d+1,e)}}var b=this,c=b.kdDimensions;delete b.kdTree;x(function(){b.kdTree=a(b.getValidPoints(null,!b.directTouch),c,c)},b.options.kdNow?0:1)},searchKDTree:function(a,b){function c(a,b,n,q){var h=b.point,u=d.kdAxisArray[n%q],k,m,x=h;m=t(a[e])&&t(h[e])?Math.pow(a[e]-h[e],2):null;k=t(a[f])&& +t(h[f])?Math.pow(a[f]-h[f],2):null;k=(m||0)+(k||0);h.dist=t(k)?Math.sqrt(k):Number.MAX_VALUE;h.distX=t(m)?Math.sqrt(m):Number.MAX_VALUE;u=a[u]-h[u];k=0>u?"left":"right";m=0>u?"right":"left";b[k]&&(k=c(a,b[k],n+1,q),x=k[g]A;)l--;this.updateParallelArrays(h,"splice",l,0,0);this.updateParallelArrays(h,l);n&&h.name&&(n[A]=h.name);q.splice(l,0,a);m&&(this.data.splice(l,0,null),this.processData());"point"===c.legendType&&this.generatePoints();d&&(f[0]&&f[0].remove?f[0].remove(!1):(f.shift(),this.updateParallelArrays(h,"shift"),q.shift()));this.isDirtyData=this.isDirty=!0;b&&g.redraw(e)},removePoint:function(a, +b,d){var c=this,e=c.data,f=e[a],g=c.points,n=c.chart,h=function(){g&&g.length===e.length&&g.splice(a,1);e.splice(a,1);c.options.data.splice(a,1);c.updateParallelArrays(f||{series:c},"splice",a,1);f&&f.destroy();c.isDirty=!0;c.isDirtyData=!0;b&&n.redraw()};q(d,n);b=C(b,!0);f?f.firePointEvent("remove",null,h):h()},remove:function(a,b,d){function c(){e.destroy();f.isDirtyLegend=f.isDirtyBox=!0;f.linkSeries();C(a,!0)&&f.redraw(b)}var e=this,f=e.chart;!1!==d?k(e,"remove",null,c):c()},update:function(a, +d){var c=this,e=this.chart,f=this.userOptions,g=this.type,q=a.type||f.type||e.options.chart.type,u=b[g].prototype,m=["group","markerGroup","dataLabelsGroup"],k;if(q&&q!==g||void 0!==a.zIndex)m.length=0;r(m,function(a){m[a]=c[a];delete c[a]});a=h(f,{animation:!1,index:this.index,pointStart:this.xData[0]},{data:this.options.data},a);this.remove(!1,null,!1);for(k in u)this[k]=void 0;t(this,b[q||g].prototype);r(m,function(a){c[a]=m[a]});this.init(e,a);e.linkSeries();C(d,!0)&&e.redraw(!1)}});t(G.prototype, +{update:function(a,b){var c=this.chart;a=c.options[this.coll][this.options.index]=h(this.userOptions,a);this.destroy(!0);this.init(c,t(a,{events:void 0}));c.isDirtyBox=!0;C(b,!0)&&c.redraw()},remove:function(a){for(var b=this.chart,c=this.coll,d=this.series,e=d.length;e--;)d[e]&&d[e].remove(!1);w(b.axes,this);w(b[c],this);b.options[c].splice(this.options.index,1);r(b[c],function(a,b){a.options.index=b});this.destroy();b.isDirtyBox=!0;C(a,!0)&&b.redraw()},setTitle:function(a,b){this.update({title:a}, +b)},setCategories:function(a,b){this.update({categories:a},b)}})})(N);(function(a){var D=a.color,B=a.each,G=a.map,H=a.pick,p=a.Series,l=a.seriesType;l("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(){var a=[],l=[],p=this.xAxis,k=this.yAxis,m=k.stacks[this.stackKey],e={},g=this.points,h=this.index,C=k.series,f=C.length,d,b=H(k.options.reversedStacks,!0)?1:-1,q,E;if(this.options.stacking){for(q=0;qa&&t>l?(t=Math.max(a,l),m=2*l-t):tH&& +m>l?(m=Math.max(H,l),t=2*l-m):m=Math.abs(g)&&.5a.closestPointRange*a.xAxis.transA,k=a.borderWidth=r(h.borderWidth,k?0:1),f=a.yAxis,d=a.translatedThreshold=f.getThreshold(h.threshold),b=r(h.minPointLength,5),q=a.getColumnMetrics(),m=q.width,c=a.barW=Math.max(m,1+2*k),l=a.pointXOffset= +q.offset;g.inverted&&(d-=.5);h.pointPadding&&(c=Math.ceil(c));w.prototype.translate.apply(a);G(a.points,function(e){var n=r(e.yBottom,d),q=999+Math.abs(n),q=Math.min(Math.max(-q,e.plotY),f.len+q),h=e.plotX+l,k=c,u=Math.min(q,n),p,t=Math.max(q,n)-u;Math.abs(t)b?n-b:d-(p?b:0));e.barX=h;e.pointWidth=m;e.tooltipPos=g.inverted?[f.len+f.pos-g.plotLeft-q,a.xAxis.len-h-k/2,t]:[h+k/2,q+f.pos-g.plotTop,t];e.shapeType="rect";e.shapeArgs= +a.crispCol.apply(a,e.isNull?[e.plotX,f.len/2,0,0]:[h,u,k,t])})},getSymbol:a.noop,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(a,g){var e=this.options,k=this.pointAttrToOptions||{},f=k.stroke||"borderColor",d=k["stroke-width"]||"borderWidth",b=a&&a.color||this.color,q=a[f]||e[f]||this.color||b,k=e.dashStyle,m;a&&this.zones.length&&(b=(b=a.getZone())&&b.color||a.options.color|| +this.color);g&&(g=e.states[g],m=g.brightness,b=g.color||void 0!==m&&B(b).brighten(g.brightness).get()||b,q=g[f]||q,k=g.dashStyle||k);a={fill:b,stroke:q,"stroke-width":a[d]||e[d]||this[d]||0};e.borderRadius&&(a.r=e.borderRadius);k&&(a.dashstyle=k);return a},drawPoints:function(){var a=this,g=this.chart,h=a.options,m=g.renderer,f=h.animationLimit||250,d;G(a.points,function(b){var e=b.graphic;p(b.plotY)&&null!==b.y?(d=b.shapeArgs,e?(k(e),e[g.pointCountt;++t)k=r[t],a=2>t||2===t&&/%$/.test(k),r[t]=B(k,[l,H,w,r[2]][t])+(a?p:0);r[3]>r[2]&&(r[3]=r[2]);return r}}})(N);(function(a){var D=a.addEvent,B=a.defined,G=a.each,H=a.extend,p=a.inArray,l=a.noop,r=a.pick,w=a.Point,t=a.Series,k=a.seriesType,m=a.setAnimation;k("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{distance:30,enabled:!0,formatter:function(){return null===this.y? +void 0:this.point.name},x:0},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1,shadow:!1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:a.seriesTypes.column.prototype.pointAttribs,animate:function(a){var e=this,h=e.points,k=e.startAngleRad;a||(G(h,function(a){var d= +a.graphic,b=a.shapeArgs;d&&(d.attr({r:a.startR||e.center[3]/2,start:k,end:k}),d.animate({r:b.r,start:b.start,end:b.end},e.options.animation))}),e.animate=null)},updateTotals:function(){var a,g=0,h=this.points,k=h.length,f,d=this.options.ignoreHiddenPoint;for(a=0;af.y&&(f.y=null),g+=d&&!f.visible?0:f.y;this.total=g;for(a=0;a1.5*Math.PI?q-=2*Math.PI:q<-Math.PI/2&&(q+=2*Math.PI);t.slicedTranslation={translateX:Math.round(Math.cos(q)*k),translateY:Math.round(Math.sin(q)*k)};d=Math.cos(q)*a[2]/2;b=Math.sin(q)*a[2]/2;t.tooltipPos=[a[0]+.7*d,a[1]+.7*b];t.half=q<-Math.PI/2||q>Math.PI/2?1:0;t.angle=q;f=Math.min(f,n/5);t.labelPos=[a[0]+d+Math.cos(q)*n,a[1]+b+Math.sin(q)*n,a[0]+d+Math.cos(q)*f,a[1]+b+Math.sin(q)* +f,a[0]+d,a[1]+b,0>n?"center":t.half?"right":"left",q]}},drawGraph:null,drawPoints:function(){var a=this,g=a.chart.renderer,h,k,f,d,b=a.options.shadow;b&&!a.shadowGroup&&(a.shadowGroup=g.g("shadow").add(a.group));G(a.points,function(e){if(null!==e.y){k=e.graphic;d=e.shapeArgs;h=e.sliced?e.slicedTranslation:{};var q=e.shadowGroup;b&&!q&&(q=e.shadowGroup=g.g("shadow").add(a.shadowGroup));q&&q.attr(h);f=a.pointAttribs(e,e.selected&&"select");k?k.setRadialReference(a.center).attr(f).animate(H(d,h)):(e.graphic= +k=g[e.shapeType](d).addClass(e.getClassName()).setRadialReference(a.center).attr(h).add(a.group),e.visible||k.attr({visibility:"hidden"}),k.attr(f).attr({"stroke-linejoin":"round"}).shadow(b,q))}})},searchPoint:l,sortByAngle:function(a,g){a.sort(function(a,e){return void 0!==a.angle&&(e.angle-a.angle)*g})},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,getCenter:a.CenteredSeriesMixin.getCenter,getSymbol:l},{init:function(){w.prototype.init.apply(this,arguments);var a=this,g;a.name=r(a.name,"Slice"); +g=function(e){a.slice("select"===e.type)};D(a,"select",g);D(a,"unselect",g);return a},setVisible:function(a,g){var e=this,k=e.series,f=k.chart,d=k.options.ignoreHiddenPoint;g=r(g,d);a!==e.visible&&(e.visible=e.options.visible=a=void 0===a?!e.visible:a,k.options.data[p(e,k.data)]=e.options,G(["graphic","dataLabel","connector","shadowGroup"],function(b){if(e[b])e[b][a?"show":"hide"](!0)}),e.legendItem&&f.legend.colorizeItem(e,a),a||"hover"!==e.state||e.setState(""),d&&(k.isDirty=!0),g&&f.redraw())}, +slice:function(a,g,h){var e=this.series;m(h,e.chart);r(g,!0);this.sliced=this.options.sliced=a=B(a)?a:!this.sliced;e.options.data[p(this,e.data)]=this.options;a=a?this.slicedTranslation:{translateX:0,translateY:0};this.graphic.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)},haloPath:function(a){var e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+a,e.r+a,{innerR:this.shapeArgs.r,start:e.start,end:e.end})}})})(N);(function(a){var D= +a.addEvent,B=a.arrayMax,G=a.defined,H=a.each,p=a.extend,l=a.format,r=a.map,w=a.merge,t=a.noop,k=a.pick,m=a.relativeLength,e=a.Series,g=a.seriesTypes,h=a.stableSort,C=a.stop;a.distribute=function(a,d){function b(a,b){return a.target-b.target}var e,f=!0,c=a,g=[],n;n=0;for(e=a.length;e--;)n+=a[e].size;if(n>d){h(a,function(a,b){return(b.rank||0)-(a.rank||0)});for(n=e=0;n<=d;)n+=a[e].size,e++;g=a.splice(e-1,a.length)}h(a,b);for(a=r(a,function(a){return{size:a.size,targets:[a.target]}});f;){for(e=a.length;e--;)f= +a[e],n=(Math.min.apply(0,f.targets)+Math.max.apply(0,f.targets))/2,f.pos=Math.min(Math.max(0,n-f.size/2),d-f.size);e=a.length;for(f=!1;e--;)0a[e].pos&&(a[e-1].size+=a[e].size,a[e-1].targets=a[e-1].targets.concat(a[e].targets),a[e-1].pos+a[e-1].size>d&&(a[e-1].pos=d-a[e-1].size),a.splice(e,1),f=!0)}e=0;H(a,function(a){var b=0;H(a.targets,function(){c[e].pos=a.pos+b;b+=c[e].size;e++})});c.push.apply(c,g);h(c,b)};e.prototype.drawDataLabels=function(){var a=this,d=a.options, +b=d.dataLabels,e=a.points,g,c,h=a.hasRendered||0,n,m,x=k(b.defer,!0),r=a.chart.renderer;if(b.enabled||a._hasPointLabels)a.dlProcessOptions&&a.dlProcessOptions(b),m=a.plotGroup("dataLabelsGroup","data-labels",x&&!h?"hidden":"visible",b.zIndex||6),x&&(m.attr({opacity:+h}),h||D(a,"afterAnimate",function(){a.visible&&m.show(!0);m[d.animation?"animate":"attr"]({opacity:1},{duration:200})})),c=b,H(e,function(e){var f,q=e.dataLabel,h,x,A=e.connector,y=!0,t,z={};g=e.dlOptions||e.options&&e.options.dataLabels; +f=k(g&&g.enabled,c.enabled)&&null!==e.y;if(q&&!f)e.dataLabel=q.destroy();else if(f){b=w(c,g);t=b.style;f=b.rotation;h=e.getLabelConfig();n=b.format?l(b.format,h):b.formatter.call(h,b);t.color=k(b.color,t.color,a.color,"#000000");if(q)G(n)?(q.attr({text:n}),y=!1):(e.dataLabel=q=q.destroy(),A&&(e.connector=A.destroy()));else if(G(n)){q={fill:b.backgroundColor,stroke:b.borderColor,"stroke-width":b.borderWidth,r:b.borderRadius||0,rotation:f,padding:b.padding,zIndex:1};"contrast"===t.color&&(z.color=b.inside|| +0>b.distance||d.stacking?r.getContrast(e.color||a.color):"#000000");d.cursor&&(z.cursor=d.cursor);for(x in q)void 0===q[x]&&delete q[x];q=e.dataLabel=r[f?"text":"label"](n,0,-9999,b.shape,null,null,b.useHTML,null,"data-label").attr(q);q.addClass("highcharts-data-label-color-"+e.colorIndex+" "+(b.className||""));q.css(p(t,z));q.add(m);q.shadow(b.shadow)}q&&a.alignDataLabel(e,q,b,null,y)}})};e.prototype.alignDataLabel=function(a,d,b,e,g){var c=this.chart,f=c.inverted,n=k(a.plotX,-9999),q=k(a.plotY, +-9999),h=d.getBBox(),m,l=b.rotation,u=b.align,r=this.visible&&(a.series.forceDL||c.isInsidePlot(n,Math.round(q),f)||e&&c.isInsidePlot(n,f?e.x+1:e.y+e.height-1,f)),t="justify"===k(b.overflow,"justify");r&&(m=b.style.fontSize,m=c.renderer.fontMetrics(m,d).b,e=p({x:f?c.plotWidth-q:n,y:Math.round(f?c.plotHeight-n:q),width:0,height:0},e),p(b,{width:h.width,height:h.height}),l?(t=!1,f=c.renderer.rotCorr(m,l),f={x:e.x+b.x+e.width/2+f.x,y:e.y+b.y+{top:0,middle:.5,bottom:1}[b.verticalAlign]*e.height},d[g? +"attr":"animate"](f).attr({align:u}),n=(l+720)%360,n=180n,"left"===u?f.y-=n?h.height:0:"center"===u?(f.x-=h.width/2,f.y-=h.height/2):"right"===u&&(f.x-=h.width,f.y-=n?0:h.height)):(d.align(b,null,e),f=d.alignAttr),t?this.justifyDataLabel(d,b,f,h,e,g):k(b.crop,!0)&&(r=c.isInsidePlot(f.x,f.y)&&c.isInsidePlot(f.x+h.width,f.y+h.height)),b.shape&&!l&&d.attr({anchorX:a.plotX,anchorY:a.plotY}));r||(C(d),d.attr({y:-9999}),d.placed=!1)};e.prototype.justifyDataLabel=function(a,d,b,e,g,c){var f=this.chart, +n=d.align,h=d.verticalAlign,q,k,m=a.box?0:a.padding||0;q=b.x+m;0>q&&("right"===n?d.align="left":d.x=-q,k=!0);q=b.x+e.width-m;q>f.plotWidth&&("left"===n?d.align="right":d.x=f.plotWidth-q,k=!0);q=b.y+m;0>q&&("bottom"===h?d.verticalAlign="top":d.y=-q,k=!0);q=b.y+e.height-m;q>f.plotHeight&&("top"===h?d.verticalAlign="bottom":d.y=f.plotHeight-q,k=!0);k&&(a.placed=!c,a.align(d,null,g))};g.pie&&(g.pie.prototype.drawDataLabels=function(){var f=this,d=f.data,b,g=f.chart,h=f.options.dataLabels,c=k(h.connectorPadding, +10),m=k(h.connectorWidth,1),n=g.plotWidth,l=g.plotHeight,x,p=h.distance,y=f.center,u=y[2]/2,t=y[1],w=0k-2?A:P,e),v._attr={visibility:S,align:D[6]},v._pos={x:L+h.x+({left:c,right:-c}[D[6]]||0),y:P+h.y-10},D.x=L,D.y=P,null===f.options.size&&(C=v.width,L-Cn-c&&(T[1]=Math.max(Math.round(L+ +C-n+c),T[1])),0>P-G/2?T[0]=Math.max(Math.round(-P+G/2),T[0]):P+G/2>l&&(T[2]=Math.max(Math.round(P+G/2-l),T[2])))}),0===B(T)||this.verifyDataLabelOverflow(T))&&(this.placeDataLabels(),w&&m&&H(this.points,function(a){var b;x=a.connector;if((v=a.dataLabel)&&v._pos&&a.visible){S=v._attr.visibility;if(b=!x)a.connector=x=g.renderer.path().addClass("highcharts-data-label-connector highcharts-color-"+a.colorIndex).add(f.dataLabelsGroup),x.attr({"stroke-width":m,stroke:h.connectorColor||a.color||"#666666"}); +x[b?"attr":"animate"]({d:f.connectorPath(a.labelPos)});x.attr("visibility",S)}else x&&(a.connector=x.destroy())}))},g.pie.prototype.connectorPath=function(a){var d=a.x,b=a.y;return k(this.options.dataLabels.softConnector,!0)?["M",d+("left"===a[6]?5:-5),b,"C",d,b,2*a[2]-a[4],2*a[3]-a[5],a[2],a[3],"L",a[4],a[5]]:["M",d+("left"===a[6]?5:-5),b,"L",a[2],a[3],"L",a[4],a[5]]},g.pie.prototype.placeDataLabels=function(){H(this.points,function(a){var d=a.dataLabel;d&&a.visible&&((a=d._pos)?(d.attr(d._attr), +d[d.moved?"animate":"attr"](a),d.moved=!0):d&&d.attr({y:-9999}))})},g.pie.prototype.alignDataLabel=t,g.pie.prototype.verifyDataLabelOverflow=function(a){var d=this.center,b=this.options,e=b.center,f=b.minSize||80,c,g;null!==e[0]?c=Math.max(d[2]-Math.max(a[1],a[3]),f):(c=Math.max(d[2]-a[1]-a[3],f),d[0]+=(a[3]-a[1])/2);null!==e[1]?c=Math.max(Math.min(c,d[2]-Math.max(a[0],a[2])),f):(c=Math.max(Math.min(c,d[2]-a[0]-a[2]),f),d[1]+=(a[0]-a[2])/2);ck(this.translatedThreshold,f.yAxis.len)),m=k(b.inside,!!this.options.stacking);n&&(g=w(n),0>g.y&&(g.height+=g.y,g.y=0),n=g.y+g.height-f.yAxis.len,0a+e||c+nb+f||g+hthis.pointCount))},pan:function(a,b){var c=this,d=c.hoverPoints, +e;d&&r(d,function(a){a.setState()});r("xy"===b?[1,0]:[1],function(b){b=c[b?"xAxis":"yAxis"][0];var d=b.horiz,f=a[d?"chartX":"chartY"],d=d?"mouseDownX":"mouseDownY",g=c[d],n=(b.pointRange||0)/2,h=b.getExtremes(),q=b.toValue(g-f,!0)+n,n=b.toValue(g+b.len-f,!0)-n,g=g>f;b.series.length&&(g||q>Math.min(h.dataMin,h.min))&&(!g||n=p(k.minWidth,0)&&this.chartHeight>=p(k.minHeight,0)};void 0===l._id&&(l._id=a.uniqueKey());m=m.call(this);!r[l._id]&&m?l.chartOptions&&(r[l._id]=this.currentOptions(l.chartOptions),this.update(l.chartOptions,w)):r[l._id]&&!m&&(this.update(r[l._id],w),delete r[l._id])};D.prototype.currentOptions=function(a){function p(a,m,e){var g,h;for(g in a)if(-1< +G(g,["series","xAxis","yAxis"]))for(a[g]=l(a[g]),e[g]=[],h=0;hd.length||void 0===h)return a.call(this,g,h,k,f);x=d.length;for(c=0;ck;d[c]5*b||w){if(d[c]>u){for(r=a.call(this,g,d[e],d[c],f);r.length&&r[0]<=u;)r.shift();r.length&&(u=r[r.length-1]);y=y.concat(r)}e=c+1}if(w)break}a= +r.info;if(q&&a.unitRange<=m.hour){c=y.length-1;for(e=1;ek?a-1:a;for(M=void 0;q--;)e=c[q],k=M-e,M&&k<.8*C&&(null===t||k<.8*t)?(n[y[q]]&&!n[y[q+1]]?(k=q+1,M=e):k=q,y.splice(k,1)):M=e}return y});w(B.prototype,{beforeSetTickPositions:function(){var a, +g=[],h=!1,k,f=this.getExtremes(),d=f.min,b=f.max,q,m=this.isXAxis&&!!this.options.breaks,f=this.options.ordinal,c=this.chart.options.chart.ignoreHiddenSeries;if(f||m){r(this.series,function(b,d){if(!(c&&!1===b.visible||!1===b.takeOrdinalPosition&&!m)&&(g=g.concat(b.processedXData),a=g.length,g.sort(function(a,b){return a-b}),a))for(d=a-1;d--;)g[d]===g[d+1]&&g.splice(d,1)});a=g.length;if(2k||b-g[g.length- +1]>k)&&(h=!0)}h?(this.ordinalPositions=g,k=this.val2lin(Math.max(d,g[0]),!0),q=Math.max(this.val2lin(Math.min(b,g[g.length-1]),!0),1),this.ordinalSlope=b=(b-d)/(q-k),this.ordinalOffset=d-k*b):this.ordinalPositions=this.ordinalSlope=this.ordinalOffset=void 0}this.isOrdinal=f&&h;this.groupIntervalFactor=null},val2lin:function(a,g){var e=this.ordinalPositions;if(e){var k=e.length,f,d;for(f=k;f--;)if(e[f]===a){d=f;break}for(f=k-1;f--;)if(a>e[f]||0===f){a=(a-e[f])/(e[f+1]-e[f]);d=f+a;break}g=g?d:this.ordinalSlope* +(d||0)+this.ordinalOffset}else g=a;return g},lin2val:function(a,g){var e=this.ordinalPositions;if(e){var k=this.ordinalSlope,f=this.ordinalOffset,d=e.length-1,b;if(g)0>a?a=e[0]:a>d?a=e[d]:(d=Math.floor(a),b=a-d);else for(;d--;)if(g=k*d+f,a>=g){k=k*(d+1)+f;b=(a-g)/(k-g);break}return void 0!==b&&void 0!==e[d]?e[d]+(b?b*(e[d+1]-e[d]):0):a}return a},getExtendedPositions:function(){var a=this.chart,g=this.series[0].currentDataGrouping,h=this.ordinalIndex,k=g?g.count+g.unitName:"raw",f=this.getExtremes(), +d,b;h||(h=this.ordinalIndex={});h[k]||(d={series:[],chart:a,getExtremes:function(){return{min:f.dataMin,max:f.dataMax}},options:{ordinal:!0},val2lin:B.prototype.val2lin},r(this.series,function(e){b={xAxis:d,xData:e.xData,chart:a,destroyGroupedData:t};b.options={dataGrouping:g?{enabled:!0,forced:!0,approximation:"open",units:[[g.unitName,[g.count]]]}:{enabled:!1}};e.processData.apply(b);d.series.push(b)}),this.beforeSetTickPositions.apply(d),h[k]=d.ordinalPositions);return h[k]},getGroupIntervalFactor:function(a, +g,h){var e;h=h.processedXData;var f=h.length,d=[];e=this.groupIntervalFactor;if(!e){for(e=0;ed?(l=p,t=e.ordinalPositions?e:p):(l=e.ordinalPositions?e:p,t=p),p=t.ordinalPositions,q>p[p.length-1]&&p.push(q),this.fixedRange=c-m,d=e.toFixedRange(null,null,n.apply(l,[x.apply(l,[m,!0])+d,!0]),n.apply(t,[x.apply(t, +[c,!0])+d,!0])),d.min>=Math.min(b.dataMin,m)&&d.max<=Math.max(q,c)&&e.setExtremes(d.min,d.max,!0,!1,{trigger:"pan"}),this.mouseDownX=k,H(this.container,{cursor:"move"})):f=!0}else f=!0;f&&a.apply(this,Array.prototype.slice.call(arguments,1))});k.prototype.gappedPath=function(){var a=this.options.gapSize,g=this.points.slice(),h=g.length-1;if(a&&0this.closestPointRange*a&&g.splice(h+1,0,{isNull:!0});return this.getGraphPath(g)}})(N);(function(a){function D(){return Array.prototype.slice.call(arguments, +1)}function B(a){a.apply(this);this.drawBreaks(this.xAxis,["x"]);this.drawBreaks(this.yAxis,G(this.pointArrayMap,["y"]))}var G=a.pick,H=a.wrap,p=a.each,l=a.extend,r=a.fireEvent,w=a.Axis,t=a.Series;l(w.prototype,{isInBreak:function(a,m){var e=a.repeat||Infinity,g=a.from,h=a.to-a.from;m=m>=g?(m-g)%e:e-(g-m)%e;return a.inclusive?m<=h:m=a)break;else if(g.isInBreak(f,a)){e-=a-f.from;break}return e};this.lin2val=function(a){var e,f;for(f=0;f=a);f++)e.toh;)m-=b;for(;mb.to||l>b.from&&db.from&&db.from&&d>b.to&&d=c[0]);A++);for(A;A<=q;A++){for(;(void 0!==c[w+1]&&a[A]>=c[w+1]||A===q)&&(l=c[w],this.dataGroupInfo={start:p,length:t[0].length},p=d.apply(this,t),void 0!==p&&(g.push(l),h.push(p),m.push(this.dataGroupInfo)),p=A,t[0]=[],t[1]=[],t[2]=[],t[3]=[],w+=1,A!==q););if(A===q)break;if(x){l=this.cropStart+A;l=e&&e[l]|| +this.pointClass.prototype.applyOptions.apply({series:this},[f[l]]);var E,C;for(E=0;Ethis.chart.plotSizeX/d||b&&f.forced)&&(e=!0);return e?d:0};G.prototype.setDataGrouping=function(a,b){var c;b=e(b,!0);a||(a={forced:!1,units:null});if(this instanceof G)for(c=this.series.length;c--;)this.series[c].update({dataGrouping:a},!1);else l(this.chart.options.series,function(b){b.dataGrouping=a},!1);b&&this.chart.redraw()}})(N);(function(a){var D=a.each,B=a.Point,G=a.seriesType,H=a.seriesTypes;G("ohlc","column",{lineWidth:1,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eOpen: {point.open}\x3cbr/\x3eHigh: {point.high}\x3cbr/\x3eLow: {point.low}\x3cbr/\x3eClose: {point.close}\x3cbr/\x3e'}, +threshold:null,states:{hover:{lineWidth:3}}},{pointArrayMap:["open","high","low","close"],toYData:function(a){return[a.open,a.high,a.low,a.close]},pointValKey:"high",pointAttribs:function(a,l){l=H.column.prototype.pointAttribs.call(this,a,l);var p=this.options;delete l.fill;l["stroke-width"]=p.lineWidth;l.stroke=a.options.color||(a.openk)););B(g,function(a,b){var d;void 0===a.plotY&&(a.x>=c.min&&a.x<=c.max?a.plotY=e.chartHeight-p.bottom-(p.opposite?p.height:0)+p.offset-e.plotTop:a.shapeArgs={});a.plotX+=t;(f=g[b-1])&&f.plotX===a.plotX&&(void 0===f.stackIndex&&(f.stackIndex=0),d=f.stackIndex+1);a.stackIndex=d})},drawPoints:function(){var a=this.points,e=this.chart,g=e.renderer,k,l,f=this.options,d=f.y,b,q,p,c,r,n,t,x=this.yAxis;for(q=a.length;q--;)p=a[q],t=p.plotX>this.xAxis.len,k=p.plotX,c=p.stackIndex,b= +p.options.shape||f.shape,l=p.plotY,void 0!==l&&(l=p.plotY+d-(void 0!==c&&c*f.stackDistance)),r=c?void 0:p.plotX,n=c?void 0:p.plotY,c=p.graphic,void 0!==l&&0<=k&&!t?(c||(c=p.graphic=g.label("",null,null,b,null,null,f.useHTML).attr(this.pointAttribs(p)).css(G(f.style,p.style)).attr({align:"flag"===b?"left":"center",width:f.width,height:f.height,"text-align":f.textAlign}).addClass("highcharts-point").add(this.markerGroup),c.shadow(f.shadow)),0h&&(e-=Math.round((l-h)/2),h=l);e=k[a](e,g,h,l);d&&f&&e.push("M",d,g>f?g:g+l,"L",d,f);return e}});p===t&&B(["flag","circlepin","squarepin"],function(a){t.prototype.symbols[a]=k[a]})})(N);(function(a){function D(a,d,e){this.init(a,d,e)}var B=a.addEvent,G=a.Axis,H=a.correctFloat,p=a.defaultOptions, +l=a.defined,r=a.destroyObjectProperties,w=a.doc,t=a.each,k=a.fireEvent,m=a.hasTouch,e=a.isTouchDevice,g=a.merge,h=a.pick,C=a.removeEvent,f=a.wrap,d={height:e?20:14,barBorderRadius:0,buttonBorderRadius:0,liveRedraw:a.svg&&!e,margin:10,minWidth:6,step:.2,zIndex:3,barBackgroundColor:"#cccccc",barBorderWidth:1,barBorderColor:"#cccccc",buttonArrowColor:"#333333",buttonBackgroundColor:"#e6e6e6",buttonBorderColor:"#cccccc",buttonBorderWidth:1,rifleColor:"#333333",trackBackgroundColor:"#f2f2f2",trackBorderColor:"#f2f2f2", +trackBorderWidth:1};p.scrollbar=g(!0,d,p.scrollbar);D.prototype={init:function(a,e,f){this.scrollbarButtons=[];this.renderer=a;this.userOptions=e;this.options=g(d,e);this.chart=f;this.size=h(this.options.size,this.options.height);e.enabled&&(this.render(),this.initEvents(),this.addEvents())},render:function(){var a=this.renderer,d=this.options,e=this.size,c;this.group=c=a.g("scrollbar").attr({zIndex:d.zIndex,translateY:-99999}).add();this.track=a.rect().addClass("highcharts-scrollbar-track").attr({x:0, +r:d.trackBorderRadius||0,height:e,width:e}).add(c);this.track.attr({fill:d.trackBackgroundColor,stroke:d.trackBorderColor,"stroke-width":d.trackBorderWidth});this.trackBorderWidth=this.track.strokeWidth();this.track.attr({y:-this.trackBorderWidth%2/2});this.scrollbarGroup=a.g().add(c);this.scrollbar=a.rect().addClass("highcharts-scrollbar-thumb").attr({height:e,width:e,r:d.barBorderRadius||0}).add(this.scrollbarGroup);this.scrollbarRifles=a.path(this.swapXY(["M",-3,e/4,"L",-3,2*e/3,"M",0,e/4,"L", +0,2*e/3,"M",3,e/4,"L",3,2*e/3],d.vertical)).addClass("highcharts-scrollbar-rifles").add(this.scrollbarGroup);this.scrollbar.attr({fill:d.barBackgroundColor,stroke:d.barBorderColor,"stroke-width":d.barBorderWidth});this.scrollbarRifles.attr({stroke:d.rifleColor,"stroke-width":1});this.scrollbarStrokeWidth=this.scrollbar.strokeWidth();this.scrollbarGroup.translate(-this.scrollbarStrokeWidth%2/2,-this.scrollbarStrokeWidth%2/2);this.drawScrollbarButton(0);this.drawScrollbarButton(1)},position:function(a, +d,e,c){var b=this.options.vertical,f=0,g=this.rendered?"animate":"attr";this.x=a;this.y=d+this.trackBorderWidth;this.width=e;this.xOffset=this.height=c;this.yOffset=f;b?(this.width=this.yOffset=e=f=this.size,this.xOffset=d=0,this.barWidth=c-2*e,this.x=a+=this.options.margin):(this.height=this.xOffset=c=d=this.size,this.barWidth=e-2*c,this.y+=this.options.margin);this.group[g]({translateX:a,translateY:this.y});this.track[g]({width:e,height:c});this.scrollbarButtons[1].attr({translateX:b?0:e-d,translateY:b? +c-f:0})},drawScrollbarButton:function(a){var b=this.renderer,d=this.scrollbarButtons,c=this.options,e=this.size,f;f=b.g().add(this.group);d.push(f);f=b.rect().addClass("highcharts-scrollbar-button").add(f);f.attr({stroke:c.buttonBorderColor,"stroke-width":c.buttonBorderWidth,fill:c.buttonBackgroundColor});f.attr(f.crisp({x:-.5,y:-.5,width:e+1,height:e+1,r:c.buttonBorderRadius},f.strokeWidth()));f=b.path(this.swapXY(["M",e/2+(a?-1:1),e/2-3,"L",e/2+(a?-1:1),e/2+3,"L",e/2+(a?2:-2),e/2],c.vertical)).addClass("highcharts-scrollbar-arrow").add(d[a]); +f.attr({fill:c.buttonArrowColor})},swapXY:function(a,d){var b=a.length,c;if(d)for(d=0;d=k?this.scrollbarRifles.hide():this.scrollbarRifles.show(!0),!1===b.showFull&&(0>=a&&1<=d?this.group.hide():this.group.show()),this.rendered=!0)},initEvents:function(){var a=this;a.mouseMoveHandler=function(b){var d=a.chart.pointer.normalize(b),c=a.options.vertical? +"chartY":"chartX",e=a.initPositions;!a.grabbedCenter||b.touches&&0===b.touches[0][c]||(d=a.cursorToScrollbarPosition(d)[c],c=a[c],c=d-c,a.hasDragged=!0,a.updatePosition(e[0]+c,e[1]+c),a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b}))};a.mouseUpHandler=function(b){a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b});a.grabbedCenter=a.hasDragged=a.chartX=a.chartY=null};a.mouseDownHandler=function(b){b=a.chart.pointer.normalize(b); +b=a.cursorToScrollbarPosition(b);a.chartX=b.chartX;a.chartY=b.chartY;a.initPositions=[a.from,a.to];a.grabbedCenter=!0};a.buttonToMinClick=function(b){var d=H(a.to-a.from)*a.options.step;a.updatePosition(H(a.from-d),H(a.to-d));k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.buttonToMaxClick=function(b){var d=(a.to-a.from)*a.options.step;a.updatePosition(a.from+d,a.to+d);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.trackClick=function(b){var d=a.chart.pointer.normalize(b), +c=a.to-a.from,e=a.y+a.scrollbarTop,f=a.x+a.scrollbarLeft;a.options.vertical&&d.chartY>e||!a.options.vertical&&d.chartX>f?a.updatePosition(a.from+c,a.to+c):a.updatePosition(a.from-c,a.to-c);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})}},cursorToScrollbarPosition:function(a){var b=this.options,b=b.minWidth>this.calculatedWidth?b.minWidth:0;return{chartX:(a.chartX-this.x-this.xOffset)/(this.barWidth-b),chartY:(a.chartY-this.y-this.yOffset)/(this.barWidth-b)}},updatePosition:function(a, +d){1a&&(d=H(d-a),a=0);this.from=a;this.to=d},update:function(a){this.destroy();this.init(this.chart.renderer,g(!0,this.options,a),this.chart)},addEvents:function(){var a=this.options.inverted?[1,0]:[0,1],d=this.scrollbarButtons,e=this.scrollbarGroup.element,c=this.mouseDownHandler,f=this.mouseMoveHandler,g=this.mouseUpHandler,a=[[d[a[0]].element,"click",this.buttonToMinClick],[d[a[1]].element,"click",this.buttonToMaxClick],[this.track.element,"click",this.trackClick],[e, +"mousedown",c],[w,"mousemove",f],[w,"mouseup",g]];m&&a.push([e,"touchstart",c],[w,"touchmove",f],[w,"touchend",g]);t(a,function(a){B.apply(null,a)});this._events=a},removeEvents:function(){t(this._events,function(a){C.apply(null,a)});this._events=void 0},destroy:function(){var a=this.chart.scroller;this.removeEvents();t(["track","scrollbarRifles","scrollbar","scrollbarGroup","group"],function(a){this[a]&&this[a].destroy&&(this[a]=this[a].destroy())},this);a&&(a.scrollbar=null,r(a.scrollbarButtons))}}; +f(G.prototype,"init",function(a){var b=this;a.apply(b,[].slice.call(arguments,1));b.options.scrollbar&&b.options.scrollbar.enabled&&(b.options.scrollbar.vertical=!b.horiz,b.options.startOnTick=b.options.endOnTick=!1,b.scrollbar=new D(b.chart.renderer,b.options.scrollbar,b.chart),B(b.scrollbar,"changed",function(a){var c=Math.min(h(b.options.min,b.min),b.min,b.dataMin),d=Math.max(h(b.options.max,b.max),b.max,b.dataMax)-c,e;b.horiz&&!b.reversed||!b.horiz&&b.reversed?(e=c+d*this.to,c+=d*this.from):(e= +c+d*(1-this.from),c+=d*(1-this.to));b.setExtremes(c,e,!0,!1,a)}))});f(G.prototype,"render",function(a){var b=Math.min(h(this.options.min,this.min),this.min,this.dataMin),d=Math.max(h(this.options.max,this.max),this.max,this.dataMax),c=this.scrollbar,e;a.apply(this,[].slice.call(arguments,1));c&&(this.horiz?c.position(this.left,this.top+this.height+this.offset+2+(this.opposite?0:this.axisTitleMargin),this.width,this.height):c.position(this.left+this.width+2+this.offset+(this.opposite?this.axisTitleMargin: +0),this.top,this.width,this.height),isNaN(b)||isNaN(d)||!l(this.min)||!l(this.max)?c.setRange(0,0):(e=(this.min-b)/(d-b),b=(this.max-b)/(d-b),this.horiz&&!this.reversed||!this.horiz&&this.reversed?c.setRange(e,b):c.setRange(1-b,1-e)))});f(G.prototype,"getOffset",function(a){var b=this.horiz?2:1,d=this.scrollbar;a.apply(this,[].slice.call(arguments,1));d&&(this.chart.axisOffset[b]+=d.size+d.options.margin)});f(G.prototype,"destroy",function(a){this.scrollbar&&(this.scrollbar=this.scrollbar.destroy()); +a.apply(this,[].slice.call(arguments,1))});a.Scrollbar=D})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.color,l=a.defaultOptions,r=a.defined,w=a.destroyObjectProperties,t=a.doc,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.grep,C=a.hasTouch,f=a.isNumber,d=a.isObject,b=a.isTouchDevice,q=a.merge,E=a.pick,c=a.removeEvent,F=a.Scrollbar,n=a.Series,A=a.seriesTypes,x=a.wrap,J=[].concat(a.defaultDataGroupingUnits),y=function(a){var b=h(arguments,f);if(b.length)return Math[a].apply(0, +b)};J[4]=["day",[1,2,3,4]];J[5]=["week",[1,2,3]];A=void 0===A.areaspline?"line":"areaspline";g(l,{navigator:{height:40,margin:25,maskInside:!0,handles:{backgroundColor:"#f2f2f2",borderColor:"#999999"},maskFill:p("#6685c2").setOpacity(.3).get(),outlineColor:"#cccccc",outlineWidth:1,series:{type:A,color:"#335cad",fillOpacity:.05,lineWidth:1,compare:null,dataGrouping:{approximation:"average",enabled:!0,groupPixelWidth:2,smoothed:!0,units:J},dataLabels:{enabled:!1,zIndex:2},id:"highcharts-navigator-series", +className:"highcharts-navigator-series",lineColor:null,marker:{enabled:!1},pointRange:0,shadow:!1,threshold:null},xAxis:{className:"highcharts-navigator-xaxis",tickLength:0,lineWidth:0,gridLineColor:"#e6e6e6",gridLineWidth:1,tickPixelInterval:200,labels:{align:"left",style:{color:"#999999"},x:3,y:-4},crosshair:!1},yAxis:{className:"highcharts-navigator-yaxis",gridLineWidth:0,startOnTick:!1,endOnTick:!1,minPadding:.1,maxPadding:.1,labels:{enabled:!1},crosshair:!1,title:{text:null},tickLength:0,tickWidth:0}}}); +D.prototype={drawHandle:function(a,b){var c=this.chart.renderer,d=this.handles;this.rendered||(d[b]=c.path(["M",-4.5,.5,"L",3.5,.5,3.5,15.5,-4.5,15.5,-4.5,.5,"M",-1.5,4,"L",-1.5,12,"M",.5,4,"L",.5,12]).attr({zIndex:10-b}).addClass("highcharts-navigator-handle highcharts-navigator-handle-"+["left","right"][b]).add(),c=this.navigatorOptions.handles,d[b].attr({fill:c.backgroundColor,stroke:c.borderColor,"stroke-width":1}).css({cursor:"ew-resize"}));d[b][this.rendered&&!this.hasDragged?"animate":"attr"]({translateX:Math.round(this.scrollerLeft+ +this.scrollbarHeight+parseInt(a,10)),translateY:Math.round(this.top+this.height/2-8)})},update:function(a){this.destroy();q(!0,this.chart.options.navigator,this.options,a);this.init(this.chart)},render:function(a,b,c,d){var e=this.chart,g=e.renderer,k,h,l,n;n=this.scrollbarHeight;var m=this.xAxis,p=this.navigatorOptions,u=p.maskInside,q=this.height,v=this.top,t=this.navigatorEnabled,x=this.outlineHeight,y;y=this.rendered;if(f(a)&&f(b)&&(!this.hasDragged||r(c))&&(this.navigatorLeft=k=E(m.left,e.plotLeft+ +n),this.navigatorWidth=h=E(m.len,e.plotWidth-2*n),this.scrollerLeft=l=k-n,this.scrollerWidth=n=n=h+2*n,c=E(c,m.translate(a)),d=E(d,m.translate(b)),f(c)&&Infinity!==Math.abs(c)||(c=0,d=n),!(m.translate(d,!0)-m.translate(c,!0)f&&tp+d-u&&rk&&re?e=0:e+v>=q&&(e=q-v,x=h.getUnionExtremes().dataMax),e!==d&&(h.fixedWidth=v,d=l.toFixedRange(e, +e+v,null,x),c.setExtremes(d.min,d.max,!0,null,{trigger:"navigator"}))))};h.mouseMoveHandler=function(b){var c=h.scrollbarHeight,d=h.navigatorLeft,e=h.navigatorWidth,f=h.scrollerLeft,g=h.scrollerWidth,k=h.range,l;b.touches&&0===b.touches[0].pageX||(b=a.pointer.normalize(b),l=b.chartX,lf+g-c&&(l=f+g-c),h.grabbedLeft?(h.hasDragged=!0,h.render(0,0,l-d,h.otherHandlePos)):h.grabbedRight?(h.hasDragged=!0,h.render(0,0,h.otherHandlePos,l-d)):h.grabbedCenter&&(h.hasDragged=!0,le+n-k&&(l=e+ +n-k),h.render(0,0,l-n,l-n+k)),h.hasDragged&&h.scrollbar&&h.scrollbar.options.liveRedraw&&(b.DOMType=b.type,setTimeout(function(){h.mouseUpHandler(b)},0)))};h.mouseUpHandler=function(b){var c,d,e=b.DOMEvent||b;if(h.hasDragged||"scrollbar"===b.trigger)h.zoomedMin===h.otherHandlePos?c=h.fixedExtreme:h.zoomedMax===h.otherHandlePos&&(d=h.fixedExtreme),h.zoomedMax===h.navigatorWidth&&(d=h.getUnionExtremes().dataMax),c=l.toFixedRange(h.zoomedMin,h.zoomedMax,c,d),r(c.min)&&a.xAxis[0].setExtremes(c.min,c.max, +!0,h.hasDragged?!1:null,{trigger:"navigator",triggerOp:"navigator-drag",DOMEvent:e});"mousemove"!==b.DOMType&&(h.grabbedLeft=h.grabbedRight=h.grabbedCenter=h.fixedWidth=h.fixedExtreme=h.otherHandlePos=h.hasDragged=n=null)};var c=a.xAxis.length,f=a.yAxis.length,m=e&&e[0]&&e[0].xAxis||a.xAxis[0];a.extraBottomMargin=h.outlineHeight+d.margin;a.isDirtyBox=!0;h.navigatorEnabled?(h.xAxis=l=new G(a,q({breaks:m.options.breaks,ordinal:m.options.ordinal},d.xAxis,{id:"navigator-x-axis",yAxis:"navigator-y-axis", +isX:!0,type:"datetime",index:c,height:g,offset:0,offsetLeft:k,offsetRight:-k,keepOrdinalPadding:!0,startOnTick:!1,endOnTick:!1,minPadding:0,maxPadding:0,zoomEnabled:!1})),h.yAxis=new G(a,q(d.yAxis,{id:"navigator-y-axis",alignTicks:!1,height:g,offset:0,index:f,zoomEnabled:!1})),e||d.series.data?h.addBaseSeries():0===a.series.length&&x(a,"redraw",function(b,c){0=Math.round(a.navigatorWidth);b&&!a.hasNavigatorData&&(b.options.pointStart=this.xData[0],b.setData(this.options.data,!1,null,!1))},destroy:function(){this.removeEvents();this.xAxis&&(m(this.chart.xAxis,this.xAxis),m(this.chart.axes,this.xAxis));this.yAxis&&(m(this.chart.yAxis,this.yAxis),m(this.chart.axes,this.yAxis));k(this.series||[],function(a){a.destroy&&a.destroy()});k("series xAxis yAxis leftShade rightShade outline scrollbarTrack scrollbarRifles scrollbarGroup scrollbar navigatorGroup rendered".split(" "), +function(a){this[a]&&this[a].destroy&&this[a].destroy();this[a]=null},this);k([this.handles,this.elementsToDestroy],function(a){w(a)},this)}};a.Navigator=D;x(G.prototype,"zoom",function(a,b,c){var d=this.chart,e=d.options,f=e.chart.zoomType,g=e.navigator,e=e.rangeSelector,h;this.isXAxis&&(g&&g.enabled||e&&e.enabled)&&("x"===f?d.resetZoomButton="blocked":"y"===f?h=!1:"xy"===f&&(d=this.previousZoom,r(b)?this.previousZoom=[this.min,this.max]:d&&(b=d[0],c=d[1],delete this.previousZoom)));return void 0!== +h?h:a.call(this,b,c)});x(H.prototype,"init",function(a,b,c){B(this,"beforeRender",function(){var a=this.options;if(a.navigator.enabled||a.scrollbar.enabled)this.scroller=this.navigator=new D(this)});a.call(this,b,c)});x(H.prototype,"getMargins",function(a){var b=this.legend,c=b.options,d=this.scroller,e,f;a.apply(this,[].slice.call(arguments,1));d&&(e=d.xAxis,f=d.yAxis,d.top=d.navigatorOptions.top||this.chartHeight-d.height-d.scrollbarHeight-this.spacing[2]-("bottom"===c.verticalAlign&&c.enabled&& +!c.floating?b.legendHeight+E(c.margin,10):0),e&&f&&(e.options.top=f.options.top=d.top,e.setAxisSize(),f.setAxisSize()))});x(n.prototype,"addPoint",function(a,b,c,f,g){var h=this.options.turboThreshold;h&&this.xData.length>h&&d(b,!0)&&this.chart.scroller&&e(20,!0);a.call(this,b,c,f,g)});x(H.prototype,"addSeries",function(a,b,c,d){a=a.call(this,b,!1,d);this.scroller&&this.scroller.setBaseSeries();E(c,!0)&&this.redraw();return a});x(n.prototype,"update",function(a,b,c){a.call(this,b,!1);this.chart.scroller&& +this.chart.scroller.setBaseSeries();E(c,!0)&&this.chart.redraw()})})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.css,l=a.createElement,r=a.dateFormat,w=a.defaultOptions,t=w.global.useUTC,k=a.defined,m=a.destroyObjectProperties,e=a.discardElement,g=a.each,h=a.extend,C=a.fireEvent,f=a.Date,d=a.isNumber,b=a.merge,q=a.pick,E=a.pInt,c=a.splat,F=a.wrap;h(w,{rangeSelector:{buttonTheme:{"stroke-width":0,width:28,height:18,padding:2,zIndex:7},height:35,inputPosition:{align:"right"}, +labelStyle:{color:"#666666"}}});w.lang=b(w.lang,{rangeSelectorZoom:"Zoom",rangeSelectorFrom:"From",rangeSelectorTo:"To"});D.prototype={clickButton:function(a,b){var e=this,f=e.chart,h=e.buttonOptions[a],k=f.xAxis[0],l=f.scroller&&f.scroller.getUnionExtremes()||k||{},n=l.dataMin,m=l.dataMax,p,r=k&&Math.round(Math.min(k.max,q(m,k.max))),w=h.type,z,l=h._range,A,C,D,E=h.dataGrouping;if(null!==n&&null!==m){f.fixedRange=l;E&&(this.forcedDataGrouping=!0,G.prototype.setDataGrouping.call(k||{chart:this.chart}, +E,!1));if("month"===w||"year"===w)k?(w={range:h,max:r,dataMin:n,dataMax:m},p=k.minFromRange.call(w),d(w.newMax)&&(r=w.newMax)):l=h;else if(l)p=Math.max(r-l,n),r=Math.min(p+l,m);else if("ytd"===w)if(k)void 0===m&&(n=Number.MAX_VALUE,m=Number.MIN_VALUE,g(f.series,function(a){a=a.xData;n=Math.min(a[0],n);m=Math.max(a[a.length-1],m)}),b=!1),r=e.getYTDExtremes(m,n,t),p=A=r.min,r=r.max;else{B(f,"beforeRender",function(){e.clickButton(a)});return}else"all"===w&&k&&(p=n,r=m);e.setSelected(a);k?k.setExtremes(p, +r,q(b,1),null,{trigger:"rangeSelectorButton",rangeSelectorButton:h}):(z=c(f.options.xAxis)[0],D=z.range,z.range=l,C=z.min,z.min=A,B(f,"load",function(){z.range=D;z.min=C}))}},setSelected:function(a){this.selected=this.options.selected=a},defaultButtons:[{type:"month",count:1,text:"1m"},{type:"month",count:3,text:"3m"},{type:"month",count:6,text:"6m"},{type:"ytd",text:"YTD"},{type:"year",count:1,text:"1y"},{type:"all",text:"All"}],init:function(a){var b=this,c=a.options.rangeSelector,d=c.buttons|| +[].concat(b.defaultButtons),e=c.selected,f=function(){var a=b.minInput,c=b.maxInput;a&&a.blur&&C(a,"blur");c&&c.blur&&C(c,"blur")};b.chart=a;b.options=c;b.buttons=[];a.extraTopMargin=c.height;b.buttonOptions=d;this.unMouseDown=B(a.container,"mousedown",f);this.unResize=B(a,"resize",f);g(d,b.computeButtonRange);void 0!==e&&d[e]&&this.clickButton(e,!1);B(a,"load",function(){B(a.xAxis[0],"setExtremes",function(c){this.max-this.min!==a.fixedRange&&"rangeSelectorButton"!==c.trigger&&"updatedData"!==c.trigger&& +b.forcedDataGrouping&&this.setDataGrouping(!1,!1)})})},updateButtonStates:function(){var a=this.chart,b=a.xAxis[0],c=Math.round(b.max-b.min),e=!b.hasVisibleSeries,a=a.scroller&&a.scroller.getUnionExtremes()||b,f=a.dataMin,h=a.dataMax,a=this.getYTDExtremes(h,f,t),k=a.min,l=a.max,m=this.selected,p=d(m),q=this.options.allButtonsEnabled,r=this.buttons;g(this.buttonOptions,function(a,d){var g=a._range,n=a.type,u=a.count||1;a=r[d];var t=0;d=d===m;var v=g>h-f,x=g=864E5*{month:28,year:365}[n]*u&&c<=864E5*{month:31,year:366}[n]*u?g=!0:"ytd"===n?(g=l-k===c,y=!d):"all"===n&&(g=b.max-b.min>=h-f,w=!d&&p&&g);n=!q&&(v||x||w||e);g=d&&g||g&&!p&&!y;n?t=3:g&&(p=!0,t=2);a.state!==t&&a.setState(t)})},computeButtonRange:function(a){var b=a.type,c=a.count||1,d={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5};if(d[b])a._range=d[b]*c;else if("month"===b||"year"===b)a._range=864E5*{month:30,year:365}[b]*c},setInputValue:function(a,b){var c= +this.chart.options.rangeSelector,d=this[a+"Input"];k(b)&&(d.previousValue=d.HCTime,d.HCTime=b);d.value=r(c.inputEditDateFormat||"%Y-%m-%d",d.HCTime);this[a+"DateBox"].attr({text:r(c.inputDateFormat||"%b %e, %Y",d.HCTime)})},showInput:function(a){var b=this.inputGroup,c=this[a+"DateBox"];p(this[a+"Input"],{left:b.translateX+c.x+"px",top:b.translateY+"px",width:c.width-2+"px",height:c.height-2+"px",border:"2px solid silver"})},hideInput:function(a){p(this[a+"Input"],{border:0,width:"1px",height:"1px"}); +this.setInputValue(a)},drawInput:function(a){function c(){var a=r.value,b=(m.inputDateParser||Date.parse)(a),c=f.xAxis[0],g=f.scroller&&f.scroller.xAxis?f.scroller.xAxis:c,h=g.dataMin,g=g.dataMax;b!==r.previousValue&&(r.previousValue=b,d(b)||(b=a.split("-"),b=Date.UTC(E(b[0]),E(b[1])-1,E(b[2]))),d(b)&&(t||(b+=6E4*(new Date).getTimezoneOffset()),q?b>e.maxInput.HCTime?b=void 0:bg&&(b=g),void 0!==b&&c.setExtremes(q?b:c.min,q?c.max:b,void 0,void 0,{trigger:"rangeSelectorInput"})))} +var e=this,f=e.chart,g=f.renderer.style||{},k=f.renderer,m=f.options.rangeSelector,n=e.div,q="min"===a,r,B,C=this.inputGroup;this[a+"Label"]=B=k.label(w.lang[q?"rangeSelectorFrom":"rangeSelectorTo"],this.inputGroup.offset).addClass("highcharts-range-label").attr({padding:2}).add(C);C.offset+=B.width+5;this[a+"DateBox"]=k=k.label("",C.offset).addClass("highcharts-range-input").attr({padding:2,width:m.inputBoxWidth||90,height:m.inputBoxHeight||17,stroke:m.inputBoxBorderColor||"#cccccc","stroke-width":1, +"text-align":"center"}).on("click",function(){e.showInput(a);e[a+"Input"].focus()}).add(C);C.offset+=k.width+(q?10:0);this[a+"Input"]=r=l("input",{name:a,className:"highcharts-range-selector",type:"text"},{top:f.plotTop+"px"},n);B.css(b(g,m.labelStyle));k.css(b({color:"#333333"},g,m.inputStyle));p(r,h({position:"absolute",border:0,width:"1px",height:"1px",padding:0,textAlign:"center",fontSize:g.fontSize,fontFamily:g.fontFamily,left:"-9em"},m.inputStyle));r.onfocus=function(){e.showInput(a)};r.onblur= +function(){e.hideInput(a)};r.onchange=c;r.onkeypress=function(a){13===a.keyCode&&c()}},getPosition:function(){var a=this.chart,b=a.options.rangeSelector,a=q((b.buttonPosition||{}).y,a.plotTop-a.axisOffset[0]-b.height);return{buttonTop:a,inputTop:a-10}},getYTDExtremes:function(a,b,c){var d=new f(a),e=d[f.hcGetFullYear]();c=c?f.UTC(e,0,1):+new f(e,0,1);b=Math.max(b||0,c);d=d.getTime();return{max:Math.min(a||d,d),min:b}},render:function(a,b){var c=this,d=c.chart,e=d.renderer,f=d.container,m=d.options, +n=m.exporting&&!1!==m.exporting.enabled&&m.navigation&&m.navigation.buttonOptions,p=m.rangeSelector,r=c.buttons,m=w.lang,t=c.div,t=c.inputGroup,A=p.buttonTheme,z=p.buttonPosition||{},B=p.inputEnabled,C=A&&A.states,D=d.plotLeft,E,G=this.getPosition(),F=c.group,H=c.rendered;!1!==p.enabled&&(H||(c.group=F=e.g("range-selector-buttons").add(),c.zoomText=e.text(m.rangeSelectorZoom,q(z.x,D),15).css(p.labelStyle).add(F),E=q(z.x,D)+c.zoomText.getBBox().width+5,g(c.buttonOptions,function(a,b){r[b]=e.button(a.text, +E,0,function(){c.clickButton(b);c.isActive=!0},A,C&&C.hover,C&&C.select,C&&C.disabled).attr({"text-align":"center"}).add(F);E+=r[b].width+q(p.buttonSpacing,5)}),!1!==B&&(c.div=t=l("div",null,{position:"relative",height:0,zIndex:1}),f.parentNode.insertBefore(t,f),c.inputGroup=t=e.g("input-group").add(),t.offset=0,c.drawInput("min"),c.drawInput("max"))),c.updateButtonStates(),F[H?"animate":"attr"]({translateY:G.buttonTop}),!1!==B&&(t.align(h({y:G.inputTop,width:t.offset,x:n&&G.inputTop<(n.y||0)+n.height- +d.spacing[0]?-40:0},p.inputPosition),!0,d.spacingBox),k(B)||(d=F.getBBox(),t[t.alignAttr.translateXc&&(e?a=b-f:b=a+f);d(a)||(a=b=void 0);return{min:a,max:b}};G.prototype.minFromRange=function(){var a=this.range,b={month:"Month",year:"FullYear"}[a.type],c,e=this.max,f,g,h=function(a,c){var d=new Date(a);d["set"+b](d["get"+ +b]()+c);return d.getTime()-a};d(a)?(c=e-a,g=a):(c=e+h(e,-a.count),this.chart&&(this.chart.fixedRange=e-c));f=q(this.dataMin,Number.MIN_VALUE);d(c)||(c=f);c<=f&&(c=f,void 0===g&&(g=h(c,a.count)),this.newMax=Math.min(c+g,this.dataMax));d(e)||(c=void 0);return c};F(H.prototype,"init",function(a,b,c){B(this,"init",function(){this.options.rangeSelector.enabled&&(this.rangeSelector=new D(this))});a.call(this,b,c)});a.RangeSelector=D})(N);(function(a){var D=a.addEvent,B=a.isNumber;a.Chart.prototype.callbacks.push(function(a){function G(){p= +a.xAxis[0].getExtremes();B(p.min)&&r.render(p.min,p.max)}var p,l=a.scroller,r=a.rangeSelector,w,t;l&&(p=a.xAxis[0].getExtremes(),l.render(p.min,p.max));r&&(t=D(a.xAxis[0],"afterSetExtremes",function(a){r.render(a.min,a.max)}),w=D(a,"redraw",G),G());D(a,"destroy",function(){r&&(w(),t())})})})(N);(function(a){var D=a.arrayMax,B=a.arrayMin,G=a.Axis,H=a.Chart,p=a.defined,l=a.each,r=a.extend,w=a.format,t=a.inArray,k=a.isNumber,m=a.isString,e=a.map,g=a.merge,h=a.pick,C=a.Point,f=a.Renderer,d=a.Series,b= +a.splat,q=a.stop,E=a.SVGRenderer,c=a.VMLRenderer,F=a.wrap,n=d.prototype,A=n.init,x=n.processData,J=C.prototype.tooltipFormatter;a.StockChart=a.stockChart=function(c,d,f){var k=m(c)||c.nodeName,l=arguments[k?1:0],n=l.series,p=a.getOptions(),q,r=h(l.navigator&&l.navigator.enabled,!0)?{startOnTick:!1,endOnTick:!1}:null,t={marker:{enabled:!1,radius:2}},u={shadow:!1,borderWidth:0};l.xAxis=e(b(l.xAxis||{}),function(a){return g({minPadding:0,maxPadding:0,ordinal:!0,title:{text:null},labels:{overflow:"justify"}, +showLastLabel:!0},p.xAxis,a,{type:"datetime",categories:null},r)});l.yAxis=e(b(l.yAxis||{}),function(a){q=h(a.opposite,!0);return g({labels:{y:-2},opposite:q,showLastLabel:!1,title:{text:null}},p.yAxis,a)});l.series=null;l=g({chart:{panning:!0,pinchType:"x"},navigator:{enabled:!0},scrollbar:{enabled:!0},rangeSelector:{enabled:!0},title:{text:null,style:{fontSize:"16px"}},tooltip:{shared:!0,crosshairs:!0},legend:{enabled:!1},plotOptions:{line:t,spline:t,area:t,areaspline:t,arearange:t,areasplinerange:t, +column:u,columnrange:u,candlestick:u,ohlc:u}},l,{_stock:!0,chart:{inverted:!1}});l.series=n;return k?new H(c,l,f):new H(l,d)};F(G.prototype,"autoLabelAlign",function(a){var b=this.chart,c=this.options,b=b._labelPanes=b._labelPanes||{},d=this.options.labels;return this.chart.options._stock&&"yAxis"===this.coll&&(c=c.top+","+c.height,!b[c]&&d.enabled)?(15===d.x&&(d.x=0),void 0===d.align&&(d.align="right"),b[c]=1,"right"):a.call(this,[].slice.call(arguments,1))});F(G.prototype,"getPlotLinePath",function(a, +b,c,d,f,g){var n=this,q=this.isLinked&&!this.series?this.linkedParent.series:this.series,r=n.chart,u=r.renderer,v=n.left,w=n.top,y,x,A,B,C=[],D=[],E,F;if("colorAxis"===n.coll)return a.apply(this,[].slice.call(arguments,1));D=function(a){var b="xAxis"===a?"yAxis":"xAxis";a=n.options[b];return k(a)?[r[b][a]]:m(a)?[r.get(a)]:e(q,function(a){return a[b]})}(n.coll);l(n.isXAxis?r.yAxis:r.xAxis,function(a){if(p(a.options.id)?-1===a.options.id.indexOf("navigator"):1){var b=a.isXAxis?"yAxis":"xAxis",b=p(a.options[b])? +r[b][a.options[b]]:r[b][0];n===b&&D.push(a)}});E=D.length?[]:[n.isXAxis?r.yAxis[0]:r.xAxis[0]];l(D,function(a){-1===t(a,E)&&E.push(a)});F=h(g,n.translate(b,null,null,d));k(F)&&(n.horiz?l(E,function(a){var b;x=a.pos;B=x+a.len;y=A=Math.round(F+n.transB);if(yv+n.width)f?y=A=Math.min(Math.max(v,y),v+n.width):b=!0;b||C.push("M",y,x,"L",A,B)}):l(E,function(a){var b;y=a.pos;A=y+a.len;x=B=Math.round(w+n.height-F);if(xw+n.height)f?x=B=Math.min(Math.max(w,x),n.top+n.height):b=!0;b||C.push("M",y, +x,"L",A,B)}));return 0=e&&(x=-(l.translateX+b.width-e));l.attr({x:m+x,y:k,anchorX:g?m:this.opposite?0:a.chartWidth,anchorY:g?this.opposite?a.chartHeight:0:k+b.height/2})}});n.init=function(){A.apply(this,arguments);this.setCompare(this.options.compare)};n.setCompare=function(a){this.modifyValue= +"value"===a||"percent"===a?function(b,c){var d=this.compareValue;if(void 0!==b&&void 0!==d)return b="value"===a?b-d:b=b/d*100-100,c&&(c.change=b),b}:null;this.userOptions.compare=a;this.chart.hasRendered&&(this.isDirty=!0)};n.processData=function(){var a,b=-1,c,d,e,f;x.apply(this,arguments);if(this.xAxis&&this.processedYData)for(c=this.processedXData,d=this.processedYData,e=d.length,this.pointArrayMap&&(b=t("close",this.pointArrayMap),-1===b&&(b=t(this.pointValKey||"y",this.pointArrayMap))),a=0;a< +e-1;a++)if(f=-1=this.xAxis.min&&0!==f){this.compareValue=f;break}};F(n,"getExtremes",function(a){var b;a.apply(this,[].slice.call(arguments,1));this.modifyValue&&(b=[this.modifyValue(this.dataMin),this.modifyValue(this.dataMax)],this.dataMin=B(b),this.dataMax=D(b))});G.prototype.setCompare=function(a,b){this.isXAxis||(l(this.series,function(b){b.setCompare(a)}),h(b,!0)&&this.chart.redraw())};C.prototype.tooltipFormatter=function(b){b=b.replace("{point.change}",(0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 '; + else + var expandButton = ''; + + return '' + expandButton + '' + ellipsedLabel({ name: item.name, parentClass: "nav-tooltip", childClass: "nav-label" }) + ''; +} + +function menuItemsForGroup(group, level, parent) { + var items = ''; + + if (level > 0) + items += menuItem(group, level - 1, parent, true); + + $.each(group.contents, function (contentName, content) { + if (content.type == 'GROUP') + items += menuItemsForGroup(content, level + 1, group.pathFormatted); + else if (content.type == 'REQUEST') + items += menuItem(content, level, group.pathFormatted); + }); + + return items; +} + +function setDetailsMenu(){ + $('.nav ul').append(menuItemsForGroup(stats, 0)); + $('.nav').expandable(); + $('.nav-tooltip').popover({trigger:'hover'}); +} + +function setGlobalMenu(){ + $('.nav ul') + .append('
  • Ranges
  • ') + .append('
  • Stats
  • ') + .append('
  • Active Users
  • ') + .append('
  • Requests / sec
  • ') + .append('
  • Responses / sec
  • '); +} + +function getLink(link){ + var a = link.split('/'); + return (a.length<=1)? link : a[a.length-1]; +} + +function expandUp(li) { + const parentId = li.attr("data-parent"); + if (parentId != "ROOT") { + const span = $('#' + parentId); + const parentLi = span.parents('li').first(); + span.expand(parentLi, false); + expandUp(parentLi); + } +} + +function setActiveMenu(){ + $('.nav a').each(function() { + const navA = $(this) + if(!navA.hasClass('expand-button') && navA.attr('href') == getLink(window.location.pathname)) { + const li = $(this).parents('li').first(); + li.addClass('on'); + expandUp(li); + return false; + } + }); +} diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/stats.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/stats.js new file mode 100644 index 00000000..a3a7f292 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/stats.js @@ -0,0 +1,1605 @@ +var stats = { + type: "GROUP", +name: "All Requests", +path: "", +pathFormatted: "group_missing-name--1146707516", +stats: { + "name": "All Requests", + "numberOfRequests": { + "total": "5472", + "ok": "4256", + "ko": "1216" + }, + "minResponseTime": { + "total": "39", + "ok": "39", + "ko": "39" + }, + "maxResponseTime": { + "total": "145", + "ok": "145", + "ko": "100" + }, + "meanResponseTime": { + "total": "83", + "ok": "83", + "ko": "82" + }, + "standardDeviation": { + "total": "21", + "ok": "22", + "ko": "18" + }, + "percentiles1": { + "total": "84", + "ok": "85", + "ko": "84" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "96" + }, + "percentiles3": { + "total": "108", + "ok": "110", + "ko": "97" + }, + "percentiles4": { + "total": "118", + "ok": "120", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 4256, + "percentage": 78 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 1216, + "percentage": 22 +}, + "meanNumberOfRequestsPerSecond": { + "total": "63.628", + "ok": "49.488", + "ko": "14.14" + } +}, +contents: { +"req_request-0-693933696": { + type: "REQUEST", + name: "request_0", +path: "request_0", +pathFormatted: "req_request-0-693933696", +stats: { + "name": "request_0", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-1-693933697": { + type: "REQUEST", + name: "request_1", +path: "request_1", +pathFormatted: "req_request-1-693933697", +stats: { + "name": "request_1", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "40", + "ok": "40", + "ko": "-" + }, + "maxResponseTime": { + "total": "52", + "ok": "52", + "ko": "-" + }, + "meanResponseTime": { + "total": "45", + "ok": "45", + "ko": "-" + }, + "standardDeviation": { + "total": "3", + "ok": "3", + "ko": "-" + }, + "percentiles1": { + "total": "47", + "ok": "47", + "ko": "-" + }, + "percentiles2": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "percentiles3": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "percentiles4": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-2-693933698": { + type: "REQUEST", + name: "request_2", +path: "request_2", +pathFormatted: "req_request-2-693933698", +stats: { + "name": "request_2", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "103", + "ok": "103", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-5-693933701": { + type: "REQUEST", + name: "request_5", +path: "request_5", +pathFormatted: "req_request-5-693933701", +stats: { + "name": "request_5", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "104", + "ok": "104", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "86", + "ok": "86", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-6-693933702": { + type: "REQUEST", + name: "request_6", +path: "request_6", +pathFormatted: "req_request-6-693933702", +stats: { + "name": "request_6", + "numberOfRequests": { + "total": "304", + "ok": "0", + "ko": "304" + }, + "minResponseTime": { + "total": "80", + "ok": "-", + "ko": "80" + }, + "maxResponseTime": { + "total": "100", + "ok": "-", + "ko": "100" + }, + "meanResponseTime": { + "total": "90", + "ok": "-", + "ko": "90" + }, + "standardDeviation": { + "total": "7", + "ok": "-", + "ko": "7" + }, + "percentiles1": { + "total": "95", + "ok": "-", + "ko": "95" + }, + "percentiles2": { + "total": "96", + "ok": "-", + "ko": "96" + }, + "percentiles3": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "percentiles4": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "-", + "ko": "3.535" + } +} + },"req_request-3-693933699": { + type: "REQUEST", + name: "request_3", +path: "request_3", +pathFormatted: "req_request-3-693933699", +stats: { + "name": "request_3", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-4-693933700": { + type: "REQUEST", + name: "request_4", +path: "request_4", +pathFormatted: "req_request-4-693933700", +stats: { + "name": "request_4", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "100", + "ok": "100", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-7-693933703": { + type: "REQUEST", + name: "request_7", +path: "request_7", +pathFormatted: "req_request-7-693933703", +stats: { + "name": "request_7", + "numberOfRequests": { + "total": "304", + "ok": "0", + "ko": "304" + }, + "minResponseTime": { + "total": "80", + "ok": "-", + "ko": "80" + }, + "maxResponseTime": { + "total": "100", + "ok": "-", + "ko": "100" + }, + "meanResponseTime": { + "total": "90", + "ok": "-", + "ko": "90" + }, + "standardDeviation": { + "total": "7", + "ok": "-", + "ko": "7" + }, + "percentiles1": { + "total": "95", + "ok": "-", + "ko": "95" + }, + "percentiles2": { + "total": "96", + "ok": "-", + "ko": "96" + }, + "percentiles3": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "percentiles4": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "-", + "ko": "3.535" + } +} + },"req_request-8-693933704": { + type: "REQUEST", + name: "request_8", +path: "request_8", +pathFormatted: "req_request-8-693933704", +stats: { + "name": "request_8", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "103", + "ok": "103", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "94", + "ok": "94", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-9-693933705": { + type: "REQUEST", + name: "request_9", +path: "request_9", +pathFormatted: "req_request-9-693933705", +stats: { + "name": "request_9", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "maxResponseTime": { + "total": "145", + "ok": "145", + "ko": "-" + }, + "meanResponseTime": { + "total": "109", + "ok": "109", + "ko": "-" + }, + "standardDeviation": { + "total": "8", + "ok": "8", + "ko": "-" + }, + "percentiles1": { + "total": "107", + "ok": "107", + "ko": "-" + }, + "percentiles2": { + "total": "112", + "ok": "112", + "ko": "-" + }, + "percentiles3": { + "total": "124", + "ok": "124", + "ko": "-" + }, + "percentiles4": { + "total": "136", + "ok": "136", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-10-37108175": { + type: "REQUEST", + name: "request_10", +path: "request_10", +pathFormatted: "req_request-10-37108175", +stats: { + "name": "request_10", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "meanResponseTime": { + "total": "89", + "ok": "89", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "86", + "ok": "86", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles4": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-11-37108176": { + type: "REQUEST", + name: "request_11", +path: "request_11", +pathFormatted: "req_request-11-37108176", +stats: { + "name": "request_11", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "103", + "ok": "103", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "94", + "ok": "94", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-12-37108177": { + type: "REQUEST", + name: "request_12", +path: "request_12", +pathFormatted: "req_request-12-37108177", +stats: { + "name": "request_12", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "93", + "ok": "93", + "ko": "-" + }, + "maxResponseTime": { + "total": "145", + "ok": "145", + "ko": "-" + }, + "meanResponseTime": { + "total": "106", + "ok": "106", + "ko": "-" + }, + "standardDeviation": { + "total": "8", + "ok": "8", + "ko": "-" + }, + "percentiles1": { + "total": "108", + "ok": "108", + "ko": "-" + }, + "percentiles2": { + "total": "111", + "ok": "111", + "ko": "-" + }, + "percentiles3": { + "total": "119", + "ok": "119", + "ko": "-" + }, + "percentiles4": { + "total": "131", + "ok": "131", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-13-37108178": { + type: "REQUEST", + name: "request_13", +path: "request_13", +pathFormatted: "req_request-13-37108178", +stats: { + "name": "request_13", + "numberOfRequests": { + "total": "304", + "ok": "0", + "ko": "304" + }, + "minResponseTime": { + "total": "39", + "ok": "-", + "ko": "39" + }, + "maxResponseTime": { + "total": "100", + "ok": "-", + "ko": "100" + }, + "meanResponseTime": { + "total": "73", + "ok": "-", + "ko": "73" + }, + "standardDeviation": { + "total": "24", + "ok": "-", + "ko": "24" + }, + "percentiles1": { + "total": "83", + "ok": "-", + "ko": "83" + }, + "percentiles2": { + "total": "95", + "ok": "-", + "ko": "95" + }, + "percentiles3": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "percentiles4": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "-", + "ko": "3.535" + } +} + },"req_request-14-37108179": { + type: "REQUEST", + name: "request_14", +path: "request_14", +pathFormatted: "req_request-14-37108179", +stats: { + "name": "request_14", + "numberOfRequests": { + "total": "304", + "ok": "0", + "ko": "304" + }, + "minResponseTime": { + "total": "40", + "ok": "-", + "ko": "40" + }, + "maxResponseTime": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "meanResponseTime": { + "total": "76", + "ok": "-", + "ko": "76" + }, + "standardDeviation": { + "total": "21", + "ok": "-", + "ko": "21" + }, + "percentiles1": { + "total": "83", + "ok": "-", + "ko": "83" + }, + "percentiles2": { + "total": "95", + "ok": "-", + "ko": "95" + }, + "percentiles3": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "percentiles4": { + "total": "97", + "ok": "-", + "ko": "97" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "-", + "ko": "3.535" + } +} + },"req_request-15-37108180": { + type: "REQUEST", + name: "request_15", +path: "request_15", +pathFormatted: "req_request-15-37108180", +stats: { + "name": "request_15", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "40", + "ok": "40", + "ko": "-" + }, + "maxResponseTime": { + "total": "57", + "ok": "57", + "ko": "-" + }, + "meanResponseTime": { + "total": "45", + "ok": "45", + "ko": "-" + }, + "standardDeviation": { + "total": "3", + "ok": "3", + "ko": "-" + }, + "percentiles1": { + "total": "47", + "ok": "47", + "ko": "-" + }, + "percentiles2": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "percentiles3": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "percentiles4": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-17-37108182": { + type: "REQUEST", + name: "request_17", +path: "request_17", +pathFormatted: "req_request-17-37108182", +stats: { + "name": "request_17", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles4": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + },"req_request-16-37108181": { + type: "REQUEST", + name: "request_16", +path: "request_16", +pathFormatted: "req_request-16-37108181", +stats: { + "name": "request_16", + "numberOfRequests": { + "total": "304", + "ok": "304", + "ko": "0" + }, + "minResponseTime": { + "total": "39", + "ok": "39", + "ko": "-" + }, + "maxResponseTime": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "meanResponseTime": { + "total": "44", + "ok": "44", + "ko": "-" + }, + "standardDeviation": { + "total": "3", + "ok": "3", + "ko": "-" + }, + "percentiles1": { + "total": "47", + "ok": "47", + "ko": "-" + }, + "percentiles2": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "percentiles3": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "percentiles4": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.535", + "ok": "3.535", + "ko": "-" + } +} + } +} + +} + +function fillStats(stat){ + $("#numberOfRequests").append(stat.numberOfRequests.total); + $("#numberOfRequestsOK").append(stat.numberOfRequests.ok); + $("#numberOfRequestsKO").append(stat.numberOfRequests.ko); + + $("#minResponseTime").append(stat.minResponseTime.total); + $("#minResponseTimeOK").append(stat.minResponseTime.ok); + $("#minResponseTimeKO").append(stat.minResponseTime.ko); + + $("#maxResponseTime").append(stat.maxResponseTime.total); + $("#maxResponseTimeOK").append(stat.maxResponseTime.ok); + $("#maxResponseTimeKO").append(stat.maxResponseTime.ko); + + $("#meanResponseTime").append(stat.meanResponseTime.total); + $("#meanResponseTimeOK").append(stat.meanResponseTime.ok); + $("#meanResponseTimeKO").append(stat.meanResponseTime.ko); + + $("#standardDeviation").append(stat.standardDeviation.total); + $("#standardDeviationOK").append(stat.standardDeviation.ok); + $("#standardDeviationKO").append(stat.standardDeviation.ko); + + $("#percentiles1").append(stat.percentiles1.total); + $("#percentiles1OK").append(stat.percentiles1.ok); + $("#percentiles1KO").append(stat.percentiles1.ko); + + $("#percentiles2").append(stat.percentiles2.total); + $("#percentiles2OK").append(stat.percentiles2.ok); + $("#percentiles2KO").append(stat.percentiles2.ko); + + $("#percentiles3").append(stat.percentiles3.total); + $("#percentiles3OK").append(stat.percentiles3.ok); + $("#percentiles3KO").append(stat.percentiles3.ko); + + $("#percentiles4").append(stat.percentiles4.total); + $("#percentiles4OK").append(stat.percentiles4.ok); + $("#percentiles4KO").append(stat.percentiles4.ko); + + $("#meanNumberOfRequestsPerSecond").append(stat.meanNumberOfRequestsPerSecond.total); + $("#meanNumberOfRequestsPerSecondOK").append(stat.meanNumberOfRequestsPerSecond.ok); + $("#meanNumberOfRequestsPerSecondKO").append(stat.meanNumberOfRequestsPerSecond.ko); +} diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/stats.json b/testsrc/gatling/results/playgamerecord-20240426125611412/js/stats.json new file mode 100644 index 00000000..6fb47b3c --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/stats.json @@ -0,0 +1,1563 @@ +{ + "type": "GROUP", +"name": "All Requests", +"path": "", +"pathFormatted": "group_missing-name--1146707516", +"stats": { + "name": "All Requests", + "numberOfRequests": { + "total": 5472, + "ok": 4256, + "ko": 1216 + }, + "minResponseTime": { + "total": 39, + "ok": 39, + "ko": 39 + }, + "maxResponseTime": { + "total": 145, + "ok": 145, + "ko": 100 + }, + "meanResponseTime": { + "total": 83, + "ok": 83, + "ko": 82 + }, + "standardDeviation": { + "total": 21, + "ok": 22, + "ko": 18 + }, + "percentiles1": { + "total": 84, + "ok": 85, + "ko": 84 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 96 + }, + "percentiles3": { + "total": 108, + "ok": 110, + "ko": 97 + }, + "percentiles4": { + "total": 118, + "ok": 120, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 4256, + "percentage": 78 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 1216, + "percentage": 22 +}, + "meanNumberOfRequestsPerSecond": { + "total": 63.627906976744185, + "ok": 49.48837209302326, + "ko": 14.13953488372093 + } +}, +"contents": { +"req_request-0-693933696": { + "type": "REQUEST", + "name": "request_0", +"path": "request_0", +"pathFormatted": "req_request-0-693933696", +"stats": { + "name": "request_0", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-1-693933697": { + "type": "REQUEST", + "name": "request_1", +"path": "request_1", +"pathFormatted": "req_request-1-693933697", +"stats": { + "name": "request_1", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 40, + "ok": 40, + "ko": 0 + }, + "maxResponseTime": { + "total": 52, + "ok": 52, + "ko": 0 + }, + "meanResponseTime": { + "total": 45, + "ok": 45, + "ko": 0 + }, + "standardDeviation": { + "total": 3, + "ok": 3, + "ko": 0 + }, + "percentiles1": { + "total": 47, + "ok": 47, + "ko": 0 + }, + "percentiles2": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "percentiles3": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "percentiles4": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-2-693933698": { + "type": "REQUEST", + "name": "request_2", +"path": "request_2", +"pathFormatted": "req_request-2-693933698", +"stats": { + "name": "request_2", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 103, + "ok": 103, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-5-693933701": { + "type": "REQUEST", + "name": "request_5", +"path": "request_5", +"pathFormatted": "req_request-5-693933701", +"stats": { + "name": "request_5", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 104, + "ok": 104, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 86, + "ok": 86, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-6-693933702": { + "type": "REQUEST", + "name": "request_6", +"path": "request_6", +"pathFormatted": "req_request-6-693933702", +"stats": { + "name": "request_6", + "numberOfRequests": { + "total": 304, + "ok": 0, + "ko": 304 + }, + "minResponseTime": { + "total": 80, + "ok": 0, + "ko": 80 + }, + "maxResponseTime": { + "total": 100, + "ok": 0, + "ko": 100 + }, + "meanResponseTime": { + "total": 90, + "ok": 0, + "ko": 90 + }, + "standardDeviation": { + "total": 7, + "ok": 0, + "ko": 7 + }, + "percentiles1": { + "total": 95, + "ok": 0, + "ko": 95 + }, + "percentiles2": { + "total": 96, + "ok": 0, + "ko": 96 + }, + "percentiles3": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "percentiles4": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 0, + "ko": 3.5348837209302326 + } +} + },"req_request-3-693933699": { + "type": "REQUEST", + "name": "request_3", +"path": "request_3", +"pathFormatted": "req_request-3-693933699", +"stats": { + "name": "request_3", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-4-693933700": { + "type": "REQUEST", + "name": "request_4", +"path": "request_4", +"pathFormatted": "req_request-4-693933700", +"stats": { + "name": "request_4", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 100, + "ok": 100, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-7-693933703": { + "type": "REQUEST", + "name": "request_7", +"path": "request_7", +"pathFormatted": "req_request-7-693933703", +"stats": { + "name": "request_7", + "numberOfRequests": { + "total": 304, + "ok": 0, + "ko": 304 + }, + "minResponseTime": { + "total": 80, + "ok": 0, + "ko": 80 + }, + "maxResponseTime": { + "total": 100, + "ok": 0, + "ko": 100 + }, + "meanResponseTime": { + "total": 90, + "ok": 0, + "ko": 90 + }, + "standardDeviation": { + "total": 7, + "ok": 0, + "ko": 7 + }, + "percentiles1": { + "total": 95, + "ok": 0, + "ko": 95 + }, + "percentiles2": { + "total": 96, + "ok": 0, + "ko": 96 + }, + "percentiles3": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "percentiles4": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 0, + "ko": 3.5348837209302326 + } +} + },"req_request-8-693933704": { + "type": "REQUEST", + "name": "request_8", +"path": "request_8", +"pathFormatted": "req_request-8-693933704", +"stats": { + "name": "request_8", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 103, + "ok": 103, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 94, + "ok": 94, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-9-693933705": { + "type": "REQUEST", + "name": "request_9", +"path": "request_9", +"pathFormatted": "req_request-9-693933705", +"stats": { + "name": "request_9", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "maxResponseTime": { + "total": 145, + "ok": 145, + "ko": 0 + }, + "meanResponseTime": { + "total": 109, + "ok": 109, + "ko": 0 + }, + "standardDeviation": { + "total": 8, + "ok": 8, + "ko": 0 + }, + "percentiles1": { + "total": 107, + "ok": 107, + "ko": 0 + }, + "percentiles2": { + "total": 112, + "ok": 112, + "ko": 0 + }, + "percentiles3": { + "total": 124, + "ok": 124, + "ko": 0 + }, + "percentiles4": { + "total": 136, + "ok": 136, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-10-37108175": { + "type": "REQUEST", + "name": "request_10", +"path": "request_10", +"pathFormatted": "req_request-10-37108175", +"stats": { + "name": "request_10", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "meanResponseTime": { + "total": 89, + "ok": 89, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 86, + "ok": 86, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles4": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-11-37108176": { + "type": "REQUEST", + "name": "request_11", +"path": "request_11", +"pathFormatted": "req_request-11-37108176", +"stats": { + "name": "request_11", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 103, + "ok": 103, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 94, + "ok": 94, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-12-37108177": { + "type": "REQUEST", + "name": "request_12", +"path": "request_12", +"pathFormatted": "req_request-12-37108177", +"stats": { + "name": "request_12", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 93, + "ok": 93, + "ko": 0 + }, + "maxResponseTime": { + "total": 145, + "ok": 145, + "ko": 0 + }, + "meanResponseTime": { + "total": 106, + "ok": 106, + "ko": 0 + }, + "standardDeviation": { + "total": 8, + "ok": 8, + "ko": 0 + }, + "percentiles1": { + "total": 108, + "ok": 108, + "ko": 0 + }, + "percentiles2": { + "total": 111, + "ok": 111, + "ko": 0 + }, + "percentiles3": { + "total": 119, + "ok": 119, + "ko": 0 + }, + "percentiles4": { + "total": 131, + "ok": 131, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-13-37108178": { + "type": "REQUEST", + "name": "request_13", +"path": "request_13", +"pathFormatted": "req_request-13-37108178", +"stats": { + "name": "request_13", + "numberOfRequests": { + "total": 304, + "ok": 0, + "ko": 304 + }, + "minResponseTime": { + "total": 39, + "ok": 0, + "ko": 39 + }, + "maxResponseTime": { + "total": 100, + "ok": 0, + "ko": 100 + }, + "meanResponseTime": { + "total": 73, + "ok": 0, + "ko": 73 + }, + "standardDeviation": { + "total": 24, + "ok": 0, + "ko": 24 + }, + "percentiles1": { + "total": 83, + "ok": 0, + "ko": 83 + }, + "percentiles2": { + "total": 95, + "ok": 0, + "ko": 95 + }, + "percentiles3": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "percentiles4": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 0, + "ko": 3.5348837209302326 + } +} + },"req_request-14-37108179": { + "type": "REQUEST", + "name": "request_14", +"path": "request_14", +"pathFormatted": "req_request-14-37108179", +"stats": { + "name": "request_14", + "numberOfRequests": { + "total": 304, + "ok": 0, + "ko": 304 + }, + "minResponseTime": { + "total": 40, + "ok": 0, + "ko": 40 + }, + "maxResponseTime": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "meanResponseTime": { + "total": 76, + "ok": 0, + "ko": 76 + }, + "standardDeviation": { + "total": 21, + "ok": 0, + "ko": 21 + }, + "percentiles1": { + "total": 83, + "ok": 0, + "ko": 83 + }, + "percentiles2": { + "total": 95, + "ok": 0, + "ko": 95 + }, + "percentiles3": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "percentiles4": { + "total": 97, + "ok": 0, + "ko": 97 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 304, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 0, + "ko": 3.5348837209302326 + } +} + },"req_request-15-37108180": { + "type": "REQUEST", + "name": "request_15", +"path": "request_15", +"pathFormatted": "req_request-15-37108180", +"stats": { + "name": "request_15", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 40, + "ok": 40, + "ko": 0 + }, + "maxResponseTime": { + "total": 57, + "ok": 57, + "ko": 0 + }, + "meanResponseTime": { + "total": 45, + "ok": 45, + "ko": 0 + }, + "standardDeviation": { + "total": 3, + "ok": 3, + "ko": 0 + }, + "percentiles1": { + "total": 47, + "ok": 47, + "ko": 0 + }, + "percentiles2": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "percentiles3": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "percentiles4": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-17-37108182": { + "type": "REQUEST", + "name": "request_17", +"path": "request_17", +"pathFormatted": "req_request-17-37108182", +"stats": { + "name": "request_17", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles4": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + },"req_request-16-37108181": { + "type": "REQUEST", + "name": "request_16", +"path": "request_16", +"pathFormatted": "req_request-16-37108181", +"stats": { + "name": "request_16", + "numberOfRequests": { + "total": 304, + "ok": 304, + "ko": 0 + }, + "minResponseTime": { + "total": 39, + "ok": 39, + "ko": 0 + }, + "maxResponseTime": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "meanResponseTime": { + "total": 44, + "ok": 44, + "ko": 0 + }, + "standardDeviation": { + "total": 3, + "ok": 3, + "ko": 0 + }, + "percentiles1": { + "total": 47, + "ok": 47, + "ko": 0 + }, + "percentiles2": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "percentiles3": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "percentiles4": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 304, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.5348837209302326, + "ok": 3.5348837209302326, + "ko": 0 + } +} + } +} + +} \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/theme.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/theme.js new file mode 100644 index 00000000..b95a7b3c --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/theme.js @@ -0,0 +1,127 @@ +/* + * Copyright 2011-2022 Gatling Corp + * + * Licensed under the Gatling Highcharts License + */ +Highcharts.theme = { + chart: { + backgroundColor: '#f7f7f7', + borderWidth: 0, + borderRadius: 8, + plotBackgroundColor: null, + plotShadow: false, + plotBorderWidth: 0 + }, + xAxis: { + gridLineWidth: 0, + lineColor: '#666', + tickColor: '#666', + labels: { + style: { + color: '#666' + } + }, + title: { + style: { + color: '#666' + } + } + }, + yAxis: { + alternateGridColor: null, + minorTickInterval: null, + gridLineColor: '#999', + lineWidth: 0, + tickWidth: 0, + labels: { + style: { + color: '#666', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#666', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + labels: { + style: { + color: '#CCC' + } + }, + + + rangeSelector: { + buttonTheme: { + fill: '#cfc9c6', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#b2b2a9' + }, + states: { + hover: { + fill: '#92918C', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#8b897d' + } + }, + select: { + fill: '#E37400', + stroke: '#000000', + style: { + color: '#FFF' + } + } + } + }, + inputStyle: { + backgroundColor: '#333', + color: 'silver' + }, + labelStyle: { + color: '#8b897d' + } + }, + + navigator: { + handles: { + backgroundColor: '#f7f7f7', + borderColor: '#92918C' + }, + outlineColor: '#92918C', + outlineWidth: 1, + maskFill: 'rgba(146, 145, 140, 0.5)', + series: { + color: '#5E7BE2', + lineColor: '#5E7BE2' + } + }, + + scrollbar: { + buttonBackgroundColor: '#f7f7f7', + buttonBorderWidth: 1, + buttonBorderColor: '#92918C', + buttonArrowColor: '#92918C', + buttonBorderRadius: 2, + + barBorderWidth: 1, + barBorderRadius: 0, + barBackgroundColor: '#92918C', + barBorderColor: '#92918C', + + rifleColor: '#92918C', + + trackBackgroundColor: '#b0b0a8', + trackBorderWidth: 1, + trackBorderColor: '#b0b0a8' + } +}; + +Highcharts.setOptions(Highcharts.theme); diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/js/unpack.js b/testsrc/gatling/results/playgamerecord-20240426125611412/js/unpack.js new file mode 100644 index 00000000..883c33e7 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/js/unpack.js @@ -0,0 +1,38 @@ +'use strict'; + +var unpack = function (array) { + var findNbSeries = function (array) { + var currentPlotPack; + var length = array.length; + + for (var i = 0; i < length; i++) { + currentPlotPack = array[i][1]; + if(currentPlotPack !== null) { + return currentPlotPack.length; + } + } + return 0; + }; + + var i, j; + var nbPlots = array.length; + var nbSeries = findNbSeries(array); + + // Prepare unpacked array + var unpackedArray = new Array(nbSeries); + + for (i = 0; i < nbSeries; i++) { + unpackedArray[i] = new Array(nbPlots); + } + + // Unpack the array + for (i = 0; i < nbPlots; i++) { + var timestamp = array[i][0]; + var values = array[i][1]; + for (j = 0; j < nbSeries; j++) { + unpackedArray[j][i] = [timestamp * 1000, values === null ? null : values[j]]; + } + } + + return unpackedArray; +}; diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-0-693933696.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-0-693933696.html new file mode 100644 index 00000000..d8898163 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-0-693933696.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_0 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-1-693933697.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-1-693933697.html new file mode 100644 index 00000000..73a6344f --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-1-693933697.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_1 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-10-37108175.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-10-37108175.html new file mode 100644 index 00000000..426bc7b0 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-10-37108175.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_10 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-11-37108176.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-11-37108176.html new file mode 100644 index 00000000..04a06724 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-11-37108176.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_11 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-12-37108177.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-12-37108177.html new file mode 100644 index 00000000..885de034 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-12-37108177.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_12 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-13-37108178.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-13-37108178.html new file mode 100644 index 00000000..5b030322 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-13-37108178.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_13 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-14-37108179.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-14-37108179.html new file mode 100644 index 00000000..74dbdbfd --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-14-37108179.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_14 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-15-37108180.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-15-37108180.html new file mode 100644 index 00000000..c3c8f09a --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-15-37108180.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_15 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-16-37108181.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-16-37108181.html new file mode 100644 index 00000000..d3c54feb --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-16-37108181.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_16 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-17-37108182.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-17-37108182.html new file mode 100644 index 00000000..1a4cd35e --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-17-37108182.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_17 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-2-693933698.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-2-693933698.html new file mode 100644 index 00000000..9a3bab74 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-2-693933698.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_2 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-3-693933699.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-3-693933699.html new file mode 100644 index 00000000..104a2bf3 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-3-693933699.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_3 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-4-693933700.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-4-693933700.html new file mode 100644 index 00000000..fae228ee --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-4-693933700.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_4 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-5-693933701.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-5-693933701.html new file mode 100644 index 00000000..a2c85f29 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-5-693933701.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_5 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-6-693933702.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-6-693933702.html new file mode 100644 index 00000000..5e505fd9 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-6-693933702.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_6 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-7-693933703.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-7-693933703.html new file mode 100644 index 00000000..0f69e60d --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-7-693933703.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_7 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-8-693933704.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-8-693933704.html new file mode 100644 index 00000000..0158cb05 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-8-693933704.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_8 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-9-693933705.html b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-9-693933705.html new file mode 100644 index 00000000..42e05a1e --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/req_request-9-693933705.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_9 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + PlayGameRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/simulation.log b/testsrc/gatling/results/playgamerecord-20240426125611412/simulation.log new file mode 100644 index 00000000..baf0d6bb --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/simulation.log @@ -0,0 +1,6081 @@ +RUN PlayGameRecord playgamerecord 1714136171412 3.10.5 +USER PlayGameRecord START 1714136172033 +REQUEST request_0 1714136172032 1714136172123 OK +USER PlayGameRecord START 1714136172145 +USER PlayGameRecord START 1714136172158 +REQUEST request_1 1714136172149 1714136172190 OK +REQUEST request_4 1714136172150 1714136172234 OK +REQUEST request_7 1714136172151 1714136172234 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136172150 1714136172237 OK +REQUEST request_5 1714136172150 1714136172238 OK +REQUEST request_0 1714136172142 1714136172244 OK +REQUEST request_2 1714136172149 1714136172248 OK +REQUEST request_6 1714136172150 1714136172249 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136172158 1714136172257 OK +REQUEST request_1 1714136172245 1714136172294 OK +REQUEST request_1 1714136172257 1714136172306 OK +REQUEST request_6 1714136172246 1714136172329 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136172246 1714136172330 OK +REQUEST request_2 1714136172245 1714136172330 OK +REQUEST request_3 1714136172246 1714136172331 OK +REQUEST request_2 1714136172258 1714136172342 OK +REQUEST request_4 1714136172245 1714136172344 OK +REQUEST request_7 1714136172259 1714136172344 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136172246 1714136172344 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136172347 +REQUEST request_4 1714136172258 1714136172356 OK +REQUEST request_3 1714136172259 1714136172356 OK +REQUEST request_6 1714136172259 1714136172357 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136172259 1714136172357 OK +REQUEST request_0 1714136172346 1714136172431 OK +REQUEST request_1 1714136172432 1714136172474 OK +REQUEST request_6 1714136172433 1714136172517 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136172432 1714136172518 OK +REQUEST request_2 1714136172432 1714136172518 OK +REQUEST request_5 1714136172433 1714136172529 OK +REQUEST request_3 1714136172433 1714136172531 OK +REQUEST request_7 1714136172433 1714136172532 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136173055 +USER PlayGameRecord START 1714136173133 +REQUEST request_0 1714136173054 1714136173153 OK +REQUEST request_1 1714136173154 1714136173202 OK +REQUEST request_0 1714136173132 1714136173217 OK +USER PlayGameRecord START 1714136173226 +REQUEST request_5 1714136173155 1714136173239 OK +REQUEST request_6 1714136173155 1714136173239 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136173154 1714136173251 OK +REQUEST request_7 1714136173155 1714136173252 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136173155 1714136173252 OK +REQUEST request_4 1714136173154 1714136173254 OK +REQUEST request_1 1714136173218 1714136173260 OK +REQUEST request_5 1714136173219 1714136173302 OK +REQUEST request_2 1714136173219 1714136173303 OK +REQUEST request_3 1714136173219 1714136173304 OK +REQUEST request_0 1714136173225 1714136173310 OK +REQUEST request_4 1714136173219 1714136173316 OK +REQUEST request_6 1714136173220 1714136173317 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136173220 1714136173317 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136173311 1714136173354 OK +USER PlayGameRecord START 1714136173384 +REQUEST request_3 1714136173312 1714136173396 OK +REQUEST request_2 1714136173311 1714136173396 OK +REQUEST request_6 1714136173313 1714136173396 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136173312 1714136173397 OK +REQUEST request_7 1714136173313 1714136173410 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136173312 1714136173416 OK +REQUEST request_0 1714136173383 1714136173468 OK +REQUEST request_1 1714136173469 1714136173510 OK +REQUEST request_3 1714136173470 1714136173552 OK +REQUEST request_6 1714136173471 1714136173565 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136173470 1714136173566 OK +REQUEST request_4 1714136173470 1714136173566 OK +REQUEST request_2 1714136173469 1714136173566 OK +REQUEST request_7 1714136173471 1714136173567 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136173727 +REQUEST request_0 1714136173726 1714136173811 OK +REQUEST request_1 1714136173812 1714136173854 OK +REQUEST request_2 1714136173812 1714136173897 OK +REQUEST request_6 1714136173814 1714136173899 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136173813 1714136173910 OK +REQUEST request_5 1714136173813 1714136173911 OK +REQUEST request_3 1714136173813 1714136173911 OK +REQUEST request_7 1714136173814 1714136173912 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136174092 +REQUEST request_0 1714136174091 1714136174175 OK +USER PlayGameRecord START 1714136174186 +REQUEST request_1 1714136174175 1714136174218 OK +USER PlayGameRecord START 1714136174234 +REQUEST request_3 1714136174177 1714136174260 OK +REQUEST request_5 1714136174176 1714136174261 OK +REQUEST request_7 1714136174177 1714136174262 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136174177 1714136174273 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136174176 1714136174274 OK +REQUEST request_2 1714136174176 1714136174274 OK +USER PlayGameRecord START 1714136174280 +REQUEST request_0 1714136174186 1714136174282 OK +USER PlayGameRecord START 1714136174296 +REQUEST request_0 1714136174233 1714136174317 OK +REQUEST request_1 1714136174283 1714136174330 OK +REQUEST request_1 1714136174318 1714136174360 OK +REQUEST request_4 1714136174284 1714136174367 OK +REQUEST request_6 1714136174284 1714136174369 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136174280 1714136174377 OK +REQUEST request_2 1714136174283 1714136174379 OK +REQUEST request_7 1714136174285 1714136174380 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136174284 1714136174381 OK +REQUEST request_3 1714136174284 1714136174381 OK +REQUEST request_0 1714136174295 1714136174393 OK +REQUEST request_2 1714136174318 1714136174401 OK +REQUEST request_3 1714136174319 1714136174404 OK +REQUEST request_7 1714136174319 1714136174404 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136174318 1714136174405 OK +REQUEST request_5 1714136174319 1714136174417 OK +REQUEST request_6 1714136174319 1714136174417 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136174377 1714136174426 OK +REQUEST request_1 1714136174393 1714136174442 OK +REQUEST request_3 1714136174379 1714136174462 OK +REQUEST request_7 1714136174379 1714136174463 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136174379 1714136174464 OK +REQUEST request_2 1714136174378 1714136174474 OK +REQUEST request_6 1714136174379 1714136174476 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136174378 1714136174476 OK +REQUEST request_7 1714136174395 1714136174478 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136174394 1714136174481 OK +REQUEST request_6 1714136174395 1714136174481 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136174394 1714136174481 OK +REQUEST request_3 1714136174395 1714136174492 OK +REQUEST request_4 1714136174394 1714136174492 OK +USER PlayGameRecord START 1714136175022 +REQUEST request_0 1714136175021 1714136175105 OK +USER PlayGameRecord START 1714136175115 +USER PlayGameRecord START 1714136175146 +REQUEST request_1 1714136175106 1714136175148 OK +USER PlayGameRecord START 1714136175177 +REQUEST request_4 1714136175106 1714136175191 OK +REQUEST request_3 1714136175107 1714136175191 OK +REQUEST request_7 1714136175108 1714136175192 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136175107 1714136175203 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136175106 1714136175204 OK +REQUEST request_5 1714136175107 1714136175205 OK +REQUEST request_0 1714136175114 1714136175212 OK +REQUEST request_0 1714136175146 1714136175232 OK +REQUEST request_1 1714136175213 1714136175262 OK +REQUEST request_1 1714136175233 1714136175275 OK +REQUEST request_0 1714136175177 1714136175275 OK +REQUEST request_2 1714136175213 1714136175296 OK +REQUEST request_6 1714136175214 1714136175298 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136175213 1714136175298 OK +REQUEST request_5 1714136175214 1714136175299 OK +REQUEST request_7 1714136175214 1714136175311 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136175214 1714136175312 OK +REQUEST request_6 1714136175234 1714136175316 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136175234 1714136175318 OK +REQUEST request_3 1714136175234 1714136175319 OK +REQUEST request_1 1714136175276 1714136175324 OK +REQUEST request_5 1714136175234 1714136175330 OK +REQUEST request_7 1714136175235 1714136175331 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136175233 1714136175332 OK +USER PlayGameRecord START 1714136175335 +REQUEST request_4 1714136175277 1714136175360 OK +REQUEST request_5 1714136175277 1714136175361 OK +REQUEST request_7 1714136175278 1714136175361 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136175276 1714136175371 OK +REQUEST request_3 1714136175277 1714136175373 OK +REQUEST request_6 1714136175278 1714136175375 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136175334 1714136175432 OK +USER PlayGameRecord START 1714136175477 +REQUEST request_1 1714136175433 1714136175482 OK +USER PlayGameRecord START 1714136175493 +REQUEST request_2 1714136175433 1714136175517 OK +REQUEST request_4 1714136175434 1714136175517 OK +REQUEST request_6 1714136175434 1714136175517 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136175434 1714136175530 OK +REQUEST request_7 1714136175434 1714136175531 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136175434 1714136175531 OK +USER PlayGameRecord START 1714136175554 +REQUEST request_0 1714136175476 1714136175560 OK +REQUEST request_0 1714136175492 1714136175577 OK +REQUEST request_1 1714136175560 1714136175602 OK +REQUEST request_1 1714136175578 1714136175620 OK +REQUEST request_3 1714136175561 1714136175643 OK +REQUEST request_4 1714136175561 1714136175644 OK +REQUEST request_7 1714136175562 1714136175646 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136175649 +REQUEST request_0 1714136175554 1714136175650 OK +REQUEST request_2 1714136175560 1714136175655 OK +REQUEST request_6 1714136175561 1714136175658 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136175561 1714136175659 OK +REQUEST request_7 1714136175580 1714136175661 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136175579 1714136175662 OK +REQUEST request_5 1714136175579 1714136175663 OK +REQUEST request_6 1714136175579 1714136175675 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136175578 1714136175675 OK +REQUEST request_3 1714136175579 1714136175677 OK +REQUEST request_1 1714136175650 1714136175698 OK +REQUEST request_6 1714136175651 1714136175735 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136175651 1714136175736 OK +REQUEST request_2 1714136175650 1714136175745 OK +REQUEST request_0 1714136175648 1714136175746 OK +REQUEST request_4 1714136175651 1714136175747 OK +REQUEST request_3 1714136175651 1714136175747 OK +REQUEST request_7 1714136175652 1714136175748 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136175792 +REQUEST request_1 1714136175746 1714136175794 OK +USER PlayGameRecord START 1714136175823 +REQUEST request_3 1714136175747 1714136175831 OK +REQUEST request_5 1714136175747 1714136175831 OK +REQUEST request_2 1714136175747 1714136175832 OK +REQUEST request_6 1714136175748 1714136175844 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136175747 1714136175844 OK +REQUEST request_7 1714136175748 1714136175845 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136175792 1714136175875 OK +REQUEST request_0 1714136175823 1714136175906 OK +REQUEST request_1 1714136175875 1714136175917 OK +REQUEST request_1 1714136175907 1714136175949 OK +REQUEST request_4 1714136175876 1714136175961 OK +REQUEST request_6 1714136175876 1714136175961 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136175876 1714136175972 OK +REQUEST request_2 1714136175875 1714136175973 OK +REQUEST request_3 1714136175876 1714136175974 OK +REQUEST request_7 1714136175877 1714136175975 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136175908 1714136175992 OK +REQUEST request_3 1714136175908 1714136175993 OK +REQUEST request_2 1714136175907 1714136176003 OK +REQUEST request_7 1714136175909 1714136176004 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136175908 1714136176005 OK +REQUEST request_6 1714136175909 1714136176005 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136176068 +USER PlayGameRecord START 1714136176146 +REQUEST request_0 1714136176068 1714136176167 OK +REQUEST request_1 1714136176168 1714136176217 OK +REQUEST request_0 1714136176146 1714136176243 OK +REQUEST request_5 1714136176169 1714136176251 OK +REQUEST request_2 1714136176168 1714136176253 OK +REQUEST request_3 1714136176169 1714136176254 OK +REQUEST request_4 1714136176168 1714136176265 OK +REQUEST request_6 1714136176169 1714136176266 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136176169 1714136176266 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136176244 1714136176292 OK +REQUEST request_3 1714136176245 1714136176328 OK +REQUEST request_7 1714136176245 1714136176329 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136176245 1714136176330 OK +REQUEST request_2 1714136176244 1714136176341 OK +REQUEST request_6 1714136176245 1714136176341 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136176245 1714136176343 OK +USER PlayGameRecord START 1714136176708 +REQUEST request_0 1714136176707 1714136176806 OK +REQUEST request_1 1714136176806 1714136176855 OK +REQUEST request_4 1714136176807 1714136176891 OK +REQUEST request_7 1714136176808 1714136176891 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136176807 1714136176892 OK +REQUEST request_2 1714136176806 1714136176903 OK +REQUEST request_3 1714136176807 1714136176904 OK +REQUEST request_6 1714136176808 1714136176904 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136176973 +REQUEST request_0 1714136176973 1714136177071 OK +REQUEST request_1 1714136177071 1714136177120 OK +REQUEST request_3 1714136177072 1714136177155 OK +REQUEST request_2 1714136177071 1714136177156 OK +REQUEST request_5 1714136177072 1714136177156 OK +REQUEST request_4 1714136177072 1714136177169 OK +REQUEST request_6 1714136177073 1714136177169 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136177073 1714136177170 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136177383 +USER PlayGameRecord START 1714136177431 +REQUEST request_0 1714136177382 1714136177466 OK +REQUEST request_1 1714136177466 1714136177508 OK +USER PlayGameRecord START 1714136177525 +REQUEST request_0 1714136177430 1714136177528 OK +REQUEST request_3 1714136177468 1714136177551 OK +REQUEST request_4 1714136177467 1714136177551 OK +REQUEST request_7 1714136177468 1714136177563 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136177468 1714136177564 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136177467 1714136177564 OK +REQUEST request_5 1714136177467 1714136177565 OK +REQUEST request_1 1714136177529 1714136177578 OK +REQUEST request_7 1714136177530 1714136177613 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136177530 1714136177614 OK +REQUEST request_2 1714136177529 1714136177615 OK +REQUEST request_5 1714136177530 1714136177615 OK +REQUEST request_0 1714136177525 1714136177622 OK +REQUEST request_3 1714136177530 1714136177628 OK +REQUEST request_6 1714136177530 1714136177628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136177623 1714136177672 OK +REQUEST request_3 1714136177624 1714136177707 OK +REQUEST request_5 1714136177624 1714136177708 OK +REQUEST request_6 1714136177624 1714136177708 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136177623 1714136177708 OK +REQUEST request_4 1714136177623 1714136177720 OK +REQUEST request_7 1714136177624 1714136177721 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136177727 +REQUEST request_0 1714136177727 1714136177810 OK +REQUEST request_1 1714136177811 1714136177852 OK +REQUEST request_6 1714136177812 1714136177895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136177813 1714136177895 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136177812 1714136177895 OK +REQUEST request_3 1714136177812 1714136177896 OK +USER PlayGameRecord START 1714136177900 +REQUEST request_4 1714136177812 1714136177908 OK +REQUEST request_2 1714136177811 1714136177909 OK +USER PlayGameRecord START 1714136177946 +REQUEST request_0 1714136177900 1714136177996 OK +USER PlayGameRecord START 1714136178026 +REQUEST request_0 1714136177946 1714136178042 OK +REQUEST request_1 1714136177996 1714136178044 OK +REQUEST request_2 1714136177996 1714136178080 OK +REQUEST request_6 1714136177997 1714136178080 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136177998 1714136178081 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136177997 1714136178081 OK +REQUEST request_5 1714136177997 1714136178082 OK +REQUEST request_1 1714136178042 1714136178089 OK +REQUEST request_3 1714136177997 1714136178094 OK +REQUEST request_0 1714136178026 1714136178110 OK +REQUEST request_6 1714136178044 1714136178125 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136178042 1714136178127 OK +REQUEST request_4 1714136178043 1714136178137 OK +REQUEST request_5 1714136178043 1714136178138 OK +REQUEST request_3 1714136178043 1714136178139 OK +REQUEST request_7 1714136178044 1714136178139 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136178111 1714136178153 OK +REQUEST request_5 1714136178112 1714136178196 OK +REQUEST request_4 1714136178112 1714136178197 OK +REQUEST request_6 1714136178112 1714136178197 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136178112 1714136178209 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136178111 1714136178209 OK +REQUEST request_3 1714136178112 1714136178209 OK +USER PlayGameRecord START 1714136178217 +USER PlayGameRecord START 1714136178310 +REQUEST request_0 1714136178216 1714136178313 OK +REQUEST request_1 1714136178314 1714136178362 OK +REQUEST request_0 1714136178310 1714136178394 OK +REQUEST request_6 1714136178316 1714136178398 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136178315 1714136178398 OK +REQUEST request_4 1714136178315 1714136178411 OK +REQUEST request_7 1714136178316 1714136178413 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136178315 1714136178413 OK +REQUEST request_3 1714136178316 1714136178413 OK +REQUEST request_1 1714136178395 1714136178438 OK +REQUEST request_7 1714136178396 1714136178480 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136178395 1714136178480 OK +REQUEST request_3 1714136178396 1714136178493 OK +REQUEST request_4 1714136178395 1714136178493 OK +REQUEST request_6 1714136178396 1714136178494 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136178395 1714136178494 OK +USER PlayGameRecord START 1714136178508 +REQUEST request_0 1714136178508 1714136178591 OK +REQUEST request_1 1714136178591 1714136178633 OK +REQUEST request_2 1714136178592 1714136178676 OK +REQUEST request_3 1714136178592 1714136178676 OK +REQUEST request_7 1714136178593 1714136178689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136178593 1714136178689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136178592 1714136178689 OK +REQUEST request_5 1714136178592 1714136178690 OK +USER PlayGameRecord START 1714136179569 +REQUEST request_0 1714136179569 1714136179665 OK +USER PlayGameRecord START 1714136179695 +REQUEST request_1 1714136179665 1714136179713 OK +REQUEST request_3 1714136179666 1714136179749 OK +REQUEST request_5 1714136179666 1714136179750 OK +REQUEST request_4 1714136179666 1714136179750 OK +REQUEST request_2 1714136179665 1714136179750 OK +REQUEST request_6 1714136179666 1714136179750 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136179666 1714136179765 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136179695 1714136179779 OK +REQUEST request_1 1714136179780 1714136179822 OK +USER PlayGameRecord START 1714136179851 +REQUEST request_6 1714136179781 1714136179864 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136179781 1714136179864 OK +REQUEST request_7 1714136179782 1714136179864 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136179780 1714136179877 OK +REQUEST request_5 1714136179781 1714136179878 OK +REQUEST request_3 1714136179781 1714136179879 OK +REQUEST request_0 1714136179851 1714136179951 OK +REQUEST request_1 1714136179952 1714136180001 OK +USER PlayGameRecord START 1714136180026 +REQUEST request_7 1714136179953 1714136180036 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136179952 1714136180037 OK +USER PlayGameRecord START 1714136180042 +REQUEST request_2 1714136179952 1714136180049 OK +REQUEST request_6 1714136179953 1714136180049 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136179953 1714136180050 OK +REQUEST request_3 1714136179953 1714136180051 OK +REQUEST request_0 1714136180025 1714136180123 OK +REQUEST request_0 1714136180041 1714136180125 OK +REQUEST request_1 1714136180126 1714136180168 OK +REQUEST request_1 1714136180124 1714136180172 OK +REQUEST request_2 1714136180124 1714136180207 OK +REQUEST request_3 1714136180125 1714136180208 OK +REQUEST request_3 1714136180126 1714136180209 OK +REQUEST request_7 1714136180125 1714136180209 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136180126 1714136180209 OK +REQUEST request_6 1714136180127 1714136180209 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136180125 1714136180210 OK +REQUEST request_6 1714136180125 1714136180222 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136180126 1714136180222 OK +REQUEST request_5 1714136180125 1714136180222 OK +REQUEST request_7 1714136180127 1714136180225 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136180126 1714136180225 OK +USER PlayGameRecord START 1714136180886 +REQUEST request_0 1714136180885 1714136180970 OK +REQUEST request_1 1714136180970 1714136181012 OK +REQUEST request_3 1714136180971 1714136181055 OK +REQUEST request_2 1714136180971 1714136181055 OK +REQUEST request_7 1714136180972 1714136181055 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136180971 1714136181067 OK +REQUEST request_6 1714136180971 1714136181068 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136180971 1714136181069 OK +USER PlayGameRecord START 1714136181368 +USER PlayGameRecord START 1714136181399 +REQUEST request_0 1714136181367 1714136181450 OK +REQUEST request_1 1714136181450 1714136181492 OK +REQUEST request_0 1714136181398 1714136181496 OK +REQUEST request_3 1714136181451 1714136181535 OK +REQUEST request_4 1714136181451 1714136181535 OK +REQUEST request_5 1714136181451 1714136181536 OK +REQUEST request_7 1714136181452 1714136181536 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136181497 1714136181544 OK +REQUEST request_2 1714136181451 1714136181547 OK +REQUEST request_6 1714136181451 1714136181550 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136181498 1714136181581 OK +REQUEST request_6 1714136181498 1714136181581 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136181497 1714136181581 OK +REQUEST request_4 1714136181497 1714136181593 OK +REQUEST request_5 1714136181497 1714136181594 OK +REQUEST request_7 1714136181498 1714136181595 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136181601 +REQUEST request_0 1714136181601 1714136181683 OK +REQUEST request_1 1714136181684 1714136181725 OK +REQUEST request_5 1714136181684 1714136181767 OK +REQUEST request_6 1714136181685 1714136181769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136181685 1714136181781 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136181684 1714136181781 OK +REQUEST request_4 1714136181684 1714136181781 OK +REQUEST request_3 1714136181684 1714136181782 OK +USER PlayGameRecord START 1714136181790 +USER PlayGameRecord START 1714136181853 +REQUEST request_0 1714136181789 1714136181874 OK +REQUEST request_1 1714136181875 1714136181917 OK +REQUEST request_0 1714136181852 1714136181949 OK +REQUEST request_5 1714136181876 1714136181959 OK +REQUEST request_2 1714136181875 1714136181959 OK +REQUEST request_3 1714136181876 1714136181960 OK +REQUEST request_7 1714136181876 1714136181960 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136181876 1714136181973 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136181876 1714136181973 OK +REQUEST request_1 1714136181950 1714136181999 OK +REQUEST request_4 1714136181951 1714136182035 OK +REQUEST request_7 1714136181952 1714136182036 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136181952 1714136182036 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136181952 1714136182037 OK +REQUEST request_5 1714136181951 1714136182050 OK +REQUEST request_2 1714136181950 1714136182051 OK +USER PlayGameRecord START 1714136182260 +USER PlayGameRecord START 1714136182324 +USER PlayGameRecord START 1714136182325 +REQUEST request_0 1714136182260 1714136182343 OK +REQUEST request_1 1714136182344 1714136182385 OK +REQUEST request_0 1714136182324 1714136182406 OK +REQUEST request_0 1714136182324 1714136182421 OK +REQUEST request_4 1714136182344 1714136182429 OK +REQUEST request_6 1714136182345 1714136182429 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136182345 1714136182430 OK +REQUEST request_2 1714136182344 1714136182441 OK +REQUEST request_7 1714136182345 1714136182442 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136182345 1714136182443 OK +REQUEST request_1 1714136182407 1714136182448 OK +REQUEST request_1 1714136182421 1714136182470 OK +REQUEST request_7 1714136182408 1714136182493 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136182407 1714136182503 OK +REQUEST request_4 1714136182407 1714136182503 OK +REQUEST request_5 1714136182408 1714136182504 OK +REQUEST request_6 1714136182408 1714136182504 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136182408 1714136182505 OK +REQUEST request_6 1714136182422 1714136182505 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136182422 1714136182506 OK +REQUEST request_4 1714136182422 1714136182507 OK +REQUEST request_3 1714136182422 1714136182518 OK +REQUEST request_2 1714136182422 1714136182518 OK +REQUEST request_7 1714136182423 1714136182519 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136182558 +REQUEST request_0 1714136182558 1714136182642 OK +REQUEST request_1 1714136182643 1714136182685 OK +REQUEST request_3 1714136182644 1714136182728 OK +REQUEST request_7 1714136182644 1714136182728 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136182644 1714136182728 OK +REQUEST request_4 1714136182644 1714136182739 OK +REQUEST request_6 1714136182644 1714136182740 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136182643 1714136182740 OK +USER PlayGameRecord START 1714136182886 +USER PlayGameRecord START 1714136182903 +REQUEST request_0 1714136182886 1714136182971 OK +REQUEST request_0 1714136182903 1714136182985 OK +REQUEST request_1 1714136182971 1714136183012 OK +REQUEST request_1 1714136182986 1714136183027 OK +REQUEST request_4 1714136182972 1714136183055 OK +REQUEST request_3 1714136182972 1714136183055 OK +REQUEST request_2 1714136182971 1714136183069 OK +REQUEST request_7 1714136182987 1714136183069 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136182972 1714136183069 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136182972 1714136183070 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136182987 1714136183070 OK +REQUEST request_5 1714136182972 1714136183071 OK +REQUEST request_5 1714136182986 1714136183073 OK +REQUEST request_4 1714136182986 1714136183083 OK +REQUEST request_2 1714136182986 1714136183084 OK +REQUEST request_6 1714136182987 1714136183086 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136183199 +REQUEST request_0 1714136183199 1714136183296 OK +REQUEST request_1 1714136183297 1714136183345 OK +REQUEST request_4 1714136183297 1714136183380 OK +REQUEST request_2 1714136183297 1714136183381 OK +REQUEST request_7 1714136183298 1714136183382 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136183298 1714136183382 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136183298 1714136183394 OK +REQUEST request_5 1714136183297 1714136183394 OK +USER PlayGameRecord START 1714136183418 +REQUEST request_0 1714136183417 1714136183501 OK +REQUEST request_1 1714136183501 1714136183542 OK +REQUEST request_4 1714136183502 1714136183585 OK +REQUEST request_5 1714136183502 1714136183585 OK +REQUEST request_3 1714136183502 1714136183586 OK +REQUEST request_2 1714136183501 1714136183597 OK +REQUEST request_7 1714136183502 1714136183598 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136183502 1714136183599 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136183905 +REQUEST request_0 1714136183904 1714136183987 OK +REQUEST request_1 1714136183989 1714136184031 OK +REQUEST request_6 1714136183993 1714136184078 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136183991 1714136184079 OK +REQUEST request_5 1714136183991 1714136184091 OK +REQUEST request_2 1714136183990 1714136184091 OK +REQUEST request_3 1714136183992 1714136184091 OK +REQUEST request_7 1714136183994 1714136184092 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136184307 +REQUEST request_0 1714136184307 1714136184390 OK +REQUEST request_1 1714136184391 1714136184432 OK +REQUEST request_4 1714136184392 1714136184476 OK +REQUEST request_7 1714136184393 1714136184477 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136184393 1714136184489 OK +REQUEST request_5 1714136184393 1714136184489 OK +REQUEST request_2 1714136184391 1714136184490 OK +REQUEST request_6 1714136184393 1714136184490 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136184653 +USER PlayGameRecord START 1714136184699 +REQUEST request_0 1714136184653 1714136184750 OK +REQUEST request_0 1714136184699 1714136184796 OK +REQUEST request_1 1714136184750 1714136184798 OK +REQUEST request_4 1714136184751 1714136184833 OK +REQUEST request_5 1714136184751 1714136184833 OK +REQUEST request_7 1714136184751 1714136184833 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136184796 1714136184844 OK +REQUEST request_3 1714136184751 1714136184847 OK +REQUEST request_2 1714136184750 1714136184847 OK +REQUEST request_6 1714136184751 1714136184849 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136184797 1714136184880 OK +REQUEST request_2 1714136184796 1714136184880 OK +REQUEST request_3 1714136184797 1714136184881 OK +REQUEST request_4 1714136184797 1714136184881 OK +REQUEST request_6 1714136184797 1714136184893 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136184797 1714136184893 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136184900 +USER PlayGameRecord START 1714136184916 +REQUEST request_0 1714136184900 1714136184996 OK +REQUEST request_0 1714136184916 1714136185014 OK +REQUEST request_1 1714136184996 1714136185044 OK +REQUEST request_1 1714136185014 1714136185063 OK +REQUEST request_7 1714136184997 1714136185080 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136184996 1714136185081 OK +REQUEST request_5 1714136184997 1714136185083 OK +REQUEST request_3 1714136184997 1714136185093 OK +REQUEST request_6 1714136184997 1714136185094 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136184997 1714136185094 OK +REQUEST request_4 1714136185015 1714136185099 OK +REQUEST request_6 1714136185015 1714136185100 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136185015 1714136185111 OK +REQUEST request_7 1714136185016 1714136185112 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136185015 1714136185113 OK +REQUEST request_3 1714136185015 1714136185113 OK +USER PlayGameRecord START 1714136185309 +USER PlayGameRecord START 1714136185369 +REQUEST request_0 1714136185308 1714136185391 OK +REQUEST request_1 1714136185392 1714136185433 OK +USER PlayGameRecord START 1714136185448 +REQUEST request_0 1714136185369 1714136185454 OK +REQUEST request_5 1714136185393 1714136185476 OK +REQUEST request_3 1714136185393 1714136185476 OK +REQUEST request_4 1714136185393 1714136185476 OK +USER PlayGameRecord START 1714136185479 +REQUEST request_6 1714136185393 1714136185488 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136185392 1714136185490 OK +REQUEST request_7 1714136185393 1714136185490 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136185455 1714136185497 OK +REQUEST request_6 1714136185456 1714136185538 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136185455 1714136185538 OK +REQUEST request_0 1714136185447 1714136185545 OK +REQUEST request_3 1714136185455 1714136185551 OK +REQUEST request_2 1714136185455 1714136185551 OK +REQUEST request_5 1714136185455 1714136185552 OK +REQUEST request_7 1714136185456 1714136185554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136185478 1714136185562 OK +USER PlayGameRecord START 1714136185572 +REQUEST request_1 1714136185546 1714136185594 OK +REQUEST request_1 1714136185562 1714136185604 OK +REQUEST request_5 1714136185546 1714136185630 OK +REQUEST request_7 1714136185547 1714136185631 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136185546 1714136185641 OK +REQUEST request_4 1714136185546 1714136185643 OK +REQUEST request_3 1714136185546 1714136185644 OK +REQUEST request_6 1714136185547 1714136185644 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136185562 1714136185646 OK +REQUEST request_6 1714136185563 1714136185646 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136185563 1714136185646 OK +REQUEST request_0 1714136185572 1714136185655 OK +REQUEST request_7 1714136185563 1714136185659 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136185563 1714136185660 OK +REQUEST request_4 1714136185562 1714136185661 OK +REQUEST request_1 1714136185656 1714136185697 OK +USER PlayGameRecord START 1714136185711 +REQUEST request_7 1714136185657 1714136185739 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136185656 1714136185740 OK +REQUEST request_2 1714136185656 1714136185740 OK +REQUEST request_6 1714136185657 1714136185753 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136185656 1714136185754 OK +REQUEST request_4 1714136185656 1714136185754 OK +REQUEST request_0 1714136185711 1714136185795 OK +REQUEST request_1 1714136185796 1714136185838 OK +REQUEST request_2 1714136185796 1714136185880 OK +REQUEST request_4 1714136185796 1714136185880 OK +REQUEST request_3 1714136185797 1714136185881 OK +REQUEST request_5 1714136185796 1714136185892 OK +REQUEST request_7 1714136185797 1714136185893 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136185797 1714136185894 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136186023 +USER PlayGameRecord START 1714136186055 +REQUEST request_0 1714136186023 1714136186121 OK +REQUEST request_0 1714136186055 1714136186150 OK +REQUEST request_1 1714136186121 1714136186169 OK +REQUEST request_1 1714136186151 1714136186199 OK +REQUEST request_6 1714136186122 1714136186203 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136186122 1714136186205 OK +REQUEST request_7 1714136186122 1714136186205 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136186122 1714136186218 OK +REQUEST request_2 1714136186121 1714136186218 OK +REQUEST request_4 1714136186122 1714136186219 OK +REQUEST request_5 1714136186151 1714136186234 OK +REQUEST request_3 1714136186152 1714136186235 OK +REQUEST request_6 1714136186152 1714136186247 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136186151 1714136186248 OK +REQUEST request_2 1714136186151 1714136186248 OK +REQUEST request_7 1714136186152 1714136186249 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136186726 +USER PlayGameRecord START 1714136186774 +USER PlayGameRecord START 1714136186821 +REQUEST request_0 1714136186726 1714136186822 OK +REQUEST request_0 1714136186773 1714136186870 OK +REQUEST request_1 1714136186823 1714136186870 OK +REQUEST request_0 1714136186821 1714136186904 OK +REQUEST request_3 1714136186823 1714136186906 OK +REQUEST request_2 1714136186823 1714136186906 OK +REQUEST request_6 1714136186824 1714136186906 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136186870 1714136186918 OK +REQUEST request_4 1714136186823 1714136186919 OK +REQUEST request_7 1714136186824 1714136186920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136186823 1714136186921 OK +REQUEST request_1 1714136186904 1714136186946 OK +REQUEST request_2 1714136186870 1714136186954 OK +REQUEST request_3 1714136186871 1714136186954 OK +REQUEST request_7 1714136186871 1714136186954 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136186871 1714136186955 OK +REQUEST request_4 1714136186871 1714136186967 OK +REQUEST request_6 1714136186871 1714136186968 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136186906 1714136186988 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136186905 1714136186988 OK +REQUEST request_3 1714136186905 1714136186988 OK +REQUEST request_6 1714136186905 1714136187001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136186905 1714136187001 OK +REQUEST request_4 1714136186905 1714136187002 OK +USER PlayGameRecord START 1714136187166 +REQUEST request_0 1714136187166 1714136187250 OK +REQUEST request_1 1714136187251 1714136187292 OK +REQUEST request_4 1714136187251 1714136187335 OK +REQUEST request_7 1714136187252 1714136187336 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136187251 1714136187336 OK +USER PlayGameRecord START 1714136187338 +REQUEST request_8 1714136187259 1714136187342 OK +REQUEST request_6 1714136187252 1714136187347 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136187251 1714136187347 OK +REQUEST request_5 1714136187251 1714136187348 OK +REQUEST request_10 1714136187343 1714136187427 OK +REQUEST request_0 1714136187338 1714136187433 OK +REQUEST request_8 1714136187354 1714136187438 OK +REQUEST request_9 1714136187342 1714136187446 OK +REQUEST request_8 1714136187369 1714136187466 OK +USER PlayGameRecord START 1714136187479 +REQUEST request_1 1714136187434 1714136187482 OK +REQUEST request_3 1714136187435 1714136187518 OK +REQUEST request_2 1714136187434 1714136187519 OK +REQUEST request_10 1714136187439 1714136187521 OK +REQUEST request_5 1714136187434 1714136187531 OK +REQUEST request_7 1714136187435 1714136187531 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136187435 1714136187531 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136187434 1714136187532 OK +REQUEST request_9 1714136187438 1714136187546 OK +REQUEST request_10 1714136187466 1714136187562 OK +REQUEST request_0 1714136187479 1714136187575 OK +REQUEST request_9 1714136187466 1714136187576 OK +REQUEST request_1 1714136187575 1714136187623 OK +REQUEST request_8 1714136187542 1714136187625 OK +REQUEST request_2 1714136187575 1714136187657 OK +REQUEST request_5 1714136187576 1714136187659 OK +REQUEST request_4 1714136187576 1714136187660 OK +REQUEST request_7 1714136187576 1714136187660 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136187576 1714136187672 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136187576 1714136187674 OK +REQUEST request_10 1714136187625 1714136187709 OK +REQUEST request_9 1714136187625 1714136187724 OK +USER PlayGameRecord START 1714136187761 +REQUEST request_0 1714136187761 1714136187858 OK +REQUEST request_1 1714136187859 1714136187908 OK +USER PlayGameRecord START 1714136187918 +REQUEST request_6 1714136187860 1714136187943 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136187860 1714136187955 OK +REQUEST request_2 1714136187859 1714136187956 OK +REQUEST request_7 1714136187860 1714136187956 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136187860 1714136187957 OK +REQUEST request_4 1714136187859 1714136187957 OK +REQUEST request_0 1714136187918 1714136188001 OK +USER PlayGameRecord START 1714136188026 +REQUEST request_1 1714136188001 1714136188043 OK +REQUEST request_3 1714136188002 1714136188084 OK +REQUEST request_5 1714136188002 1714136188085 OK +REQUEST request_7 1714136188002 1714136188086 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136188002 1714136188098 OK +REQUEST request_6 1714136188002 1714136188098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136188001 1714136188099 OK +REQUEST request_0 1714136188026 1714136188122 OK +REQUEST request_1 1714136188122 1714136188170 OK +REQUEST request_5 1714136188123 1714136188207 OK +REQUEST request_7 1714136188124 1714136188207 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136188123 1714136188208 OK +REQUEST request_2 1714136188123 1714136188218 OK +REQUEST request_6 1714136188123 1714136188219 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136188123 1714136188219 OK +REQUEST request_8 1714136188259 1714136188356 OK +USER PlayGameRecord START 1714136188384 +REQUEST request_8 1714136188321 1714136188419 OK +REQUEST request_10 1714136188357 1714136188453 OK +REQUEST request_0 1714136188384 1714136188467 OK +REQUEST request_9 1714136188356 1714136188478 OK +REQUEST request_1 1714136188467 1714136188509 OK +REQUEST request_8 1714136188430 1714136188515 OK +REQUEST request_10 1714136188420 1714136188516 OK +REQUEST request_9 1714136188419 1714136188519 OK +REQUEST request_3 1714136188468 1714136188550 OK +REQUEST request_6 1714136188468 1714136188551 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136188467 1714136188552 OK +REQUEST request_5 1714136188467 1714136188564 OK +REQUEST request_7 1714136188468 1714136188565 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136188467 1714136188565 OK +USER PlayGameRecord START 1714136188585 +REQUEST request_10 1714136188515 1714136188598 OK +REQUEST request_9 1714136188515 1714136188615 OK +REQUEST request_8 1714136188569 1714136188653 OK +REQUEST request_0 1714136188585 1714136188682 OK +REQUEST request_1 1714136188682 1714136188731 OK +REQUEST request_10 1714136188654 1714136188735 OK +REQUEST request_9 1714136188653 1714136188753 OK +REQUEST request_3 1714136188683 1714136188766 OK +REQUEST request_5 1714136188683 1714136188767 OK +REQUEST request_4 1714136188683 1714136188767 OK +REQUEST request_2 1714136188683 1714136188778 OK +REQUEST request_7 1714136188684 1714136188780 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136188684 1714136188782 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136188962 +REQUEST request_8 1714136188914 1714136189010 OK +REQUEST request_0 1714136188962 1714136189058 OK +REQUEST request_10 1714136189011 1714136189093 OK +REQUEST request_1 1714136189059 1714136189106 OK +REQUEST request_9 1714136189011 1714136189118 OK +REQUEST request_5 1714136189059 1714136189142 OK +REQUEST request_7 1714136189060 1714136189144 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136189059 1714136189154 OK +REQUEST request_4 1714136189059 1714136189155 OK +REQUEST request_3 1714136189059 1714136189155 OK +REQUEST request_6 1714136189059 1714136189156 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136189289 1714136189375 OK +USER PlayGameRecord START 1714136189384 +USER PlayGameRecord START 1714136189461 +REQUEST request_8 1714136189383 1714136189467 OK +REQUEST request_0 1714136189384 1714136189467 OK +REQUEST request_10 1714136189376 1714136189471 OK +REQUEST request_9 1714136189376 1714136189479 OK +USER PlayGameRecord START 1714136189492 +REQUEST request_1 1714136189467 1714136189509 OK +REQUEST request_8 1714136189430 1714136189526 OK +REQUEST request_5 1714136189468 1714136189550 OK +REQUEST request_7 1714136189468 1714136189551 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136189467 1714136189551 OK +REQUEST request_0 1714136189460 1714136189557 OK +REQUEST request_10 1714136189467 1714136189563 OK +REQUEST request_3 1714136189468 1714136189563 OK +REQUEST request_6 1714136189468 1714136189565 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136189467 1714136189565 OK +REQUEST request_9 1714136189467 1714136189571 OK +REQUEST request_8 1714136189491 1714136189574 OK +REQUEST request_0 1714136189491 1714136189575 OK +REQUEST request_1 1714136189557 1714136189605 OK +REQUEST request_8 1714136189508 1714136189607 OK +REQUEST request_1 1714136189575 1714136189617 OK +REQUEST request_10 1714136189527 1714136189623 OK +REQUEST request_9 1714136189527 1714136189638 OK +REQUEST request_7 1714136189558 1714136189642 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136189557 1714136189642 OK +REQUEST request_5 1714136189558 1714136189654 OK +REQUEST request_6 1714136189558 1714136189655 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136189558 1714136189655 OK +REQUEST request_4 1714136189558 1714136189655 OK +REQUEST request_2 1714136189575 1714136189656 OK +REQUEST request_5 1714136189575 1714136189659 OK +REQUEST request_3 1714136189575 1714136189660 OK +REQUEST request_10 1714136189575 1714136189672 OK +REQUEST request_6 1714136189576 1714136189672 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136189575 1714136189672 OK +REQUEST request_7 1714136189576 1714136189673 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136189574 1714136189682 OK +USER PlayGameRecord START 1714136189682 +REQUEST request_10 1714136189608 1714136189705 OK +REQUEST request_9 1714136189607 1714136189718 OK +REQUEST request_0 1714136189682 1714136189765 OK +USER PlayGameRecord START 1714136189774 +REQUEST request_1 1714136189766 1714136189808 OK +REQUEST request_7 1714136189767 1714136189850 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136189767 1714136189851 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136189767 1714136189851 OK +REQUEST request_2 1714136189766 1714136189864 OK +REQUEST request_5 1714136189767 1714136189864 OK +REQUEST request_3 1714136189767 1714136189866 OK +REQUEST request_0 1714136189773 1714136189871 OK +REQUEST request_1 1714136189872 1714136189920 OK +REQUEST request_7 1714136189873 1714136189955 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136189872 1714136189956 OK +REQUEST request_4 1714136189872 1714136189968 OK +REQUEST request_3 1714136189872 1714136189968 OK +REQUEST request_6 1714136189872 1714136189969 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136189872 1714136189969 OK +USER PlayGameRecord START 1714136190287 +REQUEST request_8 1714136190210 1714136190308 OK +REQUEST request_0 1714136190287 1714136190385 OK +REQUEST request_10 1714136190308 1714136190390 OK +REQUEST request_8 1714136190319 1714136190403 OK +REQUEST request_9 1714136190308 1714136190416 OK +REQUEST request_8 1714136190334 1714136190418 OK +REQUEST request_1 1714136190386 1714136190438 OK +REQUEST request_7 1714136190387 1714136190469 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136190386 1714136190469 OK +REQUEST request_6 1714136190386 1714136190471 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136190380 1714136190477 OK +REQUEST request_2 1714136190386 1714136190482 OK +REQUEST request_5 1714136190386 1714136190483 OK +REQUEST request_3 1714136190386 1714136190484 OK +REQUEST request_10 1714136190404 1714136190501 OK +REQUEST request_9 1714136190404 1714136190509 OK +REQUEST request_10 1714136190418 1714136190515 OK +REQUEST request_9 1714136190418 1714136190523 OK +REQUEST request_10 1714136190478 1714136190560 OK +USER PlayGameRecord START 1714136190569 +REQUEST request_9 1714136190477 1714136190584 OK +REQUEST request_8 1714136190538 1714136190633 OK +REQUEST request_0 1714136190568 1714136190651 OK +REQUEST request_1 1714136190651 1714136190692 OK +USER PlayGameRecord START 1714136190725 +REQUEST request_10 1714136190634 1714136190731 OK +REQUEST request_3 1714136190652 1714136190734 OK +REQUEST request_5 1714136190652 1714136190734 OK +REQUEST request_2 1714136190651 1714136190734 OK +REQUEST request_9 1714136190634 1714136190739 OK +REQUEST request_8 1714136190659 1714136190742 OK +REQUEST request_7 1714136190652 1714136190748 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136190652 1714136190748 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136190651 1714136190749 OK +REQUEST request_8 1714136190678 1714136190762 OK +REQUEST request_0 1714136190725 1714136190809 OK +REQUEST request_10 1714136190742 1714136190824 OK +REQUEST request_8 1714136190757 1714136190841 OK +REQUEST request_9 1714136190742 1714136190843 OK +REQUEST request_1 1714136190809 1714136190851 OK +REQUEST request_10 1714136190762 1714136190860 OK +REQUEST request_9 1714136190762 1714136190865 OK +REQUEST request_4 1714136190809 1714136190892 OK +REQUEST request_7 1714136190810 1714136190892 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136190810 1714136190892 OK +REQUEST request_2 1714136190809 1714136190893 OK +REQUEST request_5 1714136190810 1714136190894 OK +REQUEST request_6 1714136190810 1714136190905 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136190841 1714136190938 OK +REQUEST request_9 1714136190841 1714136190943 OK +USER PlayGameRecord START 1714136190945 +REQUEST request_8 1714136190850 1714136190947 OK +USER PlayGameRecord START 1714136190961 +REQUEST request_0 1714136190945 1714136191027 OK +REQUEST request_0 1714136190960 1714136191045 OK +REQUEST request_10 1714136190948 1714136191045 OK +REQUEST request_9 1714136190948 1714136191057 OK +REQUEST request_1 1714136191027 1714136191068 OK +USER PlayGameRecord START 1714136191071 +REQUEST request_8 1714136190976 1714136191072 OK +REQUEST request_1 1714136191045 1714136191087 OK +REQUEST request_8 1714136191007 1714136191092 OK +REQUEST request_4 1714136191028 1714136191111 OK +REQUEST request_6 1714136191028 1714136191112 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136191028 1714136191112 OK +REQUEST request_3 1714136191028 1714136191114 OK +REQUEST request_7 1714136191028 1714136191124 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136191027 1714136191125 OK +REQUEST request_2 1714136191045 1714136191128 OK +REQUEST request_7 1714136191046 1714136191130 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136191046 1714136191141 OK +REQUEST request_6 1714136191046 1714136191142 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136191046 1714136191143 OK +REQUEST request_4 1714136191045 1714136191144 OK +REQUEST request_0 1714136191070 1714136191155 OK +REQUEST request_10 1714136191072 1714136191156 OK +REQUEST request_10 1714136191092 1714136191188 OK +REQUEST request_9 1714136191072 1714136191189 OK +REQUEST request_1 1714136191155 1714136191197 OK +REQUEST request_9 1714136191092 1714136191199 OK +REQUEST request_2 1714136191155 1714136191238 OK +REQUEST request_6 1714136191156 1714136191239 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136191156 1714136191240 OK +REQUEST request_7 1714136191156 1714136191252 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136191156 1714136191252 OK +REQUEST request_3 1714136191156 1714136191253 OK +REQUEST request_8 1714136191273 1714136191371 OK +REQUEST request_8 1714136191351 1714136191435 OK +REQUEST request_10 1714136191372 1714136191455 OK +USER PlayGameRecord START 1714136191462 +REQUEST request_9 1714136191372 1714136191477 OK +USER PlayGameRecord START 1714136191494 +REQUEST request_10 1714136191436 1714136191533 OK +REQUEST request_9 1714136191435 1714136191534 OK +REQUEST request_0 1714136191462 1714136191544 OK +REQUEST request_0 1714136191494 1714136191579 OK +REQUEST request_1 1714136191544 1714136191586 OK +REQUEST request_1 1714136191579 1714136191621 OK +REQUEST request_5 1714136191545 1714136191628 OK +REQUEST request_7 1714136191545 1714136191628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136191545 1714136191629 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136191545 1714136191641 OK +REQUEST request_2 1714136191545 1714136191642 OK +REQUEST request_4 1714136191545 1714136191643 OK +REQUEST request_5 1714136191580 1714136191663 OK +REQUEST request_2 1714136191579 1714136191675 OK +REQUEST request_7 1714136191580 1714136191676 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136191580 1714136191677 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136191580 1714136191677 OK +REQUEST request_4 1714136191580 1714136191677 OK +REQUEST request_8 1714136191917 1714136192001 OK +USER PlayGameRecord START 1714136192074 +REQUEST request_10 1714136192002 1714136192099 OK +REQUEST request_9 1714136192002 1714136192100 OK +REQUEST request_0 1714136192073 1714136192158 OK +USER PlayGameRecord START 1714136192168 +REQUEST request_1 1714136192159 1714136192200 OK +USER PlayGameRecord START 1714136192216 +REQUEST request_2 1714136192159 1714136192241 OK +REQUEST request_5 1714136192159 1714136192244 OK +REQUEST request_4 1714136192159 1714136192244 OK +REQUEST request_7 1714136192160 1714136192244 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136192168 1714136192251 OK +REQUEST request_3 1714136192159 1714136192256 OK +REQUEST request_6 1714136192160 1714136192256 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136192184 1714136192280 OK +REQUEST request_1 1714136192251 1714136192292 OK +REQUEST request_0 1714136192216 1714136192313 OK +REQUEST request_5 1714136192251 1714136192334 OK +REQUEST request_3 1714136192252 1714136192334 OK +REQUEST request_2 1714136192251 1714136192348 OK +REQUEST request_6 1714136192252 1714136192348 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136192252 1714136192348 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136192251 1714136192350 OK +REQUEST request_1 1714136192314 1714136192362 OK +REQUEST request_10 1714136192280 1714136192377 OK +REQUEST request_9 1714136192280 1714136192388 OK +REQUEST request_6 1714136192314 1714136192397 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136192314 1714136192397 OK +REQUEST request_5 1714136192314 1714136192398 OK +REQUEST request_7 1714136192315 1714136192410 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136192314 1714136192410 OK +REQUEST request_3 1714136192314 1714136192413 OK +REQUEST request_11 1714136192466 1714136192563 OK +REQUEST request_11 1714136192546 1714136192631 OK +REQUEST request_8 1714136192576 1714136192660 OK +REQUEST request_11 1714136192592 1714136192689 OK +REQUEST request_8 1714136192640 1714136192736 OK +REQUEST request_10 1714136192660 1714136192742 OK +REQUEST request_9 1714136192660 1714136192761 OK +USER PlayGameRecord START 1714136192784 +REQUEST request_8 1714136192735 1714136192818 OK +REQUEST request_10 1714136192736 1714136192818 OK +REQUEST request_11 1714136192735 1714136192831 OK +REQUEST request_9 1714136192736 1714136192840 OK +REQUEST request_0 1714136192783 1714136192879 OK +REQUEST request_10 1714136192818 1714136192900 OK +REQUEST request_9 1714136192818 1714136192917 OK +REQUEST request_1 1714136192880 1714136192927 OK +REQUEST request_2 1714136192880 1714136192962 OK +REQUEST request_6 1714136192881 1714136192963 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136192880 1714136192963 OK +REQUEST request_7 1714136192881 1714136192964 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136192881 1714136192977 OK +REQUEST request_4 1714136192880 1714136192978 OK +REQUEST request_8 1714136192924 1714136193005 OK +REQUEST request_10 1714136193005 1714136193102 OK +REQUEST request_9 1714136193005 1714136193105 OK +REQUEST request_8 1714136193098 1714136193181 OK +REQUEST request_8 1714136193145 1714136193228 OK +USER PlayGameRecord START 1714136193237 +REQUEST request_10 1714136193181 1714136193264 OK +REQUEST request_9 1714136193181 1714136193281 OK +REQUEST request_8 1714136193222 1714136193305 OK +REQUEST request_10 1714136193228 1714136193310 OK +REQUEST request_0 1714136193237 1714136193319 OK +REQUEST request_9 1714136193228 1714136193327 OK +REQUEST request_1 1714136193320 1714136193360 OK +REQUEST request_10 1714136193306 1714136193401 OK +REQUEST request_4 1714136193320 1714136193403 OK +REQUEST request_7 1714136193320 1714136193403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136193306 1714136193405 OK +REQUEST request_2 1714136193320 1714136193415 OK +REQUEST request_6 1714136193320 1714136193416 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136193320 1714136193416 OK +REQUEST request_5 1714136193320 1714136193417 OK +REQUEST request_8 1714136193424 1714136193521 OK +REQUEST request_11 1714136193479 1714136193563 OK +REQUEST request_8 1714136193501 1714136193584 OK +REQUEST request_11 1714136193520 1714136193602 OK +REQUEST request_10 1714136193522 1714136193619 OK +REQUEST request_9 1714136193521 1714136193630 OK +REQUEST request_10 1714136193584 1714136193667 OK +REQUEST request_9 1714136193584 1714136193691 OK +REQUEST request_12 1714136193578 1714136193693 OK +REQUEST request_11 1714136193616 1714136193697 OK +REQUEST request_12 1714136193639 1714136193751 OK +REQUEST request_14 1714136193694 1714136193777 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136193704 1714136193786 OK +REQUEST request_13 1714136193693 1714136193791 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136193751 1714136193791 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136193798 +REQUEST request_12 1714136193704 1714136193817 OK +REQUEST request_14 1714136193751 1714136193846 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136193754 1714136193849 OK +REQUEST request_10 1714136193786 1714136193883 OK +REQUEST request_9 1714136193786 1714136193886 OK +USER PlayGameRecord START 1714136193894 +REQUEST request_0 1714136193798 1714136193896 OK +REQUEST request_14 1714136193817 1714136193900 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136193817 1714136193913 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136193896 1714136193945 OK +REQUEST request_12 1714136193846 1714136193946 OK +REQUEST request_0 1714136193893 1714136193978 OK +REQUEST request_3 1714136193897 1714136193979 OK +REQUEST request_2 1714136193896 1714136193980 OK +REQUEST request_6 1714136193897 1714136193980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136193946 1714136193986 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136193897 1714136193993 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136193896 1714136193993 OK +REQUEST request_5 1714136193897 1714136193993 OK +USER PlayGameRecord START 1714136194003 +REQUEST request_1 1714136193978 1714136194020 OK +REQUEST request_14 1714136193946 1714136194042 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136193979 1714136194060 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136193978 1714136194062 OK +REQUEST request_2 1714136193978 1714136194073 OK +REQUEST request_3 1714136193978 1714136194075 OK +REQUEST request_4 1714136193978 1714136194076 OK +REQUEST request_7 1714136193979 1714136194076 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136194003 1714136194085 OK +REQUEST request_1 1714136194085 1714136194126 OK +USER PlayGameRecord START 1714136194129 +REQUEST request_2 1714136194085 1714136194168 OK +REQUEST request_6 1714136194086 1714136194169 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136194175 +REQUEST request_7 1714136194086 1714136194181 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136194086 1714136194181 OK +REQUEST request_4 1714136194085 1714136194183 OK +REQUEST request_3 1714136194086 1714136194183 OK +USER PlayGameRecord START 1714136194190 +REQUEST request_11 1714136194127 1714136194210 OK +REQUEST request_0 1714136194129 1714136194223 OK +USER PlayGameRecord START 1714136194253 +REQUEST request_1 1714136194224 1714136194271 OK +REQUEST request_0 1714136194175 1714136194271 OK +REQUEST request_0 1714136194190 1714136194271 OK +REQUEST request_3 1714136194224 1714136194309 OK +REQUEST request_2 1714136194224 1714136194309 OK +REQUEST request_6 1714136194224 1714136194309 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136194224 1714136194310 OK +REQUEST request_1 1714136194272 1714136194312 OK +REQUEST request_7 1714136194225 1714136194319 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136194271 1714136194320 OK +REQUEST request_4 1714136194224 1714136194322 OK +REQUEST request_0 1714136194253 1714136194348 OK +REQUEST request_4 1714136194272 1714136194354 OK +REQUEST request_2 1714136194271 1714136194354 OK +REQUEST request_5 1714136194272 1714136194355 OK +REQUEST request_6 1714136194272 1714136194355 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136194272 1714136194356 OK +REQUEST request_5 1714136194272 1714136194357 OK +USER PlayGameRecord START 1714136194363 +REQUEST request_2 1714136194272 1714136194367 OK +REQUEST request_3 1714136194272 1714136194368 OK +REQUEST request_6 1714136194272 1714136194369 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136194272 1714136194369 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136194272 1714136194369 OK +REQUEST request_7 1714136194272 1714136194371 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136194394 +REQUEST request_1 1714136194349 1714136194396 OK +REQUEST request_2 1714136194349 1714136194432 OK +REQUEST request_3 1714136194350 1714136194432 OK +REQUEST request_5 1714136194349 1714136194434 OK +REQUEST request_6 1714136194350 1714136194446 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136194350 1714136194447 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136194349 1714136194447 OK +REQUEST request_0 1714136194363 1714136194460 OK +REQUEST request_0 1714136194394 1714136194489 OK +REQUEST request_1 1714136194461 1714136194509 OK +REQUEST request_1 1714136194490 1714136194538 OK +REQUEST request_3 1714136194461 1714136194545 OK +REQUEST request_5 1714136194461 1714136194545 OK +REQUEST request_7 1714136194462 1714136194557 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136194461 1714136194557 OK +REQUEST request_2 1714136194461 1714136194557 OK +REQUEST request_6 1714136194462 1714136194559 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136194480 1714136194563 OK +REQUEST request_5 1714136194490 1714136194574 OK +REQUEST request_3 1714136194490 1714136194574 OK +REQUEST request_2 1714136194490 1714136194574 OK +REQUEST request_4 1714136194490 1714136194575 OK +REQUEST request_6 1714136194491 1714136194586 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136194491 1714136194589 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136194600 +USER PlayGameRecord START 1714136194616 +REQUEST request_11 1714136194572 1714136194662 OK +REQUEST request_12 1714136194568 1714136194669 OK +REQUEST request_0 1714136194600 1714136194696 OK +REQUEST request_13 1714136194670 1714136194710 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136194616 1714136194711 OK +REQUEST request_12 1714136194616 1714136194714 OK +REQUEST request_11 1714136194648 1714136194730 OK +REQUEST request_1 1714136194697 1714136194745 OK +REQUEST request_1 1714136194711 1714136194758 OK +REQUEST request_14 1714136194714 1714136194762 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136194670 1714136194765 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136194683 1714136194766 OK +REQUEST request_2 1714136194697 1714136194779 OK +REQUEST request_3 1714136194697 1714136194779 OK +REQUEST request_5 1714136194697 1714136194780 OK +REQUEST request_7 1714136194697 1714136194780 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136194711 1714136194793 OK +REQUEST request_4 1714136194697 1714136194794 OK +REQUEST request_6 1714136194697 1714136194794 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136194711 1714136194795 OK +REQUEST request_13 1714136194714 1714136194797 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136194711 1714136194806 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136194711 1714136194807 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136194709 1714136194807 OK +REQUEST request_4 1714136194711 1714136194808 OK +REQUEST request_2 1714136194711 1714136194808 OK +REQUEST request_11 1714136194725 1714136194824 OK +REQUEST request_14 1714136194808 1714136194849 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136194773 1714136194868 OK +REQUEST request_13 1714136194807 1714136194904 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136194915 +REQUEST request_10 1714136194868 1714136194952 OK +USER PlayGameRecord START 1714136194962 +REQUEST request_12 1714136194851 1714136194968 OK +REQUEST request_9 1714136194868 1714136194978 OK +REQUEST request_8 1714136194883 1714136194979 OK +USER PlayGameRecord START 1714136194994 +REQUEST request_0 1714136194915 1714136195012 OK +REQUEST request_14 1714136194969 1714136195016 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136194962 1714136195047 OK +REQUEST request_13 1714136194968 1714136195051 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136195012 1714136195061 OK +REQUEST request_10 1714136194980 1714136195063 OK +REQUEST request_0 1714136194994 1714136195078 OK +REQUEST request_9 1714136194979 1714136195085 OK +REQUEST request_1 1714136195047 1714136195088 OK +REQUEST request_4 1714136195013 1714136195096 OK +REQUEST request_7 1714136195013 1714136195096 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136195013 1714136195096 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136195012 1714136195108 OK +REQUEST request_3 1714136195013 1714136195109 OK +REQUEST request_5 1714136195013 1714136195109 OK +REQUEST request_1 1714136195078 1714136195120 OK +REQUEST request_5 1714136195047 1714136195129 OK +REQUEST request_3 1714136195047 1714136195131 OK +REQUEST request_6 1714136195047 1714136195132 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136195047 1714136195144 OK +REQUEST request_7 1714136195047 1714136195144 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136195047 1714136195144 OK +REQUEST request_8 1714136195054 1714136195149 OK +REQUEST request_7 1714136195079 1714136195160 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136195078 1714136195161 OK +REQUEST request_4 1714136195078 1714136195164 OK +REQUEST request_2 1714136195078 1714136195176 OK +REQUEST request_3 1714136195078 1714136195176 OK +REQUEST request_6 1714136195079 1714136195176 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136195150 1714136195247 OK +REQUEST request_9 1714136195150 1714136195258 OK +REQUEST request_8 1714136195226 1714136195310 OK +REQUEST request_8 1714136195226 1714136195323 OK +REQUEST request_12 1714136195211 1714136195323 OK +REQUEST request_13 1714136195323 1714136195365 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136195380 +USER PlayGameRecord START 1714136195380 +REQUEST request_10 1714136195310 1714136195393 OK +USER PlayGameRecord START 1714136195396 +REQUEST request_10 1714136195323 1714136195406 OK +REQUEST request_9 1714136195310 1714136195411 OK +REQUEST request_14 1714136195323 1714136195418 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136195323 1714136195431 OK +REQUEST request_0 1714136195380 1714136195462 OK +REQUEST request_0 1714136195380 1714136195476 OK +REQUEST request_0 1714136195395 1714136195477 OK +REQUEST request_1 1714136195463 1714136195503 OK +REQUEST request_1 1714136195478 1714136195519 OK +REQUEST request_1 1714136195476 1714136195524 OK +REQUEST request_11 1714136195427 1714136195524 OK +REQUEST request_4 1714136195463 1714136195546 OK +REQUEST request_6 1714136195463 1714136195547 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136195463 1714136195560 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136195478 1714136195560 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136195477 1714136195561 OK +REQUEST request_3 1714136195463 1714136195561 OK +REQUEST request_2 1714136195476 1714136195561 OK +REQUEST request_2 1714136195463 1714136195561 OK +REQUEST request_4 1714136195477 1714136195561 OK +REQUEST request_5 1714136195463 1714136195561 OK +REQUEST request_5 1714136195478 1714136195561 OK +REQUEST request_7 1714136195477 1714136195561 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136195478 1714136195574 OK +REQUEST request_2 1714136195478 1714136195574 OK +REQUEST request_5 1714136195477 1714136195574 OK +REQUEST request_7 1714136195478 1714136195574 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136195478 1714136195574 OK +REQUEST request_6 1714136195477 1714136195575 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136195510 1714136195591 OK +REQUEST request_11 1714136195523 1714136195620 OK +REQUEST request_12 1714136195578 1714136195676 OK +REQUEST request_11 1714136195595 1714136195678 OK +REQUEST request_14 1714136195677 1714136195761 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136195676 1714136195772 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136195672 1714136195781 OK +USER PlayGameRecord START 1714136195810 +REQUEST request_13 1714136195781 1714136195823 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136195734 1714136195830 OK +REQUEST request_11 1714136195740 1714136195835 OK +REQUEST request_14 1714136195781 1714136195864 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136195779 1714136195889 OK +REQUEST request_0 1714136195810 1714136195893 OK +REQUEST request_14 1714136195830 1714136195912 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136195830 1714136195913 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136195851 1714136195933 OK +REQUEST request_1 1714136195893 1714136195934 OK +REQUEST request_12 1714136195840 1714136195951 OK +REQUEST request_11 1714136195871 1714136195966 OK +REQUEST request_14 1714136195889 1714136195973 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136195894 1714136195976 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136195894 1714136195977 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136195893 1714136195977 OK +REQUEST request_4 1714136195893 1714136195977 OK +REQUEST request_13 1714136195889 1714136195986 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136195893 1714136195990 OK +REQUEST request_3 1714136195894 1714136195991 OK +REQUEST request_14 1714136195951 1714136195992 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136195950 1714136196033 OK +REQUEST request_13 1714136195951 1714136196048 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136196121 +REQUEST request_11 1714136196058 1714136196141 OK +REQUEST request_8 1714136196074 1714136196158 OK +REQUEST request_0 1714136196121 1714136196216 OK +REQUEST request_10 1714136196158 1714136196243 OK +REQUEST request_9 1714136196158 1714136196258 OK +REQUEST request_1 1714136196216 1714136196264 OK +REQUEST request_11 1714136196197 1714136196279 OK +REQUEST request_11 1714136196212 1714136196296 OK +REQUEST request_2 1714136196216 1714136196299 OK +REQUEST request_3 1714136196217 1714136196300 OK +REQUEST request_6 1714136196217 1714136196301 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136196217 1714136196313 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136196217 1714136196314 OK +REQUEST request_4 1714136196217 1714136196314 OK +USER PlayGameRecord START 1714136196350 +REQUEST request_0 1714136196350 1714136196447 OK +REQUEST request_1 1714136196447 1714136196495 OK +USER PlayGameRecord START 1714136196504 +REQUEST request_5 1714136196448 1714136196531 OK +REQUEST request_3 1714136196448 1714136196531 OK +REQUEST request_7 1714136196448 1714136196544 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136196448 1714136196544 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136196447 1714136196544 OK +REQUEST request_4 1714136196448 1714136196545 OK +REQUEST request_11 1714136196488 1714136196584 OK +REQUEST request_0 1714136196503 1714136196600 OK +REQUEST request_11 1714136196534 1714136196616 OK +REQUEST request_12 1714136196535 1714136196645 OK +REQUEST request_8 1714136196551 1714136196647 OK +REQUEST request_1 1714136196600 1714136196650 OK +REQUEST request_8 1714136196598 1714136196680 OK +REQUEST request_5 1714136196601 1714136196683 OK +REQUEST request_7 1714136196601 1714136196684 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136196601 1714136196685 OK +REQUEST request_3 1714136196601 1714136196698 OK +REQUEST request_6 1714136196601 1714136196698 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136196601 1714136196699 OK +REQUEST request_12 1714136196598 1714136196713 OK +REQUEST request_13 1714136196647 1714136196730 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136196648 1714136196732 OK +REQUEST request_14 1714136196648 1714136196745 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136196629 1714136196749 OK +REQUEST request_13 1714136196713 1714136196753 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136196648 1714136196763 OK +REQUEST request_10 1714136196681 1714136196764 OK +REQUEST request_12 1714136196691 1714136196789 OK +REQUEST request_13 1714136196749 1714136196790 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136196713 1714136196796 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136196799 +REQUEST request_9 1714136196681 1714136196800 OK +REQUEST request_14 1714136196749 1714136196843 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136196789 1714136196871 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136196789 1714136196871 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136196784 1714136196881 OK +REQUEST request_0 1714136196798 1714136196882 OK +USER PlayGameRecord START 1714136196894 +REQUEST request_1 1714136196882 1714136196924 OK +USER PlayGameRecord START 1714136196924 +REQUEST request_12 1714136196845 1714136196961 OK +REQUEST request_2 1714136196883 1714136196964 OK +REQUEST request_5 1714136196883 1714136196965 OK +REQUEST request_7 1714136196883 1714136196966 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136196894 1714136196977 OK +REQUEST request_10 1714136196881 1714136196977 OK +REQUEST request_3 1714136196883 1714136196979 OK +REQUEST request_6 1714136196883 1714136196980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136196883 1714136196981 OK +REQUEST request_9 1714136196881 1714136196993 OK +REQUEST request_13 1714136196961 1714136197002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136196977 1714136197019 OK +REQUEST request_0 1714136196924 1714136197020 OK +REQUEST request_12 1714136196939 1714136197036 OK +REQUEST request_14 1714136196962 1714136197045 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136196978 1714136197059 OK +REQUEST request_7 1714136196978 1714136197060 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136196977 1714136197061 OK +REQUEST request_8 1714136196986 1714136197068 OK +REQUEST request_1 1714136197020 1714136197069 OK +REQUEST request_3 1714136196978 1714136197075 OK +REQUEST request_6 1714136196978 1714136197075 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136196978 1714136197075 OK +REQUEST request_12 1714136196971 1714136197080 OK +REQUEST request_7 1714136197021 1714136197103 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136197020 1714136197104 OK +REQUEST request_3 1714136197021 1714136197104 OK +REQUEST request_5 1714136197021 1714136197117 OK +REQUEST request_6 1714136197021 1714136197117 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136197021 1714136197118 OK +REQUEST request_14 1714136197037 1714136197119 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136197081 1714136197128 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136197036 1714136197131 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136197144 +REQUEST request_12 1714136197049 1714136197149 OK +REQUEST request_10 1714136197069 1714136197153 OK +REQUEST request_8 1714136197065 1714136197159 OK +REQUEST request_13 1714136197081 1714136197162 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136197069 1714136197172 OK +USER PlayGameRecord START 1714136197176 +REQUEST request_13 1714136197150 1714136197190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136197112 1714136197207 OK +REQUEST request_14 1714136197150 1714136197231 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136197144 1714136197247 OK +REQUEST request_10 1714136197159 1714136197256 OK +REQUEST request_0 1714136197175 1714136197260 OK +REQUEST request_12 1714136197144 1714136197279 OK +REQUEST request_9 1714136197159 1714136197283 OK +REQUEST request_1 1714136197248 1714136197296 OK +REQUEST request_1 1714136197260 1714136197302 OK +REQUEST request_14 1714136197279 1714136197327 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136197248 1714136197330 OK +REQUEST request_5 1714136197248 1714136197331 OK +REQUEST request_5 1714136197261 1714136197343 OK +REQUEST request_6 1714136197261 1714136197343 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136197248 1714136197344 OK +REQUEST request_7 1714136197248 1714136197345 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136197248 1714136197345 OK +REQUEST request_6 1714136197248 1714136197345 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136197347 +REQUEST request_7 1714136197261 1714136197356 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136197260 1714136197357 OK +REQUEST request_3 1714136197261 1714136197357 OK +REQUEST request_4 1714136197261 1714136197358 OK +REQUEST request_13 1714136197279 1714136197362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136197283 1714136197378 OK +REQUEST request_12 1714136197299 1714136197409 OK +REQUEST request_13 1714136197379 1714136197420 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136197346 1714136197442 OK +REQUEST request_14 1714136197379 1714136197461 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136197388 1714136197483 OK +USER PlayGameRecord START 1714136197487 +REQUEST request_1 1714136197443 1714136197491 OK +USER PlayGameRecord START 1714136197504 +REQUEST request_14 1714136197409 1714136197504 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136197409 1714136197505 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136197519 +REQUEST request_5 1714136197443 1714136197525 OK +REQUEST request_6 1714136197443 1714136197528 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136197443 1714136197540 OK +REQUEST request_2 1714136197443 1714136197540 OK +REQUEST request_7 1714136197443 1714136197540 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136197443 1714136197541 OK +REQUEST request_8 1714136197455 1714136197552 OK +REQUEST request_0 1714136197487 1714136197583 OK +REQUEST request_0 1714136197503 1714136197585 OK +REQUEST request_0 1714136197518 1714136197602 OK +REQUEST request_8 1714136197518 1714136197603 OK +REQUEST request_1 1714136197585 1714136197626 OK +REQUEST request_8 1714136197534 1714136197631 OK +REQUEST request_1 1714136197583 1714136197631 OK +REQUEST request_1 1714136197602 1714136197647 OK +REQUEST request_10 1714136197553 1714136197650 OK +REQUEST request_2 1714136197583 1714136197665 OK +REQUEST request_3 1714136197583 1714136197666 OK +REQUEST request_3 1714136197585 1714136197667 OK +REQUEST request_4 1714136197585 1714136197667 OK +REQUEST request_6 1714136197583 1714136197667 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136197585 1714136197667 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136197583 1714136197667 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136197583 1714136197668 OK +REQUEST request_9 1714136197552 1714136197676 OK +REQUEST request_4 1714136197583 1714136197679 OK +REQUEST request_6 1714136197585 1714136197680 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136197585 1714136197681 OK +REQUEST request_2 1714136197585 1714136197682 OK +REQUEST request_10 1714136197603 1714136197685 OK +REQUEST request_2 1714136197603 1714136197686 OK +REQUEST request_6 1714136197603 1714136197687 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136197603 1714136197687 OK +REQUEST request_4 1714136197603 1714136197701 OK +REQUEST request_5 1714136197603 1714136197701 OK +REQUEST request_7 1714136197603 1714136197701 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136197595 1714136197708 OK +REQUEST request_10 1714136197631 1714136197726 OK +REQUEST request_12 1714136197627 1714136197739 OK +REQUEST request_9 1714136197603 1714136197748 OK +REQUEST request_14 1714136197709 1714136197757 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136197631 1714136197767 OK +REQUEST request_13 1714136197709 1714136197790 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136197739 1714136197823 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136197743 1714136197827 OK +REQUEST request_13 1714136197739 1714136197834 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136197762 1714136197845 OK +REQUEST request_15 1714136197802 1714136197849 OK +USER PlayGameRecord START 1714136197862 +REQUEST request_16 1714136197850 1714136197897 OK +REQUEST request_15 1714136197862 1714136197909 OK +REQUEST request_10 1714136197827 1714136197922 OK +REQUEST request_9 1714136197827 1714136197928 OK +REQUEST request_11 1714136197847 1714136197931 OK +REQUEST request_17 1714136197850 1714136197945 OK +USER PlayGameRecord END 1714136197947 +REQUEST request_16 1714136197910 1714136197957 OK +REQUEST request_0 1714136197862 1714136197959 OK +REQUEST request_15 1714136197925 1714136197972 OK +REQUEST request_17 1714136197910 1714136197992 OK +USER PlayGameRecord END 1714136197992 +REQUEST request_1 1714136197959 1714136198007 OK +REQUEST request_11 1714136197917 1714136198014 OK +REQUEST request_16 1714136197973 1714136198020 OK +REQUEST request_3 1714136197959 1714136198041 OK +REQUEST request_5 1714136197959 1714136198042 OK +REQUEST request_2 1714136197959 1714136198042 OK +REQUEST request_6 1714136197959 1714136198043 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136197959 1714136198055 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136197959 1714136198055 OK +REQUEST request_17 1714136197973 1714136198056 OK +USER PlayGameRecord END 1714136198056 +REQUEST request_15 1714136198048 1714136198089 OK +REQUEST request_16 1714136198090 1714136198131 OK +REQUEST request_8 1714136198080 1714136198162 OK +USER PlayGameRecord START 1714136198174 +REQUEST request_17 1714136198090 1714136198187 OK +USER PlayGameRecord END 1714136198187 +USER PlayGameRecord START 1714136198189 +REQUEST request_8 1714136198096 1714136198191 OK +REQUEST request_11 1714136198112 1714136198208 OK +USER PlayGameRecord START 1714136198237 +REQUEST request_10 1714136198163 1714136198246 OK +REQUEST request_9 1714136198163 1714136198263 OK +REQUEST request_0 1714136198174 1714136198270 OK +REQUEST request_10 1714136198191 1714136198274 OK +REQUEST request_0 1714136198189 1714136198286 OK +REQUEST request_9 1714136198191 1714136198299 OK +REQUEST request_1 1714136198270 1714136198318 OK +REQUEST request_12 1714136198221 1714136198330 OK +REQUEST request_0 1714136198236 1714136198331 OK +REQUEST request_1 1714136198287 1714136198335 OK +REQUEST request_2 1714136198271 1714136198352 OK +REQUEST request_3 1714136198271 1714136198353 OK +REQUEST request_6 1714136198271 1714136198354 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136198284 1714136198366 OK +REQUEST request_7 1714136198271 1714136198368 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136198271 1714136198368 OK +REQUEST request_5 1714136198271 1714136198369 OK +REQUEST request_2 1714136198287 1714136198370 OK +REQUEST request_5 1714136198287 1714136198371 OK +REQUEST request_1 1714136198331 1714136198378 OK +REQUEST request_6 1714136198287 1714136198383 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136198287 1714136198384 OK +REQUEST request_3 1714136198287 1714136198385 OK +REQUEST request_7 1714136198287 1714136198385 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136198331 1714136198413 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136198331 1714136198414 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136198331 1714136198418 OK +REQUEST request_11 1714136198329 1714136198418 OK +REQUEST request_7 1714136198331 1714136198426 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136198331 1714136198426 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136198331 1714136198427 OK +REQUEST request_3 1714136198331 1714136198427 OK +REQUEST request_2 1714136198331 1714136198427 OK +USER PlayGameRecord START 1714136198439 +REQUEST request_11 1714136198407 1714136198489 OK +REQUEST request_8 1714136198407 1714136198502 OK +USER PlayGameRecord START 1714136198517 +REQUEST request_0 1714136198438 1714136198522 OK +USER PlayGameRecord START 1714136198549 +REQUEST request_1 1714136198522 1714136198565 OK +REQUEST request_10 1714136198502 1714136198585 OK +REQUEST request_12 1714136198485 1714136198586 OK +REQUEST request_0 1714136198516 1714136198599 OK +REQUEST request_7 1714136198523 1714136198605 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136198523 1714136198606 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136198502 1714136198613 OK +REQUEST request_2 1714136198523 1714136198617 OK +REQUEST request_3 1714136198523 1714136198618 OK +REQUEST request_4 1714136198523 1714136198619 OK +REQUEST request_5 1714136198523 1714136198620 OK +REQUEST request_14 1714136198586 1714136198633 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136198599 1714136198641 OK +REQUEST request_0 1714136198548 1714136198644 OK +REQUEST request_13 1714136198586 1714136198681 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136198600 1714136198682 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136198600 1714136198683 OK +REQUEST request_2 1714136198600 1714136198683 OK +REQUEST request_4 1714136198600 1714136198683 OK +REQUEST request_1 1714136198644 1714136198690 OK +REQUEST request_3 1714136198600 1714136198697 OK +REQUEST request_7 1714136198600 1714136198697 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136198610 1714136198707 OK +REQUEST request_2 1714136198644 1714136198726 OK +REQUEST request_5 1714136198644 1714136198727 OK +REQUEST request_6 1714136198644 1714136198727 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136198641 1714136198735 OK +REQUEST request_3 1714136198644 1714136198739 OK +REQUEST request_4 1714136198644 1714136198740 OK +REQUEST request_7 1714136198645 1714136198741 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136198768 +REQUEST request_11 1714136198705 1714136198787 OK +REQUEST request_10 1714136198708 1714136198790 OK +REQUEST request_15 1714136198768 1714136198808 OK +REQUEST request_9 1714136198708 1714136198815 OK +REQUEST request_15 1714136198799 1714136198840 OK +REQUEST request_16 1714136198808 1714136198849 OK +REQUEST request_0 1714136198768 1714136198869 OK +REQUEST request_16 1714136198840 1714136198881 OK +REQUEST request_17 1714136198808 1714136198904 OK +USER PlayGameRecord END 1714136198904 +REQUEST request_1 1714136198869 1714136198918 OK +REQUEST request_17 1714136198840 1714136198922 OK +USER PlayGameRecord END 1714136198923 +REQUEST request_12 1714136198846 1714136198943 OK +REQUEST request_15 1714136198908 1714136198950 OK +REQUEST request_5 1714136198869 1714136198952 OK +REQUEST request_7 1714136198870 1714136198953 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136198870 1714136198953 OK +REQUEST request_4 1714136198869 1714136198965 OK +REQUEST request_6 1714136198870 1714136198966 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136198869 1714136198970 OK +REQUEST request_11 1714136198893 1714136198977 OK +REQUEST request_16 1714136198950 1714136198992 OK +USER PlayGameRecord START 1714136199032 +REQUEST request_17 1714136198950 1714136199034 OK +USER PlayGameRecord END 1714136199034 +REQUEST request_12 1714136198939 1714136199036 OK +REQUEST request_13 1714136198944 1714136199039 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136198944 1714136199040 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136199095 +REQUEST request_15 1714136199062 1714136199109 OK +REQUEST request_0 1714136199032 1714136199115 OK +REQUEST request_13 1714136199036 1714136199118 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136199016 1714136199127 OK +REQUEST request_14 1714136199036 1714136199130 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136199116 1714136199157 OK +REQUEST request_16 1714136199109 1714136199157 OK +REQUEST request_14 1714136199128 1714136199169 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136199095 1714136199177 OK +REQUEST request_0 1714136199095 1714136199192 OK +REQUEST request_7 1714136199116 1714136199198 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136199116 1714136199198 OK +REQUEST request_17 1714136199110 1714136199207 OK +USER PlayGameRecord END 1714136199207 +REQUEST request_2 1714136199116 1714136199211 OK +REQUEST request_13 1714136199128 1714136199212 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136199116 1714136199212 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136199116 1714136199213 OK +REQUEST request_4 1714136199116 1714136199213 OK +REQUEST request_1 1714136199193 1714136199241 OK +REQUEST request_10 1714136199178 1714136199274 OK +REQUEST request_7 1714136199193 1714136199277 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136199193 1714136199277 OK +REQUEST request_2 1714136199193 1714136199277 OK +REQUEST request_9 1714136199178 1714136199278 OK +REQUEST request_5 1714136199193 1714136199289 OK +REQUEST request_3 1714136199193 1714136199289 OK +REQUEST request_6 1714136199193 1714136199290 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136199298 +REQUEST request_12 1714136199210 1714136199307 OK +REQUEST request_13 1714136199307 1714136199348 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136199297 1714136199381 OK +REQUEST request_14 1714136199307 1714136199403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136199382 1714136199423 OK +REQUEST request_5 1714136199382 1714136199464 OK +REQUEST request_6 1714136199382 1714136199465 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136199382 1714136199465 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136199382 1714136199465 OK +REQUEST request_4 1714136199382 1714136199466 OK +REQUEST request_15 1714136199422 1714136199470 OK +REQUEST request_3 1714136199382 1714136199478 OK +REQUEST request_12 1714136199375 1714136199485 OK +REQUEST request_16 1714136199470 1714136199518 OK +REQUEST request_13 1714136199485 1714136199526 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136199422 1714136199530 OK +REQUEST request_17 1714136199470 1714136199554 OK +USER PlayGameRecord END 1714136199554 +REQUEST request_14 1714136199485 1714136199568 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136199530 1714136199570 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136199500 1714136199602 OK +REQUEST request_8 1714136199500 1714136199603 OK +USER PlayGameRecord START 1714136199624 +REQUEST request_14 1714136199530 1714136199624 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136199603 1714136199644 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136199603 1714136199685 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136199603 1714136199700 OK +REQUEST request_0 1714136199624 1714136199707 OK +REQUEST request_9 1714136199603 1714136199713 OK +USER PlayGameRecord START 1714136199734 +REQUEST request_1 1714136199708 1714136199749 OK +USER PlayGameRecord START 1714136199766 +USER PlayGameRecord START 1714136199781 +REQUEST request_6 1714136199708 1714136199792 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136199708 1714136199792 OK +REQUEST request_2 1714136199708 1714136199792 OK +REQUEST request_4 1714136199708 1714136199804 OK +REQUEST request_5 1714136199708 1714136199805 OK +REQUEST request_7 1714136199708 1714136199806 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136199734 1714136199817 OK +REQUEST request_15 1714136199781 1714136199822 OK +REQUEST request_1 1714136199817 1714136199859 OK +REQUEST request_12 1714136199750 1714136199861 OK +REQUEST request_0 1714136199766 1714136199862 OK +REQUEST request_16 1714136199822 1714136199863 OK +REQUEST request_0 1714136199781 1714136199864 OK +REQUEST request_5 1714136199818 1714136199900 OK +REQUEST request_3 1714136199818 1714136199900 OK +REQUEST request_13 1714136199861 1714136199902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136199797 1714136199905 OK +REQUEST request_1 1714136199864 1714136199907 OK +REQUEST request_1 1714136199862 1714136199910 OK +REQUEST request_4 1714136199818 1714136199913 OK +REQUEST request_7 1714136199818 1714136199914 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136199817 1714136199914 OK +REQUEST request_6 1714136199818 1714136199915 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136199822 1714136199919 OK +USER PlayGameRecord END 1714136199920 +REQUEST request_15 1714136199875 1714136199923 OK +REQUEST request_8 1714136199859 1714136199942 OK +REQUEST request_5 1714136199863 1714136199944 OK +REQUEST request_7 1714136199863 1714136199945 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136199861 1714136199945 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136199863 1714136199945 OK +REQUEST request_3 1714136199864 1714136199946 OK +REQUEST request_5 1714136199864 1714136199947 OK +REQUEST request_7 1714136199864 1714136199947 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136199862 1714136199957 OK +REQUEST request_3 1714136199863 1714136199958 OK +REQUEST request_6 1714136199863 1714136199958 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136199864 1714136199959 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136199864 1714136199960 OK +REQUEST request_4 1714136199864 1714136199961 OK +REQUEST request_15 1714136199922 1714136199962 OK +USER PlayGameRecord START 1714136199969 +REQUEST request_16 1714136199923 1714136199971 OK +REQUEST request_13 1714136199906 1714136199988 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136199906 1714136200001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136199962 1714136200003 OK +REQUEST request_8 1714136199906 1714136200003 OK +REQUEST request_17 1714136199923 1714136200006 OK +USER PlayGameRecord END 1714136200006 +REQUEST request_15 1714136199991 1714136200039 OK +REQUEST request_10 1714136199943 1714136200039 OK +REQUEST request_9 1714136199943 1714136200042 OK +REQUEST request_17 1714136199962 1714136200060 OK +USER PlayGameRecord END 1714136200060 +REQUEST request_0 1714136199968 1714136200064 OK +REQUEST request_11 1714136199984 1714136200067 OK +REQUEST request_16 1714136200039 1714136200087 OK +REQUEST request_12 1714136199984 1714136200098 OK +REQUEST request_15 1714136200052 1714136200100 OK +REQUEST request_10 1714136200003 1714136200100 OK +REQUEST request_1 1714136200064 1714136200113 OK +REQUEST request_9 1714136200003 1714136200116 OK +REQUEST request_17 1714136200039 1714136200135 OK +USER PlayGameRecord END 1714136200135 +REQUEST request_4 1714136200065 1714136200146 OK +REQUEST request_2 1714136200064 1714136200147 OK +REQUEST request_16 1714136200100 1714136200148 OK +REQUEST request_7 1714136200065 1714136200148 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136200065 1714136200149 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136200065 1714136200160 OK +REQUEST request_3 1714136200065 1714136200161 OK +REQUEST request_11 1714136200086 1714136200170 OK +REQUEST request_8 1714136200099 1714136200181 OK +REQUEST request_13 1714136200099 1714136200182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136200099 1714136200195 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136200100 1714136200195 OK +USER PlayGameRecord END 1714136200196 +REQUEST request_8 1714136200125 1714136200223 OK +USER PlayGameRecord START 1714136200234 +USER PlayGameRecord START 1714136200250 +REQUEST request_10 1714136200182 1714136200263 OK +REQUEST request_9 1714136200182 1714136200283 OK +REQUEST request_10 1714136200223 1714136200305 OK +REQUEST request_9 1714136200223 1714136200329 OK +REQUEST request_0 1714136200234 1714136200331 OK +REQUEST request_0 1714136200250 1714136200346 OK +USER PlayGameRecord START 1714136200360 +REQUEST request_11 1714136200265 1714136200360 OK +REQUEST request_1 1714136200331 1714136200379 OK +REQUEST request_1 1714136200346 1714136200394 OK +REQUEST request_4 1714136200331 1714136200415 OK +REQUEST request_7 1714136200331 1714136200415 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136200331 1714136200426 OK +REQUEST request_3 1714136200331 1714136200427 OK +REQUEST request_5 1714136200331 1714136200427 OK +REQUEST request_6 1714136200331 1714136200428 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136200346 1714136200429 OK +REQUEST request_6 1714136200346 1714136200429 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136200346 1714136200430 OK +REQUEST request_7 1714136200346 1714136200441 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136200346 1714136200442 OK +REQUEST request_3 1714136200346 1714136200444 OK +REQUEST request_0 1714136200360 1714136200457 OK +REQUEST request_11 1714136200421 1714136200504 OK +REQUEST request_1 1714136200458 1714136200506 OK +REQUEST request_11 1714136200437 1714136200519 OK +REQUEST request_5 1714136200458 1714136200542 OK +REQUEST request_6 1714136200458 1714136200543 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136200458 1714136200553 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136200458 1714136200553 OK +REQUEST request_4 1714136200458 1714136200554 OK +REQUEST request_3 1714136200458 1714136200554 OK +USER PlayGameRecord START 1714136200578 +REQUEST request_8 1714136200499 1714136200581 OK +USER PlayGameRecord START 1714136200610 +REQUEST request_8 1714136200561 1714136200644 OK +REQUEST request_0 1714136200577 1714136200671 OK +REQUEST request_10 1714136200581 1714136200677 OK +REQUEST request_9 1714136200581 1714136200682 OK +REQUEST request_0 1714136200609 1714136200706 OK +REQUEST request_1 1714136200671 1714136200719 OK +REQUEST request_10 1714136200645 1714136200741 OK +REQUEST request_9 1714136200645 1714136200745 OK +REQUEST request_3 1714136200672 1714136200755 OK +REQUEST request_8 1714136200657 1714136200755 OK +REQUEST request_1 1714136200707 1714136200755 OK +REQUEST request_8 1714136200673 1714136200756 OK +REQUEST request_5 1714136200672 1714136200756 OK +REQUEST request_7 1714136200672 1714136200757 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136200671 1714136200767 OK +REQUEST request_4 1714136200671 1714136200769 OK +REQUEST request_6 1714136200672 1714136200769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136200707 1714136200789 OK +REQUEST request_3 1714136200707 1714136200789 OK +REQUEST request_15 1714136200750 1714136200798 OK +REQUEST request_7 1714136200707 1714136200803 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136200707 1714136200804 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136200707 1714136200804 OK +REQUEST request_4 1714136200707 1714136200805 OK +REQUEST request_10 1714136200756 1714136200839 OK +REQUEST request_16 1714136200798 1714136200846 OK +REQUEST request_10 1714136200755 1714136200852 OK +REQUEST request_15 1714136200812 1714136200859 OK +REQUEST request_9 1714136200756 1714136200860 OK +REQUEST request_8 1714136200765 1714136200860 OK +REQUEST request_9 1714136200755 1714136200866 OK +REQUEST request_17 1714136200798 1714136200881 OK +USER PlayGameRecord END 1714136200882 +REQUEST request_15 1714136200858 1714136200905 OK +REQUEST request_16 1714136200859 1714136200906 OK +REQUEST request_15 1714136200874 1714136200915 OK +REQUEST request_10 1714136200860 1714136200942 OK +REQUEST request_16 1714136200906 1714136200953 OK +REQUEST request_17 1714136200859 1714136200956 OK +REQUEST request_16 1714136200916 1714136200956 OK +USER PlayGameRecord END 1714136200957 +REQUEST request_9 1714136200860 1714136200966 OK +USER PlayGameRecord START 1714136200983 +REQUEST request_17 1714136200916 1714136200997 OK +USER PlayGameRecord END 1714136200997 +REQUEST request_17 1714136200906 1714136201002 OK +REQUEST request_8 1714136200905 1714136201003 OK +USER PlayGameRecord END 1714136201003 +REQUEST request_0 1714136200983 1714136201064 OK +REQUEST request_15 1714136201045 1714136201093 OK +REQUEST request_10 1714136201003 1714136201100 OK +REQUEST request_1 1714136201064 1714136201105 OK +REQUEST request_9 1714136201003 1714136201109 OK +REQUEST request_16 1714136201093 1714136201142 OK +REQUEST request_4 1714136201065 1714136201146 OK +REQUEST request_7 1714136201065 1714136201147 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136201065 1714136201149 OK +REQUEST request_2 1714136201065 1714136201161 OK +REQUEST request_5 1714136201065 1714136201161 OK +REQUEST request_6 1714136201065 1714136201162 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136201093 1714136201176 OK +USER PlayGameRecord END 1714136201176 +REQUEST request_15 1714136201140 1714136201181 OK +REQUEST request_12 1714136201076 1714136201187 OK +USER PlayGameRecord START 1714136201202 +REQUEST request_15 1714136201171 1714136201218 OK +REQUEST request_16 1714136201182 1714136201223 OK +REQUEST request_14 1714136201187 1714136201228 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136201182 1714136201264 OK +USER PlayGameRecord END 1714136201264 +REQUEST request_16 1714136201219 1714136201266 OK +REQUEST request_13 1714136201187 1714136201269 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136201232 1714136201273 OK +REQUEST request_12 1714136201171 1714136201279 OK +REQUEST request_0 1714136201202 1714136201284 OK +REQUEST request_16 1714136201274 1714136201315 OK +REQUEST request_17 1714136201219 1714136201315 OK +USER PlayGameRecord END 1714136201315 +REQUEST request_8 1714136201232 1714136201316 OK +REQUEST request_13 1714136201279 1714136201320 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136201284 1714136201326 OK +REQUEST request_11 1714136201259 1714136201355 OK +REQUEST request_17 1714136201274 1714136201357 OK +USER PlayGameRecord END 1714136201357 +USER PlayGameRecord START 1714136201357 +REQUEST request_8 1714136201263 1714136201360 OK +REQUEST request_14 1714136201279 1714136201363 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136201284 1714136201366 OK +REQUEST request_7 1714136201285 1714136201367 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136201285 1714136201368 OK +REQUEST request_6 1714136201285 1714136201379 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136201284 1714136201380 OK +REQUEST request_5 1714136201285 1714136201381 OK +REQUEST request_10 1714136201316 1714136201397 OK +REQUEST request_9 1714136201316 1714136201421 OK +REQUEST request_15 1714136201373 1714136201421 OK +REQUEST request_0 1714136201357 1714136201452 OK +REQUEST request_10 1714136201360 1714136201457 OK +REQUEST request_16 1714136201421 1714136201469 OK +REQUEST request_9 1714136201360 1714136201472 OK +REQUEST request_12 1714136201373 1714136201474 OK +REQUEST request_1 1714136201453 1714136201500 OK +REQUEST request_17 1714136201421 1714136201504 OK +USER PlayGameRecord END 1714136201505 +REQUEST request_15 1714136201468 1714136201509 OK +REQUEST request_14 1714136201474 1714136201522 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136201453 1714136201534 OK +REQUEST request_7 1714136201453 1714136201535 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136201453 1714136201537 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136201453 1714136201538 OK +REQUEST request_16 1714136201509 1714136201550 OK +REQUEST request_3 1714136201453 1714136201550 OK +REQUEST request_5 1714136201453 1714136201550 OK +REQUEST request_15 1714136201515 1714136201563 OK +REQUEST request_13 1714136201474 1714136201571 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136201509 1714136201604 OK +USER PlayGameRecord END 1714136201605 +REQUEST request_16 1714136201563 1714136201611 OK +REQUEST request_12 1714136201515 1714136201611 OK +REQUEST request_12 1714136201530 1714136201627 OK +USER PlayGameRecord START 1714136201653 +REQUEST request_17 1714136201563 1714136201659 OK +USER PlayGameRecord END 1714136201660 +REQUEST request_14 1714136201628 1714136201668 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136201669 +REQUEST request_13 1714136201611 1714136201694 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136201611 1714136201706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136201628 1714136201724 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136201653 1714136201738 OK +REQUEST request_0 1714136201668 1714136201753 OK +REQUEST request_1 1714136201739 1714136201781 OK +REQUEST request_1 1714136201753 1714136201795 OK +USER PlayGameRecord START 1714136201808 +REQUEST request_2 1714136201739 1714136201821 OK +REQUEST request_7 1714136201739 1714136201821 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136201739 1714136201822 OK +REQUEST request_5 1714136201739 1714136201825 OK +REQUEST request_4 1714136201739 1714136201834 OK +REQUEST request_3 1714136201753 1714136201836 OK +REQUEST request_6 1714136201739 1714136201837 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136201753 1714136201837 OK +REQUEST request_5 1714136201753 1714136201838 OK +REQUEST request_15 1714136201792 1714136201841 OK +REQUEST request_6 1714136201753 1714136201850 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136201753 1714136201850 OK +REQUEST request_7 1714136201753 1714136201850 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136201777 1714136201873 OK +REQUEST request_15 1714136201839 1714136201887 OK +REQUEST request_16 1714136201841 1714136201889 OK +REQUEST request_0 1714136201807 1714136201891 OK +USER PlayGameRecord START 1714136201902 +REQUEST request_11 1714136201807 1714136201903 OK +REQUEST request_1 1714136201891 1714136201932 OK +REQUEST request_16 1714136201887 1714136201935 OK +REQUEST request_17 1714136201841 1714136201937 OK +USER PlayGameRecord END 1714136201938 +USER PlayGameRecord START 1714136201964 +REQUEST request_17 1714136201887 1714136201970 OK +USER PlayGameRecord END 1714136201971 +REQUEST request_4 1714136201891 1714136201973 OK +REQUEST request_7 1714136201891 1714136201973 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136201902 1714136201986 OK +REQUEST request_6 1714136201891 1714136201986 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136201891 1714136201988 OK +REQUEST request_2 1714136201891 1714136201988 OK +REQUEST request_3 1714136201891 1714136201988 OK +USER PlayGameRecord START 1714136202027 +REQUEST request_1 1714136201986 1714136202028 OK +REQUEST request_8 1714136201932 1714136202030 OK +REQUEST request_0 1714136201964 1714136202060 OK +REQUEST request_8 1714136201979 1714136202061 OK +REQUEST request_6 1714136201987 1714136202068 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136201986 1714136202070 OK +REQUEST request_5 1714136201986 1714136202071 OK +REQUEST request_11 1714136201994 1714136202075 OK +REQUEST request_3 1714136201986 1714136202082 OK +REQUEST request_4 1714136201986 1714136202083 OK +REQUEST request_7 1714136201987 1714136202084 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136202011 1714136202107 OK +REQUEST request_1 1714136202060 1714136202108 OK +REQUEST request_10 1714136202030 1714136202111 OK +REQUEST request_0 1714136202026 1714136202122 OK +REQUEST request_9 1714136202030 1714136202139 OK +REQUEST request_10 1714136202061 1714136202144 OK +REQUEST request_4 1714136202061 1714136202144 OK +REQUEST request_7 1714136202061 1714136202146 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136202061 1714136202146 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136202061 1714136202157 OK +REQUEST request_5 1714136202061 1714136202159 OK +REQUEST request_2 1714136202060 1714136202159 OK +REQUEST request_9 1714136202061 1714136202165 OK +REQUEST request_1 1714136202122 1714136202169 OK +REQUEST request_10 1714136202108 1714136202191 OK +REQUEST request_2 1714136202122 1714136202202 OK +REQUEST request_7 1714136202122 1714136202205 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136202122 1714136202206 OK +REQUEST request_9 1714136202107 1714136202216 OK +REQUEST request_6 1714136202122 1714136202218 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136202122 1714136202218 OK +REQUEST request_3 1714136202122 1714136202220 OK +USER PlayGameRecord START 1714136202230 +REQUEST request_11 1714136202182 1714136202279 OK +REQUEST request_0 1714136202230 1714136202314 OK +USER PlayGameRecord START 1714136202324 +REQUEST request_1 1714136202314 1714136202355 OK +REQUEST request_11 1714136202293 1714136202389 OK +REQUEST request_5 1714136202314 1714136202396 OK +REQUEST request_3 1714136202314 1714136202396 OK +REQUEST request_4 1714136202314 1714136202398 OK +REQUEST request_0 1714136202324 1714136202405 OK +REQUEST request_2 1714136202314 1714136202410 OK +REQUEST request_6 1714136202314 1714136202410 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136202314 1714136202411 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136202356 1714136202438 OK +REQUEST request_1 1714136202406 1714136202447 OK +REQUEST request_15 1714136202432 1714136202479 OK +REQUEST request_12 1714136202371 1714136202484 OK +REQUEST request_2 1714136202406 1714136202488 OK +REQUEST request_7 1714136202406 1714136202489 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136202406 1714136202494 OK +REQUEST request_6 1714136202406 1714136202501 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136202406 1714136202501 OK +REQUEST request_5 1714136202406 1714136202502 OK +REQUEST request_16 1714136202479 1714136202527 OK +REQUEST request_10 1714136202438 1714136202536 OK +REQUEST request_9 1714136202438 1714136202540 OK +REQUEST request_13 1714136202485 1714136202567 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136202485 1714136202567 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136202479 1714136202576 OK +USER PlayGameRecord END 1714136202576 +REQUEST request_8 1714136202540 1714136202622 OK +USER PlayGameRecord START 1714136202699 +REQUEST request_10 1714136202622 1714136202717 OK +REQUEST request_9 1714136202622 1714136202721 OK +REQUEST request_15 1714136202684 1714136202725 OK +USER PlayGameRecord START 1714136202745 +REQUEST request_16 1714136202725 1714136202766 OK +REQUEST request_8 1714136202684 1714136202767 OK +REQUEST request_11 1714136202684 1714136202767 OK +REQUEST request_0 1714136202699 1714136202796 OK +REQUEST request_17 1714136202725 1714136202809 OK +USER PlayGameRecord END 1714136202809 +REQUEST request_11 1714136202749 1714136202832 OK +REQUEST request_0 1714136202745 1714136202841 OK +REQUEST request_1 1714136202796 1714136202844 OK +REQUEST request_10 1714136202768 1714136202853 OK +REQUEST request_11 1714136202767 1714136202863 OK +REQUEST request_9 1714136202767 1714136202867 OK +USER PlayGameRecord START 1714136202871 +REQUEST request_6 1714136202796 1714136202878 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136202796 1714136202879 OK +REQUEST request_1 1714136202841 1714136202889 OK +REQUEST request_5 1714136202796 1714136202892 OK +REQUEST request_4 1714136202796 1714136202892 OK +REQUEST request_7 1714136202796 1714136202893 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136202796 1714136202893 OK +USER PlayGameRecord START 1714136202918 +REQUEST request_5 1714136202842 1714136202924 OK +REQUEST request_4 1714136202842 1714136202924 OK +REQUEST request_7 1714136202842 1714136202925 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136202841 1714136202937 OK +REQUEST request_3 1714136202842 1714136202939 OK +REQUEST request_6 1714136202842 1714136202940 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136202871 1714136202955 OK +REQUEST request_12 1714136202883 1714136202980 OK +REQUEST request_1 1714136202955 1714136202997 OK +USER PlayGameRecord START 1714136203010 +REQUEST request_0 1714136202918 1714136203014 OK +REQUEST request_12 1714136202913 1714136203023 OK +REQUEST request_11 1714136202933 1714136203030 OK +REQUEST request_3 1714136202956 1714136203038 OK +REQUEST request_7 1714136202956 1714136203038 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136202955 1714136203039 OK +REQUEST request_4 1714136202955 1714136203039 OK +REQUEST request_5 1714136202956 1714136203052 OK +REQUEST request_6 1714136202956 1714136203052 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136202964 1714136203062 OK +REQUEST request_1 1714136203015 1714136203063 OK +REQUEST request_14 1714136202980 1714136203064 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136203023 1714136203064 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136202980 1714136203076 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136203010 1714136203092 OK +REQUEST request_15 1714136203055 1714136203097 OK +REQUEST request_6 1714136203015 1714136203098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136203015 1714136203099 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136203015 1714136203099 OK +REQUEST request_2 1714136203015 1714136203110 OK +REQUEST request_5 1714136203015 1714136203112 OK +REQUEST request_3 1714136203015 1714136203112 OK +REQUEST request_13 1714136203023 1714136203117 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136203092 1714136203133 OK +REQUEST request_16 1714136203097 1714136203139 OK +REQUEST request_10 1714136203062 1714136203144 OK +REQUEST request_9 1714136203062 1714136203170 OK +REQUEST request_15 1714136203133 1714136203173 OK +REQUEST request_7 1714136203093 1714136203177 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136203097 1714136203181 OK +USER PlayGameRecord END 1714136203181 +REQUEST request_12 1714136203086 1714136203182 OK +REQUEST request_5 1714136203093 1714136203188 OK +REQUEST request_3 1714136203093 1714136203189 OK +REQUEST request_6 1714136203093 1714136203189 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136203092 1714136203189 OK +REQUEST request_4 1714136203093 1714136203190 OK +REQUEST request_8 1714136203102 1714136203199 OK +REQUEST request_16 1714136203173 1714136203214 OK +REQUEST request_13 1714136203183 1714136203224 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136203174 1714136203257 OK +USER PlayGameRecord END 1714136203257 +REQUEST request_15 1714136203228 1714136203277 OK +REQUEST request_14 1714136203183 1714136203279 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136203290 +REQUEST request_10 1714136203199 1714136203296 OK +REQUEST request_9 1714136203199 1714136203305 OK +REQUEST request_8 1714136203228 1714136203324 OK +REQUEST request_16 1714136203277 1714136203325 OK +USER PlayGameRecord START 1714136203366 +REQUEST request_11 1714136203274 1714136203370 OK +REQUEST request_17 1714136203277 1714136203372 OK +USER PlayGameRecord END 1714136203372 +REQUEST request_11 1714136203299 1714136203380 OK +REQUEST request_0 1714136203290 1714136203386 OK +REQUEST request_12 1714136203290 1714136203394 OK +REQUEST request_10 1714136203325 1714136203421 OK +REQUEST request_1 1714136203386 1714136203434 OK +REQUEST request_9 1714136203324 1714136203434 OK +REQUEST request_0 1714136203366 1714136203449 OK +REQUEST request_15 1714136203412 1714136203453 OK +REQUEST request_5 1714136203387 1714136203469 OK +REQUEST request_3 1714136203387 1714136203470 OK +REQUEST request_14 1714136203395 1714136203478 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136203386 1714136203482 OK +REQUEST request_4 1714136203387 1714136203482 OK +REQUEST request_6 1714136203387 1714136203482 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136203387 1714136203485 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136203449 1714136203491 OK +REQUEST request_13 1714136203394 1714136203493 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136203453 1714136203494 OK +REQUEST request_12 1714136203397 1714136203497 OK +REQUEST request_6 1714136203449 1714136203531 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136203449 1714136203532 OK +REQUEST request_5 1714136203449 1714136203533 OK +REQUEST request_17 1714136203453 1714136203535 OK +USER PlayGameRecord END 1714136203535 +REQUEST request_14 1714136203497 1714136203538 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136203450 1714136203545 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136203449 1714136203545 OK +REQUEST request_3 1714136203449 1714136203546 OK +REQUEST request_13 1714136203497 1714136203579 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136203585 +REQUEST request_15 1714136203569 1714136203617 OK +REQUEST request_16 1714136203617 1714136203666 OK +REQUEST request_8 1714136203569 1714136203666 OK +REQUEST request_0 1714136203585 1714136203668 OK +REQUEST request_15 1714136203632 1714136203679 OK +REQUEST request_11 1714136203614 1714136203696 OK +REQUEST request_1 1714136203669 1714136203709 OK +REQUEST request_17 1714136203617 1714136203715 OK +USER PlayGameRecord END 1714136203716 +REQUEST request_16 1714136203680 1714136203727 OK +REQUEST request_15 1714136203695 1714136203736 OK +REQUEST request_2 1714136203669 1714136203750 OK +REQUEST request_6 1714136203669 1714136203751 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136203669 1714136203752 OK +REQUEST request_10 1714136203666 1714136203762 OK +REQUEST request_4 1714136203669 1714136203763 OK +REQUEST request_17 1714136203680 1714136203764 OK +REQUEST request_3 1714136203669 1714136203764 OK +USER PlayGameRecord END 1714136203764 +REQUEST request_7 1714136203669 1714136203766 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136203666 1714136203776 OK +REQUEST request_16 1714136203736 1714136203777 OK +REQUEST request_17 1714136203736 1714136203832 OK +USER PlayGameRecord END 1714136203832 +REQUEST request_8 1714136203789 1714136203873 OK +REQUEST request_12 1714136203774 1714136203885 OK +REQUEST request_11 1714136203820 1714136203916 OK +REQUEST request_13 1714136203886 1714136203927 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136203836 1714136203938 OK +REQUEST request_14 1714136203886 1714136203967 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136203873 1714136203969 OK +REQUEST request_9 1714136203873 1714136203978 OK +REQUEST request_12 1714136203868 1714136203982 OK +REQUEST request_14 1714136203938 1714136203986 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136203947 1714136203995 OK +REQUEST request_13 1714136203982 1714136204023 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136203938 1714136204035 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136203996 1714136204044 OK +REQUEST request_15 1714136204009 1714136204056 OK +REQUEST request_14 1714136203982 1714136204063 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136203996 1714136204092 OK +USER PlayGameRecord END 1714136204092 +REQUEST request_16 1714136204056 1714136204104 OK +REQUEST request_17 1714136204056 1714136204138 OK +REQUEST request_12 1714136204041 1714136204138 OK +USER PlayGameRecord END 1714136204138 +REQUEST request_14 1714136204138 1714136204221 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136204138 1714136204234 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136204200 1714136204247 OK +REQUEST request_8 1714136204168 1714136204251 OK +REQUEST request_16 1714136204247 1714136204295 OK +REQUEST request_17 1714136204247 1714136204331 OK +USER PlayGameRecord END 1714136204331 +REQUEST request_10 1714136204252 1714136204348 OK +REQUEST request_9 1714136204252 1714136204364 OK +REQUEST request_11 1714136204280 1714136204374 OK +USER PlayGameRecord START 1714136204438 +REQUEST request_12 1714136204375 1714136204485 OK +REQUEST request_12 1714136204391 1714136204499 OK +REQUEST request_0 1714136204438 1714136204523 OK +REQUEST request_1 1714136204523 1714136204566 OK +REQUEST request_14 1714136204486 1714136204568 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136204499 1714136204581 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136204486 1714136204582 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136204499 1714136204596 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136204523 1714136204607 OK +REQUEST request_7 1714136204524 1714136204619 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136204524 1714136204620 OK +REQUEST request_3 1714136204524 1714136204620 OK +REQUEST request_6 1714136204524 1714136204621 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136204524 1714136204621 OK +REQUEST request_8 1714136204579 1714136204677 OK +REQUEST request_8 1714136204658 1714136204755 OK +REQUEST request_8 1714136204674 1714136204759 OK +REQUEST request_10 1714136204677 1714136204773 OK +REQUEST request_9 1714136204677 1714136204788 OK +REQUEST request_11 1714136204714 1714136204797 OK +REQUEST request_12 1714136204705 1714136204802 OK +REQUEST request_10 1714136204759 1714136204842 OK +REQUEST request_14 1714136204803 1714136204844 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136204755 1714136204850 OK +REQUEST request_9 1714136204759 1714136204871 OK +REQUEST request_9 1714136204755 1714136204875 OK +REQUEST request_13 1714136204802 1714136204886 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136204878 1714136204976 OK +REQUEST request_12 1714136204925 1714136205022 OK +REQUEST request_10 1714136204976 1714136205058 OK +REQUEST request_8 1714136204973 1714136205069 OK +REQUEST request_9 1714136204976 1714136205085 OK +REQUEST request_13 1714136205022 1714136205105 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136205022 1714136205118 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136205051 1714136205135 OK +REQUEST request_10 1714136205069 1714136205166 OK +REQUEST request_9 1714136205069 1714136205177 OK +REQUEST request_11 1714136205116 1714136205198 OK +REQUEST request_15 1714136205272 1714136205320 OK +USER PlayGameRecord START 1714136205335 +REQUEST request_16 1714136205320 1714136205368 OK +REQUEST request_11 1714136205288 1714136205370 OK +REQUEST request_17 1714136205320 1714136205402 OK +USER PlayGameRecord END 1714136205402 +REQUEST request_15 1714136205366 1714136205414 OK +REQUEST request_11 1714136205335 1714136205416 OK +REQUEST request_0 1714136205335 1714136205432 OK +REQUEST request_16 1714136205414 1714136205461 OK +REQUEST request_1 1714136205432 1714136205480 OK +REQUEST request_12 1714136205382 1714136205492 OK +REQUEST request_17 1714136205414 1714136205496 OK +USER PlayGameRecord END 1714136205497 +REQUEST request_7 1714136205432 1714136205515 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136205432 1714136205515 OK +REQUEST request_3 1714136205432 1714136205515 OK +REQUEST request_5 1714136205432 1714136205527 OK +REQUEST request_6 1714136205432 1714136205527 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136205432 1714136205528 OK +REQUEST request_13 1714136205492 1714136205532 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136205493 1714136205576 OK +REQUEST request_14 1714136205492 1714136205588 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136205573 1714136205614 OK +USER PlayGameRecord START 1714136205636 +REQUEST request_16 1714136205614 1714136205656 OK +REQUEST request_10 1714136205576 1714136205673 OK +REQUEST request_9 1714136205576 1714136205676 OK +REQUEST request_17 1714136205614 1714136205710 OK +USER PlayGameRecord END 1714136205710 +REQUEST request_0 1714136205636 1714136205720 OK +REQUEST request_15 1714136205715 1714136205756 OK +REQUEST request_1 1714136205720 1714136205761 OK +REQUEST request_11 1714136205683 1714136205766 OK +REQUEST request_15 1714136205731 1714136205774 OK +REQUEST request_16 1714136205757 1714136205798 OK +REQUEST request_6 1714136205720 1714136205804 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136205720 1714136205804 OK +REQUEST request_16 1714136205774 1714136205816 OK +REQUEST request_2 1714136205720 1714136205816 OK +REQUEST request_3 1714136205720 1714136205817 OK +REQUEST request_5 1714136205720 1714136205817 OK +REQUEST request_7 1714136205721 1714136205818 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136205824 +REQUEST request_17 1714136205757 1714136205840 OK +USER PlayGameRecord END 1714136205840 +REQUEST request_11 1714136205747 1714136205843 OK +REQUEST request_8 1714136205757 1714136205853 OK +REQUEST request_17 1714136205774 1714136205870 OK +USER PlayGameRecord END 1714136205871 +USER PlayGameRecord START 1714136205871 +REQUEST request_12 1714136205808 1714136205911 OK +REQUEST request_0 1714136205824 1714136205921 OK +REQUEST request_10 1714136205853 1714136205937 OK +REQUEST request_0 1714136205871 1714136205953 OK +REQUEST request_11 1714136205861 1714136205957 OK +REQUEST request_9 1714136205853 1714136205962 OK +REQUEST request_11 1714136205871 1714136205967 OK +REQUEST request_1 1714136205921 1714136205969 OK +REQUEST request_8 1714136205909 1714136205991 OK +REQUEST request_1 1714136205953 1714136205995 OK +REQUEST request_14 1714136205912 1714136205995 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136205921 1714136206003 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136205921 1714136206004 OK +REQUEST request_13 1714136205912 1714136206008 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136205921 1714136206017 OK +REQUEST request_4 1714136205921 1714136206017 OK +REQUEST request_5 1714136205921 1714136206018 OK +REQUEST request_7 1714136205921 1714136206019 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136205953 1714136206036 OK +REQUEST request_5 1714136205953 1714136206036 OK +REQUEST request_7 1714136205954 1714136206036 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136205953 1714136206049 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136205953 1714136206049 OK +REQUEST request_4 1714136205953 1714136206049 OK +REQUEST request_11 1714136205967 1714136206050 OK +REQUEST request_10 1714136205991 1714136206087 OK +REQUEST request_9 1714136205991 1714136206091 OK +REQUEST request_11 1714136206110 1714136206192 OK +USER PlayGameRecord START 1714136206216 +REQUEST request_8 1714136206137 1714136206221 OK +REQUEST request_12 1714136206137 1714136206237 OK +REQUEST request_8 1714136206151 1714136206247 OK +REQUEST request_12 1714136206201 1714136206299 OK +REQUEST request_0 1714136206216 1714136206300 OK +REQUEST request_10 1714136206221 1714136206319 OK +REQUEST request_13 1714136206237 1714136206319 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136206221 1714136206330 OK +REQUEST request_14 1714136206237 1714136206332 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136206300 1714136206342 OK +REQUEST request_10 1714136206247 1714136206345 OK +REQUEST request_14 1714136206299 1714136206346 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136206247 1714136206356 OK +REQUEST request_8 1714136206262 1714136206359 OK +REQUEST request_13 1714136206299 1714136206380 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136206300 1714136206383 OK +REQUEST request_6 1714136206301 1714136206384 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136206301 1714136206397 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136206301 1714136206398 OK +REQUEST request_5 1714136206301 1714136206398 OK +REQUEST request_3 1714136206301 1714136206398 OK +REQUEST request_10 1714136206359 1714136206455 OK +REQUEST request_9 1714136206359 1714136206465 OK +REQUEST request_12 1714136206386 1714136206495 OK +REQUEST request_11 1714136206432 1714136206516 OK +REQUEST request_12 1714136206432 1714136206543 OK +REQUEST request_11 1714136206479 1714136206576 OK +REQUEST request_13 1714136206495 1714136206579 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136206543 1714136206585 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136206588 +REQUEST request_14 1714136206496 1714136206591 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136206572 1714136206620 OK +REQUEST request_14 1714136206543 1714136206627 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136206620 1714136206667 OK +REQUEST request_0 1714136206588 1714136206685 OK +REQUEST request_17 1714136206620 1714136206703 OK +USER PlayGameRecord END 1714136206704 +USER PlayGameRecord START 1714136206713 +REQUEST request_1 1714136206685 1714136206733 OK +USER PlayGameRecord START 1714136206745 +REQUEST request_8 1714136206650 1714136206749 OK +REQUEST request_8 1714136206681 1714136206764 OK +REQUEST request_4 1714136206685 1714136206769 OK +REQUEST request_7 1714136206685 1714136206769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136206685 1714136206780 OK +REQUEST request_3 1714136206685 1714136206781 OK +REQUEST request_5 1714136206685 1714136206783 OK +REQUEST request_6 1714136206685 1714136206783 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136206713 1714136206795 OK +REQUEST request_10 1714136206749 1714136206833 OK +REQUEST request_1 1714136206795 1714136206836 OK +REQUEST request_0 1714136206745 1714136206841 OK +REQUEST request_10 1714136206764 1714136206846 OK +REQUEST request_9 1714136206749 1714136206864 OK +REQUEST request_9 1714136206764 1714136206869 OK +REQUEST request_5 1714136206795 1714136206878 OK +REQUEST request_6 1714136206796 1714136206879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136206796 1714136206879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136206841 1714136206888 OK +REQUEST request_12 1714136206776 1714136206888 OK +REQUEST request_2 1714136206795 1714136206892 OK +REQUEST request_4 1714136206795 1714136206893 OK +REQUEST request_3 1714136206796 1714136206893 OK +REQUEST request_3 1714136206841 1714136206922 OK +REQUEST request_2 1714136206841 1714136206924 OK +REQUEST request_14 1714136206888 1714136206935 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136206841 1714136206940 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136206841 1714136206940 OK +REQUEST request_6 1714136206841 1714136206941 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136206841 1714136206941 OK +REQUEST request_12 1714136206853 1714136206962 OK +REQUEST request_13 1714136206888 1714136206987 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136206963 1714136207003 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136206963 1714136207045 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136206961 1714136207080 OK +REQUEST request_12 1714136206977 1714136207082 OK +REQUEST request_13 1714136207080 1714136207121 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136207087 1714136207127 OK +USER PlayGameRecord START 1714136207134 +REQUEST request_12 1714136207056 1714136207151 OK +REQUEST request_14 1714136207080 1714136207163 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136207082 1714136207164 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136207119 1714136207166 OK +REQUEST request_16 1714136207127 1714136207168 OK +REQUEST request_14 1714136207082 1714136207179 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136207197 +REQUEST request_14 1714136207151 1714136207199 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136207166 1714136207213 OK +REQUEST request_11 1714136207139 1714136207221 OK +REQUEST request_17 1714136207127 1714136207224 OK +USER PlayGameRecord END 1714136207224 +REQUEST request_0 1714136207134 1714136207231 OK +REQUEST request_13 1714136207151 1714136207246 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136207166 1714136207248 OK +REQUEST request_17 1714136207166 1714136207249 OK +USER PlayGameRecord END 1714136207250 +REQUEST request_0 1714136207197 1714136207279 OK +REQUEST request_1 1714136207232 1714136207280 OK +REQUEST request_12 1714136207197 1714136207308 OK +REQUEST request_11 1714136207228 1714136207312 OK +REQUEST request_2 1714136207232 1714136207314 OK +REQUEST request_6 1714136207232 1714136207314 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136207232 1714136207317 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136207279 1714136207320 OK +REQUEST request_3 1714136207232 1714136207329 OK +REQUEST request_5 1714136207232 1714136207330 OK +REQUEST request_4 1714136207232 1714136207330 OK +REQUEST request_15 1714136207290 1714136207331 OK +REQUEST request_8 1714136207259 1714136207356 OK +REQUEST request_3 1714136207280 1714136207362 OK +REQUEST request_2 1714136207279 1714136207362 OK +REQUEST request_4 1714136207280 1714136207363 OK +REQUEST request_7 1714136207280 1714136207365 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136207331 1714136207371 OK +REQUEST request_5 1714136207280 1714136207375 OK +REQUEST request_6 1714136207280 1714136207378 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136207308 1714136207391 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136207399 +REQUEST request_14 1714136207308 1714136207403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136207331 1714136207425 OK +USER PlayGameRecord END 1714136207426 +REQUEST request_8 1714136207352 1714136207435 OK +USER PlayGameRecord START 1714136207447 +REQUEST request_10 1714136207356 1714136207453 OK +REQUEST request_9 1714136207356 1714136207464 OK +REQUEST request_0 1714136207399 1714136207480 OK +REQUEST request_8 1714136207415 1714136207497 OK +REQUEST request_10 1714136207436 1714136207517 OK +REQUEST request_1 1714136207480 1714136207521 OK +REQUEST request_0 1714136207447 1714136207530 OK +REQUEST request_15 1714136207495 1714136207536 OK +REQUEST request_9 1714136207435 1714136207537 OK +REQUEST request_5 1714136207480 1714136207563 OK +REQUEST request_6 1714136207480 1714136207564 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136207531 1714136207572 OK +REQUEST request_3 1714136207480 1714136207575 OK +REQUEST request_7 1714136207481 1714136207576 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136207480 1714136207577 OK +REQUEST request_2 1714136207480 1714136207577 OK +REQUEST request_16 1714136207536 1714136207578 OK +REQUEST request_10 1714136207498 1714136207594 OK +REQUEST request_9 1714136207498 1714136207598 OK +REQUEST request_2 1714136207531 1714136207614 OK +REQUEST request_6 1714136207531 1714136207614 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136207531 1714136207614 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136207536 1714136207619 OK +USER PlayGameRecord END 1714136207620 +REQUEST request_12 1714136207527 1714136207625 OK +REQUEST request_4 1714136207531 1714136207625 OK +REQUEST request_5 1714136207531 1714136207627 OK +REQUEST request_3 1714136207531 1714136207627 OK +REQUEST request_15 1714136207588 1714136207629 OK +REQUEST request_11 1714136207541 1714136207638 OK +REQUEST request_13 1714136207625 1714136207665 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136207629 1714136207671 OK +REQUEST request_12 1714136207588 1714136207683 OK +USER PlayGameRecord START 1714136207697 +REQUEST request_17 1714136207629 1714136207713 OK +USER PlayGameRecord END 1714136207713 +REQUEST request_14 1714136207625 1714136207720 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136207683 1714136207730 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136207683 1714136207780 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136207790 +REQUEST request_0 1714136207697 1714136207795 OK +REQUEST request_11 1714136207722 1714136207804 OK +REQUEST request_1 1714136207795 1714136207844 OK +REQUEST request_0 1714136207790 1714136207873 OK +REQUEST request_5 1714136207796 1714136207877 OK +REQUEST request_6 1714136207796 1714136207877 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136207796 1714136207878 OK +REQUEST request_2 1714136207795 1714136207890 OK +REQUEST request_7 1714136207796 1714136207891 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136207795 1714136207892 OK +REQUEST request_1 1714136207873 1714136207914 OK +REQUEST request_11 1714136207870 1714136207952 OK +REQUEST request_5 1714136207873 1714136207955 OK +REQUEST request_7 1714136207873 1714136207956 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136207873 1714136207968 OK +REQUEST request_6 1714136207873 1714136207969 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136207873 1714136207969 OK +REQUEST request_4 1714136207873 1714136207970 OK +REQUEST request_15 1714136207977 1714136208024 OK +USER PlayGameRecord START 1714136208040 +USER PlayGameRecord START 1714136208055 +REQUEST request_16 1714136208025 1714136208072 OK +REQUEST request_8 1714136207993 1714136208075 OK +REQUEST request_15 1714136208040 1714136208082 OK +REQUEST request_15 1714136208070 1714136208118 OK +REQUEST request_17 1714136208025 1714136208120 OK +USER PlayGameRecord END 1714136208120 +REQUEST request_16 1714136208082 1714136208123 OK +REQUEST request_0 1714136208040 1714136208136 OK +USER PlayGameRecord START 1714136208147 +REQUEST request_0 1714136208055 1714136208151 OK +REQUEST request_17 1714136208082 1714136208165 OK +USER PlayGameRecord END 1714136208166 +REQUEST request_16 1714136208118 1714136208166 OK +REQUEST request_10 1714136208076 1714136208173 OK +REQUEST request_9 1714136208075 1714136208180 OK +REQUEST request_1 1714136208136 1714136208183 OK +REQUEST request_1 1714136208151 1714136208199 OK +REQUEST request_17 1714136208118 1714136208214 OK +USER PlayGameRecord END 1714136208214 +REQUEST request_4 1714136208136 1714136208219 OK +REQUEST request_5 1714136208136 1714136208220 OK +REQUEST request_7 1714136208136 1714136208221 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136208147 1714136208230 OK +REQUEST request_2 1714136208136 1714136208232 OK +REQUEST request_3 1714136208136 1714136208233 OK +REQUEST request_2 1714136208151 1714136208234 OK +REQUEST request_3 1714136208151 1714136208234 OK +REQUEST request_6 1714136208136 1714136208235 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136208151 1714136208236 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136208151 1714136208236 OK +REQUEST request_5 1714136208151 1714136208247 OK +REQUEST request_6 1714136208151 1714136208247 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136208256 +REQUEST request_11 1714136208170 1714136208267 OK +REQUEST request_1 1714136208230 1714136208272 OK +REQUEST request_15 1714136208240 1714136208281 OK +REQUEST request_6 1714136208230 1714136208314 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136208230 1714136208315 OK +REQUEST request_12 1714136208224 1714136208321 OK +REQUEST request_16 1714136208281 1714136208322 OK +REQUEST request_4 1714136208230 1714136208326 OK +REQUEST request_2 1714136208230 1714136208326 OK +REQUEST request_3 1714136208230 1714136208327 OK +REQUEST request_7 1714136208231 1714136208328 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136208256 1714136208339 OK +REQUEST request_14 1714136208321 1714136208362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136208281 1714136208363 OK +USER PlayGameRecord END 1714136208364 +REQUEST request_12 1714136208256 1714136208364 OK +REQUEST request_1 1714136208339 1714136208380 OK +REQUEST request_11 1714136208318 1714136208414 OK +REQUEST request_13 1714136208321 1714136208415 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136208339 1714136208421 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136208339 1714136208422 OK +REQUEST request_2 1714136208339 1714136208423 OK +REQUEST request_5 1714136208339 1714136208425 OK +REQUEST request_12 1714136208318 1714136208429 OK +REQUEST request_6 1714136208339 1714136208436 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136208339 1714136208436 OK +REQUEST request_14 1714136208365 1714136208447 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136208364 1714136208460 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136208430 1714136208513 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136208427 1714136208524 OK +REQUEST request_13 1714136208430 1714136208525 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136208443 1714136208527 OK +USER PlayGameRecord START 1714136208599 +REQUEST request_10 1714136208524 1714136208607 OK +REQUEST request_9 1714136208524 1714136208630 OK +REQUEST request_15 1714136208584 1714136208632 OK +REQUEST request_15 1714136208599 1714136208646 OK +REQUEST request_16 1714136208632 1714136208681 OK +REQUEST request_16 1714136208646 1714136208693 OK +REQUEST request_0 1714136208599 1714136208696 OK +REQUEST request_17 1714136208632 1714136208715 OK +USER PlayGameRecord END 1714136208716 +REQUEST request_17 1714136208646 1714136208728 OK +USER PlayGameRecord END 1714136208728 +REQUEST request_1 1714136208696 1714136208746 OK +REQUEST request_12 1714136208645 1714136208757 OK +REQUEST request_7 1714136208697 1714136208780 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136208697 1714136208780 OK +REQUEST request_2 1714136208697 1714136208792 OK +REQUEST request_5 1714136208697 1714136208792 OK +REQUEST request_6 1714136208697 1714136208792 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136208697 1714136208794 OK +REQUEST request_14 1714136208757 1714136208839 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136208757 1714136208852 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136208785 1714136208882 OK +REQUEST request_12 1714136208816 1714136208914 OK +REQUEST request_15 1714136208895 1714136208935 OK +USER PlayGameRecord START 1714136208943 +REQUEST request_16 1714136208936 1714136208976 OK +REQUEST request_13 1714136208915 1714136208999 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136208915 1714136209012 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136208936 1714136209031 OK +USER PlayGameRecord END 1714136209032 +REQUEST request_0 1714136208943 1714136209039 OK +REQUEST request_12 1714136208958 1714136209054 OK +REQUEST request_11 1714136208978 1714136209061 OK +REQUEST request_1 1714136209039 1714136209087 OK +REQUEST request_14 1714136209054 1714136209101 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136209005 1714136209104 OK +REQUEST request_4 1714136209039 1714136209122 OK +REQUEST request_7 1714136209040 1714136209122 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136209039 1714136209123 OK +REQUEST request_3 1714136209040 1714136209123 OK +USER PlayGameRecord START 1714136209131 +REQUEST request_6 1714136209040 1714136209135 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136209039 1714136209135 OK +REQUEST request_13 1714136209054 1714136209150 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136209084 1714136209164 OK +REQUEST request_15 1714136209131 1714136209173 OK +REQUEST request_10 1714136209104 1714136209199 OK +REQUEST request_9 1714136209104 1714136209214 OK +REQUEST request_16 1714136209173 1714136209215 OK +REQUEST request_0 1714136209131 1714136209228 OK +REQUEST request_10 1714136209165 1714136209246 OK +REQUEST request_17 1714136209173 1714136209257 OK +USER PlayGameRecord END 1714136209257 +REQUEST request_9 1714136209164 1714136209264 OK +REQUEST request_1 1714136209228 1714136209277 OK +USER PlayGameRecord START 1714136209289 +REQUEST request_8 1714136209194 1714136209290 OK +REQUEST request_6 1714136209228 1714136209310 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136209228 1714136209310 OK +REQUEST request_5 1714136209228 1714136209312 OK +REQUEST request_2 1714136209228 1714136209313 OK +REQUEST request_4 1714136209228 1714136209324 OK +REQUEST request_7 1714136209228 1714136209326 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136209290 1714136209373 OK +USER PlayGameRecord START 1714136209383 +REQUEST request_0 1714136209289 1714136209385 OK +REQUEST request_12 1714136209273 1714136209386 OK +REQUEST request_9 1714136209290 1714136209398 OK +REQUEST request_13 1714136209386 1714136209427 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136209336 1714136209433 OK +REQUEST request_1 1714136209386 1714136209433 OK +USER PlayGameRecord START 1714136209446 +REQUEST request_8 1714136209374 1714136209457 OK +REQUEST request_11 1714136209364 1714136209462 OK +REQUEST request_2 1714136209386 1714136209468 OK +REQUEST request_14 1714136209386 1714136209470 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136209386 1714136209471 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136209383 1714136209477 OK +REQUEST request_0 1714136209383 1714136209478 OK +REQUEST request_3 1714136209386 1714136209481 OK +REQUEST request_7 1714136209386 1714136209481 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136209386 1714136209481 OK +REQUEST request_4 1714136209386 1714136209482 OK +REQUEST request_10 1714136209434 1714136209517 OK +REQUEST request_1 1714136209479 1714136209526 OK +REQUEST request_0 1714136209446 1714136209543 OK +REQUEST request_12 1714136209430 1714136209544 OK +REQUEST request_10 1714136209457 1714136209555 OK +REQUEST request_8 1714136209462 1714136209557 OK +REQUEST request_10 1714136209478 1714136209560 OK +REQUEST request_3 1714136209479 1714136209561 OK +REQUEST request_5 1714136209479 1714136209562 OK +REQUEST request_2 1714136209479 1714136209573 OK +REQUEST request_7 1714136209479 1714136209574 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136209479 1714136209575 OK +REQUEST request_6 1714136209479 1714136209576 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136209434 1714136209576 OK +REQUEST request_9 1714136209457 1714136209578 OK +USER PlayGameRecord START 1714136209588 +REQUEST request_1 1714136209544 1714136209592 OK +REQUEST request_9 1714136209478 1714136209612 OK +REQUEST request_6 1714136209544 1714136209626 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136209544 1714136209626 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136209544 1714136209627 OK +REQUEST request_7 1714136209544 1714136209627 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136209544 1714136209627 OK +REQUEST request_3 1714136209544 1714136209628 OK +REQUEST request_2 1714136209544 1714136209640 OK +REQUEST request_14 1714136209544 1714136209641 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136209558 1714136209642 OK +REQUEST request_15 1714136209603 1714136209651 OK +REQUEST request_12 1714136209541 1714136209656 OK +REQUEST request_8 1714136209572 1714136209666 OK +REQUEST request_9 1714136209558 1714136209670 OK +REQUEST request_0 1714136209588 1714136209684 OK +REQUEST request_8 1714136209603 1714136209698 OK +REQUEST request_16 1714136209651 1714136209698 OK +REQUEST request_14 1714136209657 1714136209704 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136209726 +REQUEST request_1 1714136209684 1714136209732 OK +REQUEST request_17 1714136209651 1714136209734 OK +USER PlayGameRecord END 1714136209735 +REQUEST request_13 1714136209657 1714136209752 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136209667 1714136209763 OK +REQUEST request_2 1714136209684 1714136209766 OK +REQUEST request_5 1714136209684 1714136209768 OK +REQUEST request_3 1714136209684 1714136209768 OK +REQUEST request_6 1714136209684 1714136209769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136209667 1714136209777 OK +REQUEST request_7 1714136209684 1714136209781 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136209684 1714136209781 OK +REQUEST request_10 1714136209698 1714136209793 OK +REQUEST request_9 1714136209698 1714136209810 OK +REQUEST request_0 1714136209726 1714136209823 OK +REQUEST request_1 1714136209824 1714136209872 OK +USER PlayGameRecord START 1714136209883 +REQUEST request_11 1714136209789 1714136209886 OK +REQUEST request_8 1714136209804 1714136209900 OK +REQUEST request_8 1714136209820 1714136209901 OK +REQUEST request_5 1714136209824 1714136209906 OK +REQUEST request_6 1714136209824 1714136209906 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136209824 1714136209920 OK +REQUEST request_4 1714136209824 1714136209921 OK +REQUEST request_3 1714136209824 1714136209921 OK +REQUEST request_7 1714136209824 1714136209922 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136209872 1714136209955 OK +REQUEST request_0 1714136209883 1714136209978 OK +REQUEST request_11 1714136209883 1714136209979 OK +REQUEST request_10 1714136209900 1714136209982 OK +REQUEST request_10 1714136209901 1714136209996 OK +REQUEST request_12 1714136209883 1714136210002 OK +REQUEST request_9 1714136209901 1714136210008 OK +REQUEST request_1 1714136209979 1714136210027 OK +REQUEST request_9 1714136209900 1714136210029 OK +REQUEST request_14 1714136210002 1714136210044 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136209979 1714136210061 OK +REQUEST request_3 1714136209979 1714136210063 OK +REQUEST request_5 1714136209979 1714136210063 OK +REQUEST request_15 1714136210023 1714136210063 OK +REQUEST request_7 1714136209979 1714136210075 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136209979 1714136210075 OK +REQUEST request_6 1714136209979 1714136210075 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136210002 1714136210085 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136210085 +REQUEST request_16 1714136210063 1714136210105 OK +REQUEST request_17 1714136210063 1714136210159 OK +USER PlayGameRecord END 1714136210159 +REQUEST request_12 1714136210069 1714136210166 OK +REQUEST request_0 1714136210085 1714136210181 OK +REQUEST request_11 1714136210100 1714136210183 OK +REQUEST request_8 1714136210115 1714136210212 OK +USER PlayGameRecord START 1714136210215 +USER PlayGameRecord START 1714136210223 +REQUEST request_1 1714136210181 1714136210230 OK +REQUEST request_8 1714136210146 1714136210230 OK +REQUEST request_13 1714136210166 1714136210248 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136210166 1714136210263 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136210182 1714136210265 OK +REQUEST request_6 1714136210182 1714136210266 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136210178 1714136210273 OK +REQUEST request_3 1714136210182 1714136210277 OK +REQUEST request_2 1714136210181 1714136210278 OK +REQUEST request_7 1714136210182 1714136210279 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136210182 1714136210279 OK +REQUEST request_8 1714136210192 1714136210289 OK +REQUEST request_10 1714136210212 1714136210295 OK +REQUEST request_0 1714136210223 1714136210307 OK +REQUEST request_0 1714136210215 1714136210312 OK +REQUEST request_10 1714136210230 1714136210327 OK +REQUEST request_9 1714136210212 1714136210327 OK +REQUEST request_9 1714136210230 1714136210341 OK +REQUEST request_1 1714136210307 1714136210349 OK +REQUEST request_1 1714136210312 1714136210360 OK +REQUEST request_15 1714136210333 1714136210373 OK +REQUEST request_10 1714136210289 1714136210386 OK +REQUEST request_2 1714136210307 1714136210390 OK +REQUEST request_4 1714136210307 1714136210390 OK +REQUEST request_7 1714136210307 1714136210391 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136210312 1714136210393 OK +REQUEST request_7 1714136210312 1714136210394 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136210312 1714136210395 OK +REQUEST request_9 1714136210289 1714136210396 OK +REQUEST request_5 1714136210307 1714136210402 OK +REQUEST request_6 1714136210307 1714136210404 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136210307 1714136210404 OK +REQUEST request_6 1714136210312 1714136210406 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136210312 1714136210407 OK +REQUEST request_4 1714136210312 1714136210407 OK +REQUEST request_16 1714136210373 1714136210414 OK +REQUEST request_15 1714136210395 1714136210436 OK +REQUEST request_17 1714136210373 1714136210470 OK +USER PlayGameRecord END 1714136210470 +REQUEST request_16 1714136210436 1714136210477 OK +USER PlayGameRecord START 1714136210505 +REQUEST request_17 1714136210436 1714136210520 OK +USER PlayGameRecord END 1714136210521 +REQUEST request_12 1714136210475 1714136210599 OK +REQUEST request_0 1714136210505 1714136210602 OK +REQUEST request_15 1714136210598 1714136210646 OK +REQUEST request_1 1714136210602 1714136210651 OK +REQUEST request_8 1714136210562 1714136210659 OK +REQUEST request_8 1714136210582 1714136210665 OK +REQUEST request_15 1714136210629 1714136210677 OK +REQUEST request_8 1714136210582 1714136210678 OK +REQUEST request_14 1714136210599 1714136210682 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136210602 1714136210684 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136210602 1714136210685 OK +REQUEST request_5 1714136210602 1714136210686 OK +REQUEST request_16 1714136210646 1714136210693 OK +REQUEST request_13 1714136210599 1714136210693 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136210602 1714136210698 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136210602 1714136210699 OK +REQUEST request_4 1714136210602 1714136210699 OK +REQUEST request_16 1714136210677 1714136210724 OK +REQUEST request_17 1714136210646 1714136210729 OK +USER PlayGameRecord END 1714136210729 +REQUEST request_10 1714136210659 1714136210740 OK +REQUEST request_10 1714136210665 1714136210748 OK +REQUEST request_17 1714136210677 1714136210759 OK +USER PlayGameRecord END 1714136210759 +REQUEST request_10 1714136210678 1714136210761 OK +REQUEST request_9 1714136210665 1714136210770 OK +REQUEST request_11 1714136210676 1714136210773 OK +REQUEST request_9 1714136210659 1714136210795 OK +REQUEST request_9 1714136210678 1714136210807 OK +REQUEST request_12 1714136210892 1714136211001 OK +USER PlayGameRecord START 1714136211042 +REQUEST request_11 1714136210962 1714136211047 OK +REQUEST request_15 1714136211003 1714136211051 OK +REQUEST request_12 1714136210956 1714136211052 OK +REQUEST request_13 1714136211001 1714136211083 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136211050 1714136211097 OK +REQUEST request_14 1714136211001 1714136211098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136211003 1714136211098 OK +REQUEST request_16 1714136211052 1714136211099 OK +REQUEST request_14 1714136211052 1714136211099 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136210988 1714136211100 OK +REQUEST request_13 1714136211052 1714136211133 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136211042 1714136211139 OK +REQUEST request_16 1714136211097 1714136211145 OK +REQUEST request_14 1714136211100 1714136211147 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136211052 1714136211148 OK +USER PlayGameRecord END 1714136211148 +REQUEST request_17 1714136211097 1714136211180 OK +USER PlayGameRecord END 1714136211180 +REQUEST request_11 1714136211097 1714136211181 OK +REQUEST request_13 1714136211100 1714136211182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136211139 1714136211187 OK +REQUEST request_10 1714136211098 1714136211194 OK +REQUEST request_9 1714136211098 1714136211204 OK +REQUEST request_5 1714136211139 1714136211221 OK +REQUEST request_6 1714136211139 1714136211223 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136211176 1714136211224 OK +REQUEST request_15 1714136211191 1714136211232 OK +REQUEST request_3 1714136211139 1714136211236 OK +REQUEST request_4 1714136211139 1714136211237 OK +REQUEST request_2 1714136211139 1714136211237 OK +REQUEST request_7 1714136211139 1714136211237 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136211224 1714136211272 OK +REQUEST request_16 1714136211233 1714136211273 OK +REQUEST request_12 1714136211191 1714136211288 OK +REQUEST request_15 1714136211253 1714136211294 OK +REQUEST request_17 1714136211233 1714136211316 OK +USER PlayGameRecord END 1714136211316 +REQUEST request_17 1714136211224 1714136211321 OK +USER PlayGameRecord END 1714136211321 +REQUEST request_14 1714136211288 1714136211329 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136211294 1714136211335 OK +REQUEST request_13 1714136211288 1714136211371 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136211294 1714136211377 OK +USER PlayGameRecord END 1714136211377 +REQUEST request_12 1714136211285 1714136211395 OK +REQUEST request_8 1714136211316 1714136211399 OK +REQUEST request_11 1714136211330 1714136211426 OK +REQUEST request_11 1714136211362 1714136211443 OK +REQUEST request_15 1714136211409 1714136211457 OK +USER PlayGameRecord START 1714136211470 +REQUEST request_14 1714136211396 1714136211478 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136211400 1714136211483 OK +REQUEST request_13 1714136211396 1714136211490 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136211399 1714136211499 OK +REQUEST request_16 1714136211457 1714136211505 OK +REQUEST request_17 1714136211458 1714136211540 OK +USER PlayGameRecord END 1714136211540 +REQUEST request_11 1714136211470 1714136211552 OK +REQUEST request_0 1714136211470 1714136211566 OK +REQUEST request_1 1714136211566 1714136211615 OK +USER PlayGameRecord START 1714136211626 +REQUEST request_8 1714136211548 1714136211631 OK +REQUEST request_2 1714136211566 1714136211648 OK +REQUEST request_6 1714136211567 1714136211650 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136211567 1714136211663 OK +REQUEST request_7 1714136211567 1714136211663 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136211566 1714136211664 OK +REQUEST request_5 1714136211567 1714136211664 OK +USER PlayGameRecord START 1714136211703 +REQUEST request_10 1714136211632 1714136211715 OK +REQUEST request_0 1714136211626 1714136211731 OK +REQUEST request_9 1714136211631 1714136211731 OK +USER PlayGameRecord START 1714136211734 +REQUEST request_15 1714136211734 1714136211775 OK +REQUEST request_1 1714136211731 1714136211779 OK +REQUEST request_8 1714136211703 1714136211787 OK +REQUEST request_0 1714136211703 1714136211798 OK +REQUEST request_7 1714136211732 1714136211814 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136211731 1714136211814 OK +REQUEST request_3 1714136211732 1714136211815 OK +REQUEST request_16 1714136211775 1714136211817 OK +REQUEST request_15 1714136211782 1714136211823 OK +REQUEST request_2 1714136211731 1714136211827 OK +REQUEST request_6 1714136211732 1714136211828 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136211731 1714136211830 OK +REQUEST request_0 1714136211734 1714136211830 OK +REQUEST request_1 1714136211799 1714136211847 OK +REQUEST request_17 1714136211775 1714136211857 OK +USER PlayGameRecord END 1714136211857 +REQUEST request_16 1714136211823 1714136211864 OK +REQUEST request_1 1714136211830 1714136211878 OK +REQUEST request_2 1714136211799 1714136211881 OK +REQUEST request_10 1714136211787 1714136211883 OK +REQUEST request_7 1714136211799 1714136211883 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136211799 1714136211894 OK +REQUEST request_5 1714136211799 1714136211895 OK +REQUEST request_6 1714136211799 1714136211896 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136211787 1714136211897 OK +REQUEST request_3 1714136211799 1714136211899 OK +REQUEST request_12 1714136211782 1714136211899 OK +REQUEST request_17 1714136211823 1714136211906 OK +USER PlayGameRecord END 1714136211906 +REQUEST request_4 1714136211830 1714136211912 OK +REQUEST request_6 1714136211831 1714136211913 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136211830 1714136211926 OK +REQUEST request_7 1714136211831 1714136211926 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136211830 1714136211927 OK +REQUEST request_2 1714136211830 1714136211927 OK +REQUEST request_14 1714136211899 1714136211941 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136211870 1714136211951 OK +REQUEST request_11 1714136211865 1714136211961 OK +REQUEST request_13 1714136211899 1714136211995 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136211985 1714136212081 OK +USER PlayGameRecord START 1714136212081 +USER PlayGameRecord START 1714136212081 +REQUEST request_12 1714136212049 1714136212150 OK +REQUEST request_8 1714136212081 1714136212163 OK +REQUEST request_0 1714136212081 1714136212164 OK +REQUEST request_0 1714136212081 1714136212176 OK +REQUEST request_10 1714136212081 1714136212177 OK +REQUEST request_9 1714136212081 1714136212192 OK +REQUEST request_1 1714136212164 1714136212205 OK +REQUEST request_8 1714136212128 1714136212223 OK +REQUEST request_1 1714136212176 1714136212223 OK +REQUEST request_13 1714136212150 1714136212234 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136212164 1714136212247 OK +REQUEST request_14 1714136212150 1714136212247 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136212164 1714136212248 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136212176 1714136212259 OK +REQUEST request_10 1714136212164 1714136212259 OK +REQUEST request_5 1714136212164 1714136212260 OK +REQUEST request_3 1714136212164 1714136212261 OK +REQUEST request_5 1714136212176 1714136212261 OK +REQUEST request_4 1714136212164 1714136212261 OK +REQUEST request_7 1714136212164 1714136212261 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136212176 1714136212261 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136212163 1714136212266 OK +REQUEST request_4 1714136212176 1714136212271 OK +REQUEST request_6 1714136212176 1714136212273 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136212176 1714136212277 OK +REQUEST request_12 1714136212190 1714136212292 OK +REQUEST request_10 1714136212223 1714136212320 OK +REQUEST request_9 1714136212223 1714136212333 OK +REQUEST request_13 1714136212293 1714136212376 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136212293 1714136212376 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136212347 1714136212430 OK +USER PlayGameRecord START 1714136212439 +REQUEST request_8 1714136212362 1714136212459 OK +REQUEST request_15 1714136212423 1714136212463 OK +REQUEST request_16 1714136212463 1714136212504 OK +REQUEST request_15 1714136212464 1714136212511 OK +REQUEST request_10 1714136212431 1714136212526 OK +REQUEST request_9 1714136212430 1714136212531 OK +REQUEST request_0 1714136212439 1714136212536 OK +REQUEST request_11 1714136212464 1714136212548 OK +REQUEST request_10 1714136212460 1714136212556 OK +REQUEST request_17 1714136212463 1714136212559 OK +REQUEST request_16 1714136212512 1714136212559 OK +USER PlayGameRecord END 1714136212560 +REQUEST request_12 1714136212439 1714136212570 OK +REQUEST request_12 1714136212454 1714136212572 OK +REQUEST request_9 1714136212459 1714136212577 OK +REQUEST request_1 1714136212537 1714136212585 OK +REQUEST request_15 1714136212533 1714136212590 OK +REQUEST request_17 1714136212512 1714136212594 OK +USER PlayGameRecord END 1714136212594 +REQUEST request_13 1714136212570 1714136212611 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136212537 1714136212619 OK +REQUEST request_6 1714136212537 1714136212620 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136212537 1714136212632 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136212537 1714136212632 OK +REQUEST request_5 1714136212537 1714136212633 OK +REQUEST request_11 1714136212538 1714136212634 OK +REQUEST request_3 1714136212537 1714136212634 OK +REQUEST request_16 1714136212590 1714136212638 OK +REQUEST request_8 1714136212548 1714136212645 OK +REQUEST request_14 1714136212570 1714136212652 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136212572 1714136212655 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136212660 +REQUEST request_12 1714136212564 1714136212662 OK +REQUEST request_13 1714136212572 1714136212669 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136212590 1714136212686 OK +USER PlayGameRecord END 1714136212687 +REQUEST request_11 1714136212611 1714136212693 OK +REQUEST request_13 1714136212662 1714136212703 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136212645 1714136212740 OK +REQUEST request_0 1714136212659 1714136212741 OK +REQUEST request_14 1714136212663 1714136212745 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136212645 1714136212753 OK +REQUEST request_8 1714136212689 1714136212772 OK +REQUEST request_8 1714136212689 1714136212772 OK +REQUEST request_1 1714136212742 1714136212783 OK +REQUEST request_8 1714136212705 1714136212801 OK +REQUEST request_3 1714136212742 1714136212825 OK +REQUEST request_6 1714136212742 1714136212825 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136212742 1714136212825 OK +REQUEST request_2 1714136212742 1714136212827 OK +REQUEST request_7 1714136212742 1714136212839 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136212742 1714136212839 OK +REQUEST request_10 1714136212773 1714136212856 OK +REQUEST request_10 1714136212772 1714136212857 OK +REQUEST request_10 1714136212801 1714136212883 OK +REQUEST request_9 1714136212772 1714136212885 OK +REQUEST request_9 1714136212773 1714136212894 OK +USER PlayGameRecord START 1714136212909 +REQUEST request_15 1714136212861 1714136212909 OK +REQUEST request_9 1714136212801 1714136212924 OK +USER PlayGameRecord START 1714136212941 +REQUEST request_16 1714136212909 1714136212957 OK +REQUEST request_17 1714136212909 1714136212993 OK +USER PlayGameRecord END 1714136212993 +REQUEST request_0 1714136212909 1714136213004 OK +REQUEST request_0 1714136212941 1714136213024 OK +REQUEST request_1 1714136213004 1714136213053 OK +REQUEST request_12 1714136212956 1714136213056 OK +REQUEST request_15 1714136213019 1714136213061 OK +REQUEST request_1 1714136213025 1714136213066 OK +REQUEST request_12 1714136212972 1714136213081 OK +REQUEST request_6 1714136213005 1714136213087 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136213004 1714136213088 OK +REQUEST request_5 1714136213004 1714136213089 OK +REQUEST request_2 1714136213004 1714136213100 OK +REQUEST request_3 1714136213004 1714136213101 OK +REQUEST request_7 1714136213005 1714136213102 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136213061 1714136213104 OK +REQUEST request_14 1714136213057 1714136213105 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136213025 1714136213107 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136213025 1714136213107 OK +REQUEST request_5 1714136213025 1714136213120 OK +REQUEST request_3 1714136213025 1714136213122 OK +REQUEST request_6 1714136213025 1714136213122 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136213025 1714136213122 OK +REQUEST request_14 1714136213082 1714136213123 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136213057 1714136213153 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136213061 1714136213158 OK +USER PlayGameRecord END 1714136213158 +REQUEST request_8 1714136213066 1714136213164 OK +REQUEST request_13 1714136213081 1714136213164 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136213160 1714136213201 OK +REQUEST request_16 1714136213201 1714136213242 OK +REQUEST request_10 1714136213164 1714136213261 OK +REQUEST request_11 1714136213180 1714136213263 OK +REQUEST request_9 1714136213164 1714136213272 OK +REQUEST request_17 1714136213201 1714136213284 OK +USER PlayGameRecord END 1714136213285 +USER PlayGameRecord START 1714136213395 +REQUEST request_8 1714136213379 1714136213476 OK +REQUEST request_8 1714136213395 1714136213490 OK +REQUEST request_0 1714136213395 1714136213491 OK +USER PlayGameRecord START 1714136213521 +REQUEST request_15 1714136213473 1714136213521 OK +REQUEST request_8 1714136213441 1714136213525 OK +REQUEST request_1 1714136213491 1714136213539 OK +REQUEST request_10 1714136213476 1714136213559 OK +REQUEST request_16 1714136213522 1714136213569 OK +REQUEST request_7 1714136213491 1714136213575 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136213491 1714136213575 OK +REQUEST request_2 1714136213491 1714136213575 OK +REQUEST request_4 1714136213491 1714136213575 OK +REQUEST request_6 1714136213491 1714136213587 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136213491 1714136213587 OK +REQUEST request_10 1714136213491 1714136213588 OK +REQUEST request_0 1714136213521 1714136213604 OK +REQUEST request_17 1714136213522 1714136213605 OK +REQUEST request_9 1714136213491 1714136213605 OK +USER PlayGameRecord END 1714136213605 +REQUEST request_9 1714136213476 1714136213612 OK +REQUEST request_10 1714136213525 1714136213621 OK +REQUEST request_1 1714136213604 1714136213646 OK +REQUEST request_9 1714136213525 1714136213647 OK +REQUEST request_12 1714136213553 1714136213653 OK +REQUEST request_6 1714136213605 1714136213686 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136213604 1714136213687 OK +REQUEST request_4 1714136213605 1714136213688 OK +REQUEST request_15 1714136213648 1714136213695 OK +REQUEST request_5 1714136213605 1714136213700 OK +REQUEST request_3 1714136213605 1714136213701 OK +REQUEST request_7 1714136213605 1714136213701 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136213632 1714136213715 OK +USER PlayGameRecord START 1714136213726 +REQUEST request_11 1714136213632 1714136213729 OK +REQUEST request_13 1714136213653 1714136213736 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136213741 +REQUEST request_16 1714136213695 1714136213743 OK +REQUEST request_12 1714136213648 1714136213743 OK +REQUEST request_14 1714136213653 1714136213750 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136213744 1714136213792 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136213695 1714136213792 OK +USER PlayGameRecord END 1714136213792 +REQUEST request_8 1714136213711 1714136213795 OK +REQUEST request_12 1714136213695 1714136213798 OK +REQUEST request_15 1714136213756 1714136213803 OK +REQUEST request_10 1714136213716 1714136213811 OK +REQUEST request_9 1714136213716 1714136213819 OK +REQUEST request_0 1714136213726 1714136213824 OK +REQUEST request_0 1714136213741 1714136213825 OK +REQUEST request_13 1714136213744 1714136213839 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136213798 1714136213839 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136213756 1714136213840 OK +REQUEST request_16 1714136213803 1714136213851 OK +REQUEST request_1 1714136213825 1714136213867 OK +REQUEST request_1 1714136213824 1714136213873 OK +REQUEST request_10 1714136213796 1714136213879 OK +REQUEST request_14 1714136213798 1714136213883 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136213803 1714136213900 OK +REQUEST request_9 1714136213796 1714136213900 OK +USER PlayGameRecord END 1714136213900 +REQUEST request_7 1714136213824 1714136213906 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136213824 1714136213907 OK +REQUEST request_2 1714136213826 1714136213907 OK +REQUEST request_6 1714136213826 1714136213908 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136213824 1714136213908 OK +REQUEST request_5 1714136213826 1714136213909 OK +REQUEST request_2 1714136213824 1714136213920 OK +REQUEST request_7 1714136213826 1714136213920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136213824 1714136213922 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136213824 1714136213922 OK +REQUEST request_4 1714136213826 1714136213922 OK +REQUEST request_3 1714136213826 1714136213922 OK +REQUEST request_10 1714136213840 1714136213923 OK +REQUEST request_9 1714136213840 1714136213944 OK +USER PlayGameRecord START 1714136214037 +REQUEST request_8 1714136213975 1714136214072 OK +REQUEST request_0 1714136214037 1714136214121 OK +REQUEST request_15 1714136214085 1714136214134 OK +REQUEST request_10 1714136214072 1714136214155 OK +REQUEST request_1 1714136214121 1714136214162 OK +REQUEST request_9 1714136214072 1714136214179 OK +REQUEST request_16 1714136214134 1714136214182 OK +REQUEST request_4 1714136214121 1714136214203 OK +REQUEST request_3 1714136214121 1714136214204 OK +USER PlayGameRecord START 1714136214210 +USER PlayGameRecord START 1714136214210 +REQUEST request_7 1714136214121 1714136214217 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136214121 1714136214218 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136214121 1714136214218 OK +REQUEST request_2 1714136214121 1714136214218 OK +REQUEST request_17 1714136214134 1714136214229 OK +USER PlayGameRecord END 1714136214230 +REQUEST request_0 1714136214209 1714136214293 OK +REQUEST request_11 1714136214215 1714136214299 OK +USER PlayGameRecord START 1714136214299 +REQUEST request_0 1714136214209 1714136214306 OK +REQUEST request_8 1714136214225 1714136214308 OK +REQUEST request_15 1714136214271 1714136214312 OK +USER PlayGameRecord START 1714136214334 +REQUEST request_1 1714136214293 1714136214335 OK +REQUEST request_16 1714136214312 1714136214354 OK +REQUEST request_1 1714136214306 1714136214355 OK +REQUEST request_11 1714136214265 1714136214361 OK +REQUEST request_2 1714136214293 1714136214376 OK +REQUEST request_3 1714136214293 1714136214376 OK +REQUEST request_6 1714136214294 1714136214378 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136214293 1714136214378 OK +REQUEST request_8 1714136214301 1714136214387 OK +REQUEST request_5 1714136214293 1714136214388 OK +REQUEST request_2 1714136214306 1714136214389 OK +REQUEST request_3 1714136214307 1714136214389 OK +REQUEST request_4 1714136214307 1714136214390 OK +REQUEST request_12 1714136214271 1714136214390 OK +REQUEST request_6 1714136214307 1714136214391 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136214294 1714136214391 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136214307 1714136214394 OK +REQUEST request_17 1714136214312 1714136214394 OK +USER PlayGameRecord END 1714136214394 +REQUEST request_10 1714136214309 1714136214395 OK +REQUEST request_0 1714136214299 1714136214395 OK +REQUEST request_7 1714136214307 1714136214403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136214308 1714136214412 OK +REQUEST request_0 1714136214333 1714136214418 OK +REQUEST request_13 1714136214390 1714136214431 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136214395 1714136214443 OK +USER PlayGameRecord START 1714136214459 +REQUEST request_1 1714136214418 1714136214462 OK +REQUEST request_14 1714136214390 1714136214472 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136214395 1714136214477 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136214395 1714136214479 OK +REQUEST request_2 1714136214395 1714136214479 OK +REQUEST request_10 1714136214387 1714136214484 OK +REQUEST request_9 1714136214387 1714136214489 OK +REQUEST request_4 1714136214395 1714136214491 OK +REQUEST request_3 1714136214395 1714136214491 OK +REQUEST request_7 1714136214396 1714136214492 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136214418 1714136214500 OK +REQUEST request_7 1714136214418 1714136214501 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136214418 1714136214503 OK +REQUEST request_11 1714136214412 1714136214507 OK +REQUEST request_3 1714136214418 1714136214515 OK +REQUEST request_2 1714136214418 1714136214515 OK +REQUEST request_6 1714136214418 1714136214515 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136214459 1714136214555 OK +REQUEST request_8 1714136214490 1714136214574 OK +REQUEST request_1 1714136214555 1714136214603 OK +REQUEST request_5 1714136214556 1714136214637 OK +REQUEST request_3 1714136214556 1714136214640 OK +REQUEST request_4 1714136214556 1714136214640 OK +REQUEST request_6 1714136214556 1714136214641 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136214556 1714136214652 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136214555 1714136214652 OK +USER PlayGameRecord START 1714136214662 +USER PlayGameRecord START 1714136214662 +REQUEST request_10 1714136214574 1714136214670 OK +REQUEST request_11 1714136214582 1714136214677 OK +REQUEST request_9 1714136214574 1714136214677 OK +REQUEST request_11 1714136214582 1714136214678 OK +REQUEST request_11 1714136214612 1714136214694 OK +USER PlayGameRecord START 1714136214707 +REQUEST request_15 1714136214694 1714136214742 OK +REQUEST request_0 1714136214661 1714136214746 OK +REQUEST request_11 1714136214670 1714136214752 OK +REQUEST request_0 1714136214661 1714136214756 OK +REQUEST request_1 1714136214746 1714136214787 OK +REQUEST request_16 1714136214742 1714136214789 OK +REQUEST request_1 1714136214757 1714136214804 OK +REQUEST request_0 1714136214707 1714136214806 OK +REQUEST request_17 1714136214742 1714136214825 OK +USER PlayGameRecord END 1714136214825 +REQUEST request_5 1714136214746 1714136214830 OK +REQUEST request_4 1714136214746 1714136214830 OK +REQUEST request_12 1714136214732 1714136214832 OK +REQUEST request_2 1714136214757 1714136214839 OK +REQUEST request_6 1714136214757 1714136214839 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136214757 1714136214840 OK +REQUEST request_7 1714136214746 1714136214842 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136214746 1714136214842 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136214746 1714136214842 OK +REQUEST request_2 1714136214746 1714136214843 OK +REQUEST request_7 1714136214757 1714136214852 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136214806 1714136214854 OK +REQUEST request_5 1714136214757 1714136214854 OK +REQUEST request_4 1714136214757 1714136214855 OK +REQUEST request_14 1714136214832 1714136214879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136214786 1714136214882 OK +REQUEST request_3 1714136214806 1714136214888 OK +REQUEST request_4 1714136214806 1714136214889 OK +REQUEST request_8 1714136214818 1714136214900 OK +REQUEST request_6 1714136214806 1714136214901 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136214806 1714136214902 OK +REQUEST request_2 1714136214806 1714136214902 OK +REQUEST request_7 1714136214806 1714136214903 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136214832 1714136214913 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136214818 1714136214915 OK +REQUEST request_10 1714136214900 1714136214983 OK +REQUEST request_9 1714136214900 1714136215001 OK +REQUEST request_8 1714136214927 1714136215010 OK +REQUEST request_8 1714136214973 1714136215058 OK +REQUEST request_8 1714136214973 1714136215071 OK +REQUEST request_10 1714136215011 1714136215095 OK +REQUEST request_11 1714136215009 1714136215107 OK +REQUEST request_9 1714136215011 1714136215112 OK +REQUEST request_11 1714136215030 1714136215128 OK +REQUEST request_10 1714136215058 1714136215140 OK +REQUEST request_15 1714136215099 1714136215146 OK +REQUEST request_9 1714136215058 1714136215164 OK +REQUEST request_10 1714136215071 1714136215166 OK +REQUEST request_9 1714136215071 1714136215183 OK +REQUEST request_15 1714136215145 1714136215186 OK +REQUEST request_16 1714136215146 1714136215193 OK +REQUEST request_16 1714136215186 1714136215228 OK +REQUEST request_15 1714136215191 1714136215239 OK +REQUEST request_17 1714136215146 1714136215243 OK +USER PlayGameRecord END 1714136215243 +REQUEST request_8 1714136215176 1714136215259 OK +REQUEST request_17 1714136215186 1714136215283 OK +USER PlayGameRecord END 1714136215284 +REQUEST request_16 1714136215240 1714136215287 OK +REQUEST request_17 1714136215240 1714136215323 OK +USER PlayGameRecord END 1714136215323 +USER PlayGameRecord START 1714136215330 +REQUEST request_10 1714136215259 1714136215343 OK +REQUEST request_9 1714136215259 1714136215359 OK +REQUEST request_11 1714136215329 1714136215411 OK +REQUEST request_12 1714136215299 1714136215414 OK +REQUEST request_15 1714136215377 1714136215418 OK +REQUEST request_0 1714136215330 1714136215426 OK +REQUEST request_11 1714136215345 1714136215426 OK +REQUEST request_14 1714136215414 1714136215455 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136215418 1714136215459 OK +REQUEST request_12 1714136215377 1714136215471 OK +REQUEST request_1 1714136215426 1714136215474 OK +REQUEST request_11 1714136215397 1714136215494 OK +REQUEST request_5 1714136215426 1714136215509 OK +REQUEST request_13 1714136215414 1714136215510 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136215426 1714136215510 OK +REQUEST request_7 1714136215426 1714136215511 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136215472 1714136215511 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136215418 1714136215515 OK +USER PlayGameRecord END 1714136215515 +REQUEST request_2 1714136215426 1714136215522 OK +REQUEST request_3 1714136215426 1714136215523 OK +REQUEST request_6 1714136215426 1714136215524 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136215441 1714136215524 OK +USER PlayGameRecord START 1714136215536 +REQUEST request_15 1714136215504 1714136215551 OK +REQUEST request_8 1714136215457 1714136215553 OK +REQUEST request_14 1714136215472 1714136215566 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136215597 +REQUEST request_16 1714136215552 1714136215600 OK +REQUEST request_10 1714136215525 1714136215607 OK +REQUEST request_12 1714136215520 1714136215625 OK +REQUEST request_0 1714136215536 1714136215633 OK +REQUEST request_10 1714136215553 1714136215635 OK +REQUEST request_9 1714136215525 1714136215638 OK +REQUEST request_17 1714136215552 1714136215649 OK +USER PlayGameRecord END 1714136215649 +REQUEST request_8 1714136215566 1714136215662 OK +REQUEST request_13 1714136215625 1714136215666 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136215553 1714136215676 OK +REQUEST request_0 1714136215597 1714136215681 OK +REQUEST request_1 1714136215633 1714136215682 OK +REQUEST request_5 1714136215634 1714136215715 OK +REQUEST request_7 1714136215634 1714136215716 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136215634 1714136215717 OK +REQUEST request_2 1714136215633 1714136215717 OK +REQUEST request_14 1714136215625 1714136215721 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136215681 1714136215723 OK +REQUEST request_6 1714136215634 1714136215728 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136215633 1714136215729 OK +REQUEST request_10 1714136215662 1714136215757 OK +REQUEST request_2 1714136215681 1714136215763 OK +REQUEST request_6 1714136215681 1714136215763 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136215681 1714136215763 OK +REQUEST request_5 1714136215681 1714136215766 OK +REQUEST request_9 1714136215662 1714136215775 OK +REQUEST request_7 1714136215681 1714136215777 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136215681 1714136215777 OK +REQUEST request_12 1714136215698 1714136215804 OK +REQUEST request_12 1714136215690 1714136215808 OK +REQUEST request_12 1714136215690 1714136215810 OK +USER PlayGameRecord START 1714136215830 +REQUEST request_13 1714136215804 1714136215845 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136215810 1714136215852 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136215808 1714136215855 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136215783 1714136215865 OK +REQUEST request_11 1714136215796 1714136215879 OK +REQUEST request_8 1714136215783 1714136215880 OK +REQUEST request_12 1714136215768 1714136215881 OK +REQUEST request_13 1714136215808 1714136215889 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136215810 1714136215892 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136215804 1714136215900 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136215808 1714136215902 OK +REQUEST request_8 1714136215814 1714136215910 OK +REQUEST request_0 1714136215830 1714136215926 OK +REQUEST request_14 1714136215881 1714136215929 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136215880 1714136215963 OK +REQUEST request_1 1714136215926 1714136215975 OK +REQUEST request_13 1714136215881 1714136215976 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136215892 1714136215994 OK +REQUEST request_10 1714136215911 1714136216005 OK +REQUEST request_9 1714136215880 1714136216006 OK +REQUEST request_4 1714136215927 1714136216009 OK +REQUEST request_7 1714136215927 1714136216010 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136215927 1714136216011 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136215927 1714136216023 OK +REQUEST request_3 1714136215927 1714136216023 OK +REQUEST request_5 1714136215927 1714136216024 OK +REQUEST request_12 1714136215924 1714136216037 OK +REQUEST request_9 1714136215910 1714136216038 OK +REQUEST request_15 1714136216001 1714136216049 OK +REQUEST request_14 1714136215994 1714136216078 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136216037 1714136216085 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136215994 1714136216091 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136216050 1714136216098 OK +REQUEST request_13 1714136216037 1714136216132 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136216050 1714136216146 OK +USER PlayGameRecord END 1714136216146 +REQUEST request_12 1714136216110 1714136216207 OK +USER PlayGameRecord START 1714136216220 +REQUEST request_12 1714136216142 1714136216250 OK +REQUEST request_8 1714136216172 1714136216268 OK +REQUEST request_11 1714136216205 1714136216287 OK +REQUEST request_13 1714136216207 1714136216291 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136216251 1714136216291 OK +REQUEST request_0 1714136216220 1714136216303 OK +REQUEST request_14 1714136216208 1714136216304 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136216250 1714136216332 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136216292 1714136216333 OK +REQUEST request_14 1714136216250 1714136216335 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136216303 1714136216345 OK +REQUEST request_10 1714136216268 1714136216351 OK +REQUEST request_9 1714136216268 1714136216375 OK +REQUEST request_4 1714136216303 1714136216387 OK +REQUEST request_17 1714136216292 1714136216389 OK +USER PlayGameRecord END 1714136216389 +REQUEST request_3 1714136216304 1714136216399 OK +REQUEST request_2 1714136216303 1714136216400 OK +REQUEST request_7 1714136216304 1714136216400 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136216303 1714136216400 OK +REQUEST request_6 1714136216304 1714136216401 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136216391 1714136216432 OK +REQUEST request_16 1714136216432 1714136216473 OK +REQUEST request_8 1714136216391 1714136216474 OK +USER PlayGameRecord START 1714136216500 +REQUEST request_12 1714136216422 1714136216524 OK +REQUEST request_17 1714136216433 1714136216530 OK +USER PlayGameRecord END 1714136216531 +REQUEST request_12 1714136216438 1714136216549 OK +REQUEST request_10 1714136216475 1714136216557 OK +REQUEST request_14 1714136216524 1714136216566 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136216475 1714136216580 OK +REQUEST request_0 1714136216500 1714136216582 OK +REQUEST request_14 1714136216549 1714136216591 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136216499 1714136216594 OK +REQUEST request_12 1714136216500 1714136216596 OK +REQUEST request_13 1714136216524 1714136216607 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136216582 1714136216624 OK +REQUEST request_13 1714136216549 1714136216644 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136216564 1714136216660 OK +REQUEST request_7 1714136216583 1714136216664 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136216582 1714136216665 OK +REQUEST request_5 1714136216582 1714136216666 OK +REQUEST request_6 1714136216583 1714136216677 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136216582 1714136216679 OK +REQUEST request_13 1714136216596 1714136216679 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136216582 1714136216679 OK +REQUEST request_14 1714136216597 1714136216693 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136216659 1714136216707 OK +REQUEST request_15 1714136216674 1714136216715 OK +REQUEST request_10 1714136216660 1714136216744 OK +REQUEST request_16 1714136216707 1714136216754 OK +REQUEST request_16 1714136216715 1714136216756 OK +REQUEST request_9 1714136216660 1714136216770 OK +REQUEST request_17 1714136216707 1714136216789 OK +USER PlayGameRecord END 1714136216789 +REQUEST request_15 1714136216753 1714136216795 OK +REQUEST request_17 1714136216715 1714136216798 OK +USER PlayGameRecord END 1714136216798 +USER PlayGameRecord START 1714136216800 +USER PlayGameRecord START 1714136216815 +REQUEST request_11 1714136216733 1714136216816 OK +REQUEST request_16 1714136216795 1714136216837 OK +REQUEST request_17 1714136216795 1714136216879 OK +USER PlayGameRecord END 1714136216879 +REQUEST request_0 1714136216799 1714136216895 OK +USER PlayGameRecord START 1714136216909 +REQUEST request_0 1714136216815 1714136216912 OK +REQUEST request_1 1714136216896 1714136216943 OK +REQUEST request_8 1714136216846 1714136216943 OK +REQUEST request_8 1714136216862 1714136216956 OK +REQUEST request_1 1714136216912 1714136216961 OK +REQUEST request_12 1714136216877 1714136216974 OK +REQUEST request_4 1714136216896 1714136216978 OK +REQUEST request_2 1714136216896 1714136216978 OK +REQUEST request_6 1714136216896 1714136216980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136216896 1714136216992 OK +REQUEST request_7 1714136216896 1714136216993 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136216896 1714136216994 OK +REQUEST request_4 1714136216913 1714136216994 OK +REQUEST request_7 1714136216913 1714136216995 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136216913 1714136216996 OK +REQUEST request_0 1714136216909 1714136217005 OK +REQUEST request_11 1714136216909 1714136217005 OK +REQUEST request_2 1714136216912 1714136217008 OK +REQUEST request_6 1714136216913 1714136217009 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136216913 1714136217010 OK +REQUEST request_12 1714136216893 1714136217024 OK +REQUEST request_12 1714136216909 1714136217026 OK +REQUEST request_10 1714136216943 1714136217027 OK +REQUEST request_1 1714136217005 1714136217053 OK +REQUEST request_10 1714136216957 1714136217053 OK +REQUEST request_13 1714136216975 1714136217057 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136217026 1714136217066 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136217024 1714136217066 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136216975 1714136217071 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136216943 1714136217078 OK +REQUEST request_9 1714136216957 1714136217078 OK +REQUEST request_6 1714136217006 1714136217086 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136217006 1714136217086 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136217006 1714136217087 OK +REQUEST request_8 1714136217003 1714136217100 OK +REQUEST request_5 1714136217006 1714136217100 OK +REQUEST request_3 1714136217006 1714136217101 OK +REQUEST request_2 1714136217005 1714136217101 OK +REQUEST request_14 1714136217026 1714136217109 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136217024 1714136217119 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136217095 1714136217179 OK +REQUEST request_10 1714136217100 1714136217185 OK +REQUEST request_15 1714136217157 1714136217198 OK +REQUEST request_9 1714136217100 1714136217211 OK +REQUEST request_15 1714136217173 1714136217220 OK +REQUEST request_16 1714136217198 1714136217239 OK +REQUEST request_10 1714136217179 1714136217262 OK +REQUEST request_16 1714136217221 1714136217268 OK +REQUEST request_8 1714136217173 1714136217268 OK +REQUEST request_11 1714136217192 1714136217276 OK +REQUEST request_17 1714136217198 1714136217282 OK +USER PlayGameRecord END 1714136217282 +REQUEST request_9 1714136217179 1714136217283 OK +REQUEST request_17 1714136217221 1714136217303 OK +USER PlayGameRecord END 1714136217303 +USER PlayGameRecord START 1714136217314 +REQUEST request_8 1714136217236 1714136217332 OK +REQUEST request_10 1714136217269 1714136217351 OK +REQUEST request_11 1714136217282 1714136217377 OK +REQUEST request_9 1714136217269 1714136217380 OK +REQUEST request_0 1714136217313 1714136217411 OK +REQUEST request_12 1714136217297 1714136217415 OK +USER PlayGameRecord START 1714136217422 +REQUEST request_11 1714136217344 1714136217428 OK +REQUEST request_10 1714136217332 1714136217430 OK +REQUEST request_9 1714136217332 1714136217445 OK +REQUEST request_14 1714136217415 1714136217455 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136217412 1714136217460 OK +REQUEST request_2 1714136217412 1714136217494 OK +REQUEST request_3 1714136217412 1714136217495 OK +REQUEST request_6 1714136217412 1714136217495 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136217412 1714136217507 OK +REQUEST request_5 1714136217412 1714136217508 OK +REQUEST request_7 1714136217412 1714136217508 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136217415 1714136217509 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136217422 1714136217517 OK +REQUEST request_0 1714136217422 1714136217518 OK +USER PlayGameRecord START 1714136217530 +REQUEST request_1 1714136217518 1714136217565 OK +REQUEST request_2 1714136217518 1714136217601 OK +REQUEST request_6 1714136217518 1714136217603 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136217518 1714136217603 OK +USER PlayGameRecord START 1714136217609 +REQUEST request_8 1714136217515 1714136217610 OK +REQUEST request_10 1714136217518 1714136217614 OK +REQUEST request_5 1714136217518 1714136217615 OK +REQUEST request_0 1714136217530 1714136217615 OK +REQUEST request_3 1714136217518 1714136217616 OK +REQUEST request_11 1714136217532 1714136217616 OK +REQUEST request_7 1714136217518 1714136217617 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136217518 1714136217627 OK +REQUEST request_1 1714136217615 1714136217657 OK +REQUEST request_11 1714136217578 1714136217673 OK +REQUEST request_0 1714136217609 1714136217693 OK +REQUEST request_6 1714136217615 1714136217697 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136217615 1714136217698 OK +REQUEST request_4 1714136217615 1714136217698 OK +REQUEST request_10 1714136217610 1714136217706 OK +REQUEST request_7 1714136217615 1714136217710 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136217615 1714136217712 OK +REQUEST request_5 1714136217615 1714136217712 OK +REQUEST request_9 1714136217610 1714136217724 OK +REQUEST request_12 1714136217609 1714136217724 OK +USER PlayGameRecord START 1714136217734 +REQUEST request_1 1714136217693 1714136217735 OK +REQUEST request_14 1714136217725 1714136217766 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136217693 1714136217776 OK +REQUEST request_6 1714136217693 1714136217776 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136217693 1714136217776 OK +REQUEST request_7 1714136217693 1714136217777 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136217693 1714136217789 OK +REQUEST request_3 1714136217693 1714136217790 OK +REQUEST request_15 1714136217765 1714136217806 OK +REQUEST request_0 1714136217734 1714136217817 OK +REQUEST request_13 1714136217725 1714136217823 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136217806 1714136217847 OK +REQUEST request_11 1714136217755 1714136217850 OK +REQUEST request_1 1714136217817 1714136217859 OK +REQUEST request_15 1714136217842 1714136217883 OK +REQUEST request_6 1714136217818 1714136217902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136217818 1714136217902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136217817 1714136217902 OK +REQUEST request_17 1714136217806 1714136217904 OK +USER PlayGameRecord END 1714136217904 +REQUEST request_3 1714136217818 1714136217912 OK +REQUEST request_4 1714136217817 1714136217913 OK +REQUEST request_5 1714136217818 1714136217915 OK +REQUEST request_16 1714136217883 1714136217924 OK +REQUEST request_12 1714136217818 1714136217927 OK +REQUEST request_15 1714136217888 1714136217930 OK +USER PlayGameRecord START 1714136217950 +REQUEST request_17 1714136217883 1714136217965 OK +USER PlayGameRecord END 1714136217966 +REQUEST request_16 1714136217930 1714136217971 OK +REQUEST request_11 1714136217888 1714136217984 OK +REQUEST request_11 1714136217903 1714136217985 OK +REQUEST request_8 1714136217903 1714136218000 OK +REQUEST request_13 1714136217927 1714136218007 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136217924 1714136218020 OK +REQUEST request_14 1714136217927 1714136218022 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136217930 1714136218027 OK +USER PlayGameRecord END 1714136218027 +REQUEST request_0 1714136217950 1714136218046 OK +REQUEST request_8 1714136217950 1714136218046 OK +REQUEST request_10 1714136218001 1714136218083 OK +REQUEST request_1 1714136218046 1714136218094 OK +REQUEST request_9 1714136218000 1714136218120 OK +REQUEST request_12 1714136218012 1714136218128 OK +REQUEST request_6 1714136218047 1714136218129 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136218047 1714136218129 OK +REQUEST request_7 1714136218047 1714136218131 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136218046 1714136218142 OK +REQUEST request_4 1714136218046 1714136218142 OK +REQUEST request_3 1714136218047 1714136218144 OK +REQUEST request_5 1714136218046 1714136218145 OK +REQUEST request_8 1714136218060 1714136218157 OK +REQUEST request_9 1714136218046 1714136218167 OK +REQUEST request_14 1714136218129 1714136218210 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136218122 1714136218220 OK +REQUEST request_13 1714136218128 1714136218225 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136218157 1714136218239 OK +REQUEST request_9 1714136218157 1714136218265 OK +REQUEST request_8 1714136218200 1714136218297 OK +USER PlayGameRecord START 1714136218311 +REQUEST request_10 1714136218220 1714136218316 OK +REQUEST request_9 1714136218220 1714136218334 OK +REQUEST request_11 1714136218279 1714136218376 OK +REQUEST request_12 1714136218279 1714136218380 OK +REQUEST request_10 1714136218297 1714136218381 OK +USER PlayGameRecord START 1714136218390 +REQUEST request_0 1714136218311 1714136218393 OK +REQUEST request_9 1714136218297 1714136218410 OK +REQUEST request_1 1714136218393 1714136218434 OK +REQUEST request_13 1714136218380 1714136218462 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136218380 1714136218463 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136218390 1714136218472 OK +REQUEST request_2 1714136218393 1714136218474 OK +REQUEST request_4 1714136218393 1714136218475 OK +REQUEST request_3 1714136218393 1714136218476 OK +REQUEST request_5 1714136218393 1714136218488 OK +REQUEST request_6 1714136218393 1714136218488 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136218393 1714136218489 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136218390 1714136218501 OK +REQUEST request_1 1714136218472 1714136218514 OK +REQUEST request_15 1714136218474 1714136218521 OK +USER PlayGameRecord START 1714136218529 +REQUEST request_12 1714136218436 1714136218531 OK +USER PlayGameRecord START 1714136218545 +REQUEST request_6 1714136218473 1714136218556 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136218473 1714136218556 OK +REQUEST request_2 1714136218473 1714136218556 OK +REQUEST request_4 1714136218473 1714136218568 OK +REQUEST request_7 1714136218473 1714136218569 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136218522 1714136218570 OK +REQUEST request_5 1714136218473 1714136218571 OK +REQUEST request_14 1714136218501 1714136218584 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136218501 1714136218584 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136218498 1714136218594 OK +REQUEST request_0 1714136218529 1714136218612 OK +REQUEST request_17 1714136218522 1714136218619 OK +USER PlayGameRecord END 1714136218619 +REQUEST request_0 1714136218545 1714136218628 OK +REQUEST request_13 1714136218532 1714136218628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136218532 1714136218628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136218612 1714136218653 OK +REQUEST request_8 1714136218561 1714136218656 OK +REQUEST request_1 1714136218628 1714136218670 OK +REQUEST request_11 1714136218606 1714136218689 OK +REQUEST request_10 1714136218594 1714136218690 OK +REQUEST request_3 1714136218613 1714136218694 OK +REQUEST request_11 1714136218612 1714136218695 OK +REQUEST request_5 1714136218612 1714136218696 OK +REQUEST request_6 1714136218613 1714136218696 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136218612 1714136218696 OK +REQUEST request_7 1714136218613 1714136218709 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136218612 1714136218709 OK +REQUEST request_4 1714136218628 1714136218710 OK +REQUEST request_9 1714136218594 1714136218711 OK +REQUEST request_5 1714136218628 1714136218723 OK +REQUEST request_7 1714136218628 1714136218724 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136218628 1714136218724 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136218628 1714136218725 OK +REQUEST request_2 1714136218628 1714136218725 OK +REQUEST request_11 1714136218648 1714136218730 OK +REQUEST request_12 1714136218623 1714136218739 OK +REQUEST request_10 1714136218656 1714136218751 OK +REQUEST request_9 1714136218656 1714136218773 OK +REQUEST request_12 1714136218687 1714136218795 OK +REQUEST request_13 1714136218740 1714136218822 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136218740 1714136218835 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136218795 1714136218836 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136218780 1714136218876 OK +REQUEST request_14 1714136218795 1714136218891 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136218827 1714136218910 OK +USER PlayGameRecord START 1714136218951 +REQUEST request_12 1714136218857 1714136218958 OK +REQUEST request_10 1714136218876 1714136218959 OK +REQUEST request_15 1714136218920 1714136218962 OK +REQUEST request_9 1714136218876 1714136218984 OK +REQUEST request_13 1714136218958 1714136219000 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136218905 1714136219001 OK +REQUEST request_16 1714136218962 1714136219004 OK +REQUEST request_0 1714136218951 1714136219034 OK +REQUEST request_14 1714136218958 1714136219041 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136218951 1714136219048 OK +REQUEST request_17 1714136218962 1714136219058 OK +USER PlayGameRecord END 1714136219058 +REQUEST request_1 1714136219035 1714136219076 OK +REQUEST request_12 1714136218999 1714136219095 OK +REQUEST request_12 1714136218999 1714136219108 OK +REQUEST request_3 1714136219035 1714136219118 OK +REQUEST request_4 1714136219035 1714136219119 OK +REQUEST request_2 1714136219035 1714136219119 OK +USER PlayGameRecord START 1714136219126 +REQUEST request_12 1714136219031 1714136219128 OK +REQUEST request_6 1714136219035 1714136219130 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136219035 1714136219131 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136219035 1714136219131 OK +REQUEST request_14 1714136219095 1714136219137 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136219128 1714136219169 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136219095 1714136219176 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136219108 1714136219190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136219108 1714136219204 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136219129 1714136219211 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136219126 1714136219221 OK +REQUEST request_1 1714136219221 1714136219268 OK +REQUEST request_11 1714136219179 1714136219275 OK +REQUEST request_6 1714136219221 1714136219303 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136219221 1714136219306 OK +REQUEST request_4 1714136219221 1714136219306 OK +REQUEST request_3 1714136219221 1714136219317 OK +REQUEST request_5 1714136219221 1714136219317 OK +REQUEST request_7 1714136219221 1714136219319 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136219441 +REQUEST request_12 1714136219377 1714136219484 OK +REQUEST request_11 1714136219425 1714136219508 OK +REQUEST request_14 1714136219485 1714136219526 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136219440 1714136219538 OK +REQUEST request_13 1714136219485 1714136219567 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136219519 1714136219568 OK +USER PlayGameRecord START 1714136219583 +REQUEST request_1 1714136219538 1714136219587 OK +REQUEST request_11 1714136219503 1714136219587 OK +REQUEST request_15 1714136219567 1714136219609 OK +REQUEST request_16 1714136219568 1714136219616 OK +REQUEST request_4 1714136219538 1714136219621 OK +REQUEST request_3 1714136219538 1714136219622 OK +REQUEST request_6 1714136219538 1714136219624 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136219539 1714136219635 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136219538 1714136219635 OK +REQUEST request_5 1714136219538 1714136219635 OK +REQUEST request_16 1714136219609 1714136219650 OK +REQUEST request_17 1714136219568 1714136219650 OK +USER PlayGameRecord END 1714136219650 +REQUEST request_0 1714136219582 1714136219678 OK +REQUEST request_17 1714136219609 1714136219693 OK +USER PlayGameRecord END 1714136219694 +USER PlayGameRecord START 1714136219705 +REQUEST request_8 1714136219629 1714136219725 OK +REQUEST request_1 1714136219678 1714136219726 OK +REQUEST request_5 1714136219679 1714136219761 OK +REQUEST request_4 1714136219679 1714136219761 OK +REQUEST request_7 1714136219679 1714136219761 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136219679 1714136219775 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136219679 1714136219776 OK +REQUEST request_15 1714136219737 1714136219778 OK +REQUEST request_2 1714136219678 1714136219781 OK +USER PlayGameRecord START 1714136219784 +REQUEST request_11 1714136219689 1714136219786 OK +REQUEST request_12 1714136219689 1714136219793 OK +REQUEST request_0 1714136219705 1714136219801 OK +REQUEST request_10 1714136219725 1714136219807 OK +REQUEST request_12 1714136219705 1714136219819 OK +REQUEST request_16 1714136219778 1714136219820 OK +REQUEST request_13 1714136219793 1714136219840 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136219725 1714136219846 OK +REQUEST request_1 1714136219802 1714136219850 OK +REQUEST request_12 1714136219737 1714136219851 OK +REQUEST request_14 1714136219819 1714136219860 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136219784 1714136219867 OK +REQUEST request_14 1714136219793 1714136219875 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136219779 1714136219875 OK +USER PlayGameRecord END 1714136219875 +REQUEST request_3 1714136219802 1714136219883 OK +REQUEST request_2 1714136219802 1714136219884 OK +REQUEST request_6 1714136219802 1714136219884 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136219802 1714136219885 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136219802 1714136219885 OK +REQUEST request_13 1714136219851 1714136219892 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136219802 1714136219897 OK +REQUEST request_1 1714136219867 1714136219909 OK +REQUEST request_13 1714136219819 1714136219917 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136219892 1714136219933 OK +REQUEST request_14 1714136219851 1714136219934 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136219892 1714136219939 OK +REQUEST request_15 1714136219902 1714136219943 OK +REQUEST request_6 1714136219868 1714136219949 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136219867 1714136219950 OK +REQUEST request_7 1714136219868 1714136219951 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136219868 1714136219963 OK +REQUEST request_5 1714136219868 1714136219963 OK +REQUEST request_2 1714136219867 1714136219964 OK +REQUEST request_16 1714136219933 1714136219974 OK +REQUEST request_16 1714136219943 1714136219985 OK +REQUEST request_16 1714136219939 1714136219986 OK +USER PlayGameRecord START 1714136220002 +REQUEST request_12 1714136219924 1714136220018 OK +REQUEST request_17 1714136219939 1714136220022 OK +USER PlayGameRecord END 1714136220023 +REQUEST request_17 1714136219943 1714136220024 OK +USER PlayGameRecord END 1714136220025 +REQUEST request_17 1714136219933 1714136220028 OK +USER PlayGameRecord END 1714136220029 +REQUEST request_15 1714136219986 1714136220033 OK +REQUEST request_14 1714136220019 1714136220060 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136220033 1714136220081 OK +REQUEST request_0 1714136220002 1714136220086 OK +REQUEST request_11 1714136220002 1714136220086 OK +REQUEST request_12 1714136220002 1714136220112 OK +REQUEST request_13 1714136220019 1714136220115 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136220086 1714136220128 OK +REQUEST request_17 1714136220033 1714136220129 OK +USER PlayGameRecord END 1714136220129 +REQUEST request_15 1714136220095 1714136220137 OK +REQUEST request_13 1714136220112 1714136220153 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136220064 1714136220161 OK +REQUEST request_3 1714136220086 1714136220169 OK +REQUEST request_7 1714136220087 1714136220169 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136220086 1714136220170 OK +REQUEST request_16 1714136220137 1714136220179 OK +REQUEST request_6 1714136220087 1714136220182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136220086 1714136220182 OK +REQUEST request_2 1714136220086 1714136220182 OK +REQUEST request_15 1714136220143 1714136220191 OK +REQUEST request_14 1714136220112 1714136220195 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136220161 1714136220203 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136220112 1714136220209 OK +REQUEST request_17 1714136220137 1714136220234 OK +USER PlayGameRecord END 1714136220234 +REQUEST request_16 1714136220191 1714136220239 OK +REQUEST request_11 1714136220164 1714136220246 OK +REQUEST request_14 1714136220161 1714136220258 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136220191 1714136220287 OK +REQUEST request_11 1714136220191 1714136220287 OK +USER PlayGameRecord END 1714136220288 +REQUEST request_15 1714136220315 1714136220357 OK +REQUEST request_12 1714136220284 1714136220383 OK +REQUEST request_15 1714136220347 1714136220395 OK +REQUEST request_16 1714136220357 1714136220399 OK +REQUEST request_16 1714136220395 1714136220442 OK +REQUEST request_17 1714136220357 1714136220454 OK +USER PlayGameRecord END 1714136220454 +REQUEST request_11 1714136220360 1714136220454 OK +REQUEST request_14 1714136220383 1714136220466 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136220383 1714136220479 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136220395 1714136220490 OK +USER PlayGameRecord END 1714136220490 +REQUEST request_8 1714136220535 1714136220619 OK +REQUEST request_12 1714136220520 1714136220630 OK +REQUEST request_15 1714136220612 1714136220654 OK +REQUEST request_14 1714136220631 1714136220678 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136220654 1714136220695 OK +REQUEST request_12 1714136220596 1714136220699 OK +REQUEST request_15 1714136220659 1714136220708 OK +REQUEST request_10 1714136220619 1714136220716 OK +REQUEST request_9 1714136220619 1714136220724 OK +REQUEST request_13 1714136220630 1714136220726 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136220654 1714136220737 OK +USER PlayGameRecord END 1714136220737 +REQUEST request_11 1714136220643 1714136220739 OK +USER PlayGameRecord START 1714136220740 +REQUEST request_15 1714136220707 1714136220748 OK +REQUEST request_16 1714136220708 1714136220756 OK +REQUEST request_11 1714136220691 1714136220773 OK +REQUEST request_14 1714136220699 1714136220781 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136220787 +REQUEST request_16 1714136220748 1714136220789 OK +REQUEST request_17 1714136220708 1714136220791 OK +USER PlayGameRecord END 1714136220791 +REQUEST request_13 1714136220699 1714136220794 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136220818 +REQUEST request_0 1714136220740 1714136220823 OK +REQUEST request_17 1714136220749 1714136220845 OK +USER PlayGameRecord END 1714136220846 +REQUEST request_1 1714136220823 1714136220864 OK +REQUEST request_11 1714136220786 1714136220870 OK +REQUEST request_0 1714136220787 1714136220883 OK +REQUEST request_0 1714136220818 1714136220901 OK +REQUEST request_5 1714136220823 1714136220906 OK +REQUEST request_12 1714136220801 1714136220914 OK +REQUEST request_2 1714136220823 1714136220919 OK +REQUEST request_6 1714136220823 1714136220919 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136220823 1714136220920 OK +REQUEST request_7 1714136220823 1714136220920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136220823 1714136220921 OK +REQUEST request_8 1714136220829 1714136220926 OK +REQUEST request_1 1714136220883 1714136220931 OK +REQUEST request_1 1714136220902 1714136220943 OK +REQUEST request_13 1714136220914 1714136220955 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136220883 1714136220966 OK +REQUEST request_3 1714136220883 1714136220966 OK +REQUEST request_4 1714136220883 1714136220967 OK +REQUEST request_7 1714136220883 1714136220967 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136220883 1714136220978 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136220883 1714136220979 OK +REQUEST request_4 1714136220902 1714136220983 OK +REQUEST request_6 1714136220902 1714136220984 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136220902 1714136220985 OK +REQUEST request_14 1714136220915 1714136220996 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136220902 1714136220996 OK +REQUEST request_7 1714136220902 1714136220998 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136220902 1714136220998 OK +REQUEST request_10 1714136220926 1714136221008 OK +REQUEST request_9 1714136220926 1714136221037 OK +REQUEST request_11 1714136221006 1714136221091 OK +REQUEST request_8 1714136221034 1714136221118 OK +REQUEST request_15 1714136221082 1714136221123 OK +REQUEST request_8 1714136221050 1714136221133 OK +REQUEST request_11 1714136221050 1714136221145 OK +REQUEST request_15 1714136221114 1714136221155 OK +REQUEST request_16 1714136221123 1714136221164 OK +REQUEST request_15 1714136221129 1714136221176 OK +REQUEST request_16 1714136221155 1714136221196 OK +REQUEST request_10 1714136221118 1714136221201 OK +REQUEST request_17 1714136221123 1714136221205 OK +USER PlayGameRecord END 1714136221206 +REQUEST request_12 1714136221098 1714136221213 OK +REQUEST request_16 1714136221176 1714136221223 OK +REQUEST request_10 1714136221134 1714136221229 OK +REQUEST request_9 1714136221118 1714136221230 OK +REQUEST request_9 1714136221133 1714136221247 OK +REQUEST request_17 1714136221155 1714136221251 OK +USER PlayGameRecord END 1714136221251 +REQUEST request_13 1714136221213 1714136221254 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136221176 1714136221258 OK +USER PlayGameRecord END 1714136221258 +REQUEST request_14 1714136221213 1714136221308 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136221222 1714136221319 OK +REQUEST request_12 1714136221252 1714136221345 OK +REQUEST request_14 1714136221319 1714136221403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136221299 1714136221411 OK +REQUEST request_13 1714136221319 1714136221414 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136221346 1714136221429 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136221346 1714136221443 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136221390 1714136221473 OK +REQUEST request_8 1714136221405 1714136221489 OK +REQUEST request_13 1714136221411 1714136221494 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136221412 1714136221508 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136221515 1714136221564 OK +REQUEST request_12 1714136221468 1714136221586 OK +REQUEST request_10 1714136221490 1714136221586 OK +REQUEST request_9 1714136221490 1714136221591 OK +USER PlayGameRecord START 1714136221611 +REQUEST request_16 1714136221564 1714136221612 OK +REQUEST request_14 1714136221586 1714136221627 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136221627 +REQUEST request_17 1714136221564 1714136221659 OK +USER PlayGameRecord END 1714136221659 +REQUEST request_13 1714136221586 1714136221669 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136221595 1714136221691 OK +REQUEST request_0 1714136221611 1714136221695 OK +REQUEST request_0 1714136221627 1714136221723 OK +REQUEST request_1 1714136221695 1714136221737 OK +REQUEST request_1 1714136221724 1714136221772 OK +REQUEST request_7 1714136221696 1714136221778 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136221696 1714136221779 OK +REQUEST request_6 1714136221696 1714136221780 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136221696 1714136221793 OK +REQUEST request_5 1714136221696 1714136221793 OK +REQUEST request_2 1714136221696 1714136221794 OK +REQUEST request_5 1714136221724 1714136221806 OK +REQUEST request_4 1714136221724 1714136221807 OK +REQUEST request_3 1714136221724 1714136221807 OK +REQUEST request_7 1714136221724 1714136221807 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136221724 1714136221820 OK +REQUEST request_6 1714136221724 1714136221821 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136221751 1714136221847 OK +REQUEST request_11 1714136221771 1714136221853 OK +REQUEST request_15 1714136221828 1714136221877 OK +REQUEST request_12 1714136221782 1714136221879 OK +REQUEST request_8 1714136221797 1714136221881 OK +REQUEST request_13 1714136221879 1714136221920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136221877 1714136221925 OK +REQUEST request_14 1714136221847 1714136221930 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136221847 1714136221944 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136221877 1714136221975 OK +USER PlayGameRecord END 1714136221975 +REQUEST request_12 1714136221876 1714136221975 OK +REQUEST request_10 1714136221881 1714136221976 OK +REQUEST request_14 1714136221879 1714136221976 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136221881 1714136221985 OK +REQUEST request_8 1714136221906 1714136221989 OK +REQUEST request_13 1714136221976 1714136222017 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136221952 1714136222033 OK +REQUEST request_14 1714136221976 1714136222072 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136222076 +REQUEST request_15 1714136222030 1714136222077 OK +REQUEST request_10 1714136221989 1714136222087 OK +REQUEST request_9 1714136221989 1714136222090 OK +REQUEST request_10 1714136222034 1714136222116 OK +REQUEST request_16 1714136222077 1714136222124 OK +REQUEST request_9 1714136222034 1714136222136 OK +REQUEST request_17 1714136222077 1714136222159 OK +REQUEST request_0 1714136222076 1714136222159 OK +USER PlayGameRecord END 1714136222159 +REQUEST request_11 1714136222091 1714136222187 OK +REQUEST request_11 1714136222091 1714136222188 OK +REQUEST request_1 1714136222159 1714136222201 OK +REQUEST request_12 1714136222107 1714136222217 OK +REQUEST request_2 1714136222159 1714136222241 OK +REQUEST request_6 1714136222160 1714136222243 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136222160 1714136222243 OK +REQUEST request_5 1714136222160 1714136222254 OK +REQUEST request_3 1714136222160 1714136222256 OK +REQUEST request_7 1714136222160 1714136222257 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136222153 1714136222261 OK +REQUEST request_15 1714136222231 1714136222279 OK +USER PlayGameRecord START 1714136222294 +REQUEST request_11 1714136222215 1714136222298 OK +REQUEST request_14 1714136222218 1714136222300 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136222218 1714136222314 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136222279 1714136222327 OK +USER PlayGameRecord START 1714136222342 +REQUEST request_14 1714136222262 1714136222346 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136222262 1714136222356 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136222279 1714136222362 OK +USER PlayGameRecord END 1714136222362 +REQUEST request_11 1714136222283 1714136222367 OK +REQUEST request_0 1714136222294 1714136222376 OK +REQUEST request_1 1714136222376 1714136222418 OK +REQUEST request_8 1714136222342 1714136222423 OK +REQUEST request_0 1714136222342 1714136222439 OK +REQUEST request_2 1714136222376 1714136222458 OK +REQUEST request_5 1714136222377 1714136222460 OK +REQUEST request_3 1714136222377 1714136222461 OK +REQUEST request_11 1714136222381 1714136222462 OK +REQUEST request_6 1714136222377 1714136222471 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136222390 1714136222472 OK +REQUEST request_7 1714136222377 1714136222473 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136222376 1714136222474 OK +REQUEST request_1 1714136222439 1714136222488 OK +REQUEST request_15 1714136222468 1714136222508 OK +USER PlayGameRecord START 1714136222515 +REQUEST request_10 1714136222423 1714136222520 OK +REQUEST request_5 1714136222440 1714136222522 OK +REQUEST request_7 1714136222440 1714136222522 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136222440 1714136222523 OK +REQUEST request_9 1714136222423 1714136222526 OK +REQUEST request_2 1714136222439 1714136222535 OK +REQUEST request_6 1714136222440 1714136222536 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136222440 1714136222537 OK +REQUEST request_11 1714136222452 1714136222548 OK +REQUEST request_16 1714136222509 1714136222548 OK +REQUEST request_10 1714136222472 1714136222554 OK +REQUEST request_9 1714136222472 1714136222575 OK +REQUEST request_17 1714136222509 1714136222593 OK +USER PlayGameRecord END 1714136222593 +REQUEST request_12 1714136222484 1714136222593 OK +USER PlayGameRecord START 1714136222611 +REQUEST request_0 1714136222515 1714136222612 OK +USER PlayGameRecord START 1714136222642 +REQUEST request_15 1714136222595 1714136222643 OK +REQUEST request_1 1714136222612 1714136222661 OK +REQUEST request_8 1714136222579 1714136222663 OK +REQUEST request_13 1714136222593 1714136222675 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136222642 1714136222682 OK +REQUEST request_14 1714136222593 1714136222690 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136222643 1714136222691 OK +REQUEST request_0 1714136222611 1714136222694 OK +REQUEST request_4 1714136222612 1714136222695 OK +REQUEST request_6 1714136222613 1714136222696 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136222613 1714136222708 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136222613 1714136222710 OK +REQUEST request_11 1714136222628 1714136222710 OK +REQUEST request_2 1714136222612 1714136222710 OK +REQUEST request_3 1714136222613 1714136222711 OK +REQUEST request_16 1714136222682 1714136222723 OK +REQUEST request_0 1714136222642 1714136222723 OK +REQUEST request_1 1714136222694 1714136222735 OK +REQUEST request_17 1714136222643 1714136222737 OK +REQUEST request_8 1714136222642 1714136222737 OK +USER PlayGameRecord END 1714136222738 +REQUEST request_10 1714136222664 1714136222744 OK +REQUEST request_17 1714136222682 1714136222764 OK +REQUEST request_1 1714136222724 1714136222764 OK +USER PlayGameRecord END 1714136222764 +REQUEST request_9 1714136222663 1714136222769 OK +REQUEST request_3 1714136222694 1714136222777 OK +REQUEST request_7 1714136222694 1714136222777 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136222694 1714136222777 OK +REQUEST request_5 1714136222694 1714136222789 OK +REQUEST request_6 1714136222694 1714136222789 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136222694 1714136222789 OK +REQUEST request_5 1714136222724 1714136222806 OK +REQUEST request_7 1714136222724 1714136222807 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136222724 1714136222808 OK +REQUEST request_2 1714136222724 1714136222820 OK +REQUEST request_10 1714136222738 1714136222822 OK +REQUEST request_3 1714136222724 1714136222823 OK +REQUEST request_6 1714136222724 1714136222823 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136222725 1714136222824 OK +REQUEST request_12 1714136222706 1714136222851 OK +REQUEST request_9 1714136222738 1714136222859 OK +REQUEST request_15 1714136222847 1714136222895 OK +REQUEST request_14 1714136222851 1714136222935 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136222892 1714136222939 OK +REQUEST request_16 1714136222895 1714136222943 OK +REQUEST request_13 1714136222851 1714136222947 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136222862 1714136222959 OK +REQUEST request_16 1714136222939 1714136222987 OK +REQUEST request_17 1714136222895 1714136222992 OK +USER PlayGameRecord END 1714136222993 +REQUEST request_14 1714136222959 1714136223000 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136222908 1714136223003 OK +USER PlayGameRecord START 1714136223018 +REQUEST request_17 1714136222940 1714136223023 OK +USER PlayGameRecord END 1714136223023 +REQUEST request_13 1714136222959 1714136223056 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136222986 1714136223066 OK +REQUEST request_10 1714136223004 1714136223086 OK +REQUEST request_15 1714136223048 1714136223090 OK +REQUEST request_9 1714136223004 1714136223114 OK +REQUEST request_0 1714136223017 1714136223115 OK +REQUEST request_16 1714136223090 1714136223132 OK +REQUEST request_10 1714136223066 1714136223150 OK +REQUEST request_1 1714136223115 1714136223163 OK +REQUEST request_9 1714136223066 1714136223169 OK +USER PlayGameRecord START 1714136223174 +REQUEST request_17 1714136223090 1714136223174 OK +USER PlayGameRecord END 1714136223174 +REQUEST request_5 1714136223115 1714136223197 OK +REQUEST request_6 1714136223115 1714136223199 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136223115 1714136223199 OK +REQUEST request_7 1714136223115 1714136223210 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136223115 1714136223211 OK +REQUEST request_4 1714136223115 1714136223212 OK +REQUEST request_11 1714136223126 1714136223222 OK +REQUEST request_15 1714136223188 1714136223230 OK +REQUEST request_11 1714136223167 1714136223250 OK +REQUEST request_15 1714136223204 1714136223252 OK +REQUEST request_15 1714136223220 1714136223262 OK +REQUEST request_0 1714136223173 1714136223268 OK +REQUEST request_16 1714136223231 1714136223271 OK +REQUEST request_12 1714136223188 1714136223292 OK +REQUEST request_16 1714136223252 1714136223299 OK +REQUEST request_12 1714136223188 1714136223299 OK +REQUEST request_16 1714136223262 1714136223303 OK +REQUEST request_1 1714136223269 1714136223316 OK +REQUEST request_8 1714136223236 1714136223318 OK +REQUEST request_17 1714136223231 1714136223327 OK +USER PlayGameRecord END 1714136223327 +REQUEST request_17 1714136223252 1714136223334 OK +USER PlayGameRecord END 1714136223335 +REQUEST request_14 1714136223293 1714136223341 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136223251 1714136223346 OK +REQUEST request_7 1714136223269 1714136223351 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136223269 1714136223351 OK +REQUEST request_2 1714136223269 1714136223352 OK +REQUEST request_6 1714136223269 1714136223352 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136223262 1714136223357 OK +USER PlayGameRecord END 1714136223357 +REQUEST request_11 1714136223266 1714136223361 OK +REQUEST request_3 1714136223269 1714136223367 OK +REQUEST request_5 1714136223269 1714136223367 OK +REQUEST request_13 1714136223299 1714136223381 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136223299 1714136223382 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136223293 1714136223390 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136223318 1714136223414 OK +REQUEST request_12 1714136223298 1714136223420 OK +REQUEST request_8 1714136223329 1714136223425 OK +REQUEST request_11 1714136223345 1714136223425 OK +REQUEST request_9 1714136223318 1714136223436 OK +REQUEST request_10 1714136223346 1714136223442 OK +REQUEST request_14 1714136223421 1714136223468 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136223346 1714136223473 OK +REQUEST request_12 1714136223377 1714136223479 OK +REQUEST request_13 1714136223420 1714136223503 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136223411 1714136223507 OK +REQUEST request_8 1714136223437 1714136223519 OK +REQUEST request_13 1714136223480 1714136223520 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136223425 1714136223521 OK +REQUEST request_9 1714136223425 1714136223534 OK +REQUEST request_14 1714136223480 1714136223575 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136223469 1714136223580 OK +REQUEST request_10 1714136223519 1714136223602 OK +REQUEST request_14 1714136223580 1714136223622 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136223519 1714136223624 OK +REQUEST request_15 1714136223577 1714136223625 OK +REQUEST request_12 1714136223562 1714136223658 OK +REQUEST request_16 1714136223625 1714136223672 OK +REQUEST request_13 1714136223580 1714136223676 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136223658 1714136223705 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136223625 1714136223720 OK +USER PlayGameRecord END 1714136223721 +REQUEST request_13 1714136223658 1714136223754 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136223717 1714136223813 OK +REQUEST request_12 1714136223717 1714136223813 OK +REQUEST request_11 1714136223774 1714136223858 OK +REQUEST request_14 1714136223814 1714136223862 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136223795 1714136223893 OK +REQUEST request_13 1714136223814 1714136223910 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136223826 1714136223922 OK +REQUEST request_15 1714136223887 1714136223929 OK +REQUEST request_15 1714136223918 1714136223966 OK +REQUEST request_14 1714136223923 1714136223969 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136223929 1714136223971 OK +REQUEST request_10 1714136223894 1714136223989 OK +REQUEST request_15 1714136223949 1714136223997 OK +REQUEST request_9 1714136223893 1714136224004 OK +REQUEST request_17 1714136223929 1714136224012 OK +USER PlayGameRecord END 1714136224013 +REQUEST request_16 1714136223966 1714136224014 OK +REQUEST request_13 1714136223922 1714136224020 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136223998 1714136224045 OK +REQUEST request_17 1714136223967 1714136224061 OK +USER PlayGameRecord END 1714136224061 +REQUEST request_11 1714136223996 1714136224092 OK +REQUEST request_17 1714136223998 1714136224095 OK +USER PlayGameRecord END 1714136224095 +USER PlayGameRecord START 1714136224153 +REQUEST request_15 1714136224122 1714136224162 OK +USER PlayGameRecord START 1714136224201 +REQUEST request_16 1714136224162 1714136224203 OK +REQUEST request_8 1714136224138 1714136224219 OK +REQUEST request_15 1714136224201 1714136224249 OK +REQUEST request_0 1714136224153 1714136224249 OK +REQUEST request_17 1714136224162 1714136224260 OK +USER PlayGameRecord END 1714136224260 +REQUEST request_16 1714136224249 1714136224296 OK +REQUEST request_0 1714136224201 1714136224297 OK +REQUEST request_1 1714136224249 1714136224297 OK +REQUEST request_10 1714136224219 1714136224301 OK +REQUEST request_15 1714136224263 1714136224305 OK +REQUEST request_9 1714136224219 1714136224322 OK +REQUEST request_2 1714136224249 1714136224332 OK +REQUEST request_17 1714136224249 1714136224332 OK +REQUEST request_7 1714136224250 1714136224332 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136224250 1714136224333 OK +USER PlayGameRecord END 1714136224333 +REQUEST request_6 1714136224250 1714136224334 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136224232 1714136224344 OK +REQUEST request_1 1714136224297 1714136224344 OK +REQUEST request_4 1714136224250 1714136224346 OK +REQUEST request_3 1714136224250 1714136224347 OK +REQUEST request_16 1714136224305 1714136224347 OK +REQUEST request_12 1714136224263 1714136224373 OK +REQUEST request_7 1714136224297 1714136224379 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136224297 1714136224381 OK +REQUEST request_2 1714136224297 1714136224381 OK +REQUEST request_5 1714136224297 1714136224382 OK +REQUEST request_13 1714136224344 1714136224385 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136224297 1714136224392 OK +REQUEST request_6 1714136224297 1714136224395 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136224305 1714136224402 OK +USER PlayGameRecord END 1714136224402 +REQUEST request_14 1714136224344 1714136224427 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136224341 1714136224436 OK +REQUEST request_13 1714136224373 1714136224457 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136224372 1714136224467 OK +REQUEST request_14 1714136224374 1714136224469 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136224479 1714136224521 OK +REQUEST request_12 1714136224433 1714136224533 OK +REQUEST request_10 1714136224437 1714136224533 OK +REQUEST request_9 1714136224436 1714136224549 OK +REQUEST request_16 1714136224521 1714136224563 OK +REQUEST request_14 1714136224467 1714136224564 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136224467 1714136224564 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136224533 1714136224574 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136224495 1714136224591 OK +REQUEST request_12 1714136224511 1714136224605 OK +REQUEST request_17 1714136224521 1714136224619 OK +USER PlayGameRecord END 1714136224619 +REQUEST request_14 1714136224533 1714136224628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136224589 1714136224672 OK +REQUEST request_10 1714136224591 1714136224688 OK +REQUEST request_14 1714136224605 1714136224688 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136224605 1714136224689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136224591 1714136224696 OK +REQUEST request_8 1714136224651 1714136224748 OK +REQUEST request_10 1714136224672 1714136224767 OK +REQUEST request_9 1714136224672 1714136224771 OK +REQUEST request_15 1714136224730 1714136224778 OK +REQUEST request_16 1714136224778 1714136224826 OK +REQUEST request_10 1714136224749 1714136224831 OK +REQUEST request_15 1714136224809 1714136224850 OK +REQUEST request_9 1714136224749 1714136224854 OK +USER PlayGameRecord START 1714136224855 +REQUEST request_17 1714136224779 1714136224875 OK +USER PlayGameRecord END 1714136224876 +REQUEST request_8 1714136224793 1714136224889 OK +REQUEST request_16 1714136224851 1714136224892 OK +REQUEST request_12 1714136224828 1714136224925 OK +REQUEST request_0 1714136224855 1714136224939 OK +REQUEST request_11 1714136224846 1714136224942 OK +REQUEST request_17 1714136224851 1714136224945 OK +USER PlayGameRecord END 1714136224945 +REQUEST request_14 1714136224925 1714136224972 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136224939 1714136224981 OK +REQUEST request_10 1714136224889 1714136224985 OK +REQUEST request_12 1714136224871 1714136224986 OK +REQUEST request_9 1714136224889 1714136225002 OK +REQUEST request_13 1714136224925 1714136225020 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136224940 1714136225021 OK +REQUEST request_5 1714136224940 1714136225022 OK +REQUEST request_6 1714136224940 1714136225022 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136224986 1714136225026 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136224933 1714136225029 OK +REQUEST request_2 1714136224939 1714136225034 OK +REQUEST request_7 1714136224940 1714136225035 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136224940 1714136225035 OK +REQUEST request_15 1714136225011 1714136225058 OK +REQUEST request_14 1714136224986 1714136225069 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136225059 1714136225105 OK +REQUEST request_10 1714136225030 1714136225113 OK +REQUEST request_9 1714136225030 1714136225140 OK +USER PlayGameRecord START 1714136225140 +REQUEST request_17 1714136225059 1714136225154 OK +USER PlayGameRecord END 1714136225154 +REQUEST request_8 1714136225088 1714136225172 OK +REQUEST request_12 1714136225104 1714136225219 OK +REQUEST request_0 1714136225140 1714136225223 OK +REQUEST request_10 1714136225172 1714136225255 OK +REQUEST request_13 1714136225220 1714136225260 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136225223 1714136225265 OK +REQUEST request_9 1714136225172 1714136225276 OK +USER PlayGameRecord START 1714136225305 +USER PlayGameRecord START 1714136225305 +REQUEST request_2 1714136225223 1714136225306 OK +REQUEST request_7 1714136225224 1714136225306 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136225224 1714136225307 OK +REQUEST request_14 1714136225220 1714136225316 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136225224 1714136225319 OK +REQUEST request_4 1714136225223 1714136225319 OK +REQUEST request_6 1714136225224 1714136225320 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136225321 1714136225369 OK +REQUEST request_8 1714136225289 1714136225373 OK +REQUEST request_0 1714136225305 1714136225401 OK +REQUEST request_0 1714136225305 1714136225402 OK +REQUEST request_16 1714136225369 1714136225418 OK +REQUEST request_1 1714136225401 1714136225449 OK +REQUEST request_1 1714136225402 1714136225450 OK +REQUEST request_17 1714136225369 1714136225467 OK +USER PlayGameRecord END 1714136225467 +REQUEST request_10 1714136225373 1714136225468 OK +REQUEST request_15 1714136225429 1714136225471 OK +REQUEST request_9 1714136225373 1714136225474 OK +REQUEST request_4 1714136225402 1714136225484 OK +REQUEST request_7 1714136225401 1714136225484 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136225401 1714136225484 OK +REQUEST request_4 1714136225401 1714136225484 OK +REQUEST request_2 1714136225401 1714136225485 OK +REQUEST request_15 1714136225445 1714136225486 OK +REQUEST request_7 1714136225403 1714136225487 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136225402 1714136225487 OK +REQUEST request_5 1714136225401 1714136225496 OK +REQUEST request_8 1714136225414 1714136225497 OK +REQUEST request_8 1714136225414 1714136225497 OK +REQUEST request_2 1714136225402 1714136225497 OK +REQUEST request_6 1714136225401 1714136225498 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136225403 1714136225499 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136225402 1714136225500 OK +REQUEST request_16 1714136225471 1714136225513 OK +REQUEST request_16 1714136225486 1714136225527 OK +REQUEST request_17 1714136225471 1714136225566 OK +USER PlayGameRecord END 1714136225566 +REQUEST request_15 1714136225522 1714136225570 OK +REQUEST request_10 1714136225497 1714136225579 OK +REQUEST request_17 1714136225486 1714136225581 OK +USER PlayGameRecord END 1714136225581 +REQUEST request_10 1714136225497 1714136225582 OK +REQUEST request_9 1714136225497 1714136225602 OK +REQUEST request_9 1714136225497 1714136225603 OK +REQUEST request_16 1714136225570 1714136225618 OK +REQUEST request_17 1714136225570 1714136225665 OK +USER PlayGameRecord END 1714136225665 +REQUEST request_15 1714136225678 1714136225726 OK +USER PlayGameRecord START 1714136225758 +REQUEST request_16 1714136225727 1714136225774 OK +REQUEST request_11 1714136225724 1714136225806 OK +REQUEST request_8 1714136225709 1714136225807 OK +REQUEST request_17 1714136225727 1714136225808 OK +USER PlayGameRecord END 1714136225808 +REQUEST request_0 1714136225757 1714136225842 OK +REQUEST request_1 1714136225842 1714136225884 OK +REQUEST request_10 1714136225807 1714136225903 OK +REQUEST request_9 1714136225807 1714136225919 OK +REQUEST request_7 1714136225843 1714136225927 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136225842 1714136225927 OK +REQUEST request_2 1714136225842 1714136225927 OK +REQUEST request_6 1714136225843 1714136225938 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136225843 1714136225939 OK +REQUEST request_5 1714136225843 1714136225940 OK +REQUEST request_15 1714136225946 1714136225987 OK +REQUEST request_15 1714136225977 1714136226018 OK +REQUEST request_16 1714136225987 1714136226027 OK +REQUEST request_12 1714136225946 1714136226044 OK +REQUEST request_16 1714136226019 1714136226060 OK +REQUEST request_17 1714136225987 1714136226084 OK +USER PlayGameRecord END 1714136226084 +REQUEST request_17 1714136226019 1714136226101 OK +USER PlayGameRecord END 1714136226101 +REQUEST request_13 1714136226044 1714136226125 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136226085 1714136226125 OK +REQUEST request_11 1714136226038 1714136226132 OK +REQUEST request_14 1714136226044 1714136226141 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136226164 +REQUEST request_16 1714136226125 1714136226166 OK +USER PlayGameRecord START 1714136226212 +REQUEST request_17 1714136226126 1714136226221 OK +USER PlayGameRecord END 1714136226221 +REQUEST request_0 1714136226164 1714136226259 OK +REQUEST request_0 1714136226212 1714136226293 OK +REQUEST request_1 1714136226259 1714136226307 OK +USER PlayGameRecord START 1714136226321 +REQUEST request_11 1714136226231 1714136226326 OK +REQUEST request_1 1714136226293 1714136226333 OK +REQUEST request_11 1714136226259 1714136226341 OK +REQUEST request_8 1714136226244 1714136226341 OK +REQUEST request_6 1714136226260 1714136226342 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136226260 1714136226343 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136226260 1714136226354 OK +REQUEST request_5 1714136226260 1714136226356 OK +REQUEST request_4 1714136226260 1714136226356 OK +REQUEST request_3 1714136226260 1714136226356 OK +REQUEST request_15 1714136226321 1714136226368 OK +REQUEST request_6 1714136226294 1714136226378 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136226293 1714136226378 OK +REQUEST request_3 1714136226294 1714136226390 OK +REQUEST request_7 1714136226294 1714136226390 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136226293 1714136226391 OK +REQUEST request_4 1714136226293 1714136226391 OK +REQUEST request_15 1714136226368 1714136226414 OK +REQUEST request_16 1714136226369 1714136226416 OK +REQUEST request_0 1714136226321 1714136226418 OK +REQUEST request_10 1714136226341 1714136226425 OK +USER PlayGameRecord START 1714136226445 +REQUEST request_9 1714136226341 1714136226452 OK +REQUEST request_16 1714136226414 1714136226462 OK +REQUEST request_17 1714136226369 1714136226463 OK +USER PlayGameRecord END 1714136226463 +REQUEST request_1 1714136226418 1714136226465 OK +REQUEST request_17 1714136226414 1714136226498 OK +USER PlayGameRecord END 1714136226499 +REQUEST request_2 1714136226418 1714136226501 OK +REQUEST request_4 1714136226419 1714136226501 OK +REQUEST request_6 1714136226419 1714136226502 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136226419 1714136226514 OK +REQUEST request_5 1714136226419 1714136226514 OK +REQUEST request_7 1714136226419 1714136226515 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136226445 1714136226528 OK +USER PlayGameRecord START 1714136226538 +REQUEST request_1 1714136226528 1714136226570 OK +REQUEST request_2 1714136226528 1714136226610 OK +REQUEST request_3 1714136226529 1714136226612 OK +REQUEST request_6 1714136226529 1714136226612 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136226528 1714136226626 OK +REQUEST request_5 1714136226529 1714136226626 OK +REQUEST request_7 1714136226529 1714136226628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136226537 1714136226635 OK +REQUEST request_11 1714136226598 1714136226682 OK +REQUEST request_1 1714136226635 1714136226684 OK +REQUEST request_2 1714136226635 1714136226718 OK +REQUEST request_3 1714136226636 1714136226718 OK +REQUEST request_5 1714136226636 1714136226718 OK +REQUEST request_7 1714136226636 1714136226719 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136226636 1714136226731 OK +REQUEST request_6 1714136226636 1714136226732 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136226692 1714136226740 OK +REQUEST request_8 1714136226676 1714136226759 OK +REQUEST request_16 1714136226740 1714136226788 OK +REQUEST request_17 1714136226740 1714136226835 OK +USER PlayGameRecord END 1714136226835 +REQUEST request_10 1714136226760 1714136226857 OK +REQUEST request_9 1714136226760 1714136226858 OK +REQUEST request_12 1714136226816 1714136226915 OK +USER PlayGameRecord START 1714136226923 +REQUEST request_8 1714136226831 1714136226928 OK +REQUEST request_14 1714136226915 1714136226996 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136226915 1714136226996 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136226954 1714136227002 OK +REQUEST request_8 1714136226907 1714136227003 OK +USER PlayGameRecord START 1714136227017 +REQUEST request_0 1714136226923 1714136227020 OK +REQUEST request_10 1714136226928 1714136227025 OK +REQUEST request_8 1714136226939 1714136227037 OK +REQUEST request_9 1714136226928 1714136227038 OK +REQUEST request_16 1714136227002 1714136227050 OK +REQUEST request_1 1714136227020 1714136227069 OK +REQUEST request_11 1714136226985 1714136227082 OK +REQUEST request_17 1714136227002 1714136227084 OK +USER PlayGameRecord END 1714136227084 +REQUEST request_10 1714136227004 1714136227100 OK +REQUEST request_0 1714136227017 1714136227102 OK +REQUEST request_6 1714136227021 1714136227103 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136227021 1714136227103 OK +REQUEST request_7 1714136227021 1714136227105 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136227021 1714136227105 OK +REQUEST request_15 1714136227064 1714136227105 OK +REQUEST request_2 1714136227020 1714136227117 OK +REQUEST request_3 1714136227021 1714136227118 OK +REQUEST request_9 1714136227003 1714136227118 OK +REQUEST request_10 1714136227037 1714136227120 OK +REQUEST request_1 1714136227102 1714136227144 OK +REQUEST request_16 1714136227106 1714136227147 OK +REQUEST request_9 1714136227037 1714136227150 OK +REQUEST request_6 1714136227103 1714136227184 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136227102 1714136227186 OK +REQUEST request_17 1714136227106 1714136227189 OK +USER PlayGameRecord END 1714136227189 +REQUEST request_11 1714136227096 1714136227194 OK +REQUEST request_3 1714136227103 1714136227198 OK +REQUEST request_4 1714136227102 1714136227200 OK +REQUEST request_7 1714136227103 1714136227200 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136227102 1714136227200 OK +REQUEST request_11 1714136227144 1714136227242 OK +REQUEST request_12 1714136227144 1714136227256 OK +REQUEST request_13 1714136227257 1714136227297 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136227257 1714136227340 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136227270 1714136227366 OK +REQUEST request_8 1714136227286 1714136227369 OK +REQUEST request_15 1714136227395 1714136227436 OK +REQUEST request_15 1714136227395 1714136227442 OK +REQUEST request_10 1714136227369 1714136227452 OK +USER PlayGameRecord START 1714136227457 +REQUEST request_12 1714136227348 1714136227459 OK +REQUEST request_10 1714136227366 1714136227461 OK +REQUEST request_12 1714136227332 1714136227465 OK +REQUEST request_16 1714136227436 1714136227478 OK +REQUEST request_16 1714136227442 1714136227489 OK +REQUEST request_9 1714136227366 1714136227497 OK +REQUEST request_9 1714136227369 1714136227501 OK +REQUEST request_13 1714136227465 1714136227506 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136227459 1714136227506 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136227442 1714136227524 OK +USER PlayGameRecord END 1714136227525 +REQUEST request_17 1714136227436 1714136227532 OK +USER PlayGameRecord END 1714136227532 +REQUEST request_0 1714136227457 1714136227538 OK +REQUEST request_13 1714136227459 1714136227542 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136227465 1714136227547 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136227519 1714136227567 OK +REQUEST request_1 1714136227539 1714136227579 OK +REQUEST request_16 1714136227567 1714136227615 OK +REQUEST request_2 1714136227539 1714136227620 OK +REQUEST request_5 1714136227539 1714136227622 OK +REQUEST request_7 1714136227539 1714136227622 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136227582 1714136227623 OK +REQUEST request_3 1714136227539 1714136227623 OK +REQUEST request_11 1714136227532 1714136227627 OK +REQUEST request_4 1714136227539 1714136227634 OK +REQUEST request_6 1714136227539 1714136227636 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136227567 1714136227649 OK +USER PlayGameRecord END 1714136227649 +REQUEST request_11 1714136227582 1714136227663 OK +REQUEST request_16 1714136227623 1714136227664 OK +REQUEST request_17 1714136227623 1714136227719 OK +USER PlayGameRecord END 1714136227719 +REQUEST request_8 1714136227645 1714136227730 OK +REQUEST request_15 1714136227691 1714136227738 OK +REQUEST request_16 1714136227738 1714136227785 OK +REQUEST request_12 1714136227691 1714136227802 OK +REQUEST request_15 1714136227769 1714136227809 OK +REQUEST request_10 1714136227730 1714136227812 OK +REQUEST request_17 1714136227738 1714136227832 OK +USER PlayGameRecord END 1714136227833 +REQUEST request_9 1714136227730 1714136227833 OK +REQUEST request_13 1714136227803 1714136227844 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136227810 1714136227851 OK +REQUEST request_11 1714136227785 1714136227880 OK +REQUEST request_17 1714136227810 1714136227892 OK +USER PlayGameRecord END 1714136227892 +REQUEST request_14 1714136227803 1714136227898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136227848 1714136227931 OK +REQUEST request_11 1714136227860 1714136227943 OK +REQUEST request_15 1714136227924 1714136227964 OK +USER PlayGameRecord START 1714136228001 +REQUEST request_16 1714136227964 1714136228005 OK +REQUEST request_10 1714136227931 1714136228013 OK +REQUEST request_9 1714136227931 1714136228032 OK +REQUEST request_17 1714136227964 1714136228048 OK +USER PlayGameRecord END 1714136228049 +REQUEST request_15 1714136228032 1714136228073 OK +REQUEST request_0 1714136228000 1714136228099 OK +REQUEST request_16 1714136228074 1714136228114 OK +REQUEST request_1 1714136228099 1714136228147 OK +REQUEST request_17 1714136228074 1714136228158 OK +USER PlayGameRecord END 1714136228158 +REQUEST request_4 1714136228099 1714136228183 OK +REQUEST request_8 1714136228109 1714136228194 OK +REQUEST request_6 1714136228100 1714136228195 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136228100 1714136228195 OK +REQUEST request_5 1714136228099 1714136228196 OK +REQUEST request_7 1714136228100 1714136228196 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136228099 1714136228197 OK +REQUEST request_12 1714136228093 1714136228207 OK +REQUEST request_11 1714136228115 1714136228212 OK +USER PlayGameRecord START 1714136228220 +REQUEST request_8 1714136228125 1714136228222 OK +USER PlayGameRecord START 1714136228222 +REQUEST request_11 1714136228170 1714136228265 OK +REQUEST request_10 1714136228194 1714136228277 OK +USER PlayGameRecord START 1714136228277 +REQUEST request_9 1714136228194 1714136228301 OK +REQUEST request_14 1714136228207 1714136228303 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136228207 1714136228304 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136228222 1714136228306 OK +REQUEST request_0 1714136228219 1714136228316 OK +REQUEST request_0 1714136228222 1714136228318 OK +REQUEST request_12 1714136228203 1714136228318 OK +REQUEST request_9 1714136228222 1714136228340 OK +REQUEST request_13 1714136228318 1714136228359 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136228277 1714136228361 OK +REQUEST request_12 1714136228251 1714136228363 OK +REQUEST request_1 1714136228316 1714136228363 OK +REQUEST request_1 1714136228318 1714136228366 OK +REQUEST request_5 1714136228317 1714136228399 OK +REQUEST request_3 1714136228317 1714136228399 OK +REQUEST request_14 1714136228318 1714136228400 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136228318 1714136228401 OK +REQUEST request_4 1714136228318 1714136228402 OK +REQUEST request_7 1714136228318 1714136228402 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136228318 1714136228403 OK +REQUEST request_1 1714136228361 1714136228403 OK +REQUEST request_7 1714136228317 1714136228412 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136228317 1714136228412 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136228318 1714136228413 OK +REQUEST request_2 1714136228316 1714136228414 OK +REQUEST request_4 1714136228316 1714136228414 OK +REQUEST request_6 1714136228318 1714136228415 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136228362 1714136228442 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136228361 1714136228444 OK +REQUEST request_14 1714136228363 1714136228445 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136228362 1714136228457 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136228362 1714136228457 OK +REQUEST request_2 1714136228361 1714136228457 OK +REQUEST request_13 1714136228363 1714136228457 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136228361 1714136228458 OK +REQUEST request_15 1714136228439 1714136228488 OK +REQUEST request_15 1714136228471 1714136228519 OK +REQUEST request_11 1714136228439 1714136228521 OK +REQUEST request_16 1714136228488 1714136228536 OK +REQUEST request_16 1714136228519 1714136228567 OK +REQUEST request_11 1714136228474 1714136228570 OK +REQUEST request_17 1714136228488 1714136228571 OK +USER PlayGameRecord END 1714136228572 +REQUEST request_17 1714136228519 1714136228603 OK +USER PlayGameRecord END 1714136228603 +REQUEST request_15 1714136228566 1714136228606 OK +REQUEST request_11 1714136228550 1714136228634 OK +REQUEST request_16 1714136228606 1714136228647 OK +REQUEST request_15 1714136228629 1714136228670 OK +REQUEST request_17 1714136228606 1714136228688 OK +USER PlayGameRecord END 1714136228688 +REQUEST request_8 1714136228598 1714136228695 OK +REQUEST request_16 1714136228670 1714136228711 OK +REQUEST request_11 1714136228629 1714136228712 OK +REQUEST request_12 1714136228629 1714136228725 OK +REQUEST request_15 1714136228692 1714136228733 OK +REQUEST request_13 1714136228725 1714136228766 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136228670 1714136228766 OK +USER PlayGameRecord END 1714136228767 +REQUEST request_16 1714136228733 1714136228774 OK +REQUEST request_12 1714136228676 1714136228776 OK +REQUEST request_8 1714136228707 1714136228790 OK +REQUEST request_10 1714136228695 1714136228791 OK +REQUEST request_9 1714136228695 1714136228806 OK +REQUEST request_14 1714136228726 1714136228806 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136228733 1714136228816 OK +USER PlayGameRecord END 1714136228817 +REQUEST request_13 1714136228777 1714136228858 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136228862 +REQUEST request_14 1714136228777 1714136228872 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136228791 1714136228886 OK +REQUEST request_9 1714136228791 1714136228890 OK +REQUEST request_0 1714136228862 1714136228945 OK +REQUEST request_1 1714136228945 1714136228987 OK +REQUEST request_12 1714136228894 1714136228992 OK +REQUEST request_8 1714136228925 1714136229020 OK +REQUEST request_8 1714136228925 1714136229022 OK +REQUEST request_5 1714136228946 1714136229028 OK +REQUEST request_2 1714136228946 1714136229028 OK +REQUEST request_3 1714136228946 1714136229029 OK +REQUEST request_13 1714136228992 1714136229033 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136228946 1714136229041 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136228946 1714136229042 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136228946 1714136229043 OK +REQUEST request_12 1714136228956 1714136229054 OK +REQUEST request_15 1714136229022 1714136229064 OK +REQUEST request_14 1714136228992 1714136229087 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136229054 1714136229095 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136229018 1714136229100 OK +REQUEST request_10 1714136229021 1714136229103 OK +REQUEST request_16 1714136229065 1714136229106 OK +REQUEST request_10 1714136229022 1714136229120 OK +REQUEST request_15 1714136229082 1714136229130 OK +REQUEST request_14 1714136229054 1714136229136 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136229022 1714136229141 OK +REQUEST request_9 1714136229021 1714136229141 OK +USER PlayGameRecord START 1714136229144 +REQUEST request_17 1714136229065 1714136229147 OK +USER PlayGameRecord END 1714136229147 +USER PlayGameRecord START 1714136229160 +REQUEST request_16 1714136229130 1714136229177 OK +REQUEST request_17 1714136229130 1714136229213 OK +USER PlayGameRecord END 1714136229214 +REQUEST request_0 1714136229144 1714136229227 OK +REQUEST request_0 1714136229159 1714136229241 OK +REQUEST request_1 1714136229227 1714136229269 OK +REQUEST request_1 1714136229241 1714136229283 OK +USER PlayGameRecord START 1714136229285 +USER PlayGameRecord START 1714136229285 +REQUEST request_2 1714136229227 1714136229309 OK +REQUEST request_6 1714136229228 1714136229310 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136229228 1714136229310 OK +REQUEST request_8 1714136229222 1714136229317 OK +REQUEST request_12 1714136229222 1714136229320 OK +REQUEST request_3 1714136229228 1714136229323 OK +REQUEST request_3 1714136229242 1714136229324 OK +REQUEST request_4 1714136229228 1714136229324 OK +REQUEST request_7 1714136229228 1714136229324 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136229242 1714136229325 OK +REQUEST request_2 1714136229242 1714136229338 OK +REQUEST request_4 1714136229242 1714136229338 OK +REQUEST request_7 1714136229242 1714136229338 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136229242 1714136229339 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136229321 1714136229361 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136229269 1714136229364 OK +REQUEST request_15 1714136229317 1714136229365 OK +REQUEST request_0 1714136229285 1714136229366 OK +REQUEST request_0 1714136229285 1714136229367 OK +REQUEST request_10 1714136229318 1714136229400 OK +REQUEST request_14 1714136229321 1714136229402 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136229324 1714136229406 OK +REQUEST request_1 1714136229366 1714136229406 OK +REQUEST request_1 1714136229368 1714136229408 OK +REQUEST request_16 1714136229365 1714136229413 OK +REQUEST request_9 1714136229318 1714136229426 OK +REQUEST request_2 1714136229366 1714136229447 OK +REQUEST request_2 1714136229368 1714136229448 OK +REQUEST request_14 1714136229364 1714136229448 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136229364 1714136229448 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136229368 1714136229449 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136229368 1714136229449 OK +REQUEST request_3 1714136229367 1714136229449 OK +REQUEST request_7 1714136229367 1714136229450 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136229365 1714136229461 OK +USER PlayGameRecord END 1714136229461 +REQUEST request_6 1714136229367 1714136229462 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136229366 1714136229462 OK +REQUEST request_4 1714136229366 1714136229462 OK +REQUEST request_7 1714136229368 1714136229463 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136229368 1714136229463 OK +REQUEST request_5 1714136229368 1714136229467 OK +REQUEST request_8 1714136229392 1714136229475 OK +REQUEST request_8 1714136229410 1714136229504 OK +REQUEST request_10 1714136229476 1714136229572 OK +REQUEST request_9 1714136229475 1714136229576 OK +REQUEST request_8 1714136229503 1714136229586 OK +REQUEST request_10 1714136229504 1714136229601 OK +REQUEST request_9 1714136229504 1714136229611 OK +REQUEST request_8 1714136229519 1714136229616 OK +USER PlayGameRecord START 1714136229627 +REQUEST request_12 1714136229535 1714136229645 OK +REQUEST request_11 1714136229550 1714136229646 OK +REQUEST request_10 1714136229586 1714136229671 OK +USER PlayGameRecord START 1714136229675 +REQUEST request_12 1714136229580 1714136229680 OK +REQUEST request_10 1714136229616 1714136229700 OK +REQUEST request_9 1714136229586 1714136229705 OK +REQUEST request_0 1714136229627 1714136229722 OK +REQUEST request_13 1714136229645 1714136229728 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136229616 1714136229738 OK +REQUEST request_12 1714136229643 1714136229741 OK +REQUEST request_14 1714136229645 1714136229741 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136229659 1714136229742 OK +REQUEST request_13 1714136229680 1714136229762 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136229680 1714136229763 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136229722 1714136229770 OK +REQUEST request_0 1714136229675 1714136229772 OK +REQUEST request_13 1714136229741 1714136229782 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136229697 1714136229791 OK +REQUEST request_2 1714136229722 1714136229804 OK +REQUEST request_6 1714136229723 1714136229804 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136229723 1714136229805 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136229723 1714136229806 OK +REQUEST request_5 1714136229723 1714136229819 OK +REQUEST request_3 1714136229723 1714136229820 OK +REQUEST request_1 1714136229772 1714136229821 OK +REQUEST request_10 1714136229742 1714136229825 OK +REQUEST request_14 1714136229741 1714136229835 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136229722 1714136229835 OK +REQUEST request_9 1714136229742 1714136229849 OK +REQUEST request_4 1714136229773 1714136229854 OK +REQUEST request_3 1714136229773 1714136229855 OK +REQUEST request_6 1714136229773 1714136229855 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136229771 1714136229867 OK +REQUEST request_7 1714136229773 1714136229868 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136229773 1714136229868 OK +REQUEST request_5 1714136229773 1714136229869 OK +REQUEST request_13 1714136229836 1714136229920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136229845 1714136229927 OK +REQUEST request_14 1714136229836 1714136229933 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136229854 1714136229937 OK +USER PlayGameRecord START 1714136229937 +REQUEST request_8 1714136229860 1714136229956 OK +REQUEST request_8 1714136229907 1714136229990 OK +USER PlayGameRecord START 1714136230017 +USER PlayGameRecord START 1714136230017 +REQUEST request_0 1714136229937 1714136230019 OK +REQUEST request_10 1714136229928 1714136230024 OK +REQUEST request_9 1714136229927 1714136230034 OK +REQUEST request_10 1714136229957 1714136230038 OK +REQUEST request_1 1714136230019 1714136230060 OK +REQUEST request_9 1714136229956 1714136230073 OK +REQUEST request_10 1714136229991 1714136230074 OK +USER PlayGameRecord START 1714136230080 +USER PlayGameRecord START 1714136230095 +REQUEST request_11 1714136230017 1714136230099 OK +REQUEST request_0 1714136230017 1714136230099 OK +REQUEST request_9 1714136229991 1714136230100 OK +REQUEST request_5 1714136230019 1714136230103 OK +REQUEST request_3 1714136230020 1714136230104 OK +REQUEST request_0 1714136230017 1714136230113 OK +REQUEST request_6 1714136230020 1714136230114 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136230019 1714136230115 OK +REQUEST request_2 1714136230019 1714136230116 OK +REQUEST request_7 1714136230020 1714136230116 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714136230100 1714136230141 OK +REQUEST request_1 1714136230114 1714136230162 OK +REQUEST request_0 1714136230080 1714136230163 OK +REQUEST request_3 1714136230100 1714136230182 OK +REQUEST request_7 1714136230100 1714136230184 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136230100 1714136230184 OK +REQUEST request_4 1714136230100 1714136230184 OK +REQUEST request_0 1714136230095 1714136230191 OK +REQUEST request_5 1714136230100 1714136230197 OK +REQUEST request_7 1714136230114 1714136230197 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136230100 1714136230197 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136230114 1714136230197 OK +REQUEST request_15 1714136230157 1714136230197 OK +REQUEST request_1 1714136230163 1714136230205 OK +REQUEST request_2 1714136230114 1714136230209 OK +REQUEST request_6 1714136230114 1714136230211 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136230114 1714136230212 OK +REQUEST request_3 1714136230114 1714136230213 OK +REQUEST request_12 1714136230110 1714136230222 OK +REQUEST request_11 1714136230141 1714136230237 OK +REQUEST request_16 1714136230197 1714136230238 OK +REQUEST request_1 1714136230191 1714136230239 OK +REQUEST request_7 1714136230164 1714136230246 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136230164 1714136230246 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136230164 1714136230246 OK +REQUEST request_2 1714136230163 1714136230259 OK +REQUEST request_4 1714136230163 1714136230260 OK +REQUEST request_3 1714136230164 1714136230261 OK +REQUEST request_14 1714136230222 1714136230269 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136230191 1714136230275 OK +REQUEST request_2 1714136230191 1714136230286 OK +REQUEST request_6 1714136230191 1714136230287 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136230191 1714136230287 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136230191 1714136230288 OK +REQUEST request_5 1714136230191 1714136230288 OK +REQUEST request_17 1714136230197 1714136230293 OK +USER PlayGameRecord END 1714136230294 +REQUEST request_13 1714136230222 1714136230319 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136230281 1714136230378 OK +REQUEST request_12 1714136230420 1714136230518 OK +REQUEST request_11 1714136230475 1714136230557 OK +USER PlayGameRecord START 1714136230562 +REQUEST request_13 1714136230518 1714136230600 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136230518 1714136230600 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136230530 1714136230614 OK +REQUEST request_0 1714136230562 1714136230642 OK +REQUEST request_1 1714136230642 1714136230683 OK +REQUEST request_11 1714136230609 1714136230691 OK +REQUEST request_11 1714136230609 1714136230706 OK +REQUEST request_10 1714136230614 1714136230710 OK +REQUEST request_9 1714136230614 1714136230715 OK +REQUEST request_2 1714136230642 1714136230726 OK +REQUEST request_5 1714136230642 1714136230727 OK +REQUEST request_6 1714136230642 1714136230727 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136230642 1714136230727 OK +REQUEST request_7 1714136230642 1714136230739 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136230642 1714136230740 OK +REQUEST request_12 1714136230655 1714136230762 OK +REQUEST request_13 1714136230762 1714136230803 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136230732 1714136230815 OK +USER PlayGameRecord START 1714136230841 +REQUEST request_14 1714136230763 1714136230846 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136230779 1714136230874 OK +REQUEST request_12 1714136230795 1714136230895 OK +REQUEST request_10 1714136230816 1714136230898 OK +REQUEST request_9 1714136230816 1714136230918 OK +REQUEST request_13 1714136230895 1714136230937 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136230841 1714136230938 OK +REQUEST request_10 1714136230874 1714136230971 OK +REQUEST request_12 1714136230872 1714136230973 OK +REQUEST request_14 1714136230895 1714136230977 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136230874 1714136230982 OK +REQUEST request_1 1714136230938 1714136230986 OK +REQUEST request_7 1714136230938 1714136231019 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136230938 1714136231021 OK +REQUEST request_3 1714136230938 1714136231021 OK +REQUEST request_4 1714136230938 1714136231021 OK +REQUEST request_11 1714136230935 1714136231032 OK +REQUEST request_5 1714136230938 1714136231033 OK +REQUEST request_6 1714136230938 1714136231034 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136230997 1714136231038 OK +REQUEST request_13 1714136230973 1714136231057 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136230950 1714136231058 OK +REQUEST request_14 1714136230974 1714136231068 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136231039 1714136231080 OK +REQUEST request_13 1714136231058 1714136231098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136231029 1714136231112 OK +REQUEST request_17 1714136231039 1714136231136 OK +USER PlayGameRecord END 1714136231136 +REQUEST request_14 1714136231058 1714136231153 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136231112 1714136231208 OK +REQUEST request_9 1714136231112 1714136231214 OK +REQUEST request_12 1714136231106 1714136231219 OK +USER PlayGameRecord START 1714136231233 +USER PlayGameRecord START 1714136231249 +REQUEST request_14 1714136231219 1714136231260 KO status.find.in([200, 209], 304), found 400 +USER PlayGameRecord START 1714136231265 +REQUEST request_13 1714136231219 1714136231301 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136231233 1714136231315 OK +REQUEST request_0 1714136231249 1714136231345 OK +REQUEST request_0 1714136231265 1714136231348 OK +REQUEST request_1 1714136231315 1714136231356 OK +REQUEST request_12 1714136231249 1714136231358 OK +REQUEST request_1 1714136231349 1714136231390 OK +REQUEST request_15 1714136231343 1714136231390 OK +REQUEST request_1 1714136231345 1714136231392 OK +REQUEST request_3 1714136231316 1714136231398 OK +REQUEST request_7 1714136231316 1714136231398 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714136231315 1714136231398 OK +REQUEST request_5 1714136231315 1714136231399 OK +REQUEST request_13 1714136231359 1714136231400 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136231315 1714136231411 OK +REQUEST request_6 1714136231316 1714136231413 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714136231345 1714136231427 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136231345 1714136231427 OK +REQUEST request_4 1714136231345 1714136231428 OK +REQUEST request_4 1714136231349 1714136231431 OK +REQUEST request_7 1714136231349 1714136231431 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714136231349 1714136231432 OK +REQUEST request_5 1714136231349 1714136231432 OK +REQUEST request_16 1714136231390 1714136231438 OK +REQUEST request_3 1714136231345 1714136231439 OK +REQUEST request_14 1714136231359 1714136231440 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714136231345 1714136231441 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714136231345 1714136231442 OK +REQUEST request_6 1714136231349 1714136231444 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136231349 1714136231445 OK +REQUEST request_17 1714136231390 1714136231472 OK +USER PlayGameRecord END 1714136231472 +REQUEST request_12 1714136231390 1714136231484 OK +REQUEST request_8 1714136231406 1714136231490 OK +REQUEST request_11 1714136231453 1714136231539 OK +REQUEST request_14 1714136231484 1714136231566 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136231490 1714136231571 OK +REQUEST request_13 1714136231484 1714136231579 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136231547 1714136231588 OK +REQUEST request_9 1714136231490 1714136231590 OK +REQUEST request_15 1714136231563 1714136231610 OK +REQUEST request_16 1714136231588 1714136231629 OK +REQUEST request_12 1714136231563 1714136231657 OK +REQUEST request_16 1714136231611 1714136231658 OK +REQUEST request_17 1714136231588 1714136231686 OK +USER PlayGameRecord END 1714136231686 +REQUEST request_13 1714136231657 1714136231699 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136231611 1714136231708 OK +USER PlayGameRecord END 1714136231708 +REQUEST request_14 1714136231657 1714136231741 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136231688 1714136231784 OK +REQUEST request_12 1714136231704 1714136231798 OK +REQUEST request_12 1714136231719 1714136231814 OK +USER PlayGameRecord START 1714136231844 +REQUEST request_14 1714136231815 1714136231863 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136231798 1714136231880 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136231785 1714136231882 OK +REQUEST request_9 1714136231784 1714136231891 OK +REQUEST request_14 1714136231798 1714136231894 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136231815 1714136231898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714136231844 1714136231928 OK +REQUEST request_15 1714136231898 1714136231946 OK +REQUEST request_11 1714136231860 1714136231956 OK +REQUEST request_1 1714136231928 1714136231970 OK +REQUEST request_16 1714136231946 1714136231994 OK +REQUEST request_6 1714136231929 1714136232010 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714136231928 1714136232011 OK +REQUEST request_4 1714136231929 1714136232012 OK +REQUEST request_3 1714136231929 1714136232024 OK +REQUEST request_5 1714136231929 1714136232028 OK +REQUEST request_7 1714136231929 1714136232029 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136231946 1714136232031 OK +USER PlayGameRecord END 1714136232031 +REQUEST request_8 1714136232001 1714136232097 OK +REQUEST request_8 1714136232017 1714136232102 OK +REQUEST request_11 1714136232038 1714136232135 OK +REQUEST request_12 1714136232033 1714136232156 OK +REQUEST request_10 1714136232097 1714136232179 OK +REQUEST request_8 1714136232112 1714136232195 OK +REQUEST request_13 1714136232156 1714136232197 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136232102 1714136232198 OK +REQUEST request_9 1714136232097 1714136232213 OK +REQUEST request_9 1714136232102 1714136232215 OK +REQUEST request_11 1714136232119 1714136232217 OK +REQUEST request_11 1714136232158 1714136232240 OK +REQUEST request_14 1714136232156 1714136232253 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136232196 1714136232278 OK +REQUEST request_9 1714136232195 1714136232297 OK +REQUEST request_15 1714136232313 1714136232361 OK +REQUEST request_16 1714136232362 1714136232410 OK +REQUEST request_15 1714136232407 1714136232455 OK +REQUEST request_17 1714136232362 1714136232457 OK +USER PlayGameRecord END 1714136232457 +REQUEST request_16 1714136232455 1714136232503 OK +REQUEST request_15 1714136232471 1714136232519 OK +REQUEST request_17 1714136232455 1714136232537 OK +USER PlayGameRecord END 1714136232538 +REQUEST request_16 1714136232519 1714136232566 OK +REQUEST request_11 1714136232502 1714136232585 OK +REQUEST request_11 1714136232502 1714136232598 OK +REQUEST request_17 1714136232519 1714136232602 OK +USER PlayGameRecord END 1714136232603 +REQUEST request_8 1714136232518 1714136232614 OK +REQUEST request_12 1714136232550 1714136232649 OK +REQUEST request_13 1714136232649 1714136232690 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136232614 1714136232696 OK +REQUEST request_9 1714136232614 1714136232721 OK +REQUEST request_8 1714136232629 1714136232725 OK +REQUEST request_14 1714136232649 1714136232743 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136232722 1714136232819 OK +REQUEST request_10 1714136232726 1714136232824 OK +REQUEST request_9 1714136232725 1714136232831 OK +REQUEST request_15 1714136232816 1714136232857 OK +REQUEST request_8 1714136232801 1714136232899 OK +REQUEST request_16 1714136232858 1714136232899 OK +REQUEST request_10 1714136232819 1714136232914 OK +REQUEST request_15 1714136232879 1714136232920 OK +REQUEST request_9 1714136232819 1714136232925 OK +REQUEST request_11 1714136232847 1714136232945 OK +REQUEST request_17 1714136232858 1714136232954 OK +USER PlayGameRecord END 1714136232954 +REQUEST request_16 1714136232920 1714136232962 OK +REQUEST request_10 1714136232899 1714136232981 OK +REQUEST request_8 1714136232925 1714136233008 OK +REQUEST request_9 1714136232899 1714136233010 OK +REQUEST request_17 1714136232920 1714136233016 OK +USER PlayGameRecord END 1714136233017 +REQUEST request_12 1714136232972 1714136233085 OK +REQUEST request_10 1714136233009 1714136233092 OK +REQUEST request_9 1714136233009 1714136233112 OK +REQUEST request_13 1714136233085 1714136233127 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136233032 1714136233129 OK +REQUEST request_15 1714136233096 1714136233138 OK +REQUEST request_16 1714136233138 1714136233180 OK +REQUEST request_14 1714136233085 1714136233181 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136233143 1714136233184 OK +REQUEST request_16 1714136233184 1714136233226 OK +REQUEST request_17 1714136233138 1714136233234 OK +USER PlayGameRecord END 1714136233234 +REQUEST request_8 1714136233159 1714136233240 OK +REQUEST request_12 1714136233143 1714136233254 OK +REQUEST request_17 1714136233184 1714136233279 OK +USER PlayGameRecord END 1714136233280 +REQUEST request_12 1714136233221 1714136233322 OK +REQUEST request_10 1714136233241 1714136233324 OK +REQUEST request_13 1714136233254 1714136233337 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136233240 1714136233346 OK +REQUEST request_14 1714136233254 1714136233348 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136233252 1714136233362 OK +REQUEST request_14 1714136233322 1714136233371 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136233302 1714136233385 OK +REQUEST request_13 1714136233362 1714136233403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136233322 1714136233405 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136233345 1714136233441 OK +REQUEST request_15 1714136233409 1714136233451 OK +REQUEST request_14 1714136233362 1714136233458 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136233451 1714136233493 OK +REQUEST request_15 1714136233455 1714136233496 OK +REQUEST request_17 1714136233451 1714136233535 OK +USER PlayGameRecord END 1714136233535 +REQUEST request_16 1714136233496 1714136233538 OK +REQUEST request_8 1714136233501 1714136233586 OK +REQUEST request_17 1714136233497 1714136233592 OK +USER PlayGameRecord END 1714136233592 +REQUEST request_10 1714136233586 1714136233669 OK +REQUEST request_8 1714136233580 1714136233676 OK +REQUEST request_9 1714136233586 1714136233686 OK +REQUEST request_12 1714136233611 1714136233709 OK +REQUEST request_12 1714136233592 1714136233713 OK +REQUEST request_13 1714136233709 1714136233751 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136233713 1714136233760 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136233676 1714136233772 OK +REQUEST request_9 1714136233676 1714136233782 OK +REQUEST request_13 1714136233713 1714136233794 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136233751 1714136233799 OK +REQUEST request_14 1714136233709 1714136233803 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136233767 1714136233808 OK +REQUEST request_8 1714136233720 1714136233815 OK +REQUEST request_8 1714136233735 1714136233817 OK +REQUEST request_16 1714136233799 1714136233846 OK +REQUEST request_16 1714136233808 1714136233849 OK +REQUEST request_15 1714136233844 1714136233884 OK +REQUEST request_17 1714136233799 1714136233896 OK +USER PlayGameRecord END 1714136233896 +REQUEST request_10 1714136233815 1714136233898 OK +REQUEST request_11 1714136233806 1714136233902 OK +REQUEST request_17 1714136233808 1714136233904 OK +USER PlayGameRecord END 1714136233904 +REQUEST request_10 1714136233818 1714136233913 OK +REQUEST request_16 1714136233884 1714136233925 OK +REQUEST request_9 1714136233817 1714136233928 OK +REQUEST request_9 1714136233815 1714136233929 OK +REQUEST request_17 1714136233884 1714136233980 OK +USER PlayGameRecord END 1714136233981 +REQUEST request_11 1714136233891 1714136233986 OK +REQUEST request_15 1714136233938 1714136233986 OK +REQUEST request_16 1714136233986 1714136234034 OK +REQUEST request_12 1714136233954 1714136234065 OK +REQUEST request_17 1714136233986 1714136234069 OK +USER PlayGameRecord END 1714136234069 +REQUEST request_13 1714136234065 1714136234106 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136234065 1714136234148 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136234142 1714136234224 OK +REQUEST request_11 1714136234142 1714136234237 OK +REQUEST request_11 1714136234157 1714136234241 OK +REQUEST request_12 1714136234142 1714136234252 OK +REQUEST request_14 1714136234253 1714136234293 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136234225 1714136234320 OK +REQUEST request_9 1714136234224 1714136234327 OK +REQUEST request_13 1714136234253 1714136234337 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136234323 1714136234371 OK +REQUEST request_8 1714136234327 1714136234410 OK +REQUEST request_16 1714136234371 1714136234419 OK +REQUEST request_17 1714136234371 1714136234468 OK +USER PlayGameRecord END 1714136234468 +REQUEST request_12 1714136234389 1714136234490 OK +REQUEST request_10 1714136234410 1714136234494 OK +REQUEST request_9 1714136234410 1714136234515 OK +REQUEST request_11 1714136234427 1714136234523 OK +REQUEST request_13 1714136234490 1714136234531 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136234452 1714136234560 OK +REQUEST request_14 1714136234490 1714136234586 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136234561 1714136234643 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136234561 1714136234643 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136234607 1714136234648 OK +REQUEST request_11 1714136234591 1714136234687 OK +REQUEST request_16 1714136234648 1714136234689 OK +REQUEST request_11 1714136234622 1714136234705 OK +REQUEST request_8 1714136234638 1714136234722 OK +REQUEST request_17 1714136234648 1714136234745 OK +USER PlayGameRecord END 1714136234745 +REQUEST request_10 1714136234723 1714136234804 OK +REQUEST request_11 1714136234716 1714136234813 OK +REQUEST request_9 1714136234722 1714136234826 OK +REQUEST request_11 1714136234738 1714136234833 OK +REQUEST request_8 1714136234795 1714136234890 OK +REQUEST request_15 1714136234859 1714136234906 OK +REQUEST request_11 1714136234849 1714136234933 OK +REQUEST request_16 1714136234906 1714136234953 OK +REQUEST request_10 1714136234890 1714136234972 OK +REQUEST request_8 1714136234906 1714136234989 OK +REQUEST request_9 1714136234890 1714136235002 OK +REQUEST request_17 1714136234906 1714136235002 OK +USER PlayGameRecord END 1714136235002 +REQUEST request_12 1714136234906 1714136235007 OK +REQUEST request_15 1714136234985 1714136235026 OK +REQUEST request_8 1714136234970 1714136235066 OK +REQUEST request_16 1714136235027 1714136235068 OK +REQUEST request_10 1714136234989 1714136235072 OK +REQUEST request_13 1714136235007 1714136235091 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136234989 1714136235095 OK +REQUEST request_12 1714136235000 1714136235101 OK +REQUEST request_14 1714136235008 1714136235104 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136235077 1714136235118 OK +REQUEST request_17 1714136235027 1714136235122 OK +USER PlayGameRecord END 1714136235122 +REQUEST request_11 1714136235047 1714136235129 OK +REQUEST request_13 1714136235101 1714136235142 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136235119 1714136235160 OK +REQUEST request_11 1714136235077 1714136235161 OK +REQUEST request_10 1714136235066 1714136235163 OK +REQUEST request_9 1714136235066 1714136235176 OK +REQUEST request_14 1714136235101 1714136235184 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136235100 1714136235195 OK +REQUEST request_15 1714136235154 1714136235202 OK +REQUEST request_17 1714136235119 1714136235215 OK +USER PlayGameRecord END 1714136235216 +REQUEST request_16 1714136235202 1714136235249 OK +REQUEST request_8 1714136235186 1714136235281 OK +REQUEST request_17 1714136235202 1714136235285 OK +USER PlayGameRecord END 1714136235285 +REQUEST request_15 1714136235310 1714136235358 OK +REQUEST request_12 1714136235248 1714136235359 OK +REQUEST request_10 1714136235281 1714136235363 OK +REQUEST request_12 1714136235248 1714136235369 OK +REQUEST request_9 1714136235281 1714136235399 OK +REQUEST request_16 1714136235359 1714136235407 OK +REQUEST request_13 1714136235369 1714136235409 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136235359 1714136235443 OK +USER PlayGameRecord END 1714136235443 +REQUEST request_14 1714136235359 1714136235443 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136235369 1714136235453 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136235359 1714136235454 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136235450 1714136235497 OK +REQUEST request_16 1714136235497 1714136235545 OK +REQUEST request_17 1714136235498 1714136235599 OK +USER PlayGameRecord END 1714136235599 +REQUEST request_12 1714136235527 1714136235623 OK +REQUEST request_15 1714136235590 1714136235631 OK +REQUEST request_16 1714136235631 1714136235672 OK +REQUEST request_14 1714136235623 1714136235707 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136235623 1714136235718 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136235631 1714136235728 OK +USER PlayGameRecord END 1714136235728 +REQUEST request_15 1714136235745 1714136235786 OK +REQUEST request_12 1714136235699 1714136235796 OK +REQUEST request_11 1714136235715 1714136235811 OK +REQUEST request_12 1714136235715 1714136235825 OK +REQUEST request_16 1714136235786 1714136235827 OK +REQUEST request_14 1714136235797 1714136235838 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136235825 1714136235866 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136235786 1714136235883 OK +USER PlayGameRecord END 1714136235883 +REQUEST request_13 1714136235797 1714136235892 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136235823 1714136235920 OK +REQUEST request_13 1714136235825 1714136235920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136235839 1714136235935 OK +REQUEST request_15 1714136235901 1714136235942 OK +REQUEST request_15 1714136235901 1714136235942 OK +REQUEST request_13 1714136235920 1714136235960 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136235942 1714136235982 OK +REQUEST request_16 1714136235942 1714136235983 OK +REQUEST request_14 1714136235920 1714136236002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136235932 1714136236014 OK +REQUEST request_14 1714136235935 1714136236018 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136235942 1714136236023 OK +USER PlayGameRecord END 1714136236023 +REQUEST request_11 1714136235932 1714136236027 OK +REQUEST request_13 1714136235935 1714136236031 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136235942 1714136236039 OK +USER PlayGameRecord END 1714136236039 +REQUEST request_12 1714136235947 1714136236056 OK +REQUEST request_11 1714136235982 1714136236078 OK +REQUEST request_8 1714136235994 1714136236091 OK +REQUEST request_14 1714136236057 1714136236098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136236015 1714136236099 OK +REQUEST request_8 1714136236010 1714136236107 OK +REQUEST request_9 1714136236015 1714136236116 OK +REQUEST request_13 1714136236057 1714136236153 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136236092 1714136236174 OK +REQUEST request_10 1714136236107 1714136236190 OK +REQUEST request_9 1714136236092 1714136236208 OK +REQUEST request_9 1714136236107 1714136236222 OK +REQUEST request_12 1714136236134 1714136236231 OK +REQUEST request_12 1714136236165 1714136236273 OK +REQUEST request_14 1714136236231 1714136236278 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136236196 1714136236292 OK +REQUEST request_15 1714136236259 1714136236307 OK +REQUEST request_11 1714136236214 1714136236310 OK +REQUEST request_13 1714136236274 1714136236314 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136236231 1714136236327 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136236293 1714136236340 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136236274 1714136236354 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136236307 1714136236355 OK +REQUEST request_13 1714136236293 1714136236388 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136236307 1714136236405 OK +USER PlayGameRecord END 1714136236405 +REQUEST request_11 1714136236591 1714136236687 OK +REQUEST request_15 1714136236757 1714136236799 OK +REQUEST request_16 1714136236799 1714136236841 OK +REQUEST request_8 1714136236805 1714136236888 OK +REQUEST request_17 1714136236800 1714136236896 OK +USER PlayGameRecord END 1714136236896 +REQUEST request_12 1714136236820 1714136236915 OK +REQUEST request_8 1714136236835 1714136236918 OK +REQUEST request_10 1714136236888 1714136236970 OK +REQUEST request_11 1714136236892 1714136236987 OK +REQUEST request_9 1714136236888 1714136236994 OK +REQUEST request_13 1714136236915 1714136237000 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136236916 1714136237011 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136236918 1714136237013 OK +REQUEST request_9 1714136236918 1714136237023 OK +REQUEST request_12 1714136237037 1714136237147 OK +REQUEST request_12 1714136237085 1714136237194 OK +REQUEST request_13 1714136237147 1714136237230 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136237194 1714136237234 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136237189 1714136237237 OK +REQUEST request_14 1714136237147 1714136237244 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136237194 1714136237277 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136237237 1714136237285 OK +REQUEST request_11 1714136237214 1714136237297 OK +REQUEST request_11 1714136237227 1714136237324 OK +REQUEST request_17 1714136237237 1714136237334 OK +USER PlayGameRecord END 1714136237335 +REQUEST request_8 1714136237258 1714136237343 OK +REQUEST request_11 1714136237298 1714136237393 OK +REQUEST request_15 1714136237352 1714136237401 OK +REQUEST request_12 1714136237321 1714136237436 OK +REQUEST request_10 1714136237343 1714136237438 OK +REQUEST request_16 1714136237401 1714136237449 OK +REQUEST request_9 1714136237343 1714136237450 OK +REQUEST request_15 1714136237413 1714136237454 OK +REQUEST request_14 1714136237436 1714136237478 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136237454 1714136237496 OK +REQUEST request_17 1714136237401 1714136237497 OK +USER PlayGameRecord END 1714136237497 +REQUEST request_15 1714136237461 1714136237509 OK +REQUEST request_13 1714136237436 1714136237532 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136237454 1714136237538 OK +USER PlayGameRecord END 1714136237538 +REQUEST request_16 1714136237509 1714136237557 OK +REQUEST request_8 1714136237476 1714136237559 OK +REQUEST request_17 1714136237509 1714136237605 OK +USER PlayGameRecord END 1714136237605 +REQUEST request_8 1714136237539 1714136237636 OK +REQUEST request_10 1714136237559 1714136237664 OK +REQUEST request_9 1714136237559 1714136237664 OK +REQUEST request_10 1714136237636 1714136237731 OK +REQUEST request_9 1714136237636 1714136237742 OK +REQUEST request_12 1714136237694 1714136237791 OK +REQUEST request_11 1714136237721 1714136237803 OK +REQUEST request_8 1714136237725 1714136237808 OK +REQUEST request_15 1714136237804 1714136237852 OK +REQUEST request_15 1714136237819 1714136237860 OK +REQUEST request_13 1714136237792 1714136237874 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136237804 1714136237887 OK +REQUEST request_14 1714136237792 1714136237888 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136237852 1714136237900 OK +REQUEST request_16 1714136237860 1714136237901 OK +REQUEST request_10 1714136237808 1714136237905 OK +REQUEST request_9 1714136237808 1714136237908 OK +REQUEST request_8 1714136237834 1714136237930 OK +REQUEST request_11 1714136237832 1714136237931 OK +REQUEST request_17 1714136237852 1714136237937 OK +USER PlayGameRecord END 1714136237937 +REQUEST request_17 1714136237860 1714136237956 OK +USER PlayGameRecord END 1714136237956 +REQUEST request_10 1714136237887 1714136237970 OK +REQUEST request_9 1714136237887 1714136237986 OK +REQUEST request_11 1714136237928 1714136238024 OK +REQUEST request_10 1714136237931 1714136238028 OK +REQUEST request_9 1714136237930 1714136238037 OK +REQUEST request_12 1714136237990 1714136238097 OK +REQUEST request_11 1714136238010 1714136238107 OK +REQUEST request_14 1714136238098 1714136238145 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136238098 1714136238193 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136238113 1714136238197 OK +REQUEST request_15 1714136238159 1714136238207 OK +REQUEST request_16 1714136238207 1714136238256 OK +REQUEST request_17 1714136238207 1714136238291 OK +USER PlayGameRecord END 1714136238292 +REQUEST request_8 1714136238221 1714136238303 OK +REQUEST request_15 1714136238348 1714136238395 OK +REQUEST request_10 1714136238303 1714136238398 OK +REQUEST request_9 1714136238303 1714136238406 OK +REQUEST request_12 1714136238300 1714136238419 OK +REQUEST request_11 1714136238347 1714136238429 OK +REQUEST request_12 1714136238332 1714136238441 OK +REQUEST request_16 1714136238396 1714136238444 OK +REQUEST request_13 1714136238419 1714136238461 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136238380 1714136238463 OK +REQUEST request_17 1714136238396 1714136238491 OK +USER PlayGameRecord END 1714136238492 +REQUEST request_12 1714136238395 1714136238495 OK +REQUEST request_14 1714136238419 1714136238502 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136238441 1714136238525 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136238495 1714136238535 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136238441 1714136238538 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136238463 1714136238559 OK +REQUEST request_9 1714136238463 1714136238562 OK +REQUEST request_14 1714136238495 1714136238589 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136238601 1714136238643 OK +REQUEST request_16 1714136238643 1714136238684 OK +REQUEST request_15 1714136238649 1714136238697 OK +REQUEST request_17 1714136238643 1714136238739 OK +USER PlayGameRecord END 1714136238739 +REQUEST request_16 1714136238697 1714136238744 OK +REQUEST request_11 1714136238687 1714136238768 OK +REQUEST request_17 1714136238697 1714136238794 OK +USER PlayGameRecord END 1714136238795 +REQUEST request_11 1714136238789 1714136238871 OK +REQUEST request_12 1714136238805 1714136238905 OK +REQUEST request_14 1714136238905 1714136238947 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136238905 1714136239001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136238928 1714136239024 OK +REQUEST request_11 1714136238930 1714136239026 OK +REQUEST request_12 1714136238945 1714136239041 OK +REQUEST request_13 1714136239042 1714136239082 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136239042 1714136239138 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136239039 1714136239148 OK +REQUEST request_15 1714136239116 1714136239158 OK +REQUEST request_13 1714136239148 1714136239188 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136239158 1714136239199 OK +REQUEST request_12 1714136239116 1714136239212 OK +REQUEST request_15 1714136239195 1714136239236 OK +REQUEST request_14 1714136239148 1714136239243 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136239212 1714136239252 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136239158 1714136239255 OK +USER PlayGameRecord END 1714136239255 +REQUEST request_16 1714136239236 1714136239278 OK +REQUEST request_12 1714136239210 1714136239306 OK +REQUEST request_14 1714136239212 1714136239308 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136239236 1714136239320 OK +USER PlayGameRecord END 1714136239321 +REQUEST request_13 1714136239306 1714136239347 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136239306 1714136239388 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136239334 1714136239417 OK +REQUEST request_8 1714136239350 1714136239446 OK +REQUEST request_8 1714136239398 1714136239482 OK +REQUEST request_15 1714136239461 1714136239502 OK +REQUEST request_15 1714136239461 1714136239509 OK +REQUEST request_12 1714136239430 1714136239538 OK +REQUEST request_10 1714136239446 1714136239541 OK +REQUEST request_16 1714136239502 1714136239543 OK +REQUEST request_16 1714136239509 1714136239557 OK +REQUEST request_9 1714136239446 1714136239560 OK +REQUEST request_10 1714136239482 1714136239577 OK +REQUEST request_13 1714136239538 1714136239578 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136239482 1714136239590 OK +REQUEST request_17 1714136239502 1714136239599 OK +USER PlayGameRecord END 1714136239599 +REQUEST request_17 1714136239509 1714136239604 OK +USER PlayGameRecord END 1714136239604 +REQUEST request_11 1714136239524 1714136239607 OK +REQUEST request_14 1714136239538 1714136239633 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136239724 1714136239765 OK +REQUEST request_16 1714136239765 1714136239806 OK +REQUEST request_17 1714136239766 1714136239861 OK +USER PlayGameRecord END 1714136239861 +REQUEST request_12 1714136239771 1714136239884 OK +REQUEST request_11 1714136239826 1714136239910 OK +REQUEST request_14 1714136239884 1714136239931 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136239897 1714136239939 OK +REQUEST request_15 1714136239929 1714136239977 OK +REQUEST request_13 1714136239884 1714136239980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136239939 1714136239980 OK +REQUEST request_12 1714136239881 1714136239991 OK +REQUEST request_16 1714136239977 1714136240025 OK +REQUEST request_13 1714136239991 1714136240032 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136239939 1714136240036 OK +USER PlayGameRecord END 1714136240036 +REQUEST request_15 1714136240007 1714136240049 OK +REQUEST request_17 1714136239977 1714136240059 OK +USER PlayGameRecord END 1714136240059 +REQUEST request_14 1714136239991 1714136240074 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136240037 1714136240077 OK +REQUEST request_11 1714136240007 1714136240089 OK +REQUEST request_16 1714136240049 1714136240090 OK +REQUEST request_16 1714136240078 1714136240118 OK +REQUEST request_8 1714136240037 1714136240119 OK +REQUEST request_12 1714136240037 1714136240134 OK +REQUEST request_12 1714136240037 1714136240146 OK +REQUEST request_17 1714136240049 1714136240146 OK +USER PlayGameRecord END 1714136240147 +REQUEST request_17 1714136240078 1714136240162 OK +USER PlayGameRecord END 1714136240162 +REQUEST request_11 1714136240096 1714136240180 OK +REQUEST request_14 1714136240134 1714136240182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136240146 1714136240188 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136240162 1714136240209 OK +REQUEST request_10 1714136240119 1714136240217 OK +REQUEST request_13 1714136240134 1714136240217 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136240119 1714136240223 OK +REQUEST request_13 1714136240146 1714136240230 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136240209 1714136240257 OK +REQUEST request_11 1714136240177 1714136240259 OK +REQUEST request_17 1714136240209 1714136240306 OK +USER PlayGameRecord END 1714136240307 +REQUEST request_15 1714136240335 1714136240377 OK +REQUEST request_15 1714136240367 1714136240415 OK +REQUEST request_8 1714136240335 1714136240418 OK +REQUEST request_16 1714136240377 1714136240418 OK +REQUEST request_15 1714136240398 1714136240440 OK +REQUEST request_17 1714136240377 1714136240460 OK +USER PlayGameRecord END 1714136240460 +REQUEST request_16 1714136240415 1714136240462 OK +REQUEST request_16 1714136240440 1714136240481 OK +REQUEST request_11 1714136240414 1714136240496 OK +REQUEST request_17 1714136240415 1714136240498 OK +USER PlayGameRecord END 1714136240498 +REQUEST request_10 1714136240418 1714136240515 OK +REQUEST request_9 1714136240418 1714136240520 OK +REQUEST request_12 1714136240429 1714136240528 OK +REQUEST request_17 1714136240440 1714136240535 OK +USER PlayGameRecord END 1714136240536 +REQUEST request_14 1714136240529 1714136240576 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136240508 1714136240590 OK +REQUEST request_8 1714136240508 1714136240606 OK +REQUEST request_13 1714136240528 1714136240625 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136240591 1714136240673 OK +REQUEST request_9 1714136240591 1714136240697 OK +REQUEST request_10 1714136240606 1714136240701 OK +REQUEST request_12 1714136240616 1714136240714 OK +REQUEST request_9 1714136240606 1714136240724 OK +REQUEST request_13 1714136240714 1714136240755 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136240714 1714136240797 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136240912 1714136241020 OK +REQUEST request_8 1714136240943 1714136241028 OK +REQUEST request_15 1714136241020 1714136241061 OK +REQUEST request_14 1714136241021 1714136241062 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136241062 1714136241102 OK +REQUEST request_10 1714136241028 1714136241113 OK +REQUEST request_13 1714136241020 1714136241115 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136241028 1714136241128 OK +REQUEST request_17 1714136241062 1714136241157 OK +USER PlayGameRecord END 1714136241157 +REQUEST request_11 1714136241116 1714136241199 OK +REQUEST request_12 1714136241097 1714136241217 OK +REQUEST request_14 1714136241217 1714136241265 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136241192 1714136241292 OK +REQUEST request_13 1714136241217 1714136241300 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136241256 1714136241304 OK +REQUEST request_11 1714136241224 1714136241306 OK +REQUEST request_11 1714136241224 1714136241319 OK +REQUEST request_14 1714136241292 1714136241332 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136241287 1714136241335 OK +REQUEST request_16 1714136241304 1714136241352 OK +REQUEST request_13 1714136241292 1714136241375 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136241271 1714136241381 OK +REQUEST request_16 1714136241336 1714136241383 OK +REQUEST request_17 1714136241304 1714136241388 OK +USER PlayGameRecord END 1714136241388 +REQUEST request_13 1714136241381 1714136241422 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136241336 1714136241431 OK +USER PlayGameRecord END 1714136241431 +REQUEST request_8 1714136241368 1714136241452 OK +REQUEST request_14 1714136241381 1714136241478 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136241399 1714136241497 OK +REQUEST request_10 1714136241452 1714136241535 OK +REQUEST request_9 1714136241452 1714136241555 OK +REQUEST request_15 1714136241537 1714136241585 OK +REQUEST request_10 1714136241497 1714136241593 OK +REQUEST request_9 1714136241497 1714136241607 OK +REQUEST request_12 1714136241507 1714136241609 OK +REQUEST request_8 1714136241522 1714136241618 OK +REQUEST request_16 1714136241585 1714136241632 OK +REQUEST request_17 1714136241586 1714136241669 OK +USER PlayGameRecord END 1714136241669 +REQUEST request_14 1714136241609 1714136241691 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136241618 1714136241701 OK +REQUEST request_13 1714136241609 1714136241706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136241618 1714136241728 OK +REQUEST request_8 1714136241632 1714136241729 OK +REQUEST request_10 1714136241729 1714136241826 OK +REQUEST request_9 1714136241729 1714136241834 OK +REQUEST request_8 1714136241740 1714136241836 OK +REQUEST request_10 1714136241837 1714136241933 OK +REQUEST request_15 1714136241895 1714136241937 OK +REQUEST request_9 1714136241837 1714136241942 OK +REQUEST request_16 1714136241937 1714136241979 OK +REQUEST request_17 1714136241937 1714136242035 OK +USER PlayGameRecord END 1714136242035 +REQUEST request_11 1714136242006 1714136242090 OK +REQUEST request_11 1714136242036 1714136242133 OK +REQUEST request_8 1714136242132 1714136242214 OK +REQUEST request_15 1714136242195 1714136242242 OK +REQUEST request_16 1714136242242 1714136242290 OK +REQUEST request_10 1714136242214 1714136242297 OK +REQUEST request_8 1714136242210 1714136242307 OK +REQUEST request_9 1714136242214 1714136242313 OK +REQUEST request_12 1714136242210 1714136242321 OK +REQUEST request_17 1714136242242 1714136242339 OK +USER PlayGameRecord END 1714136242340 +REQUEST request_13 1714136242321 1714136242368 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136242307 1714136242402 OK +REQUEST request_14 1714136242321 1714136242415 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136242307 1714136242415 OK +REQUEST request_12 1714136242313 1714136242425 OK +REQUEST request_12 1714136242334 1714136242442 OK +REQUEST request_13 1714136242442 1714136242483 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136242426 1714136242508 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136242425 1714136242523 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136242442 1714136242537 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136242461 1714136242544 OK +REQUEST request_15 1714136242508 1714136242556 OK +REQUEST request_15 1714136242539 1714136242581 OK +REQUEST request_16 1714136242556 1714136242604 OK +REQUEST request_16 1714136242582 1714136242623 OK +REQUEST request_17 1714136242556 1714136242639 OK +USER PlayGameRecord END 1714136242639 +REQUEST request_15 1714136242603 1714136242644 OK +REQUEST request_17 1714136242582 1714136242678 OK +USER PlayGameRecord END 1714136242678 +REQUEST request_16 1714136242644 1714136242685 OK +REQUEST request_17 1714136242644 1714136242729 OK +USER PlayGameRecord END 1714136242729 +REQUEST request_8 1714136242650 1714136242735 OK +REQUEST request_11 1714136242665 1714136242761 OK +REQUEST request_10 1714136242735 1714136242817 OK +REQUEST request_11 1714136242744 1714136242826 OK +REQUEST request_9 1714136242735 1714136242835 OK +REQUEST request_11 1714136242917 1714136243016 OK +REQUEST request_15 1714136243012 1714136243053 OK +REQUEST request_11 1714136242997 1714136243093 OK +REQUEST request_16 1714136243053 1714136243094 OK +REQUEST request_11 1714136243037 1714136243121 OK +REQUEST request_17 1714136243053 1714136243149 OK +USER PlayGameRecord END 1714136243149 +REQUEST request_15 1714136243154 1714136243196 OK +REQUEST request_12 1714136243106 1714136243203 OK +REQUEST request_16 1714136243196 1714136243237 OK +REQUEST request_14 1714136243203 1714136243245 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136243138 1714136243247 OK +REQUEST request_17 1714136243196 1714136243276 OK +USER PlayGameRecord END 1714136243277 +REQUEST request_13 1714136243203 1714136243285 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136243201 1714136243286 OK +REQUEST request_15 1714136243248 1714136243296 OK +REQUEST request_13 1714136243247 1714136243329 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136243247 1714136243341 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136243296 1714136243344 OK +REQUEST request_15 1714136243312 1714136243354 OK +REQUEST request_17 1714136243296 1714136243379 OK +USER PlayGameRecord END 1714136243380 +REQUEST request_10 1714136243286 1714136243383 OK +REQUEST request_9 1714136243286 1714136243387 OK +REQUEST request_16 1714136243354 1714136243395 OK +REQUEST request_15 1714136243390 1714136243431 OK +REQUEST request_17 1714136243354 1714136243436 OK +USER PlayGameRecord END 1714136243436 +REQUEST request_16 1714136243431 1714136243471 OK +REQUEST request_11 1714136243407 1714136243489 OK +REQUEST request_17 1714136243431 1714136243514 OK +USER PlayGameRecord END 1714136243514 +REQUEST request_8 1714136243421 1714136243517 OK +REQUEST request_8 1714136243421 1714136243518 OK +REQUEST request_8 1714136243468 1714136243565 OK +REQUEST request_10 1714136243518 1714136243601 OK +REQUEST request_10 1714136243517 1714136243614 OK +REQUEST request_9 1714136243517 1714136243632 OK +REQUEST request_9 1714136243518 1714136243638 OK +REQUEST request_11 1714136243563 1714136243648 OK +REQUEST request_10 1714136243566 1714136243661 OK +REQUEST request_12 1714136243545 1714136243661 OK +REQUEST request_15 1714136243638 1714136243680 OK +REQUEST request_9 1714136243566 1714136243686 OK +REQUEST request_13 1714136243661 1714136243702 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136243680 1714136243722 OK +REQUEST request_14 1714136243661 1714136243743 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136243680 1714136243764 OK +USER PlayGameRecord END 1714136243765 +REQUEST request_12 1714136243777 1714136243886 OK +REQUEST request_14 1714136243886 1714136243934 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136243839 1714136243954 OK +REQUEST request_13 1714136243886 1714136243970 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136243954 1714136244002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136243993 1714136244041 OK +REQUEST request_13 1714136243954 1714136244050 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136244041 1714136244090 OK +REQUEST request_12 1714136244024 1714136244121 OK +REQUEST request_15 1714136244085 1714136244132 OK +REQUEST request_8 1714136244055 1714136244137 OK +REQUEST request_17 1714136244041 1714136244138 OK +USER PlayGameRecord END 1714136244138 +REQUEST request_13 1714136244121 1714136244162 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136244133 1714136244182 OK +REQUEST request_14 1714136244121 1714136244202 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136244100 1714136244212 OK +REQUEST request_10 1714136244137 1714136244220 OK +REQUEST request_17 1714136244133 1714136244229 OK +USER PlayGameRecord END 1714136244229 +REQUEST request_12 1714136244131 1714136244233 OK +REQUEST request_9 1714136244137 1714136244247 OK +REQUEST request_15 1714136244222 1714136244263 OK +REQUEST request_15 1714136244237 1714136244285 OK +REQUEST request_14 1714136244212 1714136244294 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136244263 1714136244305 OK +REQUEST request_13 1714136244212 1714136244308 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136244233 1714136244328 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136244233 1714136244330 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136244285 1714136244333 OK +REQUEST request_17 1714136244263 1714136244359 OK +USER PlayGameRecord END 1714136244360 +REQUEST request_17 1714136244285 1714136244368 OK +USER PlayGameRecord END 1714136244369 +REQUEST request_8 1714136244331 1714136244427 OK +REQUEST request_8 1714136244346 1714136244443 OK +REQUEST request_10 1714136244427 1714136244524 OK +REQUEST request_10 1714136244443 1714136244526 OK +REQUEST request_9 1714136244427 1714136244536 OK +REQUEST request_9 1714136244443 1714136244552 OK +REQUEST request_8 1714136244472 1714136244554 OK +REQUEST request_8 1714136244472 1714136244569 OK +REQUEST request_12 1714136244503 1714136244608 OK +REQUEST request_10 1714136244554 1714136244637 OK +REQUEST request_13 1714136244608 1714136244649 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714136244554 1714136244659 OK +REQUEST request_10 1714136244570 1714136244663 OK +REQUEST request_11 1714136244560 1714136244663 OK +REQUEST request_15 1714136244627 1714136244668 OK +REQUEST request_9 1714136244570 1714136244686 OK +REQUEST request_11 1714136244591 1714136244687 OK +REQUEST request_14 1714136244608 1714136244689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136244668 1714136244709 OK +REQUEST request_17 1714136244668 1714136244750 OK +USER PlayGameRecord END 1714136244750 +REQUEST request_12 1714136244657 1714136244767 OK +REQUEST request_14 1714136244767 1714136244808 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136244812 1714136244854 OK +REQUEST request_13 1714136244767 1714136244864 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136244854 1714136244895 OK +REQUEST request_8 1714136244828 1714136244912 OK +REQUEST request_17 1714136244854 1714136244937 OK +USER PlayGameRecord END 1714136244937 +REQUEST request_8 1714136244875 1714136244971 OK +REQUEST request_10 1714136244912 1714136244995 OK +REQUEST request_9 1714136244912 1714136245014 OK +REQUEST request_10 1714136244971 1714136245066 OK +REQUEST request_9 1714136244971 1714136245076 OK +REQUEST request_15 1714136245123 1714136245171 OK +REQUEST request_8 1714136245123 1714136245207 OK +REQUEST request_16 1714136245171 1714136245219 OK +REQUEST request_17 1714136245171 1714136245254 OK +USER PlayGameRecord END 1714136245254 +REQUEST request_10 1714136245207 1714136245289 OK +REQUEST request_8 1714136245202 1714136245300 OK +REQUEST request_8 1714136245218 1714136245302 OK +REQUEST request_9 1714136245207 1714136245309 OK +REQUEST request_11 1714136245234 1714136245332 OK +REQUEST request_15 1714136245314 1714136245362 OK +REQUEST request_8 1714136245266 1714136245364 OK +REQUEST request_8 1714136245298 1714136245382 OK +REQUEST request_10 1714136245301 1714136245396 OK +REQUEST request_10 1714136245302 1714136245399 OK +REQUEST request_9 1714136245302 1714136245406 OK +REQUEST request_16 1714136245363 1714136245411 OK +REQUEST request_9 1714136245300 1714136245412 OK +REQUEST request_15 1714136245391 1714136245432 OK +REQUEST request_17 1714136245363 1714136245458 OK +USER PlayGameRecord END 1714136245458 +REQUEST request_10 1714136245364 1714136245459 OK +REQUEST request_10 1714136245382 1714136245465 OK +REQUEST request_16 1714136245432 1714136245474 OK +REQUEST request_9 1714136245364 1714136245475 OK +REQUEST request_9 1714136245382 1714136245487 OK +REQUEST request_17 1714136245432 1714136245518 OK +USER PlayGameRecord END 1714136245518 +REQUEST request_15 1714136245482 1714136245530 OK +REQUEST request_16 1714136245530 1714136245578 OK +REQUEST request_11 1714136245529 1714136245612 OK +REQUEST request_17 1714136245530 1714136245625 OK +USER PlayGameRecord END 1714136245626 +REQUEST request_15 1714136245720 1714136245761 OK +REQUEST request_12 1714136245672 1714136245769 OK +REQUEST request_11 1714136245697 1714136245781 OK +REQUEST request_12 1714136245688 1714136245797 OK +REQUEST request_16 1714136245761 1714136245803 OK +REQUEST request_14 1714136245769 1714136245810 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136245724 1714136245821 OK +REQUEST request_8 1714136245750 1714136245849 OK +REQUEST request_13 1714136245769 1714136245853 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136245761 1714136245859 OK +USER PlayGameRecord END 1714136245859 +REQUEST request_14 1714136245797 1714136245880 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136245797 1714136245893 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714136245849 1714136245933 OK +REQUEST request_9 1714136245849 1714136245959 OK +REQUEST request_8 1714136246050 1714136246148 OK +REQUEST request_11 1714136246144 1714136246227 OK +REQUEST request_10 1714136246148 1714136246245 OK +REQUEST request_9 1714136246148 1714136246256 OK +REQUEST request_12 1714136246348 1714136246457 OK +REQUEST request_15 1714136246426 1714136246474 OK +REQUEST request_13 1714136246457 1714136246498 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714136246426 1714136246509 OK +REQUEST request_16 1714136246474 1714136246521 OK +REQUEST request_8 1714136246442 1714136246540 OK +REQUEST request_8 1714136246458 1714136246542 OK +REQUEST request_14 1714136246457 1714136246552 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136246474 1714136246558 OK +USER PlayGameRecord END 1714136246558 +REQUEST request_15 1714136246535 1714136246584 OK +REQUEST request_10 1714136246509 1714136246594 OK +REQUEST request_15 1714136246551 1714136246598 OK +REQUEST request_9 1714136246509 1714136246610 OK +REQUEST request_10 1714136246541 1714136246623 OK +REQUEST request_16 1714136246584 1714136246632 OK +REQUEST request_10 1714136246542 1714136246637 OK +REQUEST request_16 1714136246598 1714136246645 OK +REQUEST request_11 1714136246555 1714136246651 OK +REQUEST request_9 1714136246542 1714136246660 OK +REQUEST request_9 1714136246540 1714136246660 OK +REQUEST request_17 1714136246584 1714136246668 OK +USER PlayGameRecord END 1714136246668 +REQUEST request_17 1714136246598 1714136246693 OK +USER PlayGameRecord END 1714136246694 +REQUEST request_11 1714136246607 1714136246705 OK +REQUEST request_12 1714136246613 1714136246713 OK +REQUEST request_14 1714136246713 1714136246795 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136246713 1714136246809 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136246739 1714136246837 OK +REQUEST request_12 1714136246785 1714136246896 OK +REQUEST request_12 1714136246833 1714136246928 OK +REQUEST request_11 1714136246835 1714136246930 OK +REQUEST request_14 1714136246896 1714136246980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136246896 1714136246994 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136246928 1714136247010 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136246928 1714136247024 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136246942 1714136247037 OK +REQUEST request_8 1714136247035 1714136247130 OK +REQUEST request_10 1714136247130 1714136247213 OK +REQUEST request_9 1714136247130 1714136247239 OK +REQUEST request_15 1714136247288 1714136247329 OK +REQUEST request_12 1714136247241 1714136247337 OK +REQUEST request_16 1714136247329 1714136247370 OK +REQUEST request_14 1714136247337 1714136247384 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136247351 1714136247398 OK +REQUEST request_11 1714136247314 1714136247411 OK +REQUEST request_17 1714136247329 1714136247427 OK +USER PlayGameRecord END 1714136247427 +REQUEST request_13 1714136247337 1714136247433 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136247398 1714136247446 OK +REQUEST request_17 1714136247398 1714136247481 OK +USER PlayGameRecord END 1714136247481 +REQUEST request_11 1714136247431 1714136247514 OK +REQUEST request_12 1714136247666 1714136247764 OK +REQUEST request_15 1714136247744 1714136247792 OK +REQUEST request_13 1714136247764 1714136247804 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136247712 1714136247807 OK +REQUEST request_16 1714136247792 1714136247840 OK +REQUEST request_13 1714136247808 1714136247849 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136247764 1714136247861 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136247792 1714136247889 OK +USER PlayGameRecord END 1714136247889 +REQUEST request_14 1714136247808 1714136247902 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136247835 1714136247918 OK +REQUEST request_12 1714136247852 1714136247962 OK +REQUEST request_13 1714136247962 1714136248003 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136247976 1714136248024 OK +REQUEST request_12 1714136247945 1714136248040 OK +REQUEST request_14 1714136247962 1714136248042 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136248024 1714136248071 OK +REQUEST request_14 1714136248040 1714136248082 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136248055 1714136248103 OK +REQUEST request_17 1714136248024 1714136248106 OK +USER PlayGameRecord END 1714136248106 +REQUEST request_13 1714136248040 1714136248124 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136248039 1714136248149 OK +REQUEST request_16 1714136248103 1714136248151 OK +REQUEST request_17 1714136248103 1714136248187 OK +USER PlayGameRecord END 1714136248187 +REQUEST request_14 1714136248149 1714136248232 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136248149 1714136248245 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136248212 1714136248254 OK +REQUEST request_16 1714136248254 1714136248295 OK +REQUEST request_17 1714136248254 1714136248351 OK +USER PlayGameRecord END 1714136248352 +REQUEST request_15 1714136248322 1714136248370 OK +REQUEST request_15 1714136248337 1714136248378 OK +REQUEST request_16 1714136248370 1714136248418 OK +REQUEST request_16 1714136248378 1714136248419 OK +REQUEST request_17 1714136248370 1714136248452 OK +USER PlayGameRecord END 1714136248453 +REQUEST request_17 1714136248378 1714136248474 OK +USER PlayGameRecord END 1714136248474 +REQUEST request_11 1714136248387 1714136248485 OK +REQUEST request_12 1714136248417 1714136248514 OK +REQUEST request_13 1714136248514 1714136248555 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136248515 1714136248612 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136248526 1714136248635 OK +REQUEST request_13 1714136248635 1714136248676 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136248633 1714136248728 OK +REQUEST request_14 1714136248635 1714136248730 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136248639 1714136248734 OK +REQUEST request_15 1714136248700 1714136248742 OK +REQUEST request_16 1714136248742 1714136248783 OK +REQUEST request_11 1714136248700 1714136248797 OK +REQUEST request_17 1714136248742 1714136248838 OK +USER PlayGameRecord END 1714136248838 +REQUEST request_15 1714136248871 1714136248918 OK +REQUEST request_16 1714136248919 1714136248966 OK +REQUEST request_17 1714136248919 1714136249015 OK +USER PlayGameRecord END 1714136249015 +REQUEST request_12 1714136248919 1714136249016 OK +REQUEST request_13 1714136249016 1714136249098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136249016 1714136249113 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136249248 1714136249345 OK +REQUEST request_12 1714136249501 1714136249611 OK +REQUEST request_11 1714136249537 1714136249632 OK +REQUEST request_11 1714136249553 1714136249637 OK +REQUEST request_13 1714136249612 1714136249666 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136249612 1714136249706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136249660 1714136249755 OK +REQUEST request_11 1714136249687 1714136249782 OK +REQUEST request_12 1714136249734 1714136249829 OK +REQUEST request_12 1714136249749 1714136249857 OK +REQUEST request_15 1714136249860 1714136249902 OK +REQUEST request_12 1714136249812 1714136249906 OK +REQUEST request_13 1714136249829 1714136249911 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136249829 1714136249925 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136249857 1714136249940 KO status.find.in([200, 209], 304), found 400 +REQUEST request_16 1714136249902 1714136249944 OK +REQUEST request_13 1714136249907 1714136249948 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136249857 1714136249953 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136249907 1714136249954 OK +REQUEST request_17 1714136249902 1714136249984 OK +USER PlayGameRecord END 1714136249985 +REQUEST request_16 1714136249954 1714136250001 OK +REQUEST request_14 1714136249907 1714136250004 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136249954 1714136250038 OK +USER PlayGameRecord END 1714136250038 +REQUEST request_11 1714136250015 1714136250112 OK +REQUEST request_11 1714136250076 1714136250172 OK +REQUEST request_11 1714136250310 1714136250391 OK +REQUEST request_12 1714136250359 1714136250470 OK +REQUEST request_11 1714136250408 1714136250491 OK +REQUEST request_11 1714136250412 1714136250507 OK +REQUEST request_14 1714136250470 1714136250517 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136250475 1714136250558 OK +REQUEST request_13 1714136250470 1714136250567 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136250500 1714136250598 OK +REQUEST request_15 1714136250564 1714136250611 OK +REQUEST request_16 1714136250612 1714136250659 OK +REQUEST request_17 1714136250612 1714136250695 OK +USER PlayGameRecord END 1714136250695 +REQUEST request_12 1714136250643 1714136250741 OK +REQUEST request_12 1714136250642 1714136250754 OK +REQUEST request_13 1714136250754 1714136250795 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136250754 1714136250836 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136250741 1714136250837 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136250741 1714136250838 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136250814 1714136250855 OK +REQUEST request_12 1714136250767 1714136250865 OK +REQUEST request_12 1714136250782 1714136250892 OK +REQUEST request_16 1714136250856 1714136250897 OK +REQUEST request_13 1714136250866 1714136250906 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136250866 1714136250947 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136250856 1714136250951 OK +USER PlayGameRecord END 1714136250951 +REQUEST request_14 1714136250893 1714136250976 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136250893 1714136250988 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136250959 1714136251041 OK +REQUEST request_15 1714136250998 1714136251047 OK +REQUEST request_15 1714136251030 1714136251070 OK +REQUEST request_16 1714136251047 1714136251095 OK +REQUEST request_16 1714136251070 1714136251111 OK +REQUEST request_17 1714136251047 1714136251130 OK +USER PlayGameRecord END 1714136251131 +REQUEST request_17 1714136251070 1714136251167 OK +USER PlayGameRecord END 1714136251167 +REQUEST request_12 1714136251126 1714136251223 OK +REQUEST request_13 1714136251223 1714136251263 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136251187 1714136251295 OK +REQUEST request_14 1714136251223 1714136251320 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136251296 1714136251336 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136251257 1714136251340 OK +REQUEST request_13 1714136251295 1714136251393 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136251436 1714136251477 OK +REQUEST request_12 1714136251405 1714136251514 OK +REQUEST request_16 1714136251477 1714136251518 OK +REQUEST request_14 1714136251514 1714136251562 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136251477 1714136251574 OK +USER PlayGameRecord END 1714136251574 +REQUEST request_12 1714136251498 1714136251593 OK +REQUEST request_13 1714136251514 1714136251614 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136251514 1714136251624 OK +REQUEST request_14 1714136251594 1714136251641 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136251562 1714136251671 OK +REQUEST request_13 1714136251594 1714136251676 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136251610 1714136251694 OK +REQUEST request_13 1714136251625 1714136251708 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136251625 1714136251708 KO status.find.in([200, 209], 304), found 400 +REQUEST request_12 1714136251610 1714136251708 OK +REQUEST request_14 1714136251671 1714136251711 KO status.find.in([200, 209], 304), found 400 +REQUEST request_11 1714136251661 1714136251743 OK +REQUEST request_11 1714136251674 1714136251755 OK +REQUEST request_14 1714136251708 1714136251755 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136251671 1714136251767 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136251708 1714136251802 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136251864 1714136251905 OK +REQUEST request_16 1714136251905 1714136251946 OK +REQUEST request_15 1714136251911 1714136251952 OK +REQUEST request_17 1714136251905 1714136251987 OK +USER PlayGameRecord END 1714136251987 +REQUEST request_16 1714136251952 1714136251993 OK +REQUEST request_17 1714136251952 1714136252048 OK +USER PlayGameRecord END 1714136252048 +REQUEST request_15 1714136252052 1714136252100 OK +REQUEST request_16 1714136252100 1714136252148 OK +REQUEST request_12 1714136252052 1714136252152 OK +REQUEST request_15 1714136252132 1714136252173 OK +REQUEST request_13 1714136252152 1714136252194 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136252100 1714136252196 OK +USER PlayGameRecord END 1714136252196 +REQUEST request_16 1714136252174 1714136252215 OK +REQUEST request_14 1714136252152 1714136252236 KO status.find.in([200, 209], 304), found 400 +REQUEST request_17 1714136252174 1714136252257 OK +USER PlayGameRecord END 1714136252257 +REQUEST request_15 1714136252255 1714136252303 OK +REQUEST request_11 1714136252240 1714136252323 OK +REQUEST request_16 1714136252303 1714136252351 OK +REQUEST request_17 1714136252303 1714136252387 OK +USER PlayGameRecord END 1714136252388 +REQUEST request_12 1714136252348 1714136252456 OK +REQUEST request_13 1714136252456 1714136252540 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136252456 1714136252551 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136252617 1714136252659 OK +REQUEST request_16 1714136252659 1714136252701 OK +REQUEST request_17 1714136252659 1714136252743 OK +USER PlayGameRecord END 1714136252743 +REQUEST request_15 1714136252742 1714136252790 OK +REQUEST request_12 1714136252710 1714136252819 OK +REQUEST request_16 1714136252790 1714136252838 OK +REQUEST request_12 1714136252757 1714136252853 OK +REQUEST request_12 1714136252757 1714136252867 OK +REQUEST request_17 1714136252790 1714136252887 OK +USER PlayGameRecord END 1714136252888 +REQUEST request_13 1714136252819 1714136252901 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136252868 1714136252908 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136252819 1714136252914 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136252854 1714136252935 KO status.find.in([200, 209], 304), found 400 +REQUEST request_13 1714136252854 1714136252936 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136252868 1714136252964 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136253120 1714136253162 OK +REQUEST request_16 1714136253162 1714136253203 OK +REQUEST request_17 1714136253162 1714136253246 OK +USER PlayGameRecord END 1714136253246 +REQUEST request_12 1714136253325 1714136253437 OK +REQUEST request_13 1714136253437 1714136253477 KO status.find.in([200, 209], 304), found 400 +REQUEST request_14 1714136253437 1714136253519 KO status.find.in([200, 209], 304), found 400 +REQUEST request_15 1714136253720 1714136253769 OK +REQUEST request_16 1714136253769 1714136253817 OK +REQUEST request_17 1714136253769 1714136253852 OK +USER PlayGameRecord END 1714136253852 +REQUEST request_15 1714136253926 1714136253967 OK +REQUEST request_15 1714136253958 1714136254006 OK +REQUEST request_16 1714136253967 1714136254008 OK +REQUEST request_15 1714136254005 1714136254046 OK +REQUEST request_16 1714136254006 1714136254053 OK +REQUEST request_17 1714136253967 1714136254065 OK +USER PlayGameRecord END 1714136254066 +REQUEST request_16 1714136254046 1714136254086 OK +REQUEST request_17 1714136254006 1714136254089 OK +USER PlayGameRecord END 1714136254089 +REQUEST request_17 1714136254046 1714136254128 OK +USER PlayGameRecord END 1714136254129 +REQUEST request_15 1714136254569 1714136254617 OK +REQUEST request_16 1714136254618 1714136254665 OK +REQUEST request_17 1714136254618 1714136254714 OK +USER PlayGameRecord END 1714136254714 +REQUEST request_15 1714136254841 1714136254882 OK +REQUEST request_15 1714136254841 1714136254889 OK +REQUEST request_16 1714136254883 1714136254925 OK +REQUEST request_16 1714136254890 1714136254938 OK +REQUEST request_17 1714136254883 1714136254967 OK +USER PlayGameRecord END 1714136254967 +REQUEST request_17 1714136254890 1714136254986 OK +USER PlayGameRecord END 1714136254986 +REQUEST request_15 1714136254951 1714136254993 OK +REQUEST request_16 1714136254993 1714136255034 OK +REQUEST request_15 1714136254999 1714136255047 OK +REQUEST request_17 1714136254993 1714136255076 OK +USER PlayGameRecord END 1714136255076 +REQUEST request_16 1714136255047 1714136255095 OK +REQUEST request_17 1714136255047 1714136255144 OK +USER PlayGameRecord END 1714136255145 +REQUEST request_15 1714136255326 1714136255368 OK +REQUEST request_16 1714136255368 1714136255410 OK +REQUEST request_15 1714136255403 1714136255451 OK +REQUEST request_17 1714136255368 1714136255465 OK +USER PlayGameRecord END 1714136255465 +REQUEST request_16 1714136255451 1714136255498 OK +REQUEST request_17 1714136255451 1714136255547 OK +USER PlayGameRecord END 1714136255548 +REQUEST request_15 1714136255623 1714136255671 OK +REQUEST request_16 1714136255671 1714136255719 OK +REQUEST request_15 1714136255684 1714136255725 OK +REQUEST request_17 1714136255671 1714136255754 OK +USER PlayGameRecord END 1714136255755 +REQUEST request_15 1714136255716 1714136255764 OK +REQUEST request_16 1714136255725 1714136255766 OK +REQUEST request_16 1714136255764 1714136255811 OK +REQUEST request_17 1714136255725 1714136255821 OK +USER PlayGameRecord END 1714136255821 +REQUEST request_15 1714136255777 1714136255825 OK +REQUEST request_17 1714136255764 1714136255846 OK +USER PlayGameRecord END 1714136255846 +REQUEST request_15 1714136255809 1714136255850 OK +REQUEST request_16 1714136255825 1714136255872 OK +REQUEST request_16 1714136255850 1714136255892 OK +REQUEST request_17 1714136255825 1714136255907 OK +USER PlayGameRecord END 1714136255907 +REQUEST request_17 1714136255850 1714136255933 OK +USER PlayGameRecord END 1714136255933 +REQUEST request_15 1714136256243 1714136256285 OK +REQUEST request_16 1714136256285 1714136256327 OK +REQUEST request_17 1714136256285 1714136256383 OK +USER PlayGameRecord END 1714136256383 +REQUEST request_15 1714136256558 1714136256607 OK +REQUEST request_16 1714136256607 1714136256654 OK +REQUEST request_17 1714136256607 1714136256691 OK +USER PlayGameRecord END 1714136256691 +REQUEST request_15 1714136256917 1714136256963 OK +REQUEST request_15 1714136256948 1714136256990 OK +REQUEST request_16 1714136256963 1714136257011 OK +REQUEST request_15 1714136256980 1714136257028 OK +REQUEST request_16 1714136256990 1714136257032 OK +REQUEST request_17 1714136256963 1714136257059 OK +USER PlayGameRecord END 1714136257059 +REQUEST request_17 1714136256990 1714136257073 OK +USER PlayGameRecord END 1714136257073 +REQUEST request_16 1714136257028 1714136257076 OK +REQUEST request_17 1714136257028 1714136257110 OK +USER PlayGameRecord END 1714136257111 +REQUEST request_15 1714136257524 1714136257572 OK +REQUEST request_16 1714136257572 1714136257620 OK +REQUEST request_17 1714136257572 1714136257669 OK +USER PlayGameRecord END 1714136257669 diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/bootstrap.min.css b/testsrc/gatling/results/playgamerecord-20240426125611412/style/bootstrap.min.css new file mode 100644 index 00000000..76a2b9ba --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/bootstrap.min.css @@ -0,0 +1,27 @@ +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;} +.tooltip.right{margin-left:3px;} +.tooltip.bottom{margin-top:3px;} +.tooltip.left{margin-left:-3px;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:750px;padding:1px;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-content{padding:9px 14px;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} +.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow:after{content:"";z-index:-1;} +.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#ffffff;}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0, 0, 0, 0.25);bottom:-1px;left:-11px;} +.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#ffffff;}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0, 0, 0, 0.25);bottom:-11px;left:-1px;} +.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#ffffff;}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0, 0, 0, 0.25);top:-1px;left:-11px;} +.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#ffffff;}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0, 0, 0, 0.25);bottom:-11px;right:-1px;} diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/close.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/close.svg new file mode 100644 index 00000000..c161bb90 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/executions.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/executions.svg new file mode 100644 index 00000000..84068cd4 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/executions.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/expand.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/expand.svg new file mode 100644 index 00000000..f6e75e0d --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/expand.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/favicon.ico b/testsrc/gatling/results/playgamerecord-20240426125611412/style/favicon.ico new file mode 100644 index 00000000..d2d20e11 Binary files /dev/null and b/testsrc/gatling/results/playgamerecord-20240426125611412/style/favicon.ico differ diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/fullscreen.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/fullscreen.svg new file mode 100644 index 00000000..91f3b279 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/fullscreen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-dark.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-dark.svg new file mode 100644 index 00000000..7eb4d51c --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-enterprise-dark.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-enterprise-dark.svg new file mode 100644 index 00000000..1127d75e --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-enterprise-dark.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-enterprise-light.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-enterprise-light.svg new file mode 100644 index 00000000..4a6e1dec --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-enterprise-light.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-light.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-light.svg new file mode 100644 index 00000000..f519eef7 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/logo-light.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort-down.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort-down.svg new file mode 100644 index 00000000..db58a09d --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort-up.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort-up.svg new file mode 100644 index 00000000..bba9d846 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort.svg b/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort.svg new file mode 100644 index 00000000..43b658e2 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/playgamerecord-20240426125611412/style/style.css b/testsrc/gatling/results/playgamerecord-20240426125611412/style/style.css new file mode 100644 index 00000000..edc96263 --- /dev/null +++ b/testsrc/gatling/results/playgamerecord-20240426125611412/style/style.css @@ -0,0 +1,1199 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +:root { + --gatling-background-color: #f2f2f2; + --gatling-background-light-color: #f7f7f7; + --gatling-border-color: #dddddd; + --gatling-blue-color: #4a9fe5; + --gatling-dark-blue-color: #24275e; + --gatling-danger-color: #f15b4f; + --gatling-danger-light-color: #f5d1ce; + --gatling-enterprise-color: #6161d6; + --gatling-enterprise-light-color: #c4c4ed; + --gatling-gray-medium-color: #bbb; + --gatling-hover-color: #e6e6e6; + --gatling-hover-background-color: #e6e6e6; + --gatling-light-color: #ffffff; + --gatling-orange-color: #f78557; + --gatling-success-color: #68b65c; + --gatling-text-color: #1f2024; + --gatling-total-color: #ffa900; + + --gatling-border-radius: 2px; + --gatling-spacing-small: 5px; + --gatling-spacing: 10px; + --gatling-spacing-layout: 20px; + + --gatling-font-weight-normal: 400; + --gatling-font-weight-medium: 500; + --gatling-font-weight-bold: 700; + --gatling-font-size-secondary: 12px; + --gatling-font-size-default: 14px; + --gatling-font-size-heading: 16px; + --gatling-font-size-section: 22px; + --gatling-font-size-header: 34px; + + --gatling-media-desktop-large: 1920px; +} + +html[data-theme="dark"] { + --gatling-background-color: #1e2225; + --gatling-background-light-color: #272c30; + --gatling-border-color: #555555; + --gatling-blue-color: #1188ff; + --gatling-dark-blue-color: #17223B; + --gatling-danger-color: #d9534f; + --gatling-danger-light-color: #c9302c; + --gatling-enterprise-color: #b2a2ea; + --gatling-enterprise-light-color: #343479; + --gatling-gray-medium-color: #999; + --gatling-hover-color: #30363b; + --gatling-hover-background-color: #2c2c2c; + --gatling-light-color: #394046; + --gatling-orange-color: #fe8e5f; + --gatling-success-color: #5cb85c; + --gatling-text-color: #dee2e6; + --gatling-total-color: #ffa900; +} + +* { + min-height: 0; + min-width: 0; +} + +html, +body { + height: 100%; + width: 100%; +} + +body { + color: var(--gatling-text-color); + font-family: arial; + font-size: var(--gatling-font-size-secondary); + margin: 0; +} + +.app-container { + display: flex; + flex-direction: column; + + height: 100%; + width: 100%; +} + +.head { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + + flex: 1; + + background-color: var(--gatling-light-color); + border-bottom: 1px solid var(--gatling-border-color); + min-height: 69px; + padding: 0 var(--gatling-spacing-layout); +} + +.head .spacer { + flex-grow: 1; +} + +.head .theme-toggle { + margin-left: 20px; + background: none; + color: var(--gatling-text-color); + border: none; +} + +.head .theme-toggle:hover { + color: var(--gatling-gray-medium-color); + cursor: pointer; +} + +body .toggle-dark, body .toggle-light { + display: block; +} + +[data-theme="dark"] body .toggle-dark { + display: none; +} + +[data-theme="light"] body .toggle-light { + display: none; +} + +[data-theme="dark"] body .logo-enterprise-light { + display: none; +} + +[data-theme="light"] body .logo-enterprise-dark { + display: none; +} + +.gatling-open-source { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + gap: var(--gatling-spacing-layout); +} + +.gatling-documentation { + display: flex; + align-items: center; + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-orange-color); + border: 1px solid var(--gatling-orange-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 23px; + + font-size: var(--gatling-font-size-default); +} + +.gatling-documentation:hover { + background-color: var(--gatling-orange-color); + color: var(--gatling-light-color); +} + +.gatling-logo { + height: 35px; +} + +.gatling-logo img { + height: 100%; +} + +[data-theme="dark"] .gatling-logo-light { + display: none; +} + +[data-theme="light"] .gatling-logo-dark { + display: none; +} + +.container { + display: flex; + align-items: stretch; + height: 100%; +} + +.nav { + min-width: 210px; + width: 210px; + max-height: calc(100vh - var(--gatling-spacing-layout) - var(--gatling-spacing-layout)); + background: var(--gatling-light-color); + border-right: 1px solid var(--gatling-border-color); + overflow-y: auto; +} + +@media print { + .nav { + display: none; + } +} + +@media screen and (min-width: 1920px) { + .nav { + min-width: 310px; + width: 310px; + } +} + +.nav ul { + display: flex; + flex-direction: column; + + padding: 0; + margin: 0; +} + +.nav li { + display: flex; + list-style: none; + width: 100%; + padding: 0; +} + +.nav .item { + display: inline-flex; + align-items: center; + margin: 0 auto; + white-space: nowrap; + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + margin: 0; + width: 100%; +} + +.nav .item .nav-label { + padding: var(--gatling-spacing) var(--gatling-spacing-layout); +} + +.nav .item:hover { + background-color: var(--gatling-hover-color); +} + +.nav .on .item { + background-color: var(--gatling-orange-color); +} + +.nav .on .item span { + color: var(--gatling-light-color); +} + +.cadre { + width: 100%; + height: 100%; + overflow-y: scroll; + scroll-behavior: smooth; +} + +@media print { + .cadre { + overflow-y: unset; + } +} + +.frise { + position: absolute; + top: 60px; + z-index: -1; + + background-color: var(--gatling-background-color); + height: 530px; +} + +.global { + height: 650px +} + +a { + text-decoration: none; +} + +a:hover { + color: var(--gatling-hover-color); +} + +img { + border: 0; +} + +h1 { + color: var(--gatling-dark-blue-color); + font-size: var(--gatling-font-size-section); + font-weight: var(--gatling-font-weight-medium); + text-align: center; + margin: 0; +} + +h1 span { + color: var(--gatling-hover-color); +} + +.enterprise { + display: flex; + align-items: center; + justify-content: center; + gap: var(--gatling-spacing-small); + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-enterprise-color); + color: var(--gatling-enterprise-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 25px; +} + +.enterprise:hover { + background-color: var(--gatling-hover-color); + color: var(--gatling-enterprise-color); +} + +.enterprise img { + display: block; + width: 160px; +} + +.simulation-card { + display: flex; + flex-direction: column; + align-self: stretch; + flex: 1; + gap: var(--gatling-spacing-layout); + max-height: 375px; +} + +#simulation-information { + flex: 1; +} + +.simulation-version-information { + display: flex; + flex-direction: column; + + gap: var(--gatling-spacing); + font-size: var(--gatling-font-size-default); + + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing); +} + +.simulation-information-container { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing); +} + +.withTooltip .popover-title { + display: none; +} + +.popover-content p { + margin: 0; +} + +html[data-theme="dark"] div.popover { + background-color: var(--gatling-light-color); + border-bottom: none; +} + +html[data-theme="dark"] div.popover.right .arrow { + border-right-color: var(--gatling-light-color); +} + +.ellipsed-name { + display: block; + + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.simulation-information-item { + display: flex; + flex-direction: row; + align-items: flex-start; + gap: var(--gatling-spacing-small); +} + +.simulation-information-item.description { + flex-direction: column; +} + +.simulation-information-label { + display: inline-block; + font-weight: var(--gatling-font-weight-bold); + min-width: fit-content; +} + +.simulation-information-title { + display: block; + text-align: center; + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + width: 100%; +} + +.simulation-tooltip span { + display: inline-block; + word-wrap: break-word; + overflow: hidden; + text-overflow: ellipsis; +} + +.content { + display: flex; + flex-direction: column; +} + +.content-in { + width: 100%; + height: 100%; + + overflow-x: scroll; +} + +html[data-theme="dark"] .content-in { + background-color: var(--gatling-background-color); +} + +@media print { + .content-in { + overflow-x: unset; + } +} + +.container-article { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + min-width: 1050px; + width: 1050px; + margin: 0 auto; + padding: var(--gatling-spacing-layout); + box-sizing: border-box; +} + +@media screen and (min-width: 1920px) { + .container-article { + min-width: 1350px; + width: 1350px; + } + + #responses * .highcharts-tracker { + transform: translate(400px, 70px); + } +} + +.content-header { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + background-color: var(--gatling-background-light-color); + border-bottom: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-layout) var(--gatling-spacing-layout) 0; +} + +.onglet { + font-size: var(--gatling-font-size-header); + font-weight: var(--gatling-font-weight-medium); + text-align: center; +} + +.sous-menu { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; +} + +.sous-menu-spacer { + display: flex; + align-items: center; + flex-direction: row; +} + +.sous-menu .item { + margin-bottom: -1px; +} + +.sous-menu a { + display: block; + + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-normal); + padding: var(--gatling-spacing-small) var(--gatling-spacing) var(--gatling-spacing); + border-bottom: 2px solid transparent; + color: var(--gatling-text-color); + text-align: center; + width: 100px; +} + +.sous-menu a:hover { + border-bottom-color: var(--gatling-text-color); +} + +.sous-menu .ouvert a { + border-bottom-color: var(--gatling-orange-color); + font-weight: var(--gatling-font-weight-bold); +} + +.article { + position: relative; + + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); +} + +.infos { + width: 340px; + color: var(--gatling-light-color); +} + +.infos-title { + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-bottom: 0; + border-top-left-radius: var(--gatling-border-radius); + border-top-right-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.info { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + height: 100%; + margin: 0; +} + +.info table { + margin: auto; + padding-right: 15px; +} + +.alert-danger { + background-color: var(--gatling-danger-light-color); + border: 1px solid var(--gatling-danger-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-layout); + font-weight: var(--gatling-font-weight-bold); +} + +.infos h2 { + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + height: 19px; + margin: 0; + padding: 3.5px 0 0 35px; +} + +.infos .first::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.infos .second::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .infos .first::before, +html[data-theme="dark"] .infos .second::before { + filter: invert(0.9); +} + +.infos th { + text-align: center; +} + +.infos td { + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing-small); + -webkit-border-radius: var(--gatling-border-radius); + -moz-border-radius: var(--gatling-border-radius); + -ms-border-radius: var(--gatling-border-radius); + -o-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + text-align: right; + width: 50px; +} + +.infos .title { + width: 120px; +} + +.infos .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); +} + +.infos .total { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); +} + +.infos .ko { + background-color: var(--gatling-danger-color); + -webkit-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); +} + +.schema-container { + display: flex; + align-items: center; + justify-content: space-between; + gap: var(--gatling-spacing-layout); +} + +.schema { + background: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); +} + +.ranges { + height: 375px; + width: 500px; +} + +.ranges-large { + height: 375px; + width: 530px; +} + +.geant { + height: 362px; +} + +.extensible-geant { + width: 100%; +} + +.polar { + height: 375px; + width: 230px; +} + +.chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .highcharts-background { + fill: var(--gatling-background-light-color); +} + +html[data-theme="dark"] .highcharts-button-normal rect { + fill: var(--gatling-background-color) !important; +} + +html[data-theme="dark"] .highcharts-button-disabled rect { + fill: var(--gatling-background-light-color) !important; +} + +html[data-theme="dark"] .highcharts-button-pressed rect { + fill: var(--gatling-orange-color) !important; +} + +html[data-theme="dark"] .highcharts-axis text, +html[data-theme="dark"] .highcharts-axis-labels text, +html[data-theme="dark"] .highcharts-button text, +html[data-theme="dark"] .highcharts-legend-item text, +html[data-theme="dark"] .highcharts-range-selector-buttons text { + fill: var(--gatling-text-color) !important; +} + +.statistics { + display: flex; + flex-direction: column; + + background-color: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border-collapse: collapse; + color: var(--gatling-text-color); + max-height: 100%; +} + +.statistics .title { + display: flex; + text-align: center; + justify-content: space-between; + + min-height: 49.5px; + box-sizing: border-box; + + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing); +} + +.title_base { + display: flex; + align-items: center; + text-align: left; + user-select: none; +} + +.title_base_stats { + color: var(--gatling-text-color); + margin-right: 20px; +} + +.toggle-table { + position: relative; + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: 25px; + width: 40px; + height: 20px; + margin: 0 var(--gatling-spacing-small); +} + +.toggle-table::before { + position: absolute; + top: calc(50% - 9px); + left: 1px; + content: ""; + width: 50%; + height: 18px; + border-radius: 50%; + background-color: var(--gatling-text-color); +} + +.toggle-table.off::before { + left: unset; + right: 1px; +} + +.title_expanded { + cursor: pointer; + color: var(--gatling-text-color); +} + +.expand-table, +.collapse-table { + font-size: var(--gatling-font-size-secondary); + font-weight: var(--gatling-font-weight-normal); +} + +.title_expanded span.expand-table { + color: var(--gatling-gray-medium-color); +} + +.title_collapsed { + cursor: pointer; + color: var(--gatling-text-color); +} + +.title_collapsed span.collapse-table { + color: var(--gatling-gray-medium-color); +} + +#container_statistics_head { + position: sticky; + top: -1px; + + background: var(--gatling-background-light-color); + margin-top: -1px; + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); +} + +#container_statistics_body { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + margin-top: -1px; + padding: 0px var(--gatling-spacing-small) var(--gatling-spacing-small) var(--gatling-spacing-small); +} + +#container_errors { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); + margin-top: -1px; +} + +#container_assertions { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small); + margin-top: -1px; +} + +.statistics-in { + border-spacing: var(--gatling-spacing-small); + border-collapse: collapse; + margin: 0; +} + +.statistics .scrollable { + max-height: 100%; + overflow-y: auto; +} + +#statistics_table_container .statistics .scrollable { + max-height: 785px; +} + +.statistics-in a { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .header { + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small); +} + +.sortable { + cursor: pointer; +} + +.sortable span::after { + content: ''; + display: inline-block; + margin-left: 5px; + vertical-align: middle; + width: 12px; + height: 12px; + background: url('sort.svg'); + background-size: contain; +} + +.sorted-up span::after { + background: url('sort-up.svg'); + background-size: contain; +} + +.sorted-down span::after { + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .sortable span::after { + filter: invert(0.9); +} + +.executions::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.response-time::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .executions::before, +html[data-theme="dark"] .response-time::before { + filter: invert(0.9); +} + +.statistics-in td { + background-color: var(--gatling-light-color); + border: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-small); + min-width: 50px; +} + +.statistics-in .col-1 { + width: 175px; + max-width: 175px; +} +@media screen and (min-width: 1200px) { + .statistics-in .col-1 { + width: 50%; + } +} + +.expandable-container { + display: flex; + flex-direction: row; + box-sizing: border-box; + max-width: 100%; +} + +.statistics-in .value { + text-align: right; + width: 50px; +} + +.statistics-in .total { + color: var(--gatling-text-color); +} + +.statistics-in .col-2 { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .error-col-1 { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); +} + +.statistics-in .error-col-2 { + text-align: center; +} + +.statistics-in .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .ko { + background-color: var(--gatling-danger-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .expand-button { + padding-left: var(--gatling-spacing); + cursor: pointer; +} + +.expand-button.hidden { + background: none; + cursor: default; +} + +.statistics-button { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-small) var(--gatling-spacing); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); +} + +#statistics_full_screen{ + padding: var(--gatling-spacing-small); +} + +#statistics_full_screen > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] #statistics_full_screen > img { + filter: invert(0.9); +} + +#statistics_full_screen:disabled { + display: none; +} + +.statistics-button:hover:not(:disabled) { + cursor: pointer; + background-color: var(--gatling-hover-color); +} + +.statistics-in .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('expand.svg'); + background-size: contain; +} + +.statistics-in .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .statistics-in .expand-button.collapse, +html[data-theme="dark"] .statistics-in .expand-button.expand { + filter: invert(0.9); +} + +.nav .expand-button { + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.nav .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('expand.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +.nav .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('sort-down.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +html[data-theme="dark"] .nav .expand-button.expand, +html[data-theme="dark"] .nav .expand-button.collapse { + filter: invert(0.9); +} + +.right { + display: flex; + align-items: center; + gap: var(--gatling-spacing); + float: right; + font-size: var(--gatling-font-size-default); +} + +.withTooltip { + outline: none; +} + +.withTooltip:hover { + text-decoration: none; +} + +.withTooltip .tooltipContent { + position: absolute; + z-index: 10; + display: none; + + background: var(--gatling-orange-color); + -webkit-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + -moz-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); + margin-top: -5px; + padding: var(--gatling-spacing-small); +} + +.withTooltip:hover .tooltipContent { + display: inline; +} + +.button-modal { + padding: var(--gatling-spacing-small); +} + +.button-modal > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] .button-modal > img { + filter: invert(0.9); +} + +.statistics-table-modal { + background-color: var(--gatling-background-color); + height: calc(100% - 60px); + width: calc(100% - 60px); + border-radius: var(--gatling-border-radius); +} + +.statistics-table-modal::backdrop { + position: fixed; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + + background-color: rgba(100, 100, 100, 0.9); +} + +.statistics-table-modal-container { + display: flex; + flex-direction: column; + + width: 100%; + height: calc(100% - 35px); + overflow-x: auto; +} + +.button-modal { + cursor: pointer; + + height: 25px; + width: 25px; + + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); +} + +.button-modal:hover { + background-color: var(--gatling-background-color); +} + +.statistics-table-modal-header { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-bottom: var(--gatling-spacing); +} + +.statistics-table-modal-content { + flex: 1; + overflow-y: auto; + min-width: 1050px; +} + +.statistics-table-modal-footer { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-top: var(--gatling-spacing); +} diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/index.html b/testsrc/gatling/results/rankingrecord-20240426122555693/index.html new file mode 100644 index 00000000..b7713c32 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/index.html @@ -0,0 +1,1139 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - Global Information + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    +
    +
    + Gatling Version + + Version: + 3.10.5 + + + Released: + 2024-03-22 + +
    +
    + Run Information +
    + + Date: + 2024-04-26 12:25:56 GMT + + + Duration: + 1m 15s + + + Description: + + + +
    +
    +
    +
    + +
    + +
    + +
    +
    +
    +
    +
    + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/all_sessions.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/all_sessions.js new file mode 100644 index 00000000..85c341bb --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/all_sessions.js @@ -0,0 +1,11 @@ +allUsersData = { + +color: '#FFA900', +name: 'Active Users', +data: [ + [1714134356000,4],[1714134357000,8],[1714134358000,15],[1714134359000,22],[1714134360000,26],[1714134361000,29],[1714134362000,33],[1714134363000,41],[1714134364000,42],[1714134365000,46],[1714134366000,54],[1714134367000,61],[1714134368000,64],[1714134369000,70],[1714134370000,73],[1714134371000,81],[1714134372000,88],[1714134373000,88],[1714134374000,87],[1714134375000,84],[1714134376000,80],[1714134377000,80],[1714134378000,82],[1714134379000,79],[1714134380000,77],[1714134381000,76],[1714134382000,79],[1714134383000,80],[1714134384000,79],[1714134385000,82],[1714134386000,81],[1714134387000,83],[1714134388000,78],[1714134389000,77],[1714134390000,76],[1714134391000,74],[1714134392000,74],[1714134393000,74],[1714134394000,75],[1714134395000,76],[1714134396000,73],[1714134397000,73],[1714134398000,75],[1714134399000,73],[1714134400000,75],[1714134401000,69],[1714134402000,71],[1714134403000,72],[1714134404000,71],[1714134405000,71],[1714134406000,71],[1714134407000,71],[1714134408000,72],[1714134409000,73],[1714134410000,81],[1714134411000,82],[1714134412000,84],[1714134413000,89],[1714134414000,92],[1714134415000,92],[1714134416000,88],[1714134417000,81],[1714134418000,78],[1714134419000,68],[1714134420000,67],[1714134421000,61],[1714134422000,56],[1714134423000,52],[1714134424000,50],[1714134425000,45],[1714134426000,36],[1714134427000,29],[1714134428000,24],[1714134429000,17],[1714134430000,10],[1714134431000,5] +], +tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 } + , zIndex: 20 + , yAxis: 1 +}; \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/assertions.xml b/testsrc/gatling/results/rankingrecord-20240426122555693/js/assertions.xml new file mode 100644 index 00000000..e1a93b67 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/assertions.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/bootstrap.min.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/bootstrap.min.js new file mode 100644 index 00000000..ea41042e --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/** +* Bootstrap.js by @fat & @mdo +* plugins: bootstrap-tooltip.js, bootstrap-popover.js +* Copyright 2012 Twitter, Inc. +* http://www.apache.org/licenses/LICENSE-2.0.txt +*/ +!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}},a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
    ',trigger:"hover",title:"",delay:0,html:!1}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content > *")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}}),a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

    '})}(window.jQuery) \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/ellipsis.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/ellipsis.js new file mode 100644 index 00000000..781d0dec --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/ellipsis.js @@ -0,0 +1,26 @@ +function parentId(name) { + return "parent-" + name; +} + +function isEllipsed(name) { + const child = document.getElementById(name); + const parent = document.getElementById(parentId(name)); + const emptyData = parent.getAttribute("data-content") === ""; + const hasOverflow = child.clientWidth < child.scrollWidth; + + if (hasOverflow) { + if (emptyData) { + parent.setAttribute("data-content", name); + } + } else { + if (!emptyData) { + parent.setAttribute("data-content", ""); + } + } +} + +function ellipsedLabel ({ name, parentClass = "", childClass = "" }) { + const child = "" + name + ""; + + return "" + child + ""; +} diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/gatling.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/gatling.js new file mode 100644 index 00000000..5b9e992f --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/gatling.js @@ -0,0 +1,137 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +(function ($) { + $.fn.expandable = function () { + var scope = this; + + this.find('.expand-button:not([class*=hidden])').addClass('collapse').on('click', function () { + var $this = $(this); + + if ($this.hasClass('expand')) + $this.expand(scope); + else + $this.collapse(scope); + }); + + this.find('.expand-all-button').on('click', function () { + $(this).expandAll(scope); + }); + + this.find('.collapse-all-button').on('click', function () { + $(this).collapseAll(scope); + }); + + this.collapseAll(this); + + return this; + }; + + $.fn.expand = function (scope, recursive) { + return this.each(function () { + var $this = $(this); + + if (recursive) { + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + scope.find('*[data-parent=' + $this.attr('id') + ']').find('.expand-button.expand').expand(scope, true); + } + + if ($this.hasClass('expand')) { + $('*[data-parent=' + $this.attr('id') + ']').toggle(true); + $this.toggleClass('expand').toggleClass('collapse'); + } + }); + }; + + $.fn.expandAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.expand').expand(scope, true); + $('*[data-parent=ROOT]').find('.expand-button.collapse').expand(scope, true); + }; + + $.fn.collapse = function (scope) { + return this.each(function () { + var $this = $(this); + + scope.find('*[data-parent=' + $this.attr('id') + '] .expand-button.collapse').collapse(scope); + scope.find('*[data-parent=' + $this.attr('id') + ']').toggle(false); + $this.toggleClass('expand').toggleClass('collapse'); + }); + }; + + $.fn.collapseAll = function (scope) { + $('*[data-parent=ROOT]').find('.expand-button.collapse').collapse(scope); + }; + + $.fn.sortable = function (target) { + var table = this; + + this.find('thead .sortable').on('click', function () { + var $this = $(this); + + if ($this.hasClass('sorted-down')) { + var desc = false; + var style = 'sorted-up'; + } + else { + var desc = true; + var style = 'sorted-down'; + } + + $(target).sortTable($this.attr('id'), desc); + + table.find('thead .sortable').removeClass('sorted-up sorted-down'); + $this.addClass(style); + + return false; + }); + + return this; + }; + + $.fn.sortTable = function (col, desc) { + function getValue(line) { + var cell = $(line).find('.' + col); + + if (cell.hasClass('value')) + var value = cell.text(); + else + var value = cell.find('.value').text(); + + return parseFloat(value); + } + + function sortLines (lines, group) { + var notErrorTable = col.search("error") == -1; + var linesToSort = notErrorTable ? lines.filter('*[data-parent=' + group + ']') : lines; + + var sortedLines = linesToSort.sort(function (a, b) { + return desc ? getValue(b) - getValue(a): getValue(a) - getValue(b); + }).toArray(); + + var result = []; + $.each(sortedLines, function (i, line) { + result.push(line); + if (notErrorTable) + result = result.concat(sortLines(lines, $(line).attr('id'))); + }); + + return result; + } + + this.find('tbody').append(sortLines(this.find('tbody tr').detach(), 'ROOT')); + + return this; + }; +})(jQuery); diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/global_stats.json b/testsrc/gatling/results/rankingrecord-20240426122555693/js/global_stats.json new file mode 100644 index 00000000..2938418b --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/global_stats.json @@ -0,0 +1,77 @@ +{ + "name": "All Requests", + "numberOfRequests": { + "total": 4074, + "ok": 3492, + "ko": 582 + }, + "minResponseTime": { + "total": 40, + "ok": 40, + "ko": 80 + }, + "maxResponseTime": { + "total": 306, + "ok": 306, + "ko": 103 + }, + "meanResponseTime": { + "total": 105, + "ok": 107, + "ko": 90 + }, + "standardDeviation": { + "total": 55, + "ok": 59, + "ko": 7 + }, + "percentiles1": { + "total": 95, + "ok": 96, + "ko": 85 + }, + "percentiles2": { + "total": 99, + "ok": 103, + "ko": 96 + }, + "percentiles3": { + "total": 250, + "ok": 252, + "ko": 98 + }, + "percentiles4": { + "total": 291, + "ok": 291, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3492, + "percentage": 86 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 582, + "percentage": 14 +}, + "meanNumberOfRequestsPerSecond": { + "total": 53.60526315789474, + "ok": 45.94736842105263, + "ko": 7.657894736842105 + } +} \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/highcharts-more.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/highcharts-more.js new file mode 100644 index 00000000..2d788932 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/highcharts-more.js @@ -0,0 +1,60 @@ +/* + Highcharts JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(x){"object"===typeof module&&module.exports?module.exports=x:x(Highcharts)})(function(x){(function(b){function r(b,a,d){this.init(b,a,d)}var t=b.each,w=b.extend,m=b.merge,q=b.splat;w(r.prototype,{init:function(b,a,d){var f=this,h=f.defaultOptions;f.chart=a;f.options=b=m(h,a.angular?{background:{}}:void 0,b);(b=b.background)&&t([].concat(q(b)).reverse(),function(a){var c,h=d.userOptions;c=m(f.defaultBackgroundOptions,a);a.backgroundColor&&(c.backgroundColor=a.backgroundColor);c.color=c.backgroundColor; +d.options.plotBands.unshift(c);h.plotBands=h.plotBands||[];h.plotBands!==d.options.plotBands&&h.plotBands.unshift(c)})},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{className:"highcharts-pane",shape:"circle",borderWidth:1,borderColor:"#cccccc",backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#ffffff"],[1,"#e6e6e6"]]},from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"}});b.Pane=r})(x);(function(b){var r=b.CenteredSeriesMixin, +t=b.each,w=b.extend,m=b.map,q=b.merge,e=b.noop,a=b.Pane,d=b.pick,f=b.pInt,h=b.splat,u=b.wrap,c,l,k=b.Axis.prototype;b=b.Tick.prototype;c={getOffset:e,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:e,setCategories:e,setTitle:e};l={defaultRadialGaugeOptions:{labels:{align:"center",x:0,y:null},minorGridLineWidth:0,minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2}, +defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(a){a=this.options=q(this.defaultOptions,this.defaultRadialOptions,a);a.plotBands||(a.plotBands=[])},getOffset:function(){k.getOffset.call(this);this.chart.axisOffset[this.side]=0;this.center=this.pane.center= +r.getCenter.call(this.pane)},getLinePath:function(a,g){a=this.center;var c=this.chart,f=d(g,a[2]/2-this.offset);this.isCircular||void 0!==g?g=this.chart.renderer.symbols.arc(this.left+a[0],this.top+a[1],f,f,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}):(g=this.postTranslate(this.angleRad,f),g=["M",a[0]+c.plotLeft,a[1]+c.plotTop,"L",g.x,g.y]);return g},setAxisTranslation:function(){k.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/ +(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===d(this.userMax,this.options.max)&&this.endAngleRad-this.startAngleRad===2*Math.PI)this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){k.setAxisSize.call(this);this.isRadial&&(this.center=this.pane.center=r.getCenter.call(this.pane),this.isCircular&& +(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*d(this.sector,1)/2)},getPosition:function(a,g){return this.postTranslate(this.isCircular?this.translate(a):this.angleRad,d(this.isCircular?g:this.translate(a),this.center[2]/2)-this.offset)},postTranslate:function(a,g){var d=this.chart,c=this.center;a=this.startAngleRad+a;return{x:d.plotLeft+c[0]+Math.cos(a)*g,y:d.plotTop+c[1]+Math.sin(a)*g}},getPlotBandPath:function(a,g,c){var h=this.center,p=this.startAngleRad, +k=h[2]/2,n=[d(c.outerRadius,"100%"),c.innerRadius,d(c.thickness,10)],b=Math.min(this.offset,0),l=/%$/,u,e=this.isCircular;"polygon"===this.options.gridLineInterpolation?h=this.getPlotLinePath(a).concat(this.getPlotLinePath(g,!0)):(a=Math.max(a,this.min),g=Math.min(g,this.max),e||(n[0]=this.translate(a),n[1]=this.translate(g)),n=m(n,function(a){l.test(a)&&(a=f(a,10)*k/100);return a}),"circle"!==c.shape&&e?(a=p+this.translate(a),g=p+this.translate(g)):(a=-Math.PI/2,g=1.5*Math.PI,u=!0),n[0]-=b,n[2]-= +b,h=this.chart.renderer.symbols.arc(this.left+h[0],this.top+h[1],n[0],n[0],{start:Math.min(a,g),end:Math.max(a,g),innerR:d(n[1],n[0]-n[2]),open:u}));return h},getPlotLinePath:function(a,g){var d=this,c=d.center,f=d.chart,h=d.getPosition(a),k,b,p;d.isCircular?p=["M",c[0]+f.plotLeft,c[1]+f.plotTop,"L",h.x,h.y]:"circle"===d.options.gridLineInterpolation?(a=d.translate(a))&&(p=d.getLinePath(0,a)):(t(f.xAxis,function(a){a.pane===d.pane&&(k=a)}),p=[],a=d.translate(a),c=k.tickPositions,k.autoConnect&&(c= +c.concat([c[0]])),g&&(c=[].concat(c).reverse()),t(c,function(g,d){b=k.getPosition(g,a);p.push(d?"L":"M",b.x,b.y)}));return p},getTitlePosition:function(){var a=this.center,g=this.chart,d=this.options.title;return{x:g.plotLeft+a[0]+(d.x||0),y:g.plotTop+a[1]-{high:.5,middle:.25,low:0}[d.align]*a[2]+(d.y||0)}}};u(k,"init",function(f,g,k){var b=g.angular,p=g.polar,n=k.isX,u=b&&n,e,A=g.options,m=k.pane||0;if(b){if(w(this,u?c:l),e=!n)this.defaultRadialOptions=this.defaultRadialGaugeOptions}else p&&(w(this, +l),this.defaultRadialOptions=(e=n)?this.defaultRadialXOptions:q(this.defaultYAxisOptions,this.defaultRadialYOptions));b||p?(this.isRadial=!0,g.inverted=!1,A.chart.zoomType=null):this.isRadial=!1;f.call(this,g,k);u||!b&&!p||(f=this.options,g.panes||(g.panes=[]),this.pane=g=g.panes[m]=g.panes[m]||new a(h(A.pane)[m],g,this),g=g.options,this.angleRad=(f.angle||0)*Math.PI/180,this.startAngleRad=(g.startAngle-90)*Math.PI/180,this.endAngleRad=(d(g.endAngle,g.startAngle+360)-90)*Math.PI/180,this.offset=f.offset|| +0,this.isCircular=e)});u(k,"autoLabelAlign",function(a){if(!this.isRadial)return a.apply(this,[].slice.call(arguments,1))});u(b,"getPosition",function(a,d,c,f,h){var g=this.axis;return g.getPosition?g.getPosition(c):a.call(this,d,c,f,h)});u(b,"getLabelPosition",function(a,g,c,f,h,k,b,l,u){var n=this.axis,p=k.y,e=20,y=k.align,v=(n.translate(this.pos)+n.startAngleRad+Math.PI/2)/Math.PI*180%360;n.isRadial?(a=n.getPosition(this.pos,n.center[2]/2+d(k.distance,-25)),"auto"===k.rotation?f.attr({rotation:v}): +null===p&&(p=n.chart.renderer.fontMetrics(f.styles.fontSize).b-f.getBBox().height/2),null===y&&(n.isCircular?(this.label.getBBox().width>n.len*n.tickInterval/(n.max-n.min)&&(e=0),y=v>e&&v<180-e?"left":v>180+e&&v<360-e?"right":"center"):y="center",f.attr({align:y})),a.x+=k.x,a.y+=p):a=a.call(this,g,c,f,h,k,b,l,u);return a});u(b,"getMarkPath",function(a,d,c,f,h,k,b){var g=this.axis;g.isRadial?(a=g.getPosition(this.pos,g.center[2]/2+f),d=["M",d,c,"L",a.x,a.y]):d=a.call(this,d,c,f,h,k,b);return d})})(x); +(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.Series,q=b.seriesType,e=b.seriesTypes;q("arearange","area",{lineWidth:1,marker:null,threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{series.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0},states:{hover:{halo:!1}}},{pointArrayMap:["low","high"],dataLabelCollections:["dataLabel", +"dataLabelUpper"],toYData:function(a){return[a.low,a.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(a){var d=this.chart,f=this.xAxis.postTranslate(a.rectPlotX,this.yAxis.len-a.plotHigh);a.plotHighX=f.x-d.plotLeft;a.plotHigh=f.y-d.plotTop},translate:function(){var a=this,d=a.yAxis,f=!!a.modifyValue;e.area.prototype.translate.apply(a);r(a.points,function(h){var b=h.low,c=h.high,l=h.plotY;null===c||null===b?h.isNull=!0:(h.plotLow=l,h.plotHigh=d.translate(f?a.modifyValue(c,h):c,0,1, +0,1),f&&(h.yBottom=h.plotHigh))});this.chart.polar&&r(this.points,function(d){a.highToXY(d)})},getGraphPath:function(a){var d=[],f=[],h,b=e.area.prototype.getGraphPath,c,l,k;k=this.options;var p=k.step;a=a||this.points;for(h=a.length;h--;)c=a[h],c.isNull||k.connectEnds||a[h+1]&&!a[h+1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1}),l={polarPlotY:c.polarPlotY,rectPlotX:c.rectPlotX,yBottom:c.yBottom,plotX:w(c.plotHighX,c.plotX),plotY:c.plotHigh,isNull:c.isNull},f.push(l),d.push(l),c.isNull|| +k.connectEnds||a[h-1]&&!a[h-1].isNull||f.push({plotX:c.plotX,plotY:c.plotY,doCurve:!1});a=b.call(this,a);p&&(!0===p&&(p="left"),k.step={left:"right",center:"center",right:"left"}[p]);d=b.call(this,d);f=b.call(this,f);k.step=p;k=[].concat(a,d);this.chart.polar||"M"!==f[0]||(f[0]="L");this.graphPath=k;this.areaPath=this.areaPath.concat(a,f);k.isArea=!0;k.xMap=a.xMap;this.areaPath.xMap=a.xMap;return k},drawDataLabels:function(){var a=this.data,d=a.length,f,h=[],b=m.prototype,c=this.options.dataLabels, +l=c.align,k=c.verticalAlign,p=c.inside,g,n,e=this.chart.inverted;if(c.enabled||this._hasPointLabels){for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.y=g.high,g._plotY=g.plotY,g.plotY=g.plotHigh,h[f]=g.dataLabel,g.dataLabel=g.dataLabelUpper,g.below=n,e?l||(c.align=n?"right":"left"):k||(c.verticalAlign=n?"top":"bottom"),c.x=c.xHigh,c.y=c.yHigh;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments);for(f=d;f--;)if(g=a[f])n=p?g.plotHighg.plotLow,g.dataLabelUpper= +g.dataLabel,g.dataLabel=h[f],g.y=g.low,g.plotY=g._plotY,g.below=!n,e?l||(c.align=n?"left":"right"):k||(c.verticalAlign=n?"bottom":"top"),c.x=c.xLow,c.y=c.yLow;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments)}c.align=l;c.verticalAlign=k},alignDataLabel:function(){e.column.prototype.alignDataLabel.apply(this,arguments)},setStackedPoints:t,getSymbol:t,drawPoints:t})})(x);(function(b){var r=b.seriesType;r("areasplinerange","arearange",null,{getPointSpline:b.seriesTypes.spline.prototype.getPointSpline})})(x); +(function(b){var r=b.defaultPlotOptions,t=b.each,w=b.merge,m=b.noop,q=b.pick,e=b.seriesType,a=b.seriesTypes.column.prototype;e("columnrange","arearange",w(r.column,r.arearange,{lineWidth:1,pointRange:null}),{translate:function(){var d=this,f=d.yAxis,b=d.xAxis,u=b.startAngleRad,c,l=d.chart,k=d.xAxis.isRadial,p;a.translate.apply(d);t(d.points,function(a){var g=a.shapeArgs,h=d.options.minPointLength,e,v;a.plotHigh=p=f.translate(a.high,0,1,0,1);a.plotLow=a.plotY;v=p;e=q(a.rectPlotY,a.plotY)-p;Math.abs(e)< +h?(h-=e,e+=h,v-=h/2):0>e&&(e*=-1,v-=e);k?(c=a.barX+u,a.shapeType="path",a.shapeArgs={d:d.polarArc(v+e,v,c,c+a.pointWidth)}):(g.height=e,g.y=v,a.tooltipPos=l.inverted?[f.len+f.pos-l.plotLeft-v-e/2,b.len+b.pos-l.plotTop-g.x-g.width/2,e]:[b.left-l.plotLeft+g.x+g.width/2,f.pos-l.plotTop+v+e/2,e])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:m,crispCol:a.crispCol,drawPoints:a.drawPoints,drawTracker:a.drawTracker,getColumnMetrics:a.getColumnMetrics,animate:function(){return a.animate.apply(this, +arguments)},polarArc:function(){return a.polarArc.apply(this,arguments)},pointAttribs:a.pointAttribs})})(x);(function(b){var r=b.each,t=b.isNumber,w=b.merge,m=b.pick,q=b.pInt,e=b.Series,a=b.seriesType,d=b.TrackerMixin;a("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2,borderWidth:1,borderColor:"#cccccc"},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:b.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0, +trackerGroups:["group","dataLabelsGroup"],translate:function(){var a=this.yAxis,d=this.options,b=a.center;this.generatePoints();r(this.points,function(c){var f=w(d.dial,c.dial),k=q(m(f.radius,80))*b[2]/200,h=q(m(f.baseLength,70))*k/100,g=q(m(f.rearLength,10))*k/100,n=f.baseWidth||3,u=f.topWidth||1,e=d.overshoot,v=a.startAngleRad+a.translate(c.y,null,null,null,!0);t(e)?(e=e/180*Math.PI,v=Math.max(a.startAngleRad-e,Math.min(a.endAngleRad+e,v))):!1===d.wrap&&(v=Math.max(a.startAngleRad,Math.min(a.endAngleRad, +v)));v=180*v/Math.PI;c.shapeType="path";c.shapeArgs={d:f.path||["M",-g,-n/2,"L",h,-n/2,k,-u/2,k,u/2,h,n/2,-g,n/2,"z"],translateX:b[0],translateY:b[1],rotation:v};c.plotX=b[0];c.plotY=b[1]})},drawPoints:function(){var a=this,d=a.yAxis.center,b=a.pivot,c=a.options,l=c.pivot,k=a.chart.renderer;r(a.points,function(d){var g=d.graphic,b=d.shapeArgs,f=b.d,h=w(c.dial,d.dial);g?(g.animate(b),b.d=f):(d.graphic=k[d.shapeType](b).attr({rotation:b.rotation,zIndex:1}).addClass("highcharts-dial").add(a.group),d.graphic.attr({stroke:h.borderColor|| +"none","stroke-width":h.borderWidth||0,fill:h.backgroundColor||"#000000"}))});b?b.animate({translateX:d[0],translateY:d[1]}):(a.pivot=k.circle(0,0,m(l.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(d[0],d[1]).add(a.group),a.pivot.attr({"stroke-width":l.borderWidth||0,stroke:l.borderColor||"#cccccc",fill:l.backgroundColor||"#000000"}))},animate:function(a){var d=this;a||(r(d.points,function(a){var c=a.graphic;c&&(c.attr({rotation:180*d.yAxis.startAngleRad/Math.PI}),c.animate({rotation:a.shapeArgs.rotation}, +d.options.animation))}),d.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);e.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,d){e.prototype.setData.call(this,a,!1);this.processData();this.generatePoints();m(d,!0)&&this.chart.redraw()},drawTracker:d&&d.drawTrackerPoint},{setState:function(a){this.state=a}})})(x);(function(b){var r=b.each,t=b.noop,w=b.pick,m=b.seriesType, +q=b.seriesTypes;m("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},whiskerLength:"50%",fillColor:"#ffffff",lineWidth:1,medianWidth:2,states:{hover:{brightness:-.3}},whiskerWidth:2},{pointArrayMap:["low","q1","median", +"q3","high"],toYData:function(b){return[b.low,b.q1,b.median,b.q3,b.high]},pointValKey:"high",pointAttribs:function(b){var a=this.options,d=b&&b.color||this.color;return{fill:b.fillColor||a.fillColor||d,stroke:a.lineColor||d,"stroke-width":a.lineWidth||0}},drawDataLabels:t,translate:function(){var b=this.yAxis,a=this.pointArrayMap;q.column.prototype.translate.apply(this);r(this.points,function(d){r(a,function(a){null!==d[a]&&(d[a+"Plot"]=b.translate(d[a],0,1,0,1))})})},drawPoints:function(){var b= +this,a=b.options,d=b.chart.renderer,f,h,u,c,l,k,p=0,g,n,m,q,v=!1!==b.doQuartiles,t,x=b.options.whiskerLength;r(b.points,function(e){var r=e.graphic,y=r?"animate":"attr",I=e.shapeArgs,z={},B={},G={},H=e.color||b.color;void 0!==e.plotY&&(g=I.width,n=Math.floor(I.x),m=n+g,q=Math.round(g/2),f=Math.floor(v?e.q1Plot:e.lowPlot),h=Math.floor(v?e.q3Plot:e.lowPlot),u=Math.floor(e.highPlot),c=Math.floor(e.lowPlot),r||(e.graphic=r=d.g("point").add(b.group),e.stem=d.path().addClass("highcharts-boxplot-stem").add(r), +x&&(e.whiskers=d.path().addClass("highcharts-boxplot-whisker").add(r)),v&&(e.box=d.path(void 0).addClass("highcharts-boxplot-box").add(r)),e.medianShape=d.path(void 0).addClass("highcharts-boxplot-median").add(r),z.stroke=e.stemColor||a.stemColor||H,z["stroke-width"]=w(e.stemWidth,a.stemWidth,a.lineWidth),z.dashstyle=e.stemDashStyle||a.stemDashStyle,e.stem.attr(z),x&&(B.stroke=e.whiskerColor||a.whiskerColor||H,B["stroke-width"]=w(e.whiskerWidth,a.whiskerWidth,a.lineWidth),e.whiskers.attr(B)),v&&(r= +b.pointAttribs(e),e.box.attr(r)),G.stroke=e.medianColor||a.medianColor||H,G["stroke-width"]=w(e.medianWidth,a.medianWidth,a.lineWidth),e.medianShape.attr(G)),k=e.stem.strokeWidth()%2/2,p=n+q+k,e.stem[y]({d:["M",p,h,"L",p,u,"M",p,f,"L",p,c]}),v&&(k=e.box.strokeWidth()%2/2,f=Math.floor(f)+k,h=Math.floor(h)+k,n+=k,m+=k,e.box[y]({d:["M",n,h,"L",n,f,"L",m,f,"L",m,h,"L",n,h,"z"]})),x&&(k=e.whiskers.strokeWidth()%2/2,u+=k,c+=k,t=/%$/.test(x)?q*parseFloat(x)/100:x/2,e.whiskers[y]({d:["M",p-t,u,"L",p+t,u, +"M",p-t,c,"L",p+t,c]})),l=Math.round(e.medianPlot),k=e.medianShape.strokeWidth()%2/2,l+=k,e.medianShape[y]({d:["M",n,l,"L",m,l]}))})},setStackedPoints:t})})(x);(function(b){var r=b.each,t=b.noop,w=b.seriesType,m=b.seriesTypes;w("errorbar","boxplot",{color:"#000000",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},whiskerWidth:null},{type:"errorbar", +pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:m.arearange?function(){var b=this.pointValKey;m.arearange.prototype.drawDataLabels.call(this);r(this.data,function(e){e.y=e[b]})}:t,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||m.column.prototype.getColumnMetrics.call(this)}})})(x);(function(b){var r=b.correctFloat,t=b.isNumber,w=b.pick,m=b.Point,q=b.Series,e=b.seriesType,a=b.seriesTypes; +e("waterfall","column",{dataLabels:{inside:!0},lineWidth:1,lineColor:"#333333",dashStyle:"dot",borderColor:"#333333",states:{hover:{lineWidthPlus:0}}},{pointValKey:"y",translate:function(){var d=this.options,b=this.yAxis,h,e,c,l,k,p,g,n,m,q=w(d.minPointLength,5),v=d.threshold,t=d.stacking;a.column.prototype.translate.apply(this);this.minPointLengthOffset=0;g=n=v;e=this.points;h=0;for(d=e.length;hl.height&&(l.y+=l.height,l.height*=-1),c.plotY=l.y=Math.round(l.y)- +this.borderWidth%2/2,l.height=Math.max(Math.round(l.height),.001),c.yBottom=l.y+l.height,l.height<=q&&(l.height=q,this.minPointLengthOffset+=q),l.y-=this.minPointLengthOffset,l=c.plotY+(c.negative?l.height:0)-this.minPointLengthOffset,this.chart.inverted?c.tooltipPos[0]=b.len-l:c.tooltipPos[1]=l},processData:function(a){var b=this.yData,d=this.options.data,e,c=b.length,l,k,p,g,n,m;k=l=p=g=this.options.threshold||0;for(m=0;ma[k-1].y&&(l[2]+=c.height,l[5]+=c.height),e=e.concat(l);return e},drawGraph:function(){q.prototype.drawGraph.call(this);this.graph.attr({d:this.getCrispPath()})},getExtremes:b.noop},{getClassName:function(){var a=m.prototype.getClassName.call(this);this.isSum?a+=" highcharts-sum":this.isIntermediateSum&&(a+=" highcharts-intermediate-sum"); +return a},isValid:function(){return t(this.y,!0)||this.isSum||this.isIntermediateSum}})})(x);(function(b){var r=b.Series,t=b.seriesType,w=b.seriesTypes;t("polygon","scatter",{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var b=r.prototype.getGraphPath.call(this),q=b.length+1;q--;)(q===b.length||"M"===b[q])&&0=this.minPxSize/2?(d.shapeType="circle",d.shapeArgs={x:d.plotX,y:d.plotY,r:c},d.dlBox={x:d.plotX-c,y:d.plotY-c,width:2*c,height:2*c}):d.shapeArgs=d.plotY=d.dlBox=void 0},drawLegendSymbol:function(a,b){var d=this.chart.renderer,c=d.fontMetrics(a.itemStyle.fontSize).f/2;b.legendSymbol=d.circle(c,a.baseline-c,c).attr({zIndex:3}).add(b.legendGroup);b.legendSymbol.isMarker= +!0},drawPoints:l.column.prototype.drawPoints,alignDataLabel:l.column.prototype.alignDataLabel,buildKDTree:a,applyZones:a},{haloPath:function(a){return h.prototype.haloPath.call(this,this.shapeArgs.r+a)},ttBelow:!1});w.prototype.beforePadding=function(){var a=this,b=this.len,c=this.chart,h=0,l=b,u=this.isXAxis,m=u?"xData":"yData",w=this.min,x={},A=Math.min(c.plotWidth,c.plotHeight),C=Number.MAX_VALUE,D=-Number.MAX_VALUE,E=this.max-w,z=b/E,F=[];q(this.series,function(b){var g=b.options;!b.bubblePadding|| +!b.visible&&c.options.chart.ignoreHiddenSeries||(a.allowZoomOutside=!0,F.push(b),u&&(q(["minSize","maxSize"],function(a){var b=g[a],d=/%$/.test(b),b=f(b);x[a]=d?A*b/100:b}),b.minPxSize=x.minSize,b.maxPxSize=Math.max(x.maxSize,x.minSize),b=b.zData,b.length&&(C=d(g.zMin,Math.min(C,Math.max(t(b),!1===g.displayNegative?g.zThreshold:-Number.MAX_VALUE))),D=d(g.zMax,Math.max(D,r(b))))))});q(F,function(b){var d=b[m],c=d.length,f;u&&b.getRadii(C,D,b.minPxSize,b.maxPxSize);if(0f&&(f+=360),a.clientX=f):a.clientX=a.plotX};m.spline&&q(m.spline.prototype,"getPointSpline",function(a,b,f,h){var d,c,e,k,p,g,n;this.chart.polar?(d=f.plotX, +c=f.plotY,a=b[h-1],e=b[h+1],this.connectEnds&&(a||(a=b[b.length-2]),e||(e=b[1])),a&&e&&(k=a.plotX,p=a.plotY,b=e.plotX,g=e.plotY,k=(1.5*d+k)/2.5,p=(1.5*c+p)/2.5,e=(1.5*d+b)/2.5,n=(1.5*c+g)/2.5,b=Math.sqrt(Math.pow(k-d,2)+Math.pow(p-c,2)),g=Math.sqrt(Math.pow(e-d,2)+Math.pow(n-c,2)),k=Math.atan2(p-c,k-d),p=Math.atan2(n-c,e-d),n=Math.PI/2+(k+p)/2,Math.abs(k-n)>Math.PI/2&&(n-=Math.PI),k=d+Math.cos(n)*b,p=c+Math.sin(n)*b,e=d+Math.cos(Math.PI+n)*g,n=c+Math.sin(Math.PI+n)*g,f.rightContX=e,f.rightContY=n), +h?(f=["C",a.rightContX||a.plotX,a.rightContY||a.plotY,k||d,p||c,d,c],a.rightContX=a.rightContY=null):f=["M",d,c]):f=a.call(this,b,f,h);return f});q(e,"translate",function(a){var b=this.chart;a.call(this);if(b.polar&&(this.kdByAngle=b.tooltip&&b.tooltip.shared,!this.preventPostTranslate))for(a=this.points,b=a.length;b--;)this.toXY(a[b])});q(e,"getGraphPath",function(a,b){var d=this,e,m;if(this.chart.polar){b=b||this.points;for(e=0;eb.center[1]}),q(m,"alignDataLabel",function(a,b,f,h,m,c){this.chart.polar?(a=b.rectPlotX/Math.PI*180,null===h.align&&(h.align=20a?"left":200a?"right":"center"),null===h.verticalAlign&&(h.verticalAlign=45>a||315a?"top":"middle"),e.alignDataLabel.call(this,b,f,h,m,c)):a.call(this, +b,f,h,m,c)}));q(b,"getCoordinates",function(a,b){var d=this.chart,e={xAxis:[],yAxis:[]};d.polar?t(d.axes,function(a){var c=a.isXAxis,f=a.center,h=b.chartX-f[0]-d.plotLeft,f=b.chartY-f[1]-d.plotTop;e[c?"xAxis":"yAxis"].push({axis:a,value:a.translate(c?Math.PI-Math.atan2(h,f):Math.sqrt(Math.pow(h,2)+Math.pow(f,2)),!0)})}):e=a.call(this,b);return e})})(x)}); diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/highstock.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/highstock.js new file mode 100644 index 00000000..34a3f91c --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/highstock.js @@ -0,0 +1,496 @@ +/* + Highstock JS v5.0.3 (2016-11-18) + + (c) 2009-2016 Torstein Honsi + + License: www.highcharts.com/license +*/ +(function(N,a){"object"===typeof module&&module.exports?module.exports=N.document?a(N):a:N.Highcharts=a(N)})("undefined"!==typeof window?window:this,function(N){N=function(){var a=window,D=a.document,B=a.navigator&&a.navigator.userAgent||"",G=D&&D.createElementNS&&!!D.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,H=/(edge|msie|trident)/i.test(B)&&!window.opera,p=!G,l=/Firefox/.test(B),r=l&&4>parseInt(B.split("Firefox/")[1],10);return a.Highcharts?a.Highcharts.error(16,!0):{product:"Highstock", +version:"5.0.3",deg2rad:2*Math.PI/360,doc:D,hasBidiBug:r,hasTouch:D&&void 0!==D.documentElement.ontouchstart,isMS:H,isWebKit:/AppleWebKit/.test(B),isFirefox:l,isTouchDevice:/(Mobile|Android|Windows Phone)/.test(B),SVG_NS:"http://www.w3.org/2000/svg",chartCount:0,seriesTypes:{},symbolSizes:{},svg:G,vml:p,win:a,charts:[],marginNames:["plotTop","marginRight","marginBottom","plotLeft"],noop:function(){}}}();(function(a){var D=[],B=a.charts,G=a.doc,H=a.win;a.error=function(a,l){a="Highcharts error #"+ +a+": www.highcharts.com/errors/"+a;if(l)throw Error(a);H.console&&console.log(a)};a.Fx=function(a,l,r){this.options=l;this.elem=a;this.prop=r};a.Fx.prototype={dSetter:function(){var a=this.paths[0],l=this.paths[1],r=[],w=this.now,t=a.length,k;if(1===w)r=this.toD;else if(t===l.length&&1>w)for(;t--;)k=parseFloat(a[t]),r[t]=isNaN(k)?a[t]:w*parseFloat(l[t]-k)+k;else r=l;this.elem.attr("d",r)},update:function(){var a=this.elem,l=this.prop,r=this.now,w=this.options.step;if(this[l+"Setter"])this[l+"Setter"](); +else a.attr?a.element&&a.attr(l,r):a.style[l]=r+this.unit;w&&w.call(a,r,this)},run:function(a,l,r){var p=this,t=function(a){return t.stopped?!1:p.step(a)},k;this.startTime=+new Date;this.start=a;this.end=l;this.unit=r;this.now=this.start;this.pos=0;t.elem=this.elem;t()&&1===D.push(t)&&(t.timerId=setInterval(function(){for(k=0;k=k+this.startTime){this.now=this.end;this.pos=1;this.update();a=m[this.prop]=!0;for(e in m)!0!==m[e]&&(a=!1);a&&t&&t.call(p);p=!1}else this.pos=w.easing((l-this.startTime)/k),this.now=this.start+(this.end-this.start)*this.pos,this.update(),p=!0;return p},initPath:function(p,l,r){function w(a){for(b=a.length;b--;)"M"!==a[b]&&"L"!==a[b]||a.splice(b+1,0,a[b+1],a[b+2],a[b+1],a[b+2])}function t(a,c){for(;a.lengthm?"AM":"PM",P:12>m?"am":"pm",S:q(t.getSeconds()),L:q(Math.round(l%1E3),3)},a.dateFormats);for(k in w)for(;-1!==p.indexOf("%"+k);)p= +p.replace("%"+k,"function"===typeof w[k]?w[k](l):w[k]);return r?p.substr(0,1).toUpperCase()+p.substr(1):p};a.formatSingle=function(p,l){var r=/\.([0-9])/,w=a.defaultOptions.lang;/f$/.test(p)?(r=(r=p.match(r))?r[1]:-1,null!==l&&(l=a.numberFormat(l,r,w.decimalPoint,-1=r&&(l=[1/r])));for(w=0;w=p||!t&&k<=(l[w]+(l[w+1]||l[w]))/ +2);w++);return m*r};a.stableSort=function(a,l){var r=a.length,p,t;for(t=0;tr&&(r=a[l]);return r};a.destroyObjectProperties=function(a,l){for(var r in a)a[r]&&a[r]!==l&&a[r].destroy&&a[r].destroy(),delete a[r]};a.discardElement=function(p){var l= +a.garbageBin;l||(l=a.createElement("div"));p&&l.appendChild(p);l.innerHTML=""};a.correctFloat=function(a,l){return parseFloat(a.toPrecision(l||14))};a.setAnimation=function(p,l){l.renderer.globalAnimation=a.pick(p,l.options.chart.animation,!0)};a.animObject=function(p){return a.isObject(p)?a.merge(p):{duration:p?500:0}};a.timeUnits={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5,month:24192E5,year:314496E5};a.numberFormat=function(p,l,r,w){p=+p||0;l=+l;var t=a.defaultOptions.lang, +k=(p.toString().split(".")[1]||"").length,m,e,g=Math.abs(p);-1===l?l=Math.min(k,20):a.isNumber(l)||(l=2);m=String(a.pInt(g.toFixed(l)));e=3p?"-":"")+(e?m.substr(0,e)+w:"");p+=m.substr(e).replace(/(\d{3})(?=\d)/g,"$1"+w);l&&(w=Math.abs(g-m+Math.pow(10,-Math.max(l,k)-1)),p+=r+w.toFixed(l).slice(2));return p};Math.easeInOutSine=function(a){return-.5*(Math.cos(Math.PI*a)-1)};a.getStyle=function(p,l){return"width"===l?Math.min(p.offsetWidth, +p.scrollWidth)-a.getStyle(p,"padding-left")-a.getStyle(p,"padding-right"):"height"===l?Math.min(p.offsetHeight,p.scrollHeight)-a.getStyle(p,"padding-top")-a.getStyle(p,"padding-bottom"):(p=H.getComputedStyle(p,void 0))&&a.pInt(p.getPropertyValue(l))};a.inArray=function(a,l){return l.indexOf?l.indexOf(a):[].indexOf.call(l,a)};a.grep=function(a,l){return[].filter.call(a,l)};a.map=function(a,l){for(var r=[],p=0,t=a.length;pl;l++)w[l]+=p(255*a),0>w[l]&&(w[l]=0),255z.width)z={width:0,height:0}}else z=this.htmlGetBBox();b.isSVG&&(a=z.width, +b=z.height,c&&L&&"11px"===L.fontSize&&"16.9"===b.toPrecision(3)&&(z.height=b=14),v&&(z.width=Math.abs(b*Math.sin(d))+Math.abs(a*Math.cos(d)),z.height=Math.abs(b*Math.cos(d))+Math.abs(a*Math.sin(d))));if(g&&0]*>/g,"")))},textSetter:function(a){a!==this.textStr&&(delete this.bBox,this.textStr=a,this.added&&this.renderer.buildText(this))},fillSetter:function(a,c,v){"string"===typeof a?v.setAttribute(c, +a):a&&this.colorGradient(a,c,v)},visibilitySetter:function(a,c,v){"inherit"===a?v.removeAttribute(c):v.setAttribute(c,a)},zIndexSetter:function(a,c){var v=this.renderer,z=this.parentGroup,b=(z||v).element||v.box,d,n=this.element,f;d=this.added;var e;k(a)&&(n.zIndex=a,a=+a,this[c]===a&&(d=!1),this[c]=a);if(d){(a=this.zIndex)&&z&&(z.handleZ=!0);c=b.childNodes;for(e=0;ea||!k(a)&&k(d)||0>a&&!k(d)&&b!==v.box)&&(b.insertBefore(n,z),f=!0);f||b.appendChild(n)}return f}, +_defaultSetter:function(a,c,v){v.setAttribute(c,a)}};D.prototype.yGetter=D.prototype.xGetter;D.prototype.translateXSetter=D.prototype.translateYSetter=D.prototype.rotationSetter=D.prototype.verticalAlignSetter=D.prototype.scaleXSetter=D.prototype.scaleYSetter=function(a,c){this[c]=a;this.doTransform=!0};D.prototype["stroke-widthSetter"]=D.prototype.strokeSetter=function(a,c,v){this[c]=a;this.stroke&&this["stroke-width"]?(D.prototype.fillSetter.call(this,this.stroke,"stroke",v),v.setAttribute("stroke-width", +this["stroke-width"]),this.hasStroke=!0):"stroke-width"===c&&0===a&&this.hasStroke&&(v.removeAttribute("stroke"),this.hasStroke=!1)};B=a.SVGRenderer=function(){this.init.apply(this,arguments)};B.prototype={Element:D,SVG_NS:K,init:function(a,c,v,b,d,n){var z;b=this.createElement("svg").attr({version:"1.1","class":"highcharts-root"}).css(this.getStyle(b));z=b.element;a.appendChild(z);-1===a.innerHTML.indexOf("xmlns")&&p(z,"xmlns",this.SVG_NS);this.isSVG=!0;this.box=z;this.boxWrapper=b;this.alignedObjects= +[];this.url=(E||A)&&g.getElementsByTagName("base").length?R.location.href.replace(/#.*?$/,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(g.createTextNode("Created with Highstock 5.0.3"));this.defs=this.createElement("defs").add();this.allowHTML=n;this.forExport=d;this.gradients={};this.cache={};this.cacheKeys=[];this.imgCount=0;this.setSize(c,v,!1);var f;E&&a.getBoundingClientRect&&(c=function(){w(a,{left:0,top:0});f=a.getBoundingClientRect(); +w(a,{left:Math.ceil(f.left)-f.left+"px",top:Math.ceil(f.top)-f.top+"px"})},c(),this.unSubPixelFix=G(R,"resize",c))},getStyle:function(a){return this.style=C({fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif',fontSize:"12px"},a)},setStyle:function(a){this.boxWrapper.css(this.getStyle(a))},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();e(this.gradients||{});this.gradients= +null;a&&(this.defs=a.destroy());this.unSubPixelFix&&this.unSubPixelFix();return this.alignedObjects=null},createElement:function(a){var c=new this.Element;c.init(this,a);return c},draw:J,getRadialAttr:function(a,c){return{cx:a[0]-a[2]/2+c.cx*a[2],cy:a[1]-a[2]/2+c.cy*a[2],r:c.r*a[2]}},buildText:function(a){for(var c=a.element,z=this,b=z.forExport,n=y(a.textStr,"").toString(),f=-1!==n.indexOf("\x3c"),e=c.childNodes,q,F,x,A,I=p(c,"x"),m=a.styles,k=a.textWidth,C=m&&m.lineHeight,M=m&&m.textOutline,J=m&& +"ellipsis"===m.textOverflow,E=e.length,O=k&&!a.added&&this.box,t=function(a){var v;v=/(px|em)$/.test(a&&a.style.fontSize)?a.style.fontSize:m&&m.fontSize||z.style.fontSize||12;return C?u(C):z.fontMetrics(v,a.getAttribute("style")?a:c).h};E--;)c.removeChild(e[E]);f||M||J||k||-1!==n.indexOf(" ")?(q=/<.*class="([^"]+)".*>/,F=/<.*style="([^"]+)".*>/,x=/<.*href="(http[^"]+)".*>/,O&&O.appendChild(c),n=f?n.replace(/<(b|strong)>/g,'\x3cspan style\x3d"font-weight:bold"\x3e').replace(/<(i|em)>/g,'\x3cspan style\x3d"font-style:italic"\x3e').replace(//g,"\x3c/span\x3e").split(//g):[n],n=d(n,function(a){return""!==a}),h(n,function(d,n){var f,e=0;d=d.replace(/^\s+|\s+$/g,"").replace(//g,"\x3c/span\x3e|||");f=d.split("|||");h(f,function(d){if(""!==d||1===f.length){var u={},y=g.createElementNS(z.SVG_NS,"tspan"),L,h;q.test(d)&&(L=d.match(q)[1],p(y,"class",L));F.test(d)&&(h=d.match(F)[1].replace(/(;| |^)color([ :])/,"$1fill$2"),p(y,"style",h));x.test(d)&&!b&&(p(y, +"onclick",'location.href\x3d"'+d.match(x)[1]+'"'),w(y,{cursor:"pointer"}));d=(d.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"\x3c").replace(/>/g,"\x3e");if(" "!==d){y.appendChild(g.createTextNode(d));e?u.dx=0:n&&null!==I&&(u.x=I);p(y,u);c.appendChild(y);!e&&n&&(!v&&b&&w(y,{display:"block"}),p(y,"dy",t(y)));if(k){u=d.replace(/([^\^])-/g,"$1- ").split(" ");L="nowrap"===m.whiteSpace;for(var C=1k,void 0===A&&(A=M),J&&A?(Q/=2,""===l||!M&&.5>Q?u=[]:(l=d.substring(0,l.length+(M?-1:1)*Math.ceil(Q)),u=[l+(3k&&(k=P)),u.length&&y.appendChild(g.createTextNode(u.join(" ").replace(/- /g, +"-")));a.rotation=R}e++}}})}),A&&a.attr("title",a.textStr),O&&O.removeChild(c),M&&a.applyTextOutline&&a.applyTextOutline(M)):c.appendChild(g.createTextNode(n.replace(/</g,"\x3c").replace(/>/g,"\x3e")))},getContrast:function(a){a=r(a).rgba;return 510v?d>c+f&&de?d>c+f&&db&&e>a+f&&ed&&e>a+f&&ea?a+3:Math.round(1.2*a);return{h:c,b:Math.round(.8*c),f:a}},rotCorr:function(a, +c,v){var b=a;c&&v&&(b=Math.max(b*Math.cos(c*m),4));return{x:-a/3*Math.sin(c*m),y:b}},label:function(a,c,v,b,d,n,f,e,K){var q=this,u=q.g("button"!==K&&"label"),y=u.text=q.text("",0,0,f).attr({zIndex:1}),g,F,z=0,A=3,L=0,m,M,J,E,O,t={},l,R,r=/^url\((.*?)\)$/.test(b),p=r,P,w,Q,S;K&&u.addClass("highcharts-"+K);p=r;P=function(){return(l||0)%2/2};w=function(){var a=y.element.style,c={};F=(void 0===m||void 0===M||O)&&k(y.textStr)&&y.getBBox();u.width=(m||F.width||0)+2*A+L;u.height=(M||F.height||0)+2*A;R= +A+q.fontMetrics(a&&a.fontSize,y).b;p&&(g||(u.box=g=q.symbols[b]||r?q.symbol(b):q.rect(),g.addClass(("button"===K?"":"highcharts-label-box")+(K?" highcharts-"+K+"-box":"")),g.add(u),a=P(),c.x=a,c.y=(e?-R:0)+a),c.width=Math.round(u.width),c.height=Math.round(u.height),g.attr(C(c,t)),t={})};Q=function(){var a=L+A,c;c=e?0:R;k(m)&&F&&("center"===O||"right"===O)&&(a+={center:.5,right:1}[O]*(m-F.width));if(a!==y.x||c!==y.y)y.attr("x",a),void 0!==c&&y.attr("y",c);y.x=a;y.y=c};S=function(a,c){g?g.attr(a,c): +t[a]=c};u.onAdd=function(){y.add(u);u.attr({text:a||0===a?a:"",x:c,y:v});g&&k(d)&&u.attr({anchorX:d,anchorY:n})};u.widthSetter=function(a){m=a};u.heightSetter=function(a){M=a};u["text-alignSetter"]=function(a){O=a};u.paddingSetter=function(a){k(a)&&a!==A&&(A=u.padding=a,Q())};u.paddingLeftSetter=function(a){k(a)&&a!==L&&(L=a,Q())};u.alignSetter=function(a){a={left:0,center:.5,right:1}[a];a!==z&&(z=a,F&&u.attr({x:J}))};u.textSetter=function(a){void 0!==a&&y.textSetter(a);w();Q()};u["stroke-widthSetter"]= +function(a,c){a&&(p=!0);l=this["stroke-width"]=a;S(c,a)};u.strokeSetter=u.fillSetter=u.rSetter=function(a,c){"fill"===c&&a&&(p=!0);S(c,a)};u.anchorXSetter=function(a,c){d=a;S(c,Math.round(a)-P()-J)};u.anchorYSetter=function(a,c){n=a;S(c,a-E)};u.xSetter=function(a){u.x=a;z&&(a-=z*((m||F.width)+2*A));J=Math.round(a);u.attr("translateX",J)};u.ySetter=function(a){E=u.y=Math.round(a);u.attr("translateY",E)};var T=u.css;return C(u,{css:function(a){if(a){var c={};a=x(a);h(u.textProps,function(v){void 0!== +a[v]&&(c[v]=a[v],delete a[v])});y.css(c)}return T.call(u,a)},getBBox:function(){return{width:F.width+2*A,height:F.height+2*A,x:F.x-A,y:F.y-A}},shadow:function(a){a&&(w(),g&&g.shadow(a));return u},destroy:function(){I(u.element,"mouseenter");I(u.element,"mouseleave");y&&(y=y.destroy());g&&(g=g.destroy());D.prototype.destroy.call(u);u=q=w=Q=S=null}})}};a.Renderer=B})(N);(function(a){var D=a.attr,B=a.createElement,G=a.css,H=a.defined,p=a.each,l=a.extend,r=a.isFirefox,w=a.isMS,t=a.isWebKit,k=a.pInt,m= +a.SVGRenderer,e=a.win,g=a.wrap;l(a.SVGElement.prototype,{htmlCss:function(a){var e=this.element;if(e=a&&"SPAN"===e.tagName&&a.width)delete a.width,this.textWidth=e,this.updateTransform();a&&"ellipsis"===a.textOverflow&&(a.whiteSpace="nowrap",a.overflow="hidden");this.styles=l(this.styles,a);G(this.element,a);return this},htmlGetBBox:function(){var a=this.element;"text"===a.nodeName&&(a.style.position="absolute");return{x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}},htmlUpdateTransform:function(){if(this.added){var a= +this.renderer,e=this.element,f=this.translateX||0,d=this.translateY||0,b=this.x||0,q=this.y||0,g=this.textAlign||"left",c={left:0,center:.5,right:1}[g],F=this.styles;G(e,{marginLeft:f,marginTop:d});this.shadows&&p(this.shadows,function(a){G(a,{marginLeft:f+1,marginTop:d+1})});this.inverted&&p(e.childNodes,function(c){a.invertChild(c,e)});if("SPAN"===e.tagName){var n=this.rotation,A=k(this.textWidth),x=F&&F.whiteSpace,m=[n,g,e.innerHTML,this.textWidth,this.textAlign].join();m!==this.cTT&&(F=a.fontMetrics(e.style.fontSize).b, +H(n)&&this.setSpanRotation(n,c,F),G(e,{width:"",whiteSpace:x||"nowrap"}),e.offsetWidth>A&&/[ \-]/.test(e.textContent||e.innerText)&&G(e,{width:A+"px",display:"block",whiteSpace:x||"normal"}),this.getSpanCorrection(e.offsetWidth,F,c,n,g));G(e,{left:b+(this.xCorr||0)+"px",top:q+(this.yCorr||0)+"px"});t&&(F=e.offsetHeight);this.cTT=m}}else this.alignOnAdd=!0},setSpanRotation:function(a,g,f){var d={},b=w?"-ms-transform":t?"-webkit-transform":r?"MozTransform":e.opera?"-o-transform":"";d[b]=d.transform= +"rotate("+a+"deg)";d[b+(r?"Origin":"-origin")]=d.transformOrigin=100*g+"% "+f+"px";G(this.element,d)},getSpanCorrection:function(a,e,f){this.xCorr=-a*f;this.yCorr=-e}});l(m.prototype,{html:function(a,e,f){var d=this.createElement("span"),b=d.element,q=d.renderer,h=q.isSVG,c=function(a,c){p(["opacity","visibility"],function(b){g(a,b+"Setter",function(a,b,d,n){a.call(this,b,d,n);c[d]=b})})};d.textSetter=function(a){a!==b.innerHTML&&delete this.bBox;b.innerHTML=this.textStr=a;d.htmlUpdateTransform()}; +h&&c(d,d.element.style);d.xSetter=d.ySetter=d.alignSetter=d.rotationSetter=function(a,c){"align"===c&&(c="textAlign");d[c]=a;d.htmlUpdateTransform()};d.attr({text:a,x:Math.round(e),y:Math.round(f)}).css({fontFamily:this.style.fontFamily,fontSize:this.style.fontSize,position:"absolute"});b.style.whiteSpace="nowrap";d.css=d.htmlCss;h&&(d.add=function(a){var n,f=q.box.parentNode,e=[];if(this.parentGroup=a){if(n=a.div,!n){for(;a;)e.push(a),a=a.parentGroup;p(e.reverse(),function(a){var b,d=D(a.element, +"class");d&&(d={className:d});n=a.div=a.div||B("div",d,{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px",display:a.display,opacity:a.opacity,pointerEvents:a.styles&&a.styles.pointerEvents},n||f);b=n.style;l(a,{translateXSetter:function(c,d){b.left=c+"px";a[d]=c;a.doTransform=!0},translateYSetter:function(c,d){b.top=c+"px";a[d]=c;a.doTransform=!0}});c(a,b)})}}else n=f;n.appendChild(b);d.added=!0;d.alignOnAdd&&d.htmlUpdateTransform();return d});return d}})})(N);(function(a){var D, +B,G=a.createElement,H=a.css,p=a.defined,l=a.deg2rad,r=a.discardElement,w=a.doc,t=a.each,k=a.erase,m=a.extend;D=a.extendClass;var e=a.isArray,g=a.isNumber,h=a.isObject,C=a.merge;B=a.noop;var f=a.pick,d=a.pInt,b=a.SVGElement,q=a.SVGRenderer,E=a.win;a.svg||(B={docMode8:w&&8===w.documentMode,init:function(a,b){var c=["\x3c",b,' filled\x3d"f" stroked\x3d"f"'],d=["position: ","absolute",";"],f="div"===b;("shape"===b||f)&&d.push("left:0;top:0;width:1px;height:1px;");d.push("visibility: ",f?"hidden":"visible"); +c.push(' style\x3d"',d.join(""),'"/\x3e');b&&(c=f||"span"===b||"img"===b?c.join(""):a.prepVML(c),this.element=G(c));this.renderer=a},add:function(a){var c=this.renderer,b=this.element,d=c.box,f=a&&a.inverted,d=a?a.element||a:d;a&&(this.parentGroup=a);f&&c.invertChild(b,d);d.appendChild(b);this.added=!0;this.alignOnAdd&&!this.deferUpdateTransform&&this.updateTransform();if(this.onAdd)this.onAdd();this.className&&this.attr("class",this.className);return this},updateTransform:b.prototype.htmlUpdateTransform, +setSpanRotation:function(){var a=this.rotation,b=Math.cos(a*l),d=Math.sin(a*l);H(this.element,{filter:a?["progid:DXImageTransform.Microsoft.Matrix(M11\x3d",b,", M12\x3d",-d,", M21\x3d",d,", M22\x3d",b,", sizingMethod\x3d'auto expand')"].join(""):"none"})},getSpanCorrection:function(a,b,d,e,q){var c=e?Math.cos(e*l):1,n=e?Math.sin(e*l):0,u=f(this.elemHeight,this.element.offsetHeight),g;this.xCorr=0>c&&-a;this.yCorr=0>n&&-u;g=0>c*n;this.xCorr+=n*b*(g?1-d:d);this.yCorr-=c*b*(e?g?d:1-d:1);q&&"left"!== +q&&(this.xCorr-=a*d*(0>c?-1:1),e&&(this.yCorr-=u*d*(0>n?-1:1)),H(this.element,{textAlign:q}))},pathToVML:function(a){for(var c=a.length,b=[];c--;)g(a[c])?b[c]=Math.round(10*a[c])-5:"Z"===a[c]?b[c]="x":(b[c]=a[c],!a.isArc||"wa"!==a[c]&&"at"!==a[c]||(b[c+5]===b[c+7]&&(b[c+7]+=a[c+7]>a[c+5]?1:-1),b[c+6]===b[c+8]&&(b[c+8]+=a[c+8]>a[c+6]?1:-1)));return b.join(" ")||"x"},clip:function(a){var c=this,b;a?(b=a.members,k(b,c),b.push(c),c.destroyClip=function(){k(b,c)},a=a.getCSS(c)):(c.destroyClip&&c.destroyClip(), +a={clip:c.docMode8?"inherit":"rect(auto)"});return c.css(a)},css:b.prototype.htmlCss,safeRemoveChild:function(a){a.parentNode&&r(a)},destroy:function(){this.destroyClip&&this.destroyClip();return b.prototype.destroy.apply(this)},on:function(a,b){this.element["on"+a]=function(){var a=E.event;a.target=a.srcElement;b(a)};return this},cutOffPath:function(a,b){var c;a=a.split(/[ ,]/);c=a.length;if(9===c||11===c)a[c-4]=a[c-2]=d(a[c-2])-10*b;return a.join(" ")},shadow:function(a,b,e){var c=[],n,q=this.element, +g=this.renderer,u,I=q.style,F,v=q.path,K,h,m,z;v&&"string"!==typeof v.value&&(v="x");h=v;if(a){m=f(a.width,3);z=(a.opacity||.15)/m;for(n=1;3>=n;n++)K=2*m+1-2*n,e&&(h=this.cutOffPath(v.value,K+.5)),F=['\x3cshape isShadow\x3d"true" strokeweight\x3d"',K,'" filled\x3d"false" path\x3d"',h,'" coordsize\x3d"10 10" style\x3d"',q.style.cssText,'" /\x3e'],u=G(g.prepVML(F),null,{left:d(I.left)+f(a.offsetX,1),top:d(I.top)+f(a.offsetY,1)}),e&&(u.cutOff=K+1),F=['\x3cstroke color\x3d"',a.color||"#000000",'" opacity\x3d"', +z*n,'"/\x3e'],G(g.prepVML(F),null,null,u),b?b.element.appendChild(u):q.parentNode.insertBefore(u,q),c.push(u);this.shadows=c}return this},updateShadows:B,setAttr:function(a,b){this.docMode8?this.element[a]=b:this.element.setAttribute(a,b)},classSetter:function(a){(this.added?this.element:this).className=a},dashstyleSetter:function(a,b,d){(d.getElementsByTagName("stroke")[0]||G(this.renderer.prepVML(["\x3cstroke/\x3e"]),null,null,d))[b]=a||"solid";this[b]=a},dSetter:function(a,b,d){var c=this.shadows; +a=a||[];this.d=a.join&&a.join(" ");d.path=a=this.pathToVML(a);if(c)for(d=c.length;d--;)c[d].path=c[d].cutOff?this.cutOffPath(a,c[d].cutOff):a;this.setAttr(b,a)},fillSetter:function(a,b,d){var c=d.nodeName;"SPAN"===c?d.style.color=a:"IMG"!==c&&(d.filled="none"!==a,this.setAttr("fillcolor",this.renderer.color(a,d,b,this)))},"fill-opacitySetter":function(a,b,d){G(this.renderer.prepVML(["\x3c",b.split("-")[0],' opacity\x3d"',a,'"/\x3e']),null,null,d)},opacitySetter:B,rotationSetter:function(a,b,d){d= +d.style;this[b]=d[b]=a;d.left=-Math.round(Math.sin(a*l)+1)+"px";d.top=Math.round(Math.cos(a*l))+"px"},strokeSetter:function(a,b,d){this.setAttr("strokecolor",this.renderer.color(a,d,b,this))},"stroke-widthSetter":function(a,b,d){d.stroked=!!a;this[b]=a;g(a)&&(a+="px");this.setAttr("strokeweight",a)},titleSetter:function(a,b){this.setAttr(b,a)},visibilitySetter:function(a,b,d){"inherit"===a&&(a="visible");this.shadows&&t(this.shadows,function(c){c.style[b]=a});"DIV"===d.nodeName&&(a="hidden"===a?"-999em": +0,this.docMode8||(d.style[b]=a?"visible":"hidden"),b="top");d.style[b]=a},xSetter:function(a,b,d){this[b]=a;"x"===b?b="left":"y"===b&&(b="top");this.updateClipping?(this[b]=a,this.updateClipping()):d.style[b]=a},zIndexSetter:function(a,b,d){d.style[b]=a}},B["stroke-opacitySetter"]=B["fill-opacitySetter"],a.VMLElement=B=D(b,B),B.prototype.ySetter=B.prototype.widthSetter=B.prototype.heightSetter=B.prototype.xSetter,B={Element:B,isIE8:-1l[0]&&c.push([1,l[1]]);t(c,function(c,b){q.test(c[1])?(n=a.color(c[1]),v=n.get("rgb"),K=n.get("a")):(v=c[1],K=1);r.push(100*c[0]+"% "+v);b?(m=K,k=v):(z=K,E=v)});if("fill"===d)if("gradient"===g)d=A.x1||A[0]||0,c=A.y1||A[1]||0,F=A.x2||A[2]||0,A=A.y2||A[3]||0,C='angle\x3d"'+(90-180*Math.atan((A-c)/(F-d))/Math.PI)+'"',p();else{var h=A.r,w=2*h,B=2*h,D=A.cx,H=A.cy,V=b.radialReference,U,h=function(){V&&(U=f.getBBox(),D+=(V[0]- +U.x)/U.width-.5,H+=(V[1]-U.y)/U.height-.5,w*=V[2]/U.width,B*=V[2]/U.height);C='src\x3d"'+a.getOptions().global.VMLRadialGradientURL+'" size\x3d"'+w+","+B+'" origin\x3d"0.5,0.5" position\x3d"'+D+","+H+'" color2\x3d"'+E+'" ';p()};f.added?h():f.onAdd=h;h=k}else h=v}else q.test(c)&&"IMG"!==b.tagName?(n=a.color(c),f[d+"-opacitySetter"](n.get("a"),d,b),h=n.get("rgb")):(h=b.getElementsByTagName(d),h.length&&(h[0].opacity=1,h[0].type="solid"),h=c);return h},prepVML:function(a){var c=this.isIE8;a=a.join(""); +c?(a=a.replace("/\x3e",' xmlns\x3d"urn:schemas-microsoft-com:vml" /\x3e'),a=-1===a.indexOf('style\x3d"')?a.replace("/\x3e",' style\x3d"display:inline-block;behavior:url(#default#VML);" /\x3e'):a.replace('style\x3d"','style\x3d"display:inline-block;behavior:url(#default#VML);')):a=a.replace("\x3c","\x3chcv:");return a},text:q.prototype.html,path:function(a){var c={coordsize:"10 10"};e(a)?c.d=a:h(a)&&m(c,a);return this.createElement("shape").attr(c)},circle:function(a,b,d){var c=this.symbol("circle"); +h(a)&&(d=a.r,b=a.y,a=a.x);c.isCircle=!0;c.r=d;return c.attr({x:a,y:b})},g:function(a){var c;a&&(c={className:"highcharts-"+a,"class":"highcharts-"+a});return this.createElement("div").attr(c)},image:function(a,b,d,f,e){var c=this.createElement("img").attr({src:a});1f&&m-d*bg&&(F=Math.round((e-m)/Math.cos(f*w)));else if(e=m+(1-d)*b,m-d*bg&&(E=g-a.x+E*d,c=-1),E=Math.min(q, +E),EE||k.autoRotation&&(C.styles||{}).width)F=E;F&&(n.width=F,(k.options.labels.style||{}).textOverflow||(n.textOverflow="ellipsis"),C.css(n))},getPosition:function(a,k,m,e){var g=this.axis,h=g.chart,l=e&&h.oldChartHeight||h.chartHeight;return{x:a?g.translate(k+m,null,null,e)+g.transB:g.left+g.offset+(g.opposite?(e&&h.oldChartWidth||h.chartWidth)-g.right-g.left:0),y:a?l-g.bottom+g.offset-(g.opposite?g.height:0):l-g.translate(k+m,null, +null,e)-g.transB}},getLabelPosition:function(a,k,m,e,g,h,l,f){var d=this.axis,b=d.transA,q=d.reversed,E=d.staggerLines,c=d.tickRotCorr||{x:0,y:0},F=g.y;B(F)||(F=0===d.side?m.rotation?-8:-m.getBBox().height:2===d.side?c.y+8:Math.cos(m.rotation*w)*(c.y-m.getBBox(!1,0).height/2));a=a+g.x+c.x-(h&&e?h*b*(q?-1:1):0);k=k+F-(h&&!e?h*b*(q?1:-1):0);E&&(m=l/(f||1)%E,d.opposite&&(m=E-m-1),k+=d.labelOffset/E*m);return{x:a,y:Math.round(k)}},getMarkPath:function(a,k,m,e,g,h){return h.crispLine(["M",a,k,"L",a+(g? +0:-m),k+(g?m:0)],e)},render:function(a,k,m){var e=this.axis,g=e.options,h=e.chart.renderer,C=e.horiz,f=this.type,d=this.label,b=this.pos,q=g.labels,E=this.gridLine,c=f?f+"Tick":"tick",F=e.tickSize(c),n=this.mark,A=!n,x=q.step,p={},y=!0,u=e.tickmarkOffset,I=this.getPosition(C,b,u,k),M=I.x,I=I.y,v=C&&M===e.pos+e.len||!C&&I===e.pos?-1:1,K=f?f+"Grid":"grid",O=g[K+"LineWidth"],R=g[K+"LineColor"],z=g[K+"LineDashStyle"],K=l(g[c+"Width"],!f&&e.isXAxis?1:0),c=g[c+"Color"];m=l(m,1);this.isActive=!0;E||(p.stroke= +R,p["stroke-width"]=O,z&&(p.dashstyle=z),f||(p.zIndex=1),k&&(p.opacity=0),this.gridLine=E=h.path().attr(p).addClass("highcharts-"+(f?f+"-":"")+"grid-line").add(e.gridGroup));if(!k&&E&&(b=e.getPlotLinePath(b+u,E.strokeWidth()*v,k,!0)))E[this.isNew?"attr":"animate"]({d:b,opacity:m});F&&(e.opposite&&(F[0]=-F[0]),A&&(this.mark=n=h.path().addClass("highcharts-"+(f?f+"-":"")+"tick").add(e.axisGroup),n.attr({stroke:c,"stroke-width":K})),n[A?"attr":"animate"]({d:this.getMarkPath(M,I,F[0],n.strokeWidth()* +v,C,h),opacity:m}));d&&H(M)&&(d.xy=I=this.getLabelPosition(M,I,d,C,q,u,a,x),this.isFirst&&!this.isLast&&!l(g.showFirstLabel,1)||this.isLast&&!this.isFirst&&!l(g.showLastLabel,1)?y=!1:!C||e.isRadial||q.step||q.rotation||k||0===m||this.handleOverflow(I),x&&a%x&&(y=!1),y&&H(I.y)?(I.opacity=m,d[this.isNew?"attr":"animate"](I)):(r(d),d.attr("y",-9999)),this.isNew=!1)},destroy:function(){G(this,this.axis)}}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.AxisPlotLineOrBandExtension, +l=a.color,r=a.correctFloat,w=a.defaultOptions,t=a.defined,k=a.deg2rad,m=a.destroyObjectProperties,e=a.each,g=a.error,h=a.extend,C=a.fireEvent,f=a.format,d=a.getMagnitude,b=a.grep,q=a.inArray,E=a.isArray,c=a.isNumber,F=a.isString,n=a.merge,A=a.normalizeTickInterval,x=a.pick,J=a.PlotLineOrBand,y=a.removeEvent,u=a.splat,I=a.syncTimeout,M=a.Tick;a.Axis=function(){this.init.apply(this,arguments)};a.Axis.prototype={defaultOptions:{dateTimeLabelFormats:{millisecond:"%H:%M:%S.%L",second:"%H:%M:%S",minute:"%H:%M", +hour:"%H:%M",day:"%e. %b",week:"%e. %b",month:"%b '%y",year:"%Y"},endOnTick:!1,labels:{enabled:!0,style:{color:"#666666",cursor:"default",fontSize:"11px"},x:0},minPadding:.01,maxPadding:.01,minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:!1,tickLength:10,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",title:{align:"middle",style:{color:"#666666"}},type:"linear",minorGridLineColor:"#f2f2f2",minorGridLineWidth:1,minorTickColor:"#999999",lineColor:"#ccd6eb", +lineWidth:1,gridLineColor:"#e6e6e6",tickColor:"#ccd6eb"},defaultYAxisOptions:{endOnTick:!0,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8},maxPadding:.05,minPadding:.05,startOnTick:!0,title:{rotation:270,text:"Values"},stackLabels:{enabled:!1,formatter:function(){return a.numberFormat(this.total,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"#000000",textOutline:"1px contrast"}},gridLineWidth:1,lineWidth:0},defaultLeftAxisOptions:{labels:{x:-15},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:15}, +title:{rotation:90}},defaultBottomAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},defaultTopAxisOptions:{labels:{autoRotation:[-45],x:0},title:{rotation:0}},init:function(a,c){var b=c.isX;this.chart=a;this.horiz=a.inverted?!b:b;this.isXAxis=b;this.coll=this.coll||(b?"xAxis":"yAxis");this.opposite=c.opposite;this.side=c.side||(this.horiz?this.opposite?0:2:this.opposite?1:3);this.setOptions(c);var d=this.options,v=d.type;this.labelFormatter=d.labels.formatter||this.defaultLabelFormatter; +this.userOptions=c;this.minPixelPadding=0;this.reversed=d.reversed;this.visible=!1!==d.visible;this.zoomEnabled=!1!==d.zoomEnabled;this.hasNames="category"===v||!0===d.categories;this.categories=d.categories||this.hasNames;this.names=this.names||[];this.isLog="logarithmic"===v;this.isDatetimeAxis="datetime"===v;this.isLinked=t(d.linkedTo);this.ticks={};this.labelEdge=[];this.minorTicks={};this.plotLinesAndBands=[];this.alternateBands={};this.len=0;this.minRange=this.userMinRange=d.minRange||d.maxZoom; +this.range=d.range;this.offset=d.offset||0;this.stacks={};this.oldStacks={};this.stacksTouched=0;this.min=this.max=null;this.crosshair=x(d.crosshair,u(a.options.tooltip.crosshairs)[b?0:1],!1);var f;c=this.options.events;-1===q(this,a.axes)&&(b?a.axes.splice(a.xAxis.length,0,this):a.axes.push(this),a[this.coll].push(this));this.series=this.series||[];a.inverted&&b&&void 0===this.reversed&&(this.reversed=!0);this.removePlotLine=this.removePlotBand=this.removePlotBandOrLine;for(f in c)D(this,f,c[f]); +this.isLog&&(this.val2lin=this.log2lin,this.lin2val=this.lin2log)},setOptions:function(a){this.options=n(this.defaultOptions,"yAxis"===this.coll&&this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],n(w[this.coll],a))},defaultLabelFormatter:function(){var c=this.axis,b=this.value,d=c.categories,e=this.dateTimeLabelFormat,q=w.lang,u=q.numericSymbols,q=q.numericSymbolMagnitude||1E3,n=u&&u.length,g,y=c.options.labels.format, +c=c.isLog?b:c.tickInterval;if(y)g=f(y,this);else if(d)g=b;else if(e)g=a.dateFormat(e,b);else if(n&&1E3<=c)for(;n--&&void 0===g;)d=Math.pow(q,n+1),c>=d&&0===10*b%d&&null!==u[n]&&0!==b&&(g=a.numberFormat(b/d,-1)+u[n]);void 0===g&&(g=1E4<=Math.abs(b)?a.numberFormat(b,-1):a.numberFormat(b,-1,void 0,""));return g},getSeriesExtremes:function(){var a=this,d=a.chart;a.hasVisibleSeries=!1;a.dataMin=a.dataMax=a.threshold=null;a.softThreshold=!a.isXAxis;a.buildStacks&&a.buildStacks();e(a.series,function(v){if(v.visible|| +!d.options.chart.ignoreHiddenSeries){var f=v.options,e=f.threshold,q;a.hasVisibleSeries=!0;a.isLog&&0>=e&&(e=null);if(a.isXAxis)f=v.xData,f.length&&(v=H(f),c(v)||v instanceof Date||(f=b(f,function(a){return c(a)}),v=H(f)),a.dataMin=Math.min(x(a.dataMin,f[0]),v),a.dataMax=Math.max(x(a.dataMax,f[0]),G(f)));else if(v.getExtremes(),q=v.dataMax,v=v.dataMin,t(v)&&t(q)&&(a.dataMin=Math.min(x(a.dataMin,v),v),a.dataMax=Math.max(x(a.dataMax,q),q)),t(e)&&(a.threshold=e),!f.softThreshold||a.isLog)a.softThreshold= +!1}})},translate:function(a,b,d,f,e,q){var v=this.linkedParent||this,u=1,n=0,g=f?v.oldTransA:v.transA;f=f?v.oldMin:v.min;var K=v.minPixelPadding;e=(v.isOrdinal||v.isBroken||v.isLog&&e)&&v.lin2val;g||(g=v.transA);d&&(u*=-1,n=v.len);v.reversed&&(u*=-1,n-=u*(v.sector||v.len));b?(a=(a*u+n-K)/g+f,e&&(a=v.lin2val(a))):(e&&(a=v.val2lin(a)),a=u*(a-f)*g+n+u*K+(c(q)?g*q:0));return a},toPixels:function(a,c){return this.translate(a,!1,!this.horiz,null,!0)+(c?0:this.pos)},toValue:function(a,c){return this.translate(a- +(c?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a,b,d,f,e){var v=this.chart,q=this.left,u=this.top,n,g,K=d&&v.oldChartHeight||v.chartHeight,y=d&&v.oldChartWidth||v.chartWidth,z;n=this.transB;var h=function(a,c,b){if(ab)f?a=Math.min(Math.max(c,a),b):z=!0;return a};e=x(e,this.translate(a,null,null,d));a=d=Math.round(e+n);n=g=Math.round(K-e-n);c(e)?this.horiz?(n=u,g=K-this.bottom,a=d=h(a,q,q+this.width)):(a=q,d=y-this.right,n=g=h(n,u,u+this.height)):z=!0;return z&&!f?null:v.renderer.crispLine(["M", +a,n,"L",d,g],b||1)},getLinearTickPositions:function(a,b,d){var v,f=r(Math.floor(b/a)*a),e=r(Math.ceil(d/a)*a),q=[];if(b===d&&c(b))return[b];for(b=f;b<=e;){q.push(b);b=r(b+a);if(b===v)break;v=b}return q},getMinorTickPositions:function(){var a=this.options,c=this.tickPositions,b=this.minorTickInterval,d=[],f,e=this.pointRangePadding||0;f=this.min-e;var e=this.max+e,q=e-f;if(q&&q/b=this.minRange,q,u,n,g,y,h;this.isXAxis&&void 0===this.minRange&&!this.isLog&&(t(a.min)||t(a.max)?this.minRange=null:(e(this.series,function(a){g=a.xData;for(u=y=a.xIncrement? +1:g.length-1;0=E?(p=E,m=0):b.dataMax<=E&&(J=E,I=0)),b.min=x(w,p,b.dataMin),b.max=x(B,J,b.dataMax));q&&(!a&&0>=Math.min(b.min, +x(b.dataMin,b.min))&&g(10,1),b.min=r(u(b.min),15),b.max=r(u(b.max),15));b.range&&t(b.max)&&(b.userMin=b.min=w=Math.max(b.min,b.minFromRange()),b.userMax=B=b.max,b.range=null);C(b,"foundExtremes");b.beforePadding&&b.beforePadding();b.adjustForMinRange();!(l||b.axisPointRange||b.usePercentage||h)&&t(b.min)&&t(b.max)&&(u=b.max-b.min)&&(!t(w)&&m&&(b.min-=u*m),!t(B)&&I&&(b.max+=u*I));c(f.floor)?b.min=Math.max(b.min,f.floor):c(f.softMin)&&(b.min=Math.min(b.min,f.softMin));c(f.ceiling)?b.max=Math.min(b.max, +f.ceiling):c(f.softMax)&&(b.max=Math.max(b.max,f.softMax));M&&t(b.dataMin)&&(E=E||0,!t(w)&&b.min=E?b.min=E:!t(B)&&b.max>E&&b.dataMax<=E&&(b.max=E));b.tickInterval=b.min===b.max||void 0===b.min||void 0===b.max?1:h&&!k&&F===b.linkedParent.options.tickPixelInterval?k=b.linkedParent.tickInterval:x(k,this.tickAmount?(b.max-b.min)/Math.max(this.tickAmount-1,1):void 0,l?1:(b.max-b.min)*F/Math.max(b.len,F));y&&!a&&e(b.series,function(a){a.processData(b.min!==b.oldMin||b.max!==b.oldMax)});b.setAxisTranslation(!0); +b.beforeSetTickPositions&&b.beforeSetTickPositions();b.postProcessTickInterval&&(b.tickInterval=b.postProcessTickInterval(b.tickInterval));b.pointRange&&!k&&(b.tickInterval=Math.max(b.pointRange,b.tickInterval));a=x(f.minTickInterval,b.isDatetimeAxis&&b.closestPointRange);!k&&b.tickIntervalb.tickInterval&&1E3b.max)),!!this.tickAmount));this.tickAmount||(b.tickInterval= +b.unsquish());this.setTickPositions()},setTickPositions:function(){var a=this.options,b,c=a.tickPositions,d=a.tickPositioner,f=a.startOnTick,e=a.endOnTick,q;this.tickmarkOffset=this.categories&&"between"===a.tickmarkPlacement&&1===this.tickInterval?.5:0;this.minorTickInterval="auto"===a.minorTickInterval&&this.tickInterval?this.tickInterval/5:a.minorTickInterval;this.tickPositions=b=c&&c.slice();!b&&(b=this.isDatetimeAxis?this.getTimeTicks(this.normalizeTimeTickInterval(this.tickInterval,a.units), +this.min,this.max,a.startOfWeek,this.ordinalPositions,this.closestPointRange,!0):this.isLog?this.getLogTickPositions(this.tickInterval,this.min,this.max):this.getLinearTickPositions(this.tickInterval,this.min,this.max),b.length>this.len&&(b=[b[0],b.pop()]),this.tickPositions=b,d&&(d=d.apply(this,[this.min,this.max])))&&(this.tickPositions=b=d);this.isLinked||(this.trimTicks(b,f,e),this.min===this.max&&t(this.min)&&!this.tickAmount&&(q=!0,this.min-=.5,this.max+=.5),this.single=q,c||d||this.adjustTickAmount())}, +trimTicks:function(a,b,c){var d=a[0],f=a[a.length-1],v=this.minPointOffset||0;if(b)this.min=d;else for(;this.min-v>a[0];)a.shift();if(c)this.max=f;else for(;this.max+vb&&(this.finalTickAmt=b,b=5);this.tickAmount=b},adjustTickAmount:function(){var a=this.tickInterval,b=this.tickPositions,c=this.tickAmount,d=this.finalTickAmt,f=b&&b.length;if(fc&&(this.tickInterval*= +2,this.setTickPositions());if(t(d)){for(a=c=b.length;a--;)(3===d&&1===a%2||2>=d&&0=f&&(b=f)),this.displayBtn=void 0!==a||void 0!==b,this.setExtremes(a,b,!1,void 0,{trigger:"zoom"});return!0},setAxisSize:function(){var a=this.chart,b=this.options,c=b.offsetLeft||0,d=this.horiz,f=x(b.width,a.plotWidth-c+(b.offsetRight||0)),e=x(b.height,a.plotHeight),q=x(b.top,a.plotTop),b=x(b.left,a.plotLeft+c),c=/%$/;c.test(e)&&(e=Math.round(parseFloat(e)/ +100*a.plotHeight));c.test(q)&&(q=Math.round(parseFloat(q)/100*a.plotHeight+a.plotTop));this.left=b;this.top=q;this.width=f;this.height=e;this.bottom=a.chartHeight-e-q;this.right=a.chartWidth-f-b;this.len=Math.max(d?f:e,0);this.pos=d?b:q},getExtremes:function(){var a=this.isLog,b=this.lin2log;return{min:a?r(b(this.min)):this.min,max:a?r(b(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var b=this.isLog,c=this.lin2log, +d=b?c(this.min):this.min,b=b?c(this.max):this.max;null===a?a=d:d>a?a=d:ba?"right":195a?"left":"center"},tickSize:function(a){var b=this.options,c=b[a+"Length"],d=x(b[a+"Width"],"tick"===a&&this.isXAxis?1:0);if(d&&c)return"inside"===b[a+"Position"]&&(c=-c),[c,d]},labelMetrics:function(){return this.chart.renderer.fontMetrics(this.options.labels.style&&this.options.labels.style.fontSize, +this.ticks[0]&&this.ticks[0].label)},unsquish:function(){var a=this.options.labels,b=this.horiz,c=this.tickInterval,d=c,f=this.len/(((this.categories?1:0)+this.max-this.min)/c),q,u=a.rotation,n=this.labelMetrics(),g,y=Number.MAX_VALUE,h,I=function(a){a/=f||1;a=1=a)g=I(Math.abs(n.h/Math.sin(k*a))),b=g+Math.abs(a/360),b(c.step||0)&&!c.rotation&&(this.staggerLines||1)*a.plotWidth/d||!b&&(f&&f-a.spacing[3]||.33*a.chartWidth)},renderUnsquish:function(){var a=this.chart,b=a.renderer,c=this.tickPositions,d=this.ticks,f=this.options.labels,q=this.horiz,u=this.getSlotWidth(),g=Math.max(1, +Math.round(u-2*(f.padding||5))),y={},h=this.labelMetrics(),I=f.style&&f.style.textOverflow,A,x=0,m,k;F(f.rotation)||(y.rotation=f.rotation||0);e(c,function(a){(a=d[a])&&a.labelLength>x&&(x=a.labelLength)});this.maxLabelLength=x;if(this.autoRotation)x>g&&x>h.h?y.rotation=this.labelRotation:this.labelRotation=0;else if(u&&(A={width:g+"px"},!I))for(A.textOverflow="clip",m=c.length;!q&&m--;)if(k=c[m],g=d[k].label)g.styles&&"ellipsis"===g.styles.textOverflow?g.css({textOverflow:"clip"}):d[k].labelLength> +u&&g.css({width:u+"px"}),g.getBBox().height>this.len/c.length-(h.h-h.f)&&(g.specCss={textOverflow:"ellipsis"});y.rotation&&(A={width:(x>.5*a.chartHeight?.33*a.chartHeight:a.chartHeight)+"px"},I||(A.textOverflow="ellipsis"));if(this.labelAlign=f.align||this.autoLabelAlign(this.labelRotation))y.align=this.labelAlign;e(c,function(a){var b=(a=d[a])&&a.label;b&&(b.attr(y),A&&b.css(n(A,b.specCss)),delete b.specCss,a.rotation=y.rotation)});this.tickRotCorr=b.rotCorr(h.b,this.labelRotation||0,0!==this.side)}, +hasData:function(){return this.hasVisibleSeries||t(this.min)&&t(this.max)&&!!this.tickPositions},getOffset:function(){var a=this,b=a.chart,c=b.renderer,d=a.options,f=a.tickPositions,q=a.ticks,u=a.horiz,n=a.side,g=b.inverted?[1,0,3,2][n]:n,y,h,I=0,A,m=0,k=d.title,F=d.labels,E=0,l=a.opposite,C=b.axisOffset,b=b.clipOffset,p=[-1,1,1,-1][n],r,J=d.className,w=a.axisParent,B=this.tickSize("tick");y=a.hasData();a.showAxis=h=y||x(d.showEmpty,!0);a.staggerLines=a.horiz&&F.staggerLines;a.axisGroup||(a.gridGroup= +c.g("grid").attr({zIndex:d.gridZIndex||1}).addClass("highcharts-"+this.coll.toLowerCase()+"-grid "+(J||"")).add(w),a.axisGroup=c.g("axis").attr({zIndex:d.zIndex||2}).addClass("highcharts-"+this.coll.toLowerCase()+" "+(J||"")).add(w),a.labelGroup=c.g("axis-labels").attr({zIndex:F.zIndex||7}).addClass("highcharts-"+a.coll.toLowerCase()+"-labels "+(J||"")).add(w));if(y||a.isLinked)e(f,function(b){q[b]?q[b].addLabel():q[b]=new M(a,b)}),a.renderUnsquish(),!1===F.reserveSpace||0!==n&&2!==n&&{1:"left",3:"right"}[n]!== +a.labelAlign&&"center"!==a.labelAlign||e(f,function(a){E=Math.max(q[a].getLabelSize(),E)}),a.staggerLines&&(E*=a.staggerLines,a.labelOffset=E*(a.opposite?-1:1));else for(r in q)q[r].destroy(),delete q[r];k&&k.text&&!1!==k.enabled&&(a.axisTitle||((r=k.textAlign)||(r=(u?{low:"left",middle:"center",high:"right"}:{low:l?"right":"left",middle:"center",high:l?"left":"right"})[k.align]),a.axisTitle=c.text(k.text,0,0,k.useHTML).attr({zIndex:7,rotation:k.rotation||0,align:r}).addClass("highcharts-axis-title").css(k.style).add(a.axisGroup), +a.axisTitle.isNew=!0),h&&(I=a.axisTitle.getBBox()[u?"height":"width"],A=k.offset,m=t(A)?0:x(k.margin,u?5:10)),a.axisTitle[h?"show":"hide"](!0));a.renderLine();a.offset=p*x(d.offset,C[n]);a.tickRotCorr=a.tickRotCorr||{x:0,y:0};c=0===n?-a.labelMetrics().h:2===n?a.tickRotCorr.y:0;m=Math.abs(E)+m;E&&(m=m-c+p*(u?x(F.y,a.tickRotCorr.y+8*p):F.x));a.axisTitleMargin=x(A,m);C[n]=Math.max(C[n],a.axisTitleMargin+I+p*a.offset,m,y&&f.length&&B?B[0]:0);d=d.offset?0:2*Math.floor(a.axisLine.strokeWidth()/2);b[g]= +Math.max(b[g],d)},getLinePath:function(a){var b=this.chart,c=this.opposite,d=this.offset,f=this.horiz,e=this.left+(c?this.width:0)+d,d=b.chartHeight-this.bottom-(c?this.height:0)+d;c&&(a*=-1);return b.renderer.crispLine(["M",f?this.left:e,f?d:this.top,"L",f?b.chartWidth-this.right:e,f?d:b.chartHeight-this.bottom],a)},renderLine:function(){this.axisLine||(this.axisLine=this.chart.renderer.path().addClass("highcharts-axis-line").add(this.axisGroup),this.axisLine.attr({stroke:this.options.lineColor, +"stroke-width":this.options.lineWidth,zIndex:7}))},getTitlePosition:function(){var a=this.horiz,b=this.left,c=this.top,d=this.len,f=this.options.title,e=a?b:c,q=this.opposite,u=this.offset,n=f.x||0,g=f.y||0,y=this.chart.renderer.fontMetrics(f.style&&f.style.fontSize,this.axisTitle).f,d={low:e+(a?0:d),middle:e+d/2,high:e+(a?d:0)}[f.align],b=(a?c+this.height:b)+(a?1:-1)*(q?-1:1)*this.axisTitleMargin+(2===this.side?y:0);return{x:a?d+n:b+(q?this.width:0)+u+n,y:a?b+g-(q?this.height:0)+u:d+g}},render:function(){var a= +this,b=a.chart,d=b.renderer,f=a.options,q=a.isLog,u=a.lin2log,n=a.isLinked,g=a.tickPositions,y=a.axisTitle,h=a.ticks,A=a.minorTicks,x=a.alternateBands,m=f.stackLabels,k=f.alternateGridColor,F=a.tickmarkOffset,E=a.axisLine,l=b.hasRendered&&c(a.oldMin),C=a.showAxis,p=B(d.globalAnimation),r,t;a.labelEdge.length=0;a.overlap=!1;e([h,A,x],function(a){for(var b in a)a[b].isActive=!1});if(a.hasData()||n)a.minorTickInterval&&!a.categories&&e(a.getMinorTickPositions(),function(b){A[b]||(A[b]=new M(a,b,"minor")); +l&&A[b].isNew&&A[b].render(null,!0);A[b].render(null,!1,1)}),g.length&&(e(g,function(b,c){if(!n||b>=a.min&&b<=a.max)h[b]||(h[b]=new M(a,b)),l&&h[b].isNew&&h[b].render(c,!0,.1),h[b].render(c)}),F&&(0===a.min||a.single)&&(h[-1]||(h[-1]=new M(a,-1,null,!0)),h[-1].render(-1))),k&&e(g,function(c,d){t=void 0!==g[d+1]?g[d+1]+F:a.max-F;0===d%2&&c=e.second?0:A*Math.floor(c.getMilliseconds()/A));if(n>=e.second)c[B.hcSetSeconds](n>=e.minute?0:A*Math.floor(c.getSeconds()/ +A));if(n>=e.minute)c[B.hcSetMinutes](n>=e.hour?0:A*Math.floor(c[B.hcGetMinutes]()/A));if(n>=e.hour)c[B.hcSetHours](n>=e.day?0:A*Math.floor(c[B.hcGetHours]()/A));if(n>=e.day)c[B.hcSetDate](n>=e.month?1:A*Math.floor(c[B.hcGetDate]()/A));n>=e.month&&(c[B.hcSetMonth](n>=e.year?0:A*Math.floor(c[B.hcGetMonth]()/A)),g=c[B.hcGetFullYear]());if(n>=e.year)c[B.hcSetFullYear](g-g%A);if(n===e.week)c[B.hcSetDate](c[B.hcGetDate]()-c[B.hcGetDay]()+m(f,1));g=c[B.hcGetFullYear]();f=c[B.hcGetMonth]();var C=c[B.hcGetDate](), +y=c[B.hcGetHours]();if(B.hcTimezoneOffset||B.hcGetTimezoneOffset)x=(!q||!!B.hcGetTimezoneOffset)&&(k-h>4*e.month||t(h)!==t(k)),c=c.getTime(),c=new B(c+t(c));q=c.getTime();for(h=1;qr&&(!t||b<=w)&&void 0!==b&&h.push(b),b>w&&(q=!0),b=d;else r=e(r),w= +e(w),a=k[t?"minorTickInterval":"tickInterval"],a=p("auto"===a?null:a,this._minorAutoInterval,k.tickPixelInterval/(t?5:1)*(w-r)/((t?m/this.tickPositions.length:m)||1)),a=H(a,null,B(a)),h=G(this.getLinearTickPositions(a,r,w),g),t||(this._minorAutoInterval=a/5);t||(this.tickInterval=a);return h};D.prototype.log2lin=function(a){return Math.log(a)/Math.LN10};D.prototype.lin2log=function(a){return Math.pow(10,a)}})(N);(function(a){var D=a.dateFormat,B=a.each,G=a.extend,H=a.format,p=a.isNumber,l=a.map,r= +a.merge,w=a.pick,t=a.splat,k=a.stop,m=a.syncTimeout,e=a.timeUnits;a.Tooltip=function(){this.init.apply(this,arguments)};a.Tooltip.prototype={init:function(a,e){this.chart=a;this.options=e;this.crosshairs=[];this.now={x:0,y:0};this.isHidden=!0;this.split=e.split&&!a.inverted;this.shared=e.shared||this.split},cleanSplit:function(a){B(this.chart.series,function(e){var g=e&&e.tt;g&&(!g.isActive||a?e.tt=g.destroy():g.isActive=!1)})},getLabel:function(){var a=this.chart.renderer,e=this.options;this.label|| +(this.split?this.label=a.g("tooltip"):(this.label=a.label("",0,0,e.shape||"callout",null,null,e.useHTML,null,"tooltip").attr({padding:e.padding,r:e.borderRadius}),this.label.attr({fill:e.backgroundColor,"stroke-width":e.borderWidth}).css(e.style).shadow(e.shadow)),this.label.attr({zIndex:8}).add());return this.label},update:function(a){this.destroy();this.init(this.chart,r(!0,this.options,a))},destroy:function(){this.label&&(this.label=this.label.destroy());this.split&&this.tt&&(this.cleanSplit(this.chart, +!0),this.tt=this.tt.destroy());clearTimeout(this.hideTimer);clearTimeout(this.tooltipTimeout)},move:function(a,e,m,f){var d=this,b=d.now,q=!1!==d.options.animation&&!d.isHidden&&(1h-q?h:h-q);else if(v)b[a]=Math.max(g,e+q+f>c?e:e+q);else return!1},x=function(a,c,f,e){var q;ec-d?q=!1:b[a]=ec-f/2?c-f-2:e-f/2;return q},k=function(a){var b=c;c=h;h=b;g=a},y=function(){!1!==A.apply(0,c)?!1!==x.apply(0,h)||g||(k(!0),y()):g?b.x=b.y=0:(k(!0),y())};(f.inverted||1y&&(q=!1);a=(e.series&&e.series.yAxis&&e.series.yAxis.pos)+(e.plotY||0);a-=d.plotTop;f.push({target:e.isHeader?d.plotHeight+c:a,rank:e.isHeader?1:0,size:n.tt.getBBox().height+1,point:e,x:y,tt:A})});this.cleanSplit(); +a.distribute(f,d.plotHeight+c);B(f,function(a){var b=a.point;a.tt.attr({visibility:void 0===a.pos?"hidden":"inherit",x:q||b.isHeader?a.x:b.plotX+d.plotLeft+w(m.distance,16),y:a.pos+d.plotTop,anchorX:b.plotX+d.plotLeft,anchorY:b.isHeader?a.pos+d.plotTop-15:b.plotY+d.plotTop})})},updatePosition:function(a){var e=this.chart,g=this.getLabel(),g=(this.options.positioner||this.getPosition).call(this,g.width,g.height,a);this.move(Math.round(g.x),Math.round(g.y||0),a.plotX+e.plotLeft,a.plotY+e.plotTop)}, +getXDateFormat:function(a,h,m){var f;h=h.dateTimeLabelFormats;var d=m&&m.closestPointRange,b,q={millisecond:15,second:12,minute:9,hour:6,day:3},g,c="millisecond";if(d){g=D("%m-%d %H:%M:%S.%L",a.x);for(b in e){if(d===e.week&&+D("%w",a.x)===m.options.startOfWeek&&"00:00:00.000"===g.substr(6)){b="week";break}if(e[b]>d){b=c;break}if(q[b]&&g.substr(q[b])!=="01-01 00:00:00.000".substr(q[b]))break;"week"!==b&&(c=b)}b&&(f=h[b])}else f=h.day;return f||h.year},tooltipFooterHeaderFormatter:function(a,e){var g= +e?"footer":"header";e=a.series;var f=e.tooltipOptions,d=f.xDateFormat,b=e.xAxis,q=b&&"datetime"===b.options.type&&p(a.key),g=f[g+"Format"];q&&!d&&(d=this.getXDateFormat(a,f,b));q&&d&&(g=g.replace("{point.key}","{point.key:"+d+"}"));return H(g,{point:a,series:e})},bodyFormatter:function(a){return l(a,function(a){var e=a.series.tooltipOptions;return(e.pointFormatter||a.point.tooltipFormatter).call(a.point,e.pointFormat)})}}})(N);(function(a){var D=a.addEvent,B=a.attr,G=a.charts,H=a.color,p=a.css,l= +a.defined,r=a.doc,w=a.each,t=a.extend,k=a.fireEvent,m=a.offset,e=a.pick,g=a.removeEvent,h=a.splat,C=a.Tooltip,f=a.win;a.Pointer=function(a,b){this.init(a,b)};a.Pointer.prototype={init:function(a,b){this.options=b;this.chart=a;this.runChartClick=b.chart.events&&!!b.chart.events.click;this.pinchDown=[];this.lastValidTouch={};C&&b.tooltip.enabled&&(a.tooltip=new C(a,b.tooltip),this.followTouchMove=e(b.tooltip.followTouchMove,!0));this.setDOMEvents()},zoomOption:function(a){var b=this.chart,d=b.options.chart, +f=d.zoomType||"",b=b.inverted;/touch/.test(a.type)&&(f=e(d.pinchType,f));this.zoomX=a=/x/.test(f);this.zoomY=f=/y/.test(f);this.zoomHor=a&&!b||f&&b;this.zoomVert=f&&!b||a&&b;this.hasZoom=a||f},normalize:function(a,b){var d,e;a=a||f.event;a.target||(a.target=a.srcElement);e=a.touches?a.touches.length?a.touches.item(0):a.changedTouches[0]:a;b||(this.chartPosition=b=m(this.chart.container));void 0===e.pageX?(d=Math.max(a.x,a.clientX-b.left),b=a.y):(d=e.pageX-b.left,b=e.pageY-b.top);return t(a,{chartX:Math.round(d), +chartY:Math.round(b)})},getCoordinates:function(a){var b={xAxis:[],yAxis:[]};w(this.chart.axes,function(d){b[d.isXAxis?"xAxis":"yAxis"].push({axis:d,value:d.toValue(a[d.horiz?"chartX":"chartY"])})});return b},runPointActions:function(d){var b=this.chart,f=b.series,g=b.tooltip,c=g?g.shared:!1,h=!0,n=b.hoverPoint,m=b.hoverSeries,x,k,y,u=[],I;if(!c&&!m)for(x=0;xb.series.index?-1:1}));if(c)for(x=u.length;x--;)(u[x].x!==u[0].x||u[x].series.noSharedTooltip)&&u.splice(x,1);if(u[0]&&(u[0]!==this.prevKDPoint||g&&g.isHidden)){if(c&& +!u[0].series.noSharedTooltip){for(x=0;xh+k&&(f=h+k),cm+y&&(c=m+y),this.hasDragged=Math.sqrt(Math.pow(l-f,2)+Math.pow(v-c,2)),10x.max&&(l=x.max-c,v=!0);v?(u-=.8*(u-g[f][0]),J||(M-=.8*(M-g[f][1])),p()):g[f]=[u,M];A||(e[f]=F-E,e[q]=c);e=A?1/n:n;m[q]=c;m[f]=l;k[A?a?"scaleY":"scaleX":"scale"+d]=n;k["translate"+d]=e* +E+(u-e*y)},pinch:function(a){var r=this,t=r.chart,k=r.pinchDown,m=a.touches,e=m.length,g=r.lastValidTouch,h=r.hasZoom,C=r.selectionMarker,f={},d=1===e&&(r.inClass(a.target,"highcharts-tracker")&&t.runTrackerClick||r.runChartClick),b={};1b-6&&n(u||d.chartWidth- +2*x-v-e.x)&&(this.itemX=v,this.itemY+=p+this.lastLineHeight+I,this.lastLineHeight=0);this.maxItemWidth=Math.max(this.maxItemWidth,c);this.lastItemY=p+this.itemY+I;this.lastLineHeight=Math.max(g,this.lastLineHeight);a._legendItemPos=[this.itemX,this.itemY];f?this.itemX+=c:(this.itemY+=p+g+I,this.lastLineHeight=g);this.offsetWidth=u||Math.max((f?this.itemX-v-l:c)+x,this.offsetWidth)},getAllItems:function(){var a=[];l(this.chart.series,function(d){var b=d&&d.options;d&&m(b.showInLegend,p(b.linkedTo)? +!1:void 0,!0)&&(a=a.concat(d.legendItems||("point"===b.legendType?d.data:d)))});return a},adjustMargins:function(a,d){var b=this.chart,e=this.options,f=e.align.charAt(0)+e.verticalAlign.charAt(0)+e.layout.charAt(0);e.floating||l([/(lth|ct|rth)/,/(rtv|rm|rbv)/,/(rbh|cb|lbh)/,/(lbv|lm|ltv)/],function(c,g){c.test(f)&&!p(a[g])&&(b[t[g]]=Math.max(b[t[g]],b.legend[(g+1)%2?"legendHeight":"legendWidth"]+[1,-1,-1,1][g]*e[g%2?"x":"y"]+m(e.margin,12)+d[g]))})},render:function(){var a=this,d=a.chart,b=d.renderer, +e=a.group,h,c,m,n,k=a.box,x=a.options,p=a.padding;a.itemX=a.initialItemX;a.itemY=a.initialItemY;a.offsetWidth=0;a.lastItemY=0;e||(a.group=e=b.g("legend").attr({zIndex:7}).add(),a.contentGroup=b.g().attr({zIndex:1}).add(e),a.scrollGroup=b.g().add(a.contentGroup));a.renderTitle();h=a.getAllItems();g(h,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});x.reversed&&h.reverse();a.allItems=h;a.display=c=!!h.length;a.lastLineHeight=0;l(h,function(b){a.renderItem(b)}); +m=(x.width||a.offsetWidth)+p;n=a.lastItemY+a.lastLineHeight+a.titleHeight;n=a.handleOverflow(n);n+=p;k||(a.box=k=b.rect().addClass("highcharts-legend-box").attr({r:x.borderRadius}).add(e),k.isNew=!0);k.attr({stroke:x.borderColor,"stroke-width":x.borderWidth||0,fill:x.backgroundColor||"none"}).shadow(x.shadow);0b&&!1!==h.enabled?(this.clipHeight=g=Math.max(b-20-this.titleHeight-I,0),this.currentPage=m(this.currentPage,1),this.fullHeight=a,l(v,function(a,b){var c=a._legendItemPos[1];a=Math.round(a.legendItem.getBBox().height);var d=u.length;if(!d||c-u[d-1]>g&&(r||c)!==u[d-1])u.push(r||c),d++;b===v.length-1&&c+a-u[d-1]>g&&u.push(c);c!==r&&(r=c)}),n||(n=d.clipRect= +e.clipRect(0,I,9999,0),d.contentGroup.clip(n)),t(g),y||(this.nav=y=e.g().attr({zIndex:1}).add(this.group),this.up=e.symbol("triangle",0,0,p,p).on("click",function(){d.scroll(-1,k)}).add(y),this.pager=e.text("",15,10).addClass("highcharts-legend-navigation").css(h.style).add(y),this.down=e.symbol("triangle-down",0,0,p,p).on("click",function(){d.scroll(1,k)}).add(y)),d.scroll(0),a=b):y&&(t(),y.hide(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0);return a},scroll:function(a,d){var b=this.pages, +f=b.length;a=this.currentPage+a;var g=this.clipHeight,c=this.options.navigation,h=this.pager,n=this.padding;a>f&&(a=f);0f&&(g=typeof a[0],"string"===g?e.name=a[0]:"number"===g&&(e.x=a[0]),d++);b=h.value;)h=e[++g];h&&h.color&&!this.options.color&&(this.color=h.color);return h},destroy:function(){var a=this.series.chart,e=a.hoverPoints,g;a.pointCount--;e&&(this.setState(),H(e,this),e.length||(a.hoverPoints=null));if(this===a.hoverPoint)this.onMouseOut();if(this.graphic||this.dataLabel)k(this), +this.destroyElements();this.legendItem&&a.legend.destroyItem(this);for(g in this)this[g]=null},destroyElements:function(){for(var a=["graphic","dataLabel","dataLabelUpper","connector","shadowGroup"],e,g=6;g--;)e=a[g],this[e]&&(this[e]=this[e].destroy())},getLabelConfig:function(){return{x:this.category,y:this.y,color:this.color,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},tooltipFormatter:function(a){var e=this.series,g= +e.tooltipOptions,h=t(g.valueDecimals,""),k=g.valuePrefix||"",f=g.valueSuffix||"";B(e.pointArrayMap||["y"],function(d){d="{point."+d;if(k||f)a=a.replace(d+"}",k+d+"}"+f);a=a.replace(d+"}",d+":,."+h+"f}")});return l(a,{point:this,series:this.series})},firePointEvent:function(a,e,g){var h=this,k=this.series.options;(k.point.events[a]||h.options&&h.options.events&&h.options.events[a])&&this.importEvents();"click"===a&&k.allowPointSelect&&(g=function(a){h.select&&h.select(null,a.ctrlKey||a.metaKey||a.shiftKey)}); +p(this,a,e,g)},visible:!0}})(N);(function(a){var D=a.addEvent,B=a.animObject,G=a.arrayMax,H=a.arrayMin,p=a.correctFloat,l=a.Date,r=a.defaultOptions,w=a.defaultPlotOptions,t=a.defined,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.fireEvent,C=a.grep,f=a.isArray,d=a.isNumber,b=a.isString,q=a.merge,E=a.pick,c=a.removeEvent,F=a.splat,n=a.stableSort,A=a.SVGElement,x=a.syncTimeout,J=a.win;a.Series=a.seriesType("line",null,{lineWidth:2,allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{}, +marker:{lineWidth:0,lineColor:"#ffffff",radius:4,states:{hover:{animation:{duration:50},enabled:!0,radiusPlus:2,lineWidthPlus:1},select:{fillColor:"#cccccc",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:{align:"center",formatter:function(){return null===this.y?"":a.numberFormat(this.y,-1)},style:{fontSize:"11px",fontWeight:"bold",color:"contrast",textOutline:"1px contrast"},verticalAlign:"bottom",x:0,y:0,padding:5},cropThreshold:300,pointRange:0,softThreshold:!0,states:{hover:{lineWidthPlus:1, +marker:{},halo:{size:10,opacity:.25}},select:{marker:{}}},stickyTracking:!0,turboThreshold:1E3},{isCartesian:!0,pointClass:a.Point,sorted:!0,requireSorting:!0,directTouch:!1,axisTypes:["xAxis","yAxis"],colorCounter:0,parallelArrays:["x","y"],coll:"series",init:function(a,b){var c=this,d,e,f=a.series,u,y=function(a,b){return E(a.options.index,a._i)-E(b.options.index,b._i)};c.chart=a;c.options=b=c.setOptions(b);c.linkedSeries=[];c.bindAxes();g(c,{name:b.name,state:"",visible:!1!==b.visible,selected:!0=== +b.selected});e=b.events;for(d in e)D(c,d,e[d]);if(e&&e.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=!0;c.getColor();c.getSymbol();k(c.parallelArrays,function(a){c[a+"Data"]=[]});c.setData(b.data,!1);c.isCartesian&&(a.hasCartesianSeries=!0);f.length&&(u=f[f.length-1]);c._i=E(u&&u._i,-1)+1;f.push(c);n(f,y);this.yAxis&&n(this.yAxis.series,y);k(f,function(a,b){a.index=b;a.name=a.name||"Series "+(b+1)})},bindAxes:function(){var a=this,b=a.options,c=a.chart, +d;k(a.axisTypes||[],function(f){k(c[f],function(c){d=c.options;if(b[f]===d.index||void 0!==b[f]&&b[f]===d.id||void 0===b[f]&&0===d.index)c.series.push(a),a[f]=c,c.isDirty=!0});a[f]||a.optionalAxis===f||e(18,!0)})},updateParallelArrays:function(a,b){var c=a.series,e=arguments,f=d(b)?function(d){var e="y"===d&&c.toYData?c.toYData(a):a[d];c[d+"Data"][b]=e}:function(a){Array.prototype[b].apply(c[a+"Data"],Array.prototype.slice.call(e,2))};k(c.parallelArrays,f)},autoIncrement:function(){var a=this.options, +b=this.xIncrement,c,d=a.pointIntervalUnit,b=E(b,a.pointStart,0);this.pointInterval=c=E(this.pointInterval,a.pointInterval,1);d&&(a=new l(b),"day"===d?a=+a[l.hcSetDate](a[l.hcGetDate]()+c):"month"===d?a=+a[l.hcSetMonth](a[l.hcGetMonth]()+c):"year"===d&&(a=+a[l.hcSetFullYear](a[l.hcGetFullYear]()+c)),c=a-b);this.xIncrement=b+c;return b},setOptions:function(a){var b=this.chart,c=b.options.plotOptions,b=b.userOptions||{},d=b.plotOptions||{},e=c[this.type];this.userOptions=a;c=q(e,c.series,a);this.tooltipOptions= +q(r.tooltip,r.plotOptions[this.type].tooltip,b.tooltip,d.series&&d.series.tooltip,d[this.type]&&d[this.type].tooltip,a.tooltip);null===e.marker&&delete c.marker;this.zoneAxis=c.zoneAxis;a=this.zones=(c.zones||[]).slice();!c.negativeColor&&!c.negativeFillColor||c.zones||a.push({value:c[this.zoneAxis+"Threshold"]||c.threshold||0,className:"highcharts-negative",color:c.negativeColor,fillColor:c.negativeFillColor});a.length&&t(a[a.length-1].value)&&a.push({color:this.color,fillColor:this.fillColor}); +return c},getCyclic:function(a,b,c){var d,e=this.userOptions,f=a+"Index",g=a+"Counter",u=c?c.length:E(this.chart.options.chart[a+"Count"],this.chart[a+"Count"]);b||(d=E(e[f],e["_"+f]),t(d)||(e["_"+f]=d=this.chart[g]%u,this.chart[g]+=1),c&&(b=c[d]));void 0!==d&&(this[f]=d);this[a]=b},getColor:function(){this.options.colorByPoint?this.options.color=null:this.getCyclic("color",this.options.color||w[this.type].color,this.chart.options.colors)},getSymbol:function(){this.getCyclic("symbol",this.options.marker.symbol, +this.chart.options.symbols)},drawLegendSymbol:a.LegendSymbolMixin.drawLineMarker,setData:function(a,c,g,n){var u=this,q=u.points,h=q&&q.length||0,y,m=u.options,x=u.chart,A=null,I=u.xAxis,l=m.turboThreshold,p=this.xData,r=this.yData,F=(y=u.pointArrayMap)&&y.length;a=a||[];y=a.length;c=E(c,!0);if(!1!==n&&y&&h===y&&!u.cropped&&!u.hasGroupedData&&u.visible)k(a,function(a,b){q[b].update&&a!==m.data[b]&&q[b].update(a,!1,null,!1)});else{u.xIncrement=null;u.colorCounter=0;k(this.parallelArrays,function(a){u[a+ +"Data"].length=0});if(l&&y>l){for(g=0;null===A&&gh||this.forceCrop))if(b[d-1]l)b=[],c=[];else if(b[0]l)f=this.cropData(this.xData,this.yData,A,l),b=f.xData,c=f.yData,f=f.start,g=!0;for(h=b.length||1;--h;)d=x?y(b[h])-y(b[h-1]):b[h]-b[h-1],0d&&this.requireSorting&&e(15);this.cropped=g;this.cropStart=f;this.processedXData=b;this.processedYData=c;this.closestPointRange=n},cropData:function(a,b,c,d){var e=a.length,f=0,g=e,n=E(this.cropShoulder,1),u;for(u=0;u=c){f=Math.max(0,u- +n);break}for(c=u;cd){g=c+n;break}return{xData:a.slice(f,g),yData:b.slice(f,g),start:f,end:g}},generatePoints:function(){var a=this.options.data,b=this.data,c,d=this.processedXData,e=this.processedYData,f=this.pointClass,g=d.length,n=this.cropStart||0,q,h=this.hasGroupedData,k,m=[],x;b||h||(b=[],b.length=a.length,b=this.data=b);for(x=0;x=q&&(c[x-1]||k)<=h,y&&k)if(y=m.length)for(;y--;)null!==m[y]&&(g[n++]=m[y]);else g[n++]=m;this.dataMin=H(g);this.dataMax=G(g)},translate:function(){this.processedXData||this.processData();this.generatePoints();var a=this.options,b=a.stacking,c=this.xAxis,e=c.categories,f=this.yAxis,g=this.points,n=g.length,q=!!this.modifyValue,h=a.pointPlacement,k="between"===h||d(h),m=a.threshold,x=a.startFromThreshold?m:0,A,l,r,F,J=Number.MAX_VALUE;"between"===h&&(h=.5);d(h)&&(h*=E(a.pointRange||c.pointRange)); +for(a=0;a=B&&(C.isNull=!0);C.plotX=A=p(Math.min(Math.max(-1E5,c.translate(w,0,0,0,1,h,"flags"===this.type)),1E5));b&&this.visible&&!C.isNull&&D&&D[w]&&(F=this.getStackIndicator(F,w,this.index),G=D[w],B=G.points[F.key],l=B[0],B=B[1],l===x&&F.key===D[w].base&&(l=E(m,f.min)),f.isLog&&0>=l&&(l=null),C.total=C.stackTotal=G.total,C.percentage=G.total&&C.y/G.total*100,C.stackY= +B,G.setOffset(this.pointXOffset||0,this.barW||0));C.yBottom=t(l)?f.translate(l,0,1,0,1):null;q&&(B=this.modifyValue(B,C));C.plotY=l="number"===typeof B&&Infinity!==B?Math.min(Math.max(-1E5,f.translate(B,0,1,0,1)),1E5):void 0;C.isInside=void 0!==l&&0<=l&&l<=f.len&&0<=A&&A<=c.len;C.clientX=k?p(c.translate(w,0,0,0,1,h)):A;C.negative=C.y<(m||0);C.category=e&&void 0!==e[C.x]?e[C.x]:C.x;C.isNull||(void 0!==r&&(J=Math.min(J,Math.abs(A-r))),r=A)}this.closestPointRangePx=J},getValidPoints:function(a,b){var c= +this.chart;return C(a||this.points||[],function(a){return b&&!c.isInsidePlot(a.plotX,a.plotY,c.inverted)?!1:!a.isNull})},setClip:function(a){var b=this.chart,c=this.options,d=b.renderer,e=b.inverted,f=this.clipBox,g=f||b.clipBox,n=this.sharedClipKey||["_sharedClip",a&&a.duration,a&&a.easing,g.height,c.xAxis,c.yAxis].join(),q=b[n],h=b[n+"m"];q||(a&&(g.width=0,b[n+"m"]=h=d.clipRect(-99,e?-b.plotLeft:-b.plotTop,99,e?b.chartWidth:b.chartHeight)),b[n]=q=d.clipRect(g),q.count={length:0});a&&!q.count[this.index]&& +(q.count[this.index]=!0,q.count.length+=1);!1!==c.clip&&(this.group.clip(a||f?q:b.clipRect),this.markerGroup.clip(h),this.sharedClipKey=n);a||(q.count[this.index]&&(delete q.count[this.index],--q.count.length),0===q.count.length&&n&&b[n]&&(f||(b[n]=b[n].destroy()),b[n+"m"]&&(b[n+"m"]=b[n+"m"].destroy())))},animate:function(a){var b=this.chart,c=B(this.options.animation),d;a?this.setClip(c):(d=this.sharedClipKey,(a=b[d])&&a.animate({width:b.plotSizeX},c),b[d+"m"]&&b[d+"m"].animate({width:b.plotSizeX+ +99},c),this.animate=null)},afterAnimate:function(){this.setClip();h(this,"afterAnimate")},drawPoints:function(){var a=this.points,b=this.chart,c,e,f,g,n=this.options.marker,q,h,k,m,x=this.markerGroup,A=E(n.enabled,this.xAxis.isRadial?!0:null,this.closestPointRangePx>2*n.radius);if(!1!==n.enabled||this._hasPointMarkers)for(e=a.length;e--;)f=a[e],c=f.plotY,g=f.graphic,q=f.marker||{},h=!!f.marker,k=A&&void 0===q.enabled||q.enabled,m=f.isInside,k&&d(c)&&null!==f.y?(c=E(q.symbol,this.symbol),f.hasImage= +0===c.indexOf("url"),k=this.markerAttribs(f,f.selected&&"select"),g?g[m?"show":"hide"](!0).animate(k):m&&(0e&&b.shadow));g&&(g.startX=c.xMap, +g.isArea=c.isArea)})},applyZones:function(){var a=this,b=this.chart,c=b.renderer,d=this.zones,e,f,g=this.clips||[],n,q=this.graph,h=this.area,m=Math.max(b.chartWidth,b.chartHeight),x=this[(this.zoneAxis||"y")+"Axis"],A,l,p=b.inverted,r,F,C,t,J=!1;d.length&&(q||h)&&x&&void 0!==x.min&&(l=x.reversed,r=x.horiz,q&&q.hide(),h&&h.hide(),A=x.getExtremes(),k(d,function(d,u){e=l?r?b.plotWidth:0:r?0:x.toPixels(A.min);e=Math.min(Math.max(E(f,e),0),m);f=Math.min(Math.max(Math.round(x.toPixels(E(d.value,A.max), +!0)),0),m);J&&(e=f=x.toPixels(A.max));F=Math.abs(e-f);C=Math.min(e,f);t=Math.max(e,f);x.isXAxis?(n={x:p?t:C,y:0,width:F,height:m},r||(n.x=b.plotHeight-n.x)):(n={x:0,y:p?t:C,width:m,height:F},r&&(n.y=b.plotWidth-n.y));p&&c.isVML&&(n=x.isXAxis?{x:0,y:l?C:t,height:n.width,width:b.chartWidth}:{x:n.y-b.plotLeft-b.spacingBox.x,y:0,width:n.height,height:b.chartHeight});g[u]?g[u].animate(n):(g[u]=c.clipRect(n),q&&a["zone-graph-"+u].clip(g[u]),h&&a["zone-area-"+u].clip(g[u]));J=d.value>A.max}),this.clips= +g)},invertGroups:function(a){function b(){var b={width:c.yAxis.len,height:c.xAxis.len};k(["group","markerGroup"],function(d){c[d]&&c[d].attr(b).invert(a)})}var c=this,d;c.xAxis&&(d=D(c.chart,"resize",b),D(c,"destroy",d),b(a),c.invertGroups=b)},plotGroup:function(a,b,c,d,e){var f=this[a],g=!f;g&&(this[a]=f=this.chart.renderer.g(b).attr({zIndex:d||.1}).add(e),f.addClass("highcharts-series-"+this.index+" highcharts-"+this.type+"-series highcharts-color-"+this.colorIndex+" "+(this.options.className|| +"")));f.attr({visibility:c})[g?"attr":"animate"](this.getPlotBox());return f},getPlotBox:function(){var a=this.chart,b=this.xAxis,c=this.yAxis;a.inverted&&(b=c,c=this.xAxis);return{translateX:b?b.left:a.plotLeft,translateY:c?c.top:a.plotTop,scaleX:1,scaleY:1}},render:function(){var a=this,b=a.chart,c,d=a.options,e=!!a.animate&&b.renderer.isSVG&&B(d.animation).duration,f=a.visible?"inherit":"hidden",g=d.zIndex,n=a.hasRendered,q=b.seriesGroup,h=b.inverted;c=a.plotGroup("group","series",f,g,q);a.markerGroup= +a.plotGroup("markerGroup","markers",f,g,q);e&&a.animate(!0);c.inverted=a.isCartesian?h:!1;a.drawGraph&&(a.drawGraph(),a.applyZones());a.drawDataLabels&&a.drawDataLabels();a.visible&&a.drawPoints();a.drawTracker&&!1!==a.options.enableMouseTracking&&a.drawTracker();a.invertGroups(h);!1===d.clip||a.sharedClipKey||n||c.clip(b.clipRect);e&&a.animate();n||(a.animationTimeout=x(function(){a.afterAnimate()},e));a.isDirty=a.isDirtyData=!1;a.hasRendered=!0},redraw:function(){var a=this.chart,b=this.isDirty|| +this.isDirtyData,c=this.group,d=this.xAxis,e=this.yAxis;c&&(a.inverted&&c.attr({width:a.plotWidth,height:a.plotHeight}),c.animate({translateX:E(d&&d.left,a.plotLeft),translateY:E(e&&e.top,a.plotTop)}));this.translate();this.render();b&&delete this.kdTree},kdDimensions:1,kdAxisArray:["clientX","plotY"],searchPoint:function(a,b){var c=this.xAxis,d=this.yAxis,e=this.chart.inverted;return this.searchKDTree({clientX:e?c.len-a.chartY+c.pos:a.chartX-c.pos,plotY:e?d.len-a.chartX+d.pos:a.chartY-d.pos},b)}, +buildKDTree:function(){function a(c,d,e){var f,g;if(g=c&&c.length)return f=b.kdAxisArray[d%e],c.sort(function(a,b){return a[f]-b[f]}),g=Math.floor(g/2),{point:c[g],left:a(c.slice(0,g),d+1,e),right:a(c.slice(g+1),d+1,e)}}var b=this,c=b.kdDimensions;delete b.kdTree;x(function(){b.kdTree=a(b.getValidPoints(null,!b.directTouch),c,c)},b.options.kdNow?0:1)},searchKDTree:function(a,b){function c(a,b,n,q){var h=b.point,u=d.kdAxisArray[n%q],k,m,x=h;m=t(a[e])&&t(h[e])?Math.pow(a[e]-h[e],2):null;k=t(a[f])&& +t(h[f])?Math.pow(a[f]-h[f],2):null;k=(m||0)+(k||0);h.dist=t(k)?Math.sqrt(k):Number.MAX_VALUE;h.distX=t(m)?Math.sqrt(m):Number.MAX_VALUE;u=a[u]-h[u];k=0>u?"left":"right";m=0>u?"right":"left";b[k]&&(k=c(a,b[k],n+1,q),x=k[g]A;)l--;this.updateParallelArrays(h,"splice",l,0,0);this.updateParallelArrays(h,l);n&&h.name&&(n[A]=h.name);q.splice(l,0,a);m&&(this.data.splice(l,0,null),this.processData());"point"===c.legendType&&this.generatePoints();d&&(f[0]&&f[0].remove?f[0].remove(!1):(f.shift(),this.updateParallelArrays(h,"shift"),q.shift()));this.isDirtyData=this.isDirty=!0;b&&g.redraw(e)},removePoint:function(a, +b,d){var c=this,e=c.data,f=e[a],g=c.points,n=c.chart,h=function(){g&&g.length===e.length&&g.splice(a,1);e.splice(a,1);c.options.data.splice(a,1);c.updateParallelArrays(f||{series:c},"splice",a,1);f&&f.destroy();c.isDirty=!0;c.isDirtyData=!0;b&&n.redraw()};q(d,n);b=C(b,!0);f?f.firePointEvent("remove",null,h):h()},remove:function(a,b,d){function c(){e.destroy();f.isDirtyLegend=f.isDirtyBox=!0;f.linkSeries();C(a,!0)&&f.redraw(b)}var e=this,f=e.chart;!1!==d?k(e,"remove",null,c):c()},update:function(a, +d){var c=this,e=this.chart,f=this.userOptions,g=this.type,q=a.type||f.type||e.options.chart.type,u=b[g].prototype,m=["group","markerGroup","dataLabelsGroup"],k;if(q&&q!==g||void 0!==a.zIndex)m.length=0;r(m,function(a){m[a]=c[a];delete c[a]});a=h(f,{animation:!1,index:this.index,pointStart:this.xData[0]},{data:this.options.data},a);this.remove(!1,null,!1);for(k in u)this[k]=void 0;t(this,b[q||g].prototype);r(m,function(a){c[a]=m[a]});this.init(e,a);e.linkSeries();C(d,!0)&&e.redraw(!1)}});t(G.prototype, +{update:function(a,b){var c=this.chart;a=c.options[this.coll][this.options.index]=h(this.userOptions,a);this.destroy(!0);this.init(c,t(a,{events:void 0}));c.isDirtyBox=!0;C(b,!0)&&c.redraw()},remove:function(a){for(var b=this.chart,c=this.coll,d=this.series,e=d.length;e--;)d[e]&&d[e].remove(!1);w(b.axes,this);w(b[c],this);b.options[c].splice(this.options.index,1);r(b[c],function(a,b){a.options.index=b});this.destroy();b.isDirtyBox=!0;C(a,!0)&&b.redraw()},setTitle:function(a,b){this.update({title:a}, +b)},setCategories:function(a,b){this.update({categories:a},b)}})})(N);(function(a){var D=a.color,B=a.each,G=a.map,H=a.pick,p=a.Series,l=a.seriesType;l("area","line",{softThreshold:!1,threshold:0},{singleStacks:!1,getStackPoints:function(){var a=[],l=[],p=this.xAxis,k=this.yAxis,m=k.stacks[this.stackKey],e={},g=this.points,h=this.index,C=k.series,f=C.length,d,b=H(k.options.reversedStacks,!0)?1:-1,q,E;if(this.options.stacking){for(q=0;qa&&t>l?(t=Math.max(a,l),m=2*l-t):tH&& +m>l?(m=Math.max(H,l),t=2*l-m):m=Math.abs(g)&&.5a.closestPointRange*a.xAxis.transA,k=a.borderWidth=r(h.borderWidth,k?0:1),f=a.yAxis,d=a.translatedThreshold=f.getThreshold(h.threshold),b=r(h.minPointLength,5),q=a.getColumnMetrics(),m=q.width,c=a.barW=Math.max(m,1+2*k),l=a.pointXOffset= +q.offset;g.inverted&&(d-=.5);h.pointPadding&&(c=Math.ceil(c));w.prototype.translate.apply(a);G(a.points,function(e){var n=r(e.yBottom,d),q=999+Math.abs(n),q=Math.min(Math.max(-q,e.plotY),f.len+q),h=e.plotX+l,k=c,u=Math.min(q,n),p,t=Math.max(q,n)-u;Math.abs(t)b?n-b:d-(p?b:0));e.barX=h;e.pointWidth=m;e.tooltipPos=g.inverted?[f.len+f.pos-g.plotLeft-q,a.xAxis.len-h-k/2,t]:[h+k/2,q+f.pos-g.plotTop,t];e.shapeType="rect";e.shapeArgs= +a.crispCol.apply(a,e.isNull?[e.plotX,f.len/2,0,0]:[h,u,k,t])})},getSymbol:a.noop,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawGraph:function(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")},pointAttribs:function(a,g){var e=this.options,k=this.pointAttrToOptions||{},f=k.stroke||"borderColor",d=k["stroke-width"]||"borderWidth",b=a&&a.color||this.color,q=a[f]||e[f]||this.color||b,k=e.dashStyle,m;a&&this.zones.length&&(b=(b=a.getZone())&&b.color||a.options.color|| +this.color);g&&(g=e.states[g],m=g.brightness,b=g.color||void 0!==m&&B(b).brighten(g.brightness).get()||b,q=g[f]||q,k=g.dashStyle||k);a={fill:b,stroke:q,"stroke-width":a[d]||e[d]||this[d]||0};e.borderRadius&&(a.r=e.borderRadius);k&&(a.dashstyle=k);return a},drawPoints:function(){var a=this,g=this.chart,h=a.options,m=g.renderer,f=h.animationLimit||250,d;G(a.points,function(b){var e=b.graphic;p(b.plotY)&&null!==b.y?(d=b.shapeArgs,e?(k(e),e[g.pointCountt;++t)k=r[t],a=2>t||2===t&&/%$/.test(k),r[t]=B(k,[l,H,w,r[2]][t])+(a?p:0);r[3]>r[2]&&(r[3]=r[2]);return r}}})(N);(function(a){var D=a.addEvent,B=a.defined,G=a.each,H=a.extend,p=a.inArray,l=a.noop,r=a.pick,w=a.Point,t=a.Series,k=a.seriesType,m=a.setAnimation;k("pie","line",{center:[null,null],clip:!1,colorByPoint:!0,dataLabels:{distance:30,enabled:!0,formatter:function(){return null===this.y? +void 0:this.point.name},x:0},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,stickyTracking:!1,tooltip:{followPointer:!0},borderColor:"#ffffff",borderWidth:1,states:{hover:{brightness:.1,shadow:!1}}},{isCartesian:!1,requireSorting:!1,directTouch:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],axisTypes:[],pointAttribs:a.seriesTypes.column.prototype.pointAttribs,animate:function(a){var e=this,h=e.points,k=e.startAngleRad;a||(G(h,function(a){var d= +a.graphic,b=a.shapeArgs;d&&(d.attr({r:a.startR||e.center[3]/2,start:k,end:k}),d.animate({r:b.r,start:b.start,end:b.end},e.options.animation))}),e.animate=null)},updateTotals:function(){var a,g=0,h=this.points,k=h.length,f,d=this.options.ignoreHiddenPoint;for(a=0;af.y&&(f.y=null),g+=d&&!f.visible?0:f.y;this.total=g;for(a=0;a1.5*Math.PI?q-=2*Math.PI:q<-Math.PI/2&&(q+=2*Math.PI);t.slicedTranslation={translateX:Math.round(Math.cos(q)*k),translateY:Math.round(Math.sin(q)*k)};d=Math.cos(q)*a[2]/2;b=Math.sin(q)*a[2]/2;t.tooltipPos=[a[0]+.7*d,a[1]+.7*b];t.half=q<-Math.PI/2||q>Math.PI/2?1:0;t.angle=q;f=Math.min(f,n/5);t.labelPos=[a[0]+d+Math.cos(q)*n,a[1]+b+Math.sin(q)*n,a[0]+d+Math.cos(q)*f,a[1]+b+Math.sin(q)* +f,a[0]+d,a[1]+b,0>n?"center":t.half?"right":"left",q]}},drawGraph:null,drawPoints:function(){var a=this,g=a.chart.renderer,h,k,f,d,b=a.options.shadow;b&&!a.shadowGroup&&(a.shadowGroup=g.g("shadow").add(a.group));G(a.points,function(e){if(null!==e.y){k=e.graphic;d=e.shapeArgs;h=e.sliced?e.slicedTranslation:{};var q=e.shadowGroup;b&&!q&&(q=e.shadowGroup=g.g("shadow").add(a.shadowGroup));q&&q.attr(h);f=a.pointAttribs(e,e.selected&&"select");k?k.setRadialReference(a.center).attr(f).animate(H(d,h)):(e.graphic= +k=g[e.shapeType](d).addClass(e.getClassName()).setRadialReference(a.center).attr(h).add(a.group),e.visible||k.attr({visibility:"hidden"}),k.attr(f).attr({"stroke-linejoin":"round"}).shadow(b,q))}})},searchPoint:l,sortByAngle:function(a,g){a.sort(function(a,e){return void 0!==a.angle&&(e.angle-a.angle)*g})},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,getCenter:a.CenteredSeriesMixin.getCenter,getSymbol:l},{init:function(){w.prototype.init.apply(this,arguments);var a=this,g;a.name=r(a.name,"Slice"); +g=function(e){a.slice("select"===e.type)};D(a,"select",g);D(a,"unselect",g);return a},setVisible:function(a,g){var e=this,k=e.series,f=k.chart,d=k.options.ignoreHiddenPoint;g=r(g,d);a!==e.visible&&(e.visible=e.options.visible=a=void 0===a?!e.visible:a,k.options.data[p(e,k.data)]=e.options,G(["graphic","dataLabel","connector","shadowGroup"],function(b){if(e[b])e[b][a?"show":"hide"](!0)}),e.legendItem&&f.legend.colorizeItem(e,a),a||"hover"!==e.state||e.setState(""),d&&(k.isDirty=!0),g&&f.redraw())}, +slice:function(a,g,h){var e=this.series;m(h,e.chart);r(g,!0);this.sliced=this.options.sliced=a=B(a)?a:!this.sliced;e.options.data[p(this,e.data)]=this.options;a=a?this.slicedTranslation:{translateX:0,translateY:0};this.graphic.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)},haloPath:function(a){var e=this.shapeArgs;return this.sliced||!this.visible?[]:this.series.chart.renderer.symbols.arc(e.x,e.y,e.r+a,e.r+a,{innerR:this.shapeArgs.r,start:e.start,end:e.end})}})})(N);(function(a){var D= +a.addEvent,B=a.arrayMax,G=a.defined,H=a.each,p=a.extend,l=a.format,r=a.map,w=a.merge,t=a.noop,k=a.pick,m=a.relativeLength,e=a.Series,g=a.seriesTypes,h=a.stableSort,C=a.stop;a.distribute=function(a,d){function b(a,b){return a.target-b.target}var e,f=!0,c=a,g=[],n;n=0;for(e=a.length;e--;)n+=a[e].size;if(n>d){h(a,function(a,b){return(b.rank||0)-(a.rank||0)});for(n=e=0;n<=d;)n+=a[e].size,e++;g=a.splice(e-1,a.length)}h(a,b);for(a=r(a,function(a){return{size:a.size,targets:[a.target]}});f;){for(e=a.length;e--;)f= +a[e],n=(Math.min.apply(0,f.targets)+Math.max.apply(0,f.targets))/2,f.pos=Math.min(Math.max(0,n-f.size/2),d-f.size);e=a.length;for(f=!1;e--;)0a[e].pos&&(a[e-1].size+=a[e].size,a[e-1].targets=a[e-1].targets.concat(a[e].targets),a[e-1].pos+a[e-1].size>d&&(a[e-1].pos=d-a[e-1].size),a.splice(e,1),f=!0)}e=0;H(a,function(a){var b=0;H(a.targets,function(){c[e].pos=a.pos+b;b+=c[e].size;e++})});c.push.apply(c,g);h(c,b)};e.prototype.drawDataLabels=function(){var a=this,d=a.options, +b=d.dataLabels,e=a.points,g,c,h=a.hasRendered||0,n,m,x=k(b.defer,!0),r=a.chart.renderer;if(b.enabled||a._hasPointLabels)a.dlProcessOptions&&a.dlProcessOptions(b),m=a.plotGroup("dataLabelsGroup","data-labels",x&&!h?"hidden":"visible",b.zIndex||6),x&&(m.attr({opacity:+h}),h||D(a,"afterAnimate",function(){a.visible&&m.show(!0);m[d.animation?"animate":"attr"]({opacity:1},{duration:200})})),c=b,H(e,function(e){var f,q=e.dataLabel,h,x,A=e.connector,y=!0,t,z={};g=e.dlOptions||e.options&&e.options.dataLabels; +f=k(g&&g.enabled,c.enabled)&&null!==e.y;if(q&&!f)e.dataLabel=q.destroy();else if(f){b=w(c,g);t=b.style;f=b.rotation;h=e.getLabelConfig();n=b.format?l(b.format,h):b.formatter.call(h,b);t.color=k(b.color,t.color,a.color,"#000000");if(q)G(n)?(q.attr({text:n}),y=!1):(e.dataLabel=q=q.destroy(),A&&(e.connector=A.destroy()));else if(G(n)){q={fill:b.backgroundColor,stroke:b.borderColor,"stroke-width":b.borderWidth,r:b.borderRadius||0,rotation:f,padding:b.padding,zIndex:1};"contrast"===t.color&&(z.color=b.inside|| +0>b.distance||d.stacking?r.getContrast(e.color||a.color):"#000000");d.cursor&&(z.cursor=d.cursor);for(x in q)void 0===q[x]&&delete q[x];q=e.dataLabel=r[f?"text":"label"](n,0,-9999,b.shape,null,null,b.useHTML,null,"data-label").attr(q);q.addClass("highcharts-data-label-color-"+e.colorIndex+" "+(b.className||""));q.css(p(t,z));q.add(m);q.shadow(b.shadow)}q&&a.alignDataLabel(e,q,b,null,y)}})};e.prototype.alignDataLabel=function(a,d,b,e,g){var c=this.chart,f=c.inverted,n=k(a.plotX,-9999),q=k(a.plotY, +-9999),h=d.getBBox(),m,l=b.rotation,u=b.align,r=this.visible&&(a.series.forceDL||c.isInsidePlot(n,Math.round(q),f)||e&&c.isInsidePlot(n,f?e.x+1:e.y+e.height-1,f)),t="justify"===k(b.overflow,"justify");r&&(m=b.style.fontSize,m=c.renderer.fontMetrics(m,d).b,e=p({x:f?c.plotWidth-q:n,y:Math.round(f?c.plotHeight-n:q),width:0,height:0},e),p(b,{width:h.width,height:h.height}),l?(t=!1,f=c.renderer.rotCorr(m,l),f={x:e.x+b.x+e.width/2+f.x,y:e.y+b.y+{top:0,middle:.5,bottom:1}[b.verticalAlign]*e.height},d[g? +"attr":"animate"](f).attr({align:u}),n=(l+720)%360,n=180n,"left"===u?f.y-=n?h.height:0:"center"===u?(f.x-=h.width/2,f.y-=h.height/2):"right"===u&&(f.x-=h.width,f.y-=n?0:h.height)):(d.align(b,null,e),f=d.alignAttr),t?this.justifyDataLabel(d,b,f,h,e,g):k(b.crop,!0)&&(r=c.isInsidePlot(f.x,f.y)&&c.isInsidePlot(f.x+h.width,f.y+h.height)),b.shape&&!l&&d.attr({anchorX:a.plotX,anchorY:a.plotY}));r||(C(d),d.attr({y:-9999}),d.placed=!1)};e.prototype.justifyDataLabel=function(a,d,b,e,g,c){var f=this.chart, +n=d.align,h=d.verticalAlign,q,k,m=a.box?0:a.padding||0;q=b.x+m;0>q&&("right"===n?d.align="left":d.x=-q,k=!0);q=b.x+e.width-m;q>f.plotWidth&&("left"===n?d.align="right":d.x=f.plotWidth-q,k=!0);q=b.y+m;0>q&&("bottom"===h?d.verticalAlign="top":d.y=-q,k=!0);q=b.y+e.height-m;q>f.plotHeight&&("top"===h?d.verticalAlign="bottom":d.y=f.plotHeight-q,k=!0);k&&(a.placed=!c,a.align(d,null,g))};g.pie&&(g.pie.prototype.drawDataLabels=function(){var f=this,d=f.data,b,g=f.chart,h=f.options.dataLabels,c=k(h.connectorPadding, +10),m=k(h.connectorWidth,1),n=g.plotWidth,l=g.plotHeight,x,p=h.distance,y=f.center,u=y[2]/2,t=y[1],w=0k-2?A:P,e),v._attr={visibility:S,align:D[6]},v._pos={x:L+h.x+({left:c,right:-c}[D[6]]||0),y:P+h.y-10},D.x=L,D.y=P,null===f.options.size&&(C=v.width,L-Cn-c&&(T[1]=Math.max(Math.round(L+ +C-n+c),T[1])),0>P-G/2?T[0]=Math.max(Math.round(-P+G/2),T[0]):P+G/2>l&&(T[2]=Math.max(Math.round(P+G/2-l),T[2])))}),0===B(T)||this.verifyDataLabelOverflow(T))&&(this.placeDataLabels(),w&&m&&H(this.points,function(a){var b;x=a.connector;if((v=a.dataLabel)&&v._pos&&a.visible){S=v._attr.visibility;if(b=!x)a.connector=x=g.renderer.path().addClass("highcharts-data-label-connector highcharts-color-"+a.colorIndex).add(f.dataLabelsGroup),x.attr({"stroke-width":m,stroke:h.connectorColor||a.color||"#666666"}); +x[b?"attr":"animate"]({d:f.connectorPath(a.labelPos)});x.attr("visibility",S)}else x&&(a.connector=x.destroy())}))},g.pie.prototype.connectorPath=function(a){var d=a.x,b=a.y;return k(this.options.dataLabels.softConnector,!0)?["M",d+("left"===a[6]?5:-5),b,"C",d,b,2*a[2]-a[4],2*a[3]-a[5],a[2],a[3],"L",a[4],a[5]]:["M",d+("left"===a[6]?5:-5),b,"L",a[2],a[3],"L",a[4],a[5]]},g.pie.prototype.placeDataLabels=function(){H(this.points,function(a){var d=a.dataLabel;d&&a.visible&&((a=d._pos)?(d.attr(d._attr), +d[d.moved?"animate":"attr"](a),d.moved=!0):d&&d.attr({y:-9999}))})},g.pie.prototype.alignDataLabel=t,g.pie.prototype.verifyDataLabelOverflow=function(a){var d=this.center,b=this.options,e=b.center,f=b.minSize||80,c,g;null!==e[0]?c=Math.max(d[2]-Math.max(a[1],a[3]),f):(c=Math.max(d[2]-a[1]-a[3],f),d[0]+=(a[3]-a[1])/2);null!==e[1]?c=Math.max(Math.min(c,d[2]-Math.max(a[0],a[2])),f):(c=Math.max(Math.min(c,d[2]-a[0]-a[2]),f),d[1]+=(a[0]-a[2])/2);ck(this.translatedThreshold,f.yAxis.len)),m=k(b.inside,!!this.options.stacking);n&&(g=w(n),0>g.y&&(g.height+=g.y,g.y=0),n=g.y+g.height-f.yAxis.len,0a+e||c+nb+f||g+hthis.pointCount))},pan:function(a,b){var c=this,d=c.hoverPoints, +e;d&&r(d,function(a){a.setState()});r("xy"===b?[1,0]:[1],function(b){b=c[b?"xAxis":"yAxis"][0];var d=b.horiz,f=a[d?"chartX":"chartY"],d=d?"mouseDownX":"mouseDownY",g=c[d],n=(b.pointRange||0)/2,h=b.getExtremes(),q=b.toValue(g-f,!0)+n,n=b.toValue(g+b.len-f,!0)-n,g=g>f;b.series.length&&(g||q>Math.min(h.dataMin,h.min))&&(!g||n=p(k.minWidth,0)&&this.chartHeight>=p(k.minHeight,0)};void 0===l._id&&(l._id=a.uniqueKey());m=m.call(this);!r[l._id]&&m?l.chartOptions&&(r[l._id]=this.currentOptions(l.chartOptions),this.update(l.chartOptions,w)):r[l._id]&&!m&&(this.update(r[l._id],w),delete r[l._id])};D.prototype.currentOptions=function(a){function p(a,m,e){var g,h;for(g in a)if(-1< +G(g,["series","xAxis","yAxis"]))for(a[g]=l(a[g]),e[g]=[],h=0;hd.length||void 0===h)return a.call(this,g,h,k,f);x=d.length;for(c=0;ck;d[c]5*b||w){if(d[c]>u){for(r=a.call(this,g,d[e],d[c],f);r.length&&r[0]<=u;)r.shift();r.length&&(u=r[r.length-1]);y=y.concat(r)}e=c+1}if(w)break}a= +r.info;if(q&&a.unitRange<=m.hour){c=y.length-1;for(e=1;ek?a-1:a;for(M=void 0;q--;)e=c[q],k=M-e,M&&k<.8*C&&(null===t||k<.8*t)?(n[y[q]]&&!n[y[q+1]]?(k=q+1,M=e):k=q,y.splice(k,1)):M=e}return y});w(B.prototype,{beforeSetTickPositions:function(){var a, +g=[],h=!1,k,f=this.getExtremes(),d=f.min,b=f.max,q,m=this.isXAxis&&!!this.options.breaks,f=this.options.ordinal,c=this.chart.options.chart.ignoreHiddenSeries;if(f||m){r(this.series,function(b,d){if(!(c&&!1===b.visible||!1===b.takeOrdinalPosition&&!m)&&(g=g.concat(b.processedXData),a=g.length,g.sort(function(a,b){return a-b}),a))for(d=a-1;d--;)g[d]===g[d+1]&&g.splice(d,1)});a=g.length;if(2k||b-g[g.length- +1]>k)&&(h=!0)}h?(this.ordinalPositions=g,k=this.val2lin(Math.max(d,g[0]),!0),q=Math.max(this.val2lin(Math.min(b,g[g.length-1]),!0),1),this.ordinalSlope=b=(b-d)/(q-k),this.ordinalOffset=d-k*b):this.ordinalPositions=this.ordinalSlope=this.ordinalOffset=void 0}this.isOrdinal=f&&h;this.groupIntervalFactor=null},val2lin:function(a,g){var e=this.ordinalPositions;if(e){var k=e.length,f,d;for(f=k;f--;)if(e[f]===a){d=f;break}for(f=k-1;f--;)if(a>e[f]||0===f){a=(a-e[f])/(e[f+1]-e[f]);d=f+a;break}g=g?d:this.ordinalSlope* +(d||0)+this.ordinalOffset}else g=a;return g},lin2val:function(a,g){var e=this.ordinalPositions;if(e){var k=this.ordinalSlope,f=this.ordinalOffset,d=e.length-1,b;if(g)0>a?a=e[0]:a>d?a=e[d]:(d=Math.floor(a),b=a-d);else for(;d--;)if(g=k*d+f,a>=g){k=k*(d+1)+f;b=(a-g)/(k-g);break}return void 0!==b&&void 0!==e[d]?e[d]+(b?b*(e[d+1]-e[d]):0):a}return a},getExtendedPositions:function(){var a=this.chart,g=this.series[0].currentDataGrouping,h=this.ordinalIndex,k=g?g.count+g.unitName:"raw",f=this.getExtremes(), +d,b;h||(h=this.ordinalIndex={});h[k]||(d={series:[],chart:a,getExtremes:function(){return{min:f.dataMin,max:f.dataMax}},options:{ordinal:!0},val2lin:B.prototype.val2lin},r(this.series,function(e){b={xAxis:d,xData:e.xData,chart:a,destroyGroupedData:t};b.options={dataGrouping:g?{enabled:!0,forced:!0,approximation:"open",units:[[g.unitName,[g.count]]]}:{enabled:!1}};e.processData.apply(b);d.series.push(b)}),this.beforeSetTickPositions.apply(d),h[k]=d.ordinalPositions);return h[k]},getGroupIntervalFactor:function(a, +g,h){var e;h=h.processedXData;var f=h.length,d=[];e=this.groupIntervalFactor;if(!e){for(e=0;ed?(l=p,t=e.ordinalPositions?e:p):(l=e.ordinalPositions?e:p,t=p),p=t.ordinalPositions,q>p[p.length-1]&&p.push(q),this.fixedRange=c-m,d=e.toFixedRange(null,null,n.apply(l,[x.apply(l,[m,!0])+d,!0]),n.apply(t,[x.apply(t, +[c,!0])+d,!0])),d.min>=Math.min(b.dataMin,m)&&d.max<=Math.max(q,c)&&e.setExtremes(d.min,d.max,!0,!1,{trigger:"pan"}),this.mouseDownX=k,H(this.container,{cursor:"move"})):f=!0}else f=!0;f&&a.apply(this,Array.prototype.slice.call(arguments,1))});k.prototype.gappedPath=function(){var a=this.options.gapSize,g=this.points.slice(),h=g.length-1;if(a&&0this.closestPointRange*a&&g.splice(h+1,0,{isNull:!0});return this.getGraphPath(g)}})(N);(function(a){function D(){return Array.prototype.slice.call(arguments, +1)}function B(a){a.apply(this);this.drawBreaks(this.xAxis,["x"]);this.drawBreaks(this.yAxis,G(this.pointArrayMap,["y"]))}var G=a.pick,H=a.wrap,p=a.each,l=a.extend,r=a.fireEvent,w=a.Axis,t=a.Series;l(w.prototype,{isInBreak:function(a,m){var e=a.repeat||Infinity,g=a.from,h=a.to-a.from;m=m>=g?(m-g)%e:e-(g-m)%e;return a.inclusive?m<=h:m=a)break;else if(g.isInBreak(f,a)){e-=a-f.from;break}return e};this.lin2val=function(a){var e,f;for(f=0;f=a);f++)e.toh;)m-=b;for(;mb.to||l>b.from&&db.from&&db.from&&d>b.to&&d=c[0]);A++);for(A;A<=q;A++){for(;(void 0!==c[w+1]&&a[A]>=c[w+1]||A===q)&&(l=c[w],this.dataGroupInfo={start:p,length:t[0].length},p=d.apply(this,t),void 0!==p&&(g.push(l),h.push(p),m.push(this.dataGroupInfo)),p=A,t[0]=[],t[1]=[],t[2]=[],t[3]=[],w+=1,A!==q););if(A===q)break;if(x){l=this.cropStart+A;l=e&&e[l]|| +this.pointClass.prototype.applyOptions.apply({series:this},[f[l]]);var E,C;for(E=0;Ethis.chart.plotSizeX/d||b&&f.forced)&&(e=!0);return e?d:0};G.prototype.setDataGrouping=function(a,b){var c;b=e(b,!0);a||(a={forced:!1,units:null});if(this instanceof G)for(c=this.series.length;c--;)this.series[c].update({dataGrouping:a},!1);else l(this.chart.options.series,function(b){b.dataGrouping=a},!1);b&&this.chart.redraw()}})(N);(function(a){var D=a.each,B=a.Point,G=a.seriesType,H=a.seriesTypes;G("ohlc","column",{lineWidth:1,tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eOpen: {point.open}\x3cbr/\x3eHigh: {point.high}\x3cbr/\x3eLow: {point.low}\x3cbr/\x3eClose: {point.close}\x3cbr/\x3e'}, +threshold:null,states:{hover:{lineWidth:3}}},{pointArrayMap:["open","high","low","close"],toYData:function(a){return[a.open,a.high,a.low,a.close]},pointValKey:"high",pointAttribs:function(a,l){l=H.column.prototype.pointAttribs.call(this,a,l);var p=this.options;delete l.fill;l["stroke-width"]=p.lineWidth;l.stroke=a.options.color||(a.openk)););B(g,function(a,b){var d;void 0===a.plotY&&(a.x>=c.min&&a.x<=c.max?a.plotY=e.chartHeight-p.bottom-(p.opposite?p.height:0)+p.offset-e.plotTop:a.shapeArgs={});a.plotX+=t;(f=g[b-1])&&f.plotX===a.plotX&&(void 0===f.stackIndex&&(f.stackIndex=0),d=f.stackIndex+1);a.stackIndex=d})},drawPoints:function(){var a=this.points,e=this.chart,g=e.renderer,k,l,f=this.options,d=f.y,b,q,p,c,r,n,t,x=this.yAxis;for(q=a.length;q--;)p=a[q],t=p.plotX>this.xAxis.len,k=p.plotX,c=p.stackIndex,b= +p.options.shape||f.shape,l=p.plotY,void 0!==l&&(l=p.plotY+d-(void 0!==c&&c*f.stackDistance)),r=c?void 0:p.plotX,n=c?void 0:p.plotY,c=p.graphic,void 0!==l&&0<=k&&!t?(c||(c=p.graphic=g.label("",null,null,b,null,null,f.useHTML).attr(this.pointAttribs(p)).css(G(f.style,p.style)).attr({align:"flag"===b?"left":"center",width:f.width,height:f.height,"text-align":f.textAlign}).addClass("highcharts-point").add(this.markerGroup),c.shadow(f.shadow)),0h&&(e-=Math.round((l-h)/2),h=l);e=k[a](e,g,h,l);d&&f&&e.push("M",d,g>f?g:g+l,"L",d,f);return e}});p===t&&B(["flag","circlepin","squarepin"],function(a){t.prototype.symbols[a]=k[a]})})(N);(function(a){function D(a,d,e){this.init(a,d,e)}var B=a.addEvent,G=a.Axis,H=a.correctFloat,p=a.defaultOptions, +l=a.defined,r=a.destroyObjectProperties,w=a.doc,t=a.each,k=a.fireEvent,m=a.hasTouch,e=a.isTouchDevice,g=a.merge,h=a.pick,C=a.removeEvent,f=a.wrap,d={height:e?20:14,barBorderRadius:0,buttonBorderRadius:0,liveRedraw:a.svg&&!e,margin:10,minWidth:6,step:.2,zIndex:3,barBackgroundColor:"#cccccc",barBorderWidth:1,barBorderColor:"#cccccc",buttonArrowColor:"#333333",buttonBackgroundColor:"#e6e6e6",buttonBorderColor:"#cccccc",buttonBorderWidth:1,rifleColor:"#333333",trackBackgroundColor:"#f2f2f2",trackBorderColor:"#f2f2f2", +trackBorderWidth:1};p.scrollbar=g(!0,d,p.scrollbar);D.prototype={init:function(a,e,f){this.scrollbarButtons=[];this.renderer=a;this.userOptions=e;this.options=g(d,e);this.chart=f;this.size=h(this.options.size,this.options.height);e.enabled&&(this.render(),this.initEvents(),this.addEvents())},render:function(){var a=this.renderer,d=this.options,e=this.size,c;this.group=c=a.g("scrollbar").attr({zIndex:d.zIndex,translateY:-99999}).add();this.track=a.rect().addClass("highcharts-scrollbar-track").attr({x:0, +r:d.trackBorderRadius||0,height:e,width:e}).add(c);this.track.attr({fill:d.trackBackgroundColor,stroke:d.trackBorderColor,"stroke-width":d.trackBorderWidth});this.trackBorderWidth=this.track.strokeWidth();this.track.attr({y:-this.trackBorderWidth%2/2});this.scrollbarGroup=a.g().add(c);this.scrollbar=a.rect().addClass("highcharts-scrollbar-thumb").attr({height:e,width:e,r:d.barBorderRadius||0}).add(this.scrollbarGroup);this.scrollbarRifles=a.path(this.swapXY(["M",-3,e/4,"L",-3,2*e/3,"M",0,e/4,"L", +0,2*e/3,"M",3,e/4,"L",3,2*e/3],d.vertical)).addClass("highcharts-scrollbar-rifles").add(this.scrollbarGroup);this.scrollbar.attr({fill:d.barBackgroundColor,stroke:d.barBorderColor,"stroke-width":d.barBorderWidth});this.scrollbarRifles.attr({stroke:d.rifleColor,"stroke-width":1});this.scrollbarStrokeWidth=this.scrollbar.strokeWidth();this.scrollbarGroup.translate(-this.scrollbarStrokeWidth%2/2,-this.scrollbarStrokeWidth%2/2);this.drawScrollbarButton(0);this.drawScrollbarButton(1)},position:function(a, +d,e,c){var b=this.options.vertical,f=0,g=this.rendered?"animate":"attr";this.x=a;this.y=d+this.trackBorderWidth;this.width=e;this.xOffset=this.height=c;this.yOffset=f;b?(this.width=this.yOffset=e=f=this.size,this.xOffset=d=0,this.barWidth=c-2*e,this.x=a+=this.options.margin):(this.height=this.xOffset=c=d=this.size,this.barWidth=e-2*c,this.y+=this.options.margin);this.group[g]({translateX:a,translateY:this.y});this.track[g]({width:e,height:c});this.scrollbarButtons[1].attr({translateX:b?0:e-d,translateY:b? +c-f:0})},drawScrollbarButton:function(a){var b=this.renderer,d=this.scrollbarButtons,c=this.options,e=this.size,f;f=b.g().add(this.group);d.push(f);f=b.rect().addClass("highcharts-scrollbar-button").add(f);f.attr({stroke:c.buttonBorderColor,"stroke-width":c.buttonBorderWidth,fill:c.buttonBackgroundColor});f.attr(f.crisp({x:-.5,y:-.5,width:e+1,height:e+1,r:c.buttonBorderRadius},f.strokeWidth()));f=b.path(this.swapXY(["M",e/2+(a?-1:1),e/2-3,"L",e/2+(a?-1:1),e/2+3,"L",e/2+(a?2:-2),e/2],c.vertical)).addClass("highcharts-scrollbar-arrow").add(d[a]); +f.attr({fill:c.buttonArrowColor})},swapXY:function(a,d){var b=a.length,c;if(d)for(d=0;d=k?this.scrollbarRifles.hide():this.scrollbarRifles.show(!0),!1===b.showFull&&(0>=a&&1<=d?this.group.hide():this.group.show()),this.rendered=!0)},initEvents:function(){var a=this;a.mouseMoveHandler=function(b){var d=a.chart.pointer.normalize(b),c=a.options.vertical? +"chartY":"chartX",e=a.initPositions;!a.grabbedCenter||b.touches&&0===b.touches[0][c]||(d=a.cursorToScrollbarPosition(d)[c],c=a[c],c=d-c,a.hasDragged=!0,a.updatePosition(e[0]+c,e[1]+c),a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b}))};a.mouseUpHandler=function(b){a.hasDragged&&k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMType:b.type,DOMEvent:b});a.grabbedCenter=a.hasDragged=a.chartX=a.chartY=null};a.mouseDownHandler=function(b){b=a.chart.pointer.normalize(b); +b=a.cursorToScrollbarPosition(b);a.chartX=b.chartX;a.chartY=b.chartY;a.initPositions=[a.from,a.to];a.grabbedCenter=!0};a.buttonToMinClick=function(b){var d=H(a.to-a.from)*a.options.step;a.updatePosition(H(a.from-d),H(a.to-d));k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.buttonToMaxClick=function(b){var d=(a.to-a.from)*a.options.step;a.updatePosition(a.from+d,a.to+d);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})};a.trackClick=function(b){var d=a.chart.pointer.normalize(b), +c=a.to-a.from,e=a.y+a.scrollbarTop,f=a.x+a.scrollbarLeft;a.options.vertical&&d.chartY>e||!a.options.vertical&&d.chartX>f?a.updatePosition(a.from+c,a.to+c):a.updatePosition(a.from-c,a.to-c);k(a,"changed",{from:a.from,to:a.to,trigger:"scrollbar",DOMEvent:b})}},cursorToScrollbarPosition:function(a){var b=this.options,b=b.minWidth>this.calculatedWidth?b.minWidth:0;return{chartX:(a.chartX-this.x-this.xOffset)/(this.barWidth-b),chartY:(a.chartY-this.y-this.yOffset)/(this.barWidth-b)}},updatePosition:function(a, +d){1a&&(d=H(d-a),a=0);this.from=a;this.to=d},update:function(a){this.destroy();this.init(this.chart.renderer,g(!0,this.options,a),this.chart)},addEvents:function(){var a=this.options.inverted?[1,0]:[0,1],d=this.scrollbarButtons,e=this.scrollbarGroup.element,c=this.mouseDownHandler,f=this.mouseMoveHandler,g=this.mouseUpHandler,a=[[d[a[0]].element,"click",this.buttonToMinClick],[d[a[1]].element,"click",this.buttonToMaxClick],[this.track.element,"click",this.trackClick],[e, +"mousedown",c],[w,"mousemove",f],[w,"mouseup",g]];m&&a.push([e,"touchstart",c],[w,"touchmove",f],[w,"touchend",g]);t(a,function(a){B.apply(null,a)});this._events=a},removeEvents:function(){t(this._events,function(a){C.apply(null,a)});this._events=void 0},destroy:function(){var a=this.chart.scroller;this.removeEvents();t(["track","scrollbarRifles","scrollbar","scrollbarGroup","group"],function(a){this[a]&&this[a].destroy&&(this[a]=this[a].destroy())},this);a&&(a.scrollbar=null,r(a.scrollbarButtons))}}; +f(G.prototype,"init",function(a){var b=this;a.apply(b,[].slice.call(arguments,1));b.options.scrollbar&&b.options.scrollbar.enabled&&(b.options.scrollbar.vertical=!b.horiz,b.options.startOnTick=b.options.endOnTick=!1,b.scrollbar=new D(b.chart.renderer,b.options.scrollbar,b.chart),B(b.scrollbar,"changed",function(a){var c=Math.min(h(b.options.min,b.min),b.min,b.dataMin),d=Math.max(h(b.options.max,b.max),b.max,b.dataMax)-c,e;b.horiz&&!b.reversed||!b.horiz&&b.reversed?(e=c+d*this.to,c+=d*this.from):(e= +c+d*(1-this.from),c+=d*(1-this.to));b.setExtremes(c,e,!0,!1,a)}))});f(G.prototype,"render",function(a){var b=Math.min(h(this.options.min,this.min),this.min,this.dataMin),d=Math.max(h(this.options.max,this.max),this.max,this.dataMax),c=this.scrollbar,e;a.apply(this,[].slice.call(arguments,1));c&&(this.horiz?c.position(this.left,this.top+this.height+this.offset+2+(this.opposite?0:this.axisTitleMargin),this.width,this.height):c.position(this.left+this.width+2+this.offset+(this.opposite?this.axisTitleMargin: +0),this.top,this.width,this.height),isNaN(b)||isNaN(d)||!l(this.min)||!l(this.max)?c.setRange(0,0):(e=(this.min-b)/(d-b),b=(this.max-b)/(d-b),this.horiz&&!this.reversed||!this.horiz&&this.reversed?c.setRange(e,b):c.setRange(1-b,1-e)))});f(G.prototype,"getOffset",function(a){var b=this.horiz?2:1,d=this.scrollbar;a.apply(this,[].slice.call(arguments,1));d&&(this.chart.axisOffset[b]+=d.size+d.options.margin)});f(G.prototype,"destroy",function(a){this.scrollbar&&(this.scrollbar=this.scrollbar.destroy()); +a.apply(this,[].slice.call(arguments,1))});a.Scrollbar=D})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.color,l=a.defaultOptions,r=a.defined,w=a.destroyObjectProperties,t=a.doc,k=a.each,m=a.erase,e=a.error,g=a.extend,h=a.grep,C=a.hasTouch,f=a.isNumber,d=a.isObject,b=a.isTouchDevice,q=a.merge,E=a.pick,c=a.removeEvent,F=a.Scrollbar,n=a.Series,A=a.seriesTypes,x=a.wrap,J=[].concat(a.defaultDataGroupingUnits),y=function(a){var b=h(arguments,f);if(b.length)return Math[a].apply(0, +b)};J[4]=["day",[1,2,3,4]];J[5]=["week",[1,2,3]];A=void 0===A.areaspline?"line":"areaspline";g(l,{navigator:{height:40,margin:25,maskInside:!0,handles:{backgroundColor:"#f2f2f2",borderColor:"#999999"},maskFill:p("#6685c2").setOpacity(.3).get(),outlineColor:"#cccccc",outlineWidth:1,series:{type:A,color:"#335cad",fillOpacity:.05,lineWidth:1,compare:null,dataGrouping:{approximation:"average",enabled:!0,groupPixelWidth:2,smoothed:!0,units:J},dataLabels:{enabled:!1,zIndex:2},id:"highcharts-navigator-series", +className:"highcharts-navigator-series",lineColor:null,marker:{enabled:!1},pointRange:0,shadow:!1,threshold:null},xAxis:{className:"highcharts-navigator-xaxis",tickLength:0,lineWidth:0,gridLineColor:"#e6e6e6",gridLineWidth:1,tickPixelInterval:200,labels:{align:"left",style:{color:"#999999"},x:3,y:-4},crosshair:!1},yAxis:{className:"highcharts-navigator-yaxis",gridLineWidth:0,startOnTick:!1,endOnTick:!1,minPadding:.1,maxPadding:.1,labels:{enabled:!1},crosshair:!1,title:{text:null},tickLength:0,tickWidth:0}}}); +D.prototype={drawHandle:function(a,b){var c=this.chart.renderer,d=this.handles;this.rendered||(d[b]=c.path(["M",-4.5,.5,"L",3.5,.5,3.5,15.5,-4.5,15.5,-4.5,.5,"M",-1.5,4,"L",-1.5,12,"M",.5,4,"L",.5,12]).attr({zIndex:10-b}).addClass("highcharts-navigator-handle highcharts-navigator-handle-"+["left","right"][b]).add(),c=this.navigatorOptions.handles,d[b].attr({fill:c.backgroundColor,stroke:c.borderColor,"stroke-width":1}).css({cursor:"ew-resize"}));d[b][this.rendered&&!this.hasDragged?"animate":"attr"]({translateX:Math.round(this.scrollerLeft+ +this.scrollbarHeight+parseInt(a,10)),translateY:Math.round(this.top+this.height/2-8)})},update:function(a){this.destroy();q(!0,this.chart.options.navigator,this.options,a);this.init(this.chart)},render:function(a,b,c,d){var e=this.chart,g=e.renderer,k,h,l,n;n=this.scrollbarHeight;var m=this.xAxis,p=this.navigatorOptions,u=p.maskInside,q=this.height,v=this.top,t=this.navigatorEnabled,x=this.outlineHeight,y;y=this.rendered;if(f(a)&&f(b)&&(!this.hasDragged||r(c))&&(this.navigatorLeft=k=E(m.left,e.plotLeft+ +n),this.navigatorWidth=h=E(m.len,e.plotWidth-2*n),this.scrollerLeft=l=k-n,this.scrollerWidth=n=n=h+2*n,c=E(c,m.translate(a)),d=E(d,m.translate(b)),f(c)&&Infinity!==Math.abs(c)||(c=0,d=n),!(m.translate(d,!0)-m.translate(c,!0)f&&tp+d-u&&rk&&re?e=0:e+v>=q&&(e=q-v,x=h.getUnionExtremes().dataMax),e!==d&&(h.fixedWidth=v,d=l.toFixedRange(e, +e+v,null,x),c.setExtremes(d.min,d.max,!0,null,{trigger:"navigator"}))))};h.mouseMoveHandler=function(b){var c=h.scrollbarHeight,d=h.navigatorLeft,e=h.navigatorWidth,f=h.scrollerLeft,g=h.scrollerWidth,k=h.range,l;b.touches&&0===b.touches[0].pageX||(b=a.pointer.normalize(b),l=b.chartX,lf+g-c&&(l=f+g-c),h.grabbedLeft?(h.hasDragged=!0,h.render(0,0,l-d,h.otherHandlePos)):h.grabbedRight?(h.hasDragged=!0,h.render(0,0,h.otherHandlePos,l-d)):h.grabbedCenter&&(h.hasDragged=!0,le+n-k&&(l=e+ +n-k),h.render(0,0,l-n,l-n+k)),h.hasDragged&&h.scrollbar&&h.scrollbar.options.liveRedraw&&(b.DOMType=b.type,setTimeout(function(){h.mouseUpHandler(b)},0)))};h.mouseUpHandler=function(b){var c,d,e=b.DOMEvent||b;if(h.hasDragged||"scrollbar"===b.trigger)h.zoomedMin===h.otherHandlePos?c=h.fixedExtreme:h.zoomedMax===h.otherHandlePos&&(d=h.fixedExtreme),h.zoomedMax===h.navigatorWidth&&(d=h.getUnionExtremes().dataMax),c=l.toFixedRange(h.zoomedMin,h.zoomedMax,c,d),r(c.min)&&a.xAxis[0].setExtremes(c.min,c.max, +!0,h.hasDragged?!1:null,{trigger:"navigator",triggerOp:"navigator-drag",DOMEvent:e});"mousemove"!==b.DOMType&&(h.grabbedLeft=h.grabbedRight=h.grabbedCenter=h.fixedWidth=h.fixedExtreme=h.otherHandlePos=h.hasDragged=n=null)};var c=a.xAxis.length,f=a.yAxis.length,m=e&&e[0]&&e[0].xAxis||a.xAxis[0];a.extraBottomMargin=h.outlineHeight+d.margin;a.isDirtyBox=!0;h.navigatorEnabled?(h.xAxis=l=new G(a,q({breaks:m.options.breaks,ordinal:m.options.ordinal},d.xAxis,{id:"navigator-x-axis",yAxis:"navigator-y-axis", +isX:!0,type:"datetime",index:c,height:g,offset:0,offsetLeft:k,offsetRight:-k,keepOrdinalPadding:!0,startOnTick:!1,endOnTick:!1,minPadding:0,maxPadding:0,zoomEnabled:!1})),h.yAxis=new G(a,q(d.yAxis,{id:"navigator-y-axis",alignTicks:!1,height:g,offset:0,index:f,zoomEnabled:!1})),e||d.series.data?h.addBaseSeries():0===a.series.length&&x(a,"redraw",function(b,c){0=Math.round(a.navigatorWidth);b&&!a.hasNavigatorData&&(b.options.pointStart=this.xData[0],b.setData(this.options.data,!1,null,!1))},destroy:function(){this.removeEvents();this.xAxis&&(m(this.chart.xAxis,this.xAxis),m(this.chart.axes,this.xAxis));this.yAxis&&(m(this.chart.yAxis,this.yAxis),m(this.chart.axes,this.yAxis));k(this.series||[],function(a){a.destroy&&a.destroy()});k("series xAxis yAxis leftShade rightShade outline scrollbarTrack scrollbarRifles scrollbarGroup scrollbar navigatorGroup rendered".split(" "), +function(a){this[a]&&this[a].destroy&&this[a].destroy();this[a]=null},this);k([this.handles,this.elementsToDestroy],function(a){w(a)},this)}};a.Navigator=D;x(G.prototype,"zoom",function(a,b,c){var d=this.chart,e=d.options,f=e.chart.zoomType,g=e.navigator,e=e.rangeSelector,h;this.isXAxis&&(g&&g.enabled||e&&e.enabled)&&("x"===f?d.resetZoomButton="blocked":"y"===f?h=!1:"xy"===f&&(d=this.previousZoom,r(b)?this.previousZoom=[this.min,this.max]:d&&(b=d[0],c=d[1],delete this.previousZoom)));return void 0!== +h?h:a.call(this,b,c)});x(H.prototype,"init",function(a,b,c){B(this,"beforeRender",function(){var a=this.options;if(a.navigator.enabled||a.scrollbar.enabled)this.scroller=this.navigator=new D(this)});a.call(this,b,c)});x(H.prototype,"getMargins",function(a){var b=this.legend,c=b.options,d=this.scroller,e,f;a.apply(this,[].slice.call(arguments,1));d&&(e=d.xAxis,f=d.yAxis,d.top=d.navigatorOptions.top||this.chartHeight-d.height-d.scrollbarHeight-this.spacing[2]-("bottom"===c.verticalAlign&&c.enabled&& +!c.floating?b.legendHeight+E(c.margin,10):0),e&&f&&(e.options.top=f.options.top=d.top,e.setAxisSize(),f.setAxisSize()))});x(n.prototype,"addPoint",function(a,b,c,f,g){var h=this.options.turboThreshold;h&&this.xData.length>h&&d(b,!0)&&this.chart.scroller&&e(20,!0);a.call(this,b,c,f,g)});x(H.prototype,"addSeries",function(a,b,c,d){a=a.call(this,b,!1,d);this.scroller&&this.scroller.setBaseSeries();E(c,!0)&&this.redraw();return a});x(n.prototype,"update",function(a,b,c){a.call(this,b,!1);this.chart.scroller&& +this.chart.scroller.setBaseSeries();E(c,!0)&&this.chart.redraw()})})(N);(function(a){function D(a){this.init(a)}var B=a.addEvent,G=a.Axis,H=a.Chart,p=a.css,l=a.createElement,r=a.dateFormat,w=a.defaultOptions,t=w.global.useUTC,k=a.defined,m=a.destroyObjectProperties,e=a.discardElement,g=a.each,h=a.extend,C=a.fireEvent,f=a.Date,d=a.isNumber,b=a.merge,q=a.pick,E=a.pInt,c=a.splat,F=a.wrap;h(w,{rangeSelector:{buttonTheme:{"stroke-width":0,width:28,height:18,padding:2,zIndex:7},height:35,inputPosition:{align:"right"}, +labelStyle:{color:"#666666"}}});w.lang=b(w.lang,{rangeSelectorZoom:"Zoom",rangeSelectorFrom:"From",rangeSelectorTo:"To"});D.prototype={clickButton:function(a,b){var e=this,f=e.chart,h=e.buttonOptions[a],k=f.xAxis[0],l=f.scroller&&f.scroller.getUnionExtremes()||k||{},n=l.dataMin,m=l.dataMax,p,r=k&&Math.round(Math.min(k.max,q(m,k.max))),w=h.type,z,l=h._range,A,C,D,E=h.dataGrouping;if(null!==n&&null!==m){f.fixedRange=l;E&&(this.forcedDataGrouping=!0,G.prototype.setDataGrouping.call(k||{chart:this.chart}, +E,!1));if("month"===w||"year"===w)k?(w={range:h,max:r,dataMin:n,dataMax:m},p=k.minFromRange.call(w),d(w.newMax)&&(r=w.newMax)):l=h;else if(l)p=Math.max(r-l,n),r=Math.min(p+l,m);else if("ytd"===w)if(k)void 0===m&&(n=Number.MAX_VALUE,m=Number.MIN_VALUE,g(f.series,function(a){a=a.xData;n=Math.min(a[0],n);m=Math.max(a[a.length-1],m)}),b=!1),r=e.getYTDExtremes(m,n,t),p=A=r.min,r=r.max;else{B(f,"beforeRender",function(){e.clickButton(a)});return}else"all"===w&&k&&(p=n,r=m);e.setSelected(a);k?k.setExtremes(p, +r,q(b,1),null,{trigger:"rangeSelectorButton",rangeSelectorButton:h}):(z=c(f.options.xAxis)[0],D=z.range,z.range=l,C=z.min,z.min=A,B(f,"load",function(){z.range=D;z.min=C}))}},setSelected:function(a){this.selected=this.options.selected=a},defaultButtons:[{type:"month",count:1,text:"1m"},{type:"month",count:3,text:"3m"},{type:"month",count:6,text:"6m"},{type:"ytd",text:"YTD"},{type:"year",count:1,text:"1y"},{type:"all",text:"All"}],init:function(a){var b=this,c=a.options.rangeSelector,d=c.buttons|| +[].concat(b.defaultButtons),e=c.selected,f=function(){var a=b.minInput,c=b.maxInput;a&&a.blur&&C(a,"blur");c&&c.blur&&C(c,"blur")};b.chart=a;b.options=c;b.buttons=[];a.extraTopMargin=c.height;b.buttonOptions=d;this.unMouseDown=B(a.container,"mousedown",f);this.unResize=B(a,"resize",f);g(d,b.computeButtonRange);void 0!==e&&d[e]&&this.clickButton(e,!1);B(a,"load",function(){B(a.xAxis[0],"setExtremes",function(c){this.max-this.min!==a.fixedRange&&"rangeSelectorButton"!==c.trigger&&"updatedData"!==c.trigger&& +b.forcedDataGrouping&&this.setDataGrouping(!1,!1)})})},updateButtonStates:function(){var a=this.chart,b=a.xAxis[0],c=Math.round(b.max-b.min),e=!b.hasVisibleSeries,a=a.scroller&&a.scroller.getUnionExtremes()||b,f=a.dataMin,h=a.dataMax,a=this.getYTDExtremes(h,f,t),k=a.min,l=a.max,m=this.selected,p=d(m),q=this.options.allButtonsEnabled,r=this.buttons;g(this.buttonOptions,function(a,d){var g=a._range,n=a.type,u=a.count||1;a=r[d];var t=0;d=d===m;var v=g>h-f,x=g=864E5*{month:28,year:365}[n]*u&&c<=864E5*{month:31,year:366}[n]*u?g=!0:"ytd"===n?(g=l-k===c,y=!d):"all"===n&&(g=b.max-b.min>=h-f,w=!d&&p&&g);n=!q&&(v||x||w||e);g=d&&g||g&&!p&&!y;n?t=3:g&&(p=!0,t=2);a.state!==t&&a.setState(t)})},computeButtonRange:function(a){var b=a.type,c=a.count||1,d={millisecond:1,second:1E3,minute:6E4,hour:36E5,day:864E5,week:6048E5};if(d[b])a._range=d[b]*c;else if("month"===b||"year"===b)a._range=864E5*{month:30,year:365}[b]*c},setInputValue:function(a,b){var c= +this.chart.options.rangeSelector,d=this[a+"Input"];k(b)&&(d.previousValue=d.HCTime,d.HCTime=b);d.value=r(c.inputEditDateFormat||"%Y-%m-%d",d.HCTime);this[a+"DateBox"].attr({text:r(c.inputDateFormat||"%b %e, %Y",d.HCTime)})},showInput:function(a){var b=this.inputGroup,c=this[a+"DateBox"];p(this[a+"Input"],{left:b.translateX+c.x+"px",top:b.translateY+"px",width:c.width-2+"px",height:c.height-2+"px",border:"2px solid silver"})},hideInput:function(a){p(this[a+"Input"],{border:0,width:"1px",height:"1px"}); +this.setInputValue(a)},drawInput:function(a){function c(){var a=r.value,b=(m.inputDateParser||Date.parse)(a),c=f.xAxis[0],g=f.scroller&&f.scroller.xAxis?f.scroller.xAxis:c,h=g.dataMin,g=g.dataMax;b!==r.previousValue&&(r.previousValue=b,d(b)||(b=a.split("-"),b=Date.UTC(E(b[0]),E(b[1])-1,E(b[2]))),d(b)&&(t||(b+=6E4*(new Date).getTimezoneOffset()),q?b>e.maxInput.HCTime?b=void 0:bg&&(b=g),void 0!==b&&c.setExtremes(q?b:c.min,q?c.max:b,void 0,void 0,{trigger:"rangeSelectorInput"})))} +var e=this,f=e.chart,g=f.renderer.style||{},k=f.renderer,m=f.options.rangeSelector,n=e.div,q="min"===a,r,B,C=this.inputGroup;this[a+"Label"]=B=k.label(w.lang[q?"rangeSelectorFrom":"rangeSelectorTo"],this.inputGroup.offset).addClass("highcharts-range-label").attr({padding:2}).add(C);C.offset+=B.width+5;this[a+"DateBox"]=k=k.label("",C.offset).addClass("highcharts-range-input").attr({padding:2,width:m.inputBoxWidth||90,height:m.inputBoxHeight||17,stroke:m.inputBoxBorderColor||"#cccccc","stroke-width":1, +"text-align":"center"}).on("click",function(){e.showInput(a);e[a+"Input"].focus()}).add(C);C.offset+=k.width+(q?10:0);this[a+"Input"]=r=l("input",{name:a,className:"highcharts-range-selector",type:"text"},{top:f.plotTop+"px"},n);B.css(b(g,m.labelStyle));k.css(b({color:"#333333"},g,m.inputStyle));p(r,h({position:"absolute",border:0,width:"1px",height:"1px",padding:0,textAlign:"center",fontSize:g.fontSize,fontFamily:g.fontFamily,left:"-9em"},m.inputStyle));r.onfocus=function(){e.showInput(a)};r.onblur= +function(){e.hideInput(a)};r.onchange=c;r.onkeypress=function(a){13===a.keyCode&&c()}},getPosition:function(){var a=this.chart,b=a.options.rangeSelector,a=q((b.buttonPosition||{}).y,a.plotTop-a.axisOffset[0]-b.height);return{buttonTop:a,inputTop:a-10}},getYTDExtremes:function(a,b,c){var d=new f(a),e=d[f.hcGetFullYear]();c=c?f.UTC(e,0,1):+new f(e,0,1);b=Math.max(b||0,c);d=d.getTime();return{max:Math.min(a||d,d),min:b}},render:function(a,b){var c=this,d=c.chart,e=d.renderer,f=d.container,m=d.options, +n=m.exporting&&!1!==m.exporting.enabled&&m.navigation&&m.navigation.buttonOptions,p=m.rangeSelector,r=c.buttons,m=w.lang,t=c.div,t=c.inputGroup,A=p.buttonTheme,z=p.buttonPosition||{},B=p.inputEnabled,C=A&&A.states,D=d.plotLeft,E,G=this.getPosition(),F=c.group,H=c.rendered;!1!==p.enabled&&(H||(c.group=F=e.g("range-selector-buttons").add(),c.zoomText=e.text(m.rangeSelectorZoom,q(z.x,D),15).css(p.labelStyle).add(F),E=q(z.x,D)+c.zoomText.getBBox().width+5,g(c.buttonOptions,function(a,b){r[b]=e.button(a.text, +E,0,function(){c.clickButton(b);c.isActive=!0},A,C&&C.hover,C&&C.select,C&&C.disabled).attr({"text-align":"center"}).add(F);E+=r[b].width+q(p.buttonSpacing,5)}),!1!==B&&(c.div=t=l("div",null,{position:"relative",height:0,zIndex:1}),f.parentNode.insertBefore(t,f),c.inputGroup=t=e.g("input-group").add(),t.offset=0,c.drawInput("min"),c.drawInput("max"))),c.updateButtonStates(),F[H?"animate":"attr"]({translateY:G.buttonTop}),!1!==B&&(t.align(h({y:G.inputTop,width:t.offset,x:n&&G.inputTop<(n.y||0)+n.height- +d.spacing[0]?-40:0},p.inputPosition),!0,d.spacingBox),k(B)||(d=F.getBBox(),t[t.alignAttr.translateXc&&(e?a=b-f:b=a+f);d(a)||(a=b=void 0);return{min:a,max:b}};G.prototype.minFromRange=function(){var a=this.range,b={month:"Month",year:"FullYear"}[a.type],c,e=this.max,f,g,h=function(a,c){var d=new Date(a);d["set"+b](d["get"+ +b]()+c);return d.getTime()-a};d(a)?(c=e-a,g=a):(c=e+h(e,-a.count),this.chart&&(this.chart.fixedRange=e-c));f=q(this.dataMin,Number.MIN_VALUE);d(c)||(c=f);c<=f&&(c=f,void 0===g&&(g=h(c,a.count)),this.newMax=Math.min(c+g,this.dataMax));d(e)||(c=void 0);return c};F(H.prototype,"init",function(a,b,c){B(this,"init",function(){this.options.rangeSelector.enabled&&(this.rangeSelector=new D(this))});a.call(this,b,c)});a.RangeSelector=D})(N);(function(a){var D=a.addEvent,B=a.isNumber;a.Chart.prototype.callbacks.push(function(a){function G(){p= +a.xAxis[0].getExtremes();B(p.min)&&r.render(p.min,p.max)}var p,l=a.scroller,r=a.rangeSelector,w,t;l&&(p=a.xAxis[0].getExtremes(),l.render(p.min,p.max));r&&(t=D(a.xAxis[0],"afterSetExtremes",function(a){r.render(a.min,a.max)}),w=D(a,"redraw",G),G());D(a,"destroy",function(){r&&(w(),t())})})})(N);(function(a){var D=a.arrayMax,B=a.arrayMin,G=a.Axis,H=a.Chart,p=a.defined,l=a.each,r=a.extend,w=a.format,t=a.inArray,k=a.isNumber,m=a.isString,e=a.map,g=a.merge,h=a.pick,C=a.Point,f=a.Renderer,d=a.Series,b= +a.splat,q=a.stop,E=a.SVGRenderer,c=a.VMLRenderer,F=a.wrap,n=d.prototype,A=n.init,x=n.processData,J=C.prototype.tooltipFormatter;a.StockChart=a.stockChart=function(c,d,f){var k=m(c)||c.nodeName,l=arguments[k?1:0],n=l.series,p=a.getOptions(),q,r=h(l.navigator&&l.navigator.enabled,!0)?{startOnTick:!1,endOnTick:!1}:null,t={marker:{enabled:!1,radius:2}},u={shadow:!1,borderWidth:0};l.xAxis=e(b(l.xAxis||{}),function(a){return g({minPadding:0,maxPadding:0,ordinal:!0,title:{text:null},labels:{overflow:"justify"}, +showLastLabel:!0},p.xAxis,a,{type:"datetime",categories:null},r)});l.yAxis=e(b(l.yAxis||{}),function(a){q=h(a.opposite,!0);return g({labels:{y:-2},opposite:q,showLastLabel:!1,title:{text:null}},p.yAxis,a)});l.series=null;l=g({chart:{panning:!0,pinchType:"x"},navigator:{enabled:!0},scrollbar:{enabled:!0},rangeSelector:{enabled:!0},title:{text:null,style:{fontSize:"16px"}},tooltip:{shared:!0,crosshairs:!0},legend:{enabled:!1},plotOptions:{line:t,spline:t,area:t,areaspline:t,arearange:t,areasplinerange:t, +column:u,columnrange:u,candlestick:u,ohlc:u}},l,{_stock:!0,chart:{inverted:!1}});l.series=n;return k?new H(c,l,f):new H(l,d)};F(G.prototype,"autoLabelAlign",function(a){var b=this.chart,c=this.options,b=b._labelPanes=b._labelPanes||{},d=this.options.labels;return this.chart.options._stock&&"yAxis"===this.coll&&(c=c.top+","+c.height,!b[c]&&d.enabled)?(15===d.x&&(d.x=0),void 0===d.align&&(d.align="right"),b[c]=1,"right"):a.call(this,[].slice.call(arguments,1))});F(G.prototype,"getPlotLinePath",function(a, +b,c,d,f,g){var n=this,q=this.isLinked&&!this.series?this.linkedParent.series:this.series,r=n.chart,u=r.renderer,v=n.left,w=n.top,y,x,A,B,C=[],D=[],E,F;if("colorAxis"===n.coll)return a.apply(this,[].slice.call(arguments,1));D=function(a){var b="xAxis"===a?"yAxis":"xAxis";a=n.options[b];return k(a)?[r[b][a]]:m(a)?[r.get(a)]:e(q,function(a){return a[b]})}(n.coll);l(n.isXAxis?r.yAxis:r.xAxis,function(a){if(p(a.options.id)?-1===a.options.id.indexOf("navigator"):1){var b=a.isXAxis?"yAxis":"xAxis",b=p(a.options[b])? +r[b][a.options[b]]:r[b][0];n===b&&D.push(a)}});E=D.length?[]:[n.isXAxis?r.yAxis[0]:r.xAxis[0]];l(D,function(a){-1===t(a,E)&&E.push(a)});F=h(g,n.translate(b,null,null,d));k(F)&&(n.horiz?l(E,function(a){var b;x=a.pos;B=x+a.len;y=A=Math.round(F+n.transB);if(yv+n.width)f?y=A=Math.min(Math.max(v,y),v+n.width):b=!0;b||C.push("M",y,x,"L",A,B)}):l(E,function(a){var b;y=a.pos;A=y+a.len;x=B=Math.round(w+n.height-F);if(xw+n.height)f?x=B=Math.min(Math.max(w,x),n.top+n.height):b=!0;b||C.push("M",y, +x,"L",A,B)}));return 0=e&&(x=-(l.translateX+b.width-e));l.attr({x:m+x,y:k,anchorX:g?m:this.opposite?0:a.chartWidth,anchorY:g?this.opposite?a.chartHeight:0:k+b.height/2})}});n.init=function(){A.apply(this,arguments);this.setCompare(this.options.compare)};n.setCompare=function(a){this.modifyValue= +"value"===a||"percent"===a?function(b,c){var d=this.compareValue;if(void 0!==b&&void 0!==d)return b="value"===a?b-d:b=b/d*100-100,c&&(c.change=b),b}:null;this.userOptions.compare=a;this.chart.hasRendered&&(this.isDirty=!0)};n.processData=function(){var a,b=-1,c,d,e,f;x.apply(this,arguments);if(this.xAxis&&this.processedYData)for(c=this.processedXData,d=this.processedYData,e=d.length,this.pointArrayMap&&(b=t("close",this.pointArrayMap),-1===b&&(b=t(this.pointValKey||"y",this.pointArrayMap))),a=0;a< +e-1;a++)if(f=-1=this.xAxis.min&&0!==f){this.compareValue=f;break}};F(n,"getExtremes",function(a){var b;a.apply(this,[].slice.call(arguments,1));this.modifyValue&&(b=[this.modifyValue(this.dataMin),this.modifyValue(this.dataMax)],this.dataMin=B(b),this.dataMax=D(b))});G.prototype.setCompare=function(a,b){this.isXAxis||(l(this.series,function(b){b.setCompare(a)}),h(b,!0)&&this.chart.redraw())};C.prototype.tooltipFormatter=function(b){b=b.replace("{point.change}",(0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 '; + else + var expandButton = ''; + + return '' + expandButton + '' + ellipsedLabel({ name: item.name, parentClass: "nav-tooltip", childClass: "nav-label" }) + ''; +} + +function menuItemsForGroup(group, level, parent) { + var items = ''; + + if (level > 0) + items += menuItem(group, level - 1, parent, true); + + $.each(group.contents, function (contentName, content) { + if (content.type == 'GROUP') + items += menuItemsForGroup(content, level + 1, group.pathFormatted); + else if (content.type == 'REQUEST') + items += menuItem(content, level, group.pathFormatted); + }); + + return items; +} + +function setDetailsMenu(){ + $('.nav ul').append(menuItemsForGroup(stats, 0)); + $('.nav').expandable(); + $('.nav-tooltip').popover({trigger:'hover'}); +} + +function setGlobalMenu(){ + $('.nav ul') + .append('
  • Ranges
  • ') + .append('
  • Stats
  • ') + .append('
  • Active Users
  • ') + .append('
  • Requests / sec
  • ') + .append('
  • Responses / sec
  • '); +} + +function getLink(link){ + var a = link.split('/'); + return (a.length<=1)? link : a[a.length-1]; +} + +function expandUp(li) { + const parentId = li.attr("data-parent"); + if (parentId != "ROOT") { + const span = $('#' + parentId); + const parentLi = span.parents('li').first(); + span.expand(parentLi, false); + expandUp(parentLi); + } +} + +function setActiveMenu(){ + $('.nav a').each(function() { + const navA = $(this) + if(!navA.hasClass('expand-button') && navA.attr('href') == getLink(window.location.pathname)) { + const li = $(this).parents('li').first(); + li.addClass('on'); + expandUp(li); + return false; + } + }); +} diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/stats.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/stats.js new file mode 100644 index 00000000..74cd0124 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/stats.js @@ -0,0 +1,1277 @@ +var stats = { + type: "GROUP", +name: "All Requests", +path: "", +pathFormatted: "group_missing-name--1146707516", +stats: { + "name": "All Requests", + "numberOfRequests": { + "total": "4074", + "ok": "3492", + "ko": "582" + }, + "minResponseTime": { + "total": "40", + "ok": "40", + "ko": "80" + }, + "maxResponseTime": { + "total": "306", + "ok": "306", + "ko": "103" + }, + "meanResponseTime": { + "total": "105", + "ok": "107", + "ko": "90" + }, + "standardDeviation": { + "total": "55", + "ok": "59", + "ko": "7" + }, + "percentiles1": { + "total": "95", + "ok": "96", + "ko": "85" + }, + "percentiles2": { + "total": "99", + "ok": "103", + "ko": "96" + }, + "percentiles3": { + "total": "250", + "ok": "252", + "ko": "98" + }, + "percentiles4": { + "total": "291", + "ok": "291", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3492, + "percentage": 86 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 582, + "percentage": 14 +}, + "meanNumberOfRequestsPerSecond": { + "total": "53.605", + "ok": "45.947", + "ko": "7.658" + } +}, +contents: { +"req_request-0-693933696": { + type: "REQUEST", + name: "request_0", +path: "request_0", +pathFormatted: "req_request-0-693933696", +stats: { + "name": "request_0", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "80", + "ok": "80", + "ko": "-" + }, + "maxResponseTime": { + "total": "101", + "ok": "101", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-1-693933697": { + type: "REQUEST", + name: "request_1", +path: "request_1", +pathFormatted: "req_request-1-693933697", +stats: { + "name": "request_1", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "124", + "ok": "124", + "ko": "-" + }, + "meanResponseTime": { + "total": "91", + "ok": "91", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "percentiles4": { + "total": "106", + "ok": "106", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_wiq2-ico--1077617062": { + type: "REQUEST", + name: "wiq2.ico", +path: "wiq2.ico", +pathFormatted: "req_wiq2-ico--1077617062", +stats: { + "name": "wiq2.ico", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "160", + "ok": "160", + "ko": "-" + }, + "maxResponseTime": { + "total": "208", + "ok": "208", + "ko": "-" + }, + "meanResponseTime": { + "total": "178", + "ok": "178", + "ko": "-" + }, + "standardDeviation": { + "total": "14", + "ok": "14", + "ko": "-" + }, + "percentiles1": { + "total": "188", + "ok": "188", + "ko": "-" + }, + "percentiles2": { + "total": "191", + "ok": "191", + "ko": "-" + }, + "percentiles3": { + "total": "194", + "ok": "194", + "ko": "-" + }, + "percentiles4": { + "total": "198", + "ok": "198", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_main-4a961c5c-j-546111192": { + type: "REQUEST", + name: "main.4a961c5c.js", +path: "main.4a961c5c.js", +pathFormatted: "req_main-4a961c5c-j-546111192", +stats: { + "name": "main.4a961c5c.js", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "244", + "ok": "244", + "ko": "-" + }, + "maxResponseTime": { + "total": "306", + "ok": "306", + "ko": "-" + }, + "meanResponseTime": { + "total": "270", + "ok": "270", + "ko": "-" + }, + "standardDeviation": { + "total": "20", + "ok": "20", + "ko": "-" + }, + "percentiles1": { + "total": "284", + "ok": "284", + "ko": "-" + }, + "percentiles2": { + "total": "289", + "ok": "289", + "ko": "-" + }, + "percentiles3": { + "total": "294", + "ok": "294", + "ko": "-" + }, + "percentiles4": { + "total": "301", + "ok": "301", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_main-18e3ef94-c--35899781": { + type: "REQUEST", + name: "main.18e3ef94.css", +path: "main.18e3ef94.css", +pathFormatted: "req_main-18e3ef94-c--35899781", +stats: { + "name": "main.18e3ef94.css", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "83", + "ok": "83", + "ko": "-" + }, + "maxResponseTime": { + "total": "134", + "ok": "134", + "ko": "-" + }, + "meanResponseTime": { + "total": "93", + "ok": "93", + "ko": "-" + }, + "standardDeviation": { + "total": "9", + "ok": "9", + "ko": "-" + }, + "percentiles1": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles2": { + "total": "100", + "ok": "100", + "ko": "-" + }, + "percentiles3": { + "total": "106", + "ok": "106", + "ko": "-" + }, + "percentiles4": { + "total": "114", + "ok": "114", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-3-693933699": { + type: "REQUEST", + name: "request_3", +path: "request_3", +pathFormatted: "req_request-3-693933699", +stats: { + "name": "request_3", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "111", + "ok": "111", + "ko": "-" + }, + "meanResponseTime": { + "total": "91", + "ok": "91", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "95", + "ok": "95", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "percentiles4": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-4-693933700": { + type: "REQUEST", + name: "request_4", +path: "request_4", +pathFormatted: "req_request-4-693933700", +stats: { + "name": "request_4", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "111", + "ok": "111", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "86", + "ok": "86", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "100", + "ok": "100", + "ko": "-" + }, + "percentiles4": { + "total": "105", + "ok": "105", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-5-693933701": { + type: "REQUEST", + name: "request_5", +path: "request_5", +pathFormatted: "req_request-5-693933701", +stats: { + "name": "request_5", + "numberOfRequests": { + "total": "291", + "ok": "0", + "ko": "291" + }, + "minResponseTime": { + "total": "80", + "ok": "-", + "ko": "80" + }, + "maxResponseTime": { + "total": "103", + "ok": "-", + "ko": "103" + }, + "meanResponseTime": { + "total": "89", + "ok": "-", + "ko": "89" + }, + "standardDeviation": { + "total": "7", + "ok": "-", + "ko": "7" + }, + "percentiles1": { + "total": "85", + "ok": "-", + "ko": "85" + }, + "percentiles2": { + "total": "96", + "ok": "-", + "ko": "96" + }, + "percentiles3": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "percentiles4": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 291, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "-", + "ko": "3.829" + } +} + },"req_request-6-693933702": { + type: "REQUEST", + name: "request_6", +path: "request_6", +pathFormatted: "req_request-6-693933702", +stats: { + "name": "request_6", + "numberOfRequests": { + "total": "291", + "ok": "0", + "ko": "291" + }, + "minResponseTime": { + "total": "81", + "ok": "-", + "ko": "81" + }, + "maxResponseTime": { + "total": "101", + "ok": "-", + "ko": "101" + }, + "meanResponseTime": { + "total": "90", + "ok": "-", + "ko": "90" + }, + "standardDeviation": { + "total": "7", + "ok": "-", + "ko": "7" + }, + "percentiles1": { + "total": "94", + "ok": "-", + "ko": "94" + }, + "percentiles2": { + "total": "96", + "ok": "-", + "ko": "96" + }, + "percentiles3": { + "total": "98", + "ok": "-", + "ko": "98" + }, + "percentiles4": { + "total": "99", + "ok": "-", + "ko": "99" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 291, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "-", + "ko": "3.829" + } +} + },"req_request-2-693933698": { + type: "REQUEST", + name: "request_2", +path: "request_2", +pathFormatted: "req_request-2-693933698", +stats: { + "name": "request_2", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "40", + "ok": "40", + "ko": "-" + }, + "maxResponseTime": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "meanResponseTime": { + "total": "45", + "ok": "45", + "ko": "-" + }, + "standardDeviation": { + "total": "3", + "ok": "3", + "ko": "-" + }, + "percentiles1": { + "total": "47", + "ok": "47", + "ko": "-" + }, + "percentiles2": { + "total": "48", + "ok": "48", + "ko": "-" + }, + "percentiles3": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "percentiles4": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-7-693933703": { + type: "REQUEST", + name: "request_7", +path: "request_7", +pathFormatted: "req_request-7-693933703", +stats: { + "name": "request_7", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "99", + "ok": "99", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "94", + "ok": "94", + "ko": "-" + }, + "percentiles2": { + "total": "96", + "ok": "96", + "ko": "-" + }, + "percentiles3": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles4": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-9-693933705": { + type: "REQUEST", + name: "request_9", +path: "request_9", +pathFormatted: "req_request-9-693933705", +stats: { + "name": "request_9", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "81", + "ok": "81", + "ko": "-" + }, + "maxResponseTime": { + "total": "110", + "ok": "110", + "ko": "-" + }, + "meanResponseTime": { + "total": "90", + "ok": "90", + "ko": "-" + }, + "standardDeviation": { + "total": "7", + "ok": "7", + "ko": "-" + }, + "percentiles1": { + "total": "92", + "ok": "92", + "ko": "-" + }, + "percentiles2": { + "total": "97", + "ok": "97", + "ko": "-" + }, + "percentiles3": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "percentiles4": { + "total": "103", + "ok": "103", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-8-693933704": { + type: "REQUEST", + name: "request_8", +path: "request_8", +pathFormatted: "req_request-8-693933704", +stats: { + "name": "request_8", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "98", + "ok": "98", + "ko": "-" + }, + "maxResponseTime": { + "total": "175", + "ok": "175", + "ko": "-" + }, + "meanResponseTime": { + "total": "112", + "ok": "112", + "ko": "-" + }, + "standardDeviation": { + "total": "12", + "ok": "12", + "ko": "-" + }, + "percentiles1": { + "total": "109", + "ok": "109", + "ko": "-" + }, + "percentiles2": { + "total": "113", + "ok": "113", + "ko": "-" + }, + "percentiles3": { + "total": "137", + "ok": "137", + "ko": "-" + }, + "percentiles4": { + "total": "159", + "ok": "159", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + },"req_request-10-37108175": { + type: "REQUEST", + name: "request_10", +path: "request_10", +pathFormatted: "req_request-10-37108175", +stats: { + "name": "request_10", + "numberOfRequests": { + "total": "291", + "ok": "291", + "ko": "0" + }, + "minResponseTime": { + "total": "42", + "ok": "42", + "ko": "-" + }, + "maxResponseTime": { + "total": "54", + "ok": "54", + "ko": "-" + }, + "meanResponseTime": { + "total": "47", + "ok": "47", + "ko": "-" + }, + "standardDeviation": { + "total": "3", + "ok": "3", + "ko": "-" + }, + "percentiles1": { + "total": "49", + "ok": "49", + "ko": "-" + }, + "percentiles2": { + "total": "50", + "ok": "50", + "ko": "-" + }, + "percentiles3": { + "total": "52", + "ok": "52", + "ko": "-" + }, + "percentiles4": { + "total": "53", + "ok": "53", + "ko": "-" + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": "3.829", + "ok": "3.829", + "ko": "-" + } +} + } +} + +} + +function fillStats(stat){ + $("#numberOfRequests").append(stat.numberOfRequests.total); + $("#numberOfRequestsOK").append(stat.numberOfRequests.ok); + $("#numberOfRequestsKO").append(stat.numberOfRequests.ko); + + $("#minResponseTime").append(stat.minResponseTime.total); + $("#minResponseTimeOK").append(stat.minResponseTime.ok); + $("#minResponseTimeKO").append(stat.minResponseTime.ko); + + $("#maxResponseTime").append(stat.maxResponseTime.total); + $("#maxResponseTimeOK").append(stat.maxResponseTime.ok); + $("#maxResponseTimeKO").append(stat.maxResponseTime.ko); + + $("#meanResponseTime").append(stat.meanResponseTime.total); + $("#meanResponseTimeOK").append(stat.meanResponseTime.ok); + $("#meanResponseTimeKO").append(stat.meanResponseTime.ko); + + $("#standardDeviation").append(stat.standardDeviation.total); + $("#standardDeviationOK").append(stat.standardDeviation.ok); + $("#standardDeviationKO").append(stat.standardDeviation.ko); + + $("#percentiles1").append(stat.percentiles1.total); + $("#percentiles1OK").append(stat.percentiles1.ok); + $("#percentiles1KO").append(stat.percentiles1.ko); + + $("#percentiles2").append(stat.percentiles2.total); + $("#percentiles2OK").append(stat.percentiles2.ok); + $("#percentiles2KO").append(stat.percentiles2.ko); + + $("#percentiles3").append(stat.percentiles3.total); + $("#percentiles3OK").append(stat.percentiles3.ok); + $("#percentiles3KO").append(stat.percentiles3.ko); + + $("#percentiles4").append(stat.percentiles4.total); + $("#percentiles4OK").append(stat.percentiles4.ok); + $("#percentiles4KO").append(stat.percentiles4.ko); + + $("#meanNumberOfRequestsPerSecond").append(stat.meanNumberOfRequestsPerSecond.total); + $("#meanNumberOfRequestsPerSecondOK").append(stat.meanNumberOfRequestsPerSecond.ok); + $("#meanNumberOfRequestsPerSecondKO").append(stat.meanNumberOfRequestsPerSecond.ko); +} diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/stats.json b/testsrc/gatling/results/rankingrecord-20240426122555693/js/stats.json new file mode 100644 index 00000000..28eaf008 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/stats.json @@ -0,0 +1,1235 @@ +{ + "type": "GROUP", +"name": "All Requests", +"path": "", +"pathFormatted": "group_missing-name--1146707516", +"stats": { + "name": "All Requests", + "numberOfRequests": { + "total": 4074, + "ok": 3492, + "ko": 582 + }, + "minResponseTime": { + "total": 40, + "ok": 40, + "ko": 80 + }, + "maxResponseTime": { + "total": 306, + "ok": 306, + "ko": 103 + }, + "meanResponseTime": { + "total": 105, + "ok": 107, + "ko": 90 + }, + "standardDeviation": { + "total": 55, + "ok": 59, + "ko": 7 + }, + "percentiles1": { + "total": 95, + "ok": 96, + "ko": 85 + }, + "percentiles2": { + "total": 99, + "ok": 103, + "ko": 96 + }, + "percentiles3": { + "total": 250, + "ok": 252, + "ko": 98 + }, + "percentiles4": { + "total": 291, + "ok": 291, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 3492, + "percentage": 86 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 582, + "percentage": 14 +}, + "meanNumberOfRequestsPerSecond": { + "total": 53.60526315789474, + "ok": 45.94736842105263, + "ko": 7.657894736842105 + } +}, +"contents": { +"req_request-0-693933696": { + "type": "REQUEST", + "name": "request_0", +"path": "request_0", +"pathFormatted": "req_request-0-693933696", +"stats": { + "name": "request_0", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 80, + "ok": 80, + "ko": 0 + }, + "maxResponseTime": { + "total": 101, + "ok": 101, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-1-693933697": { + "type": "REQUEST", + "name": "request_1", +"path": "request_1", +"pathFormatted": "req_request-1-693933697", +"stats": { + "name": "request_1", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 124, + "ok": 124, + "ko": 0 + }, + "meanResponseTime": { + "total": 91, + "ok": 91, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "percentiles4": { + "total": 106, + "ok": 106, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_wiq2-ico--1077617062": { + "type": "REQUEST", + "name": "wiq2.ico", +"path": "wiq2.ico", +"pathFormatted": "req_wiq2-ico--1077617062", +"stats": { + "name": "wiq2.ico", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 160, + "ok": 160, + "ko": 0 + }, + "maxResponseTime": { + "total": 208, + "ok": 208, + "ko": 0 + }, + "meanResponseTime": { + "total": 178, + "ok": 178, + "ko": 0 + }, + "standardDeviation": { + "total": 14, + "ok": 14, + "ko": 0 + }, + "percentiles1": { + "total": 188, + "ok": 188, + "ko": 0 + }, + "percentiles2": { + "total": 191, + "ok": 191, + "ko": 0 + }, + "percentiles3": { + "total": 194, + "ok": 194, + "ko": 0 + }, + "percentiles4": { + "total": 198, + "ok": 198, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_main-4a961c5c-j-546111192": { + "type": "REQUEST", + "name": "main.4a961c5c.js", +"path": "main.4a961c5c.js", +"pathFormatted": "req_main-4a961c5c-j-546111192", +"stats": { + "name": "main.4a961c5c.js", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 244, + "ok": 244, + "ko": 0 + }, + "maxResponseTime": { + "total": 306, + "ok": 306, + "ko": 0 + }, + "meanResponseTime": { + "total": 270, + "ok": 270, + "ko": 0 + }, + "standardDeviation": { + "total": 20, + "ok": 20, + "ko": 0 + }, + "percentiles1": { + "total": 284, + "ok": 284, + "ko": 0 + }, + "percentiles2": { + "total": 289, + "ok": 289, + "ko": 0 + }, + "percentiles3": { + "total": 294, + "ok": 294, + "ko": 0 + }, + "percentiles4": { + "total": 301, + "ok": 301, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_main-18e3ef94-c--35899781": { + "type": "REQUEST", + "name": "main.18e3ef94.css", +"path": "main.18e3ef94.css", +"pathFormatted": "req_main-18e3ef94-c--35899781", +"stats": { + "name": "main.18e3ef94.css", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 83, + "ok": 83, + "ko": 0 + }, + "maxResponseTime": { + "total": 134, + "ok": 134, + "ko": 0 + }, + "meanResponseTime": { + "total": 93, + "ok": 93, + "ko": 0 + }, + "standardDeviation": { + "total": 9, + "ok": 9, + "ko": 0 + }, + "percentiles1": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles2": { + "total": 100, + "ok": 100, + "ko": 0 + }, + "percentiles3": { + "total": 106, + "ok": 106, + "ko": 0 + }, + "percentiles4": { + "total": 114, + "ok": 114, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-3-693933699": { + "type": "REQUEST", + "name": "request_3", +"path": "request_3", +"pathFormatted": "req_request-3-693933699", +"stats": { + "name": "request_3", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 111, + "ok": 111, + "ko": 0 + }, + "meanResponseTime": { + "total": 91, + "ok": 91, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 95, + "ok": 95, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "percentiles4": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-4-693933700": { + "type": "REQUEST", + "name": "request_4", +"path": "request_4", +"pathFormatted": "req_request-4-693933700", +"stats": { + "name": "request_4", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 111, + "ok": 111, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 86, + "ok": 86, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 100, + "ok": 100, + "ko": 0 + }, + "percentiles4": { + "total": 105, + "ok": 105, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-5-693933701": { + "type": "REQUEST", + "name": "request_5", +"path": "request_5", +"pathFormatted": "req_request-5-693933701", +"stats": { + "name": "request_5", + "numberOfRequests": { + "total": 291, + "ok": 0, + "ko": 291 + }, + "minResponseTime": { + "total": 80, + "ok": 0, + "ko": 80 + }, + "maxResponseTime": { + "total": 103, + "ok": 0, + "ko": 103 + }, + "meanResponseTime": { + "total": 89, + "ok": 0, + "ko": 89 + }, + "standardDeviation": { + "total": 7, + "ok": 0, + "ko": 7 + }, + "percentiles1": { + "total": 85, + "ok": 0, + "ko": 85 + }, + "percentiles2": { + "total": 96, + "ok": 0, + "ko": 96 + }, + "percentiles3": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "percentiles4": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 291, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 0, + "ko": 3.8289473684210527 + } +} + },"req_request-6-693933702": { + "type": "REQUEST", + "name": "request_6", +"path": "request_6", +"pathFormatted": "req_request-6-693933702", +"stats": { + "name": "request_6", + "numberOfRequests": { + "total": 291, + "ok": 0, + "ko": 291 + }, + "minResponseTime": { + "total": 81, + "ok": 0, + "ko": 81 + }, + "maxResponseTime": { + "total": 101, + "ok": 0, + "ko": 101 + }, + "meanResponseTime": { + "total": 90, + "ok": 0, + "ko": 90 + }, + "standardDeviation": { + "total": 7, + "ok": 0, + "ko": 7 + }, + "percentiles1": { + "total": 94, + "ok": 0, + "ko": 94 + }, + "percentiles2": { + "total": 96, + "ok": 0, + "ko": 96 + }, + "percentiles3": { + "total": 98, + "ok": 0, + "ko": 98 + }, + "percentiles4": { + "total": 99, + "ok": 0, + "ko": 99 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 0, + "percentage": 0 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 291, + "percentage": 100 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 0, + "ko": 3.8289473684210527 + } +} + },"req_request-2-693933698": { + "type": "REQUEST", + "name": "request_2", +"path": "request_2", +"pathFormatted": "req_request-2-693933698", +"stats": { + "name": "request_2", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 40, + "ok": 40, + "ko": 0 + }, + "maxResponseTime": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "meanResponseTime": { + "total": 45, + "ok": 45, + "ko": 0 + }, + "standardDeviation": { + "total": 3, + "ok": 3, + "ko": 0 + }, + "percentiles1": { + "total": 47, + "ok": 47, + "ko": 0 + }, + "percentiles2": { + "total": 48, + "ok": 48, + "ko": 0 + }, + "percentiles3": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "percentiles4": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-7-693933703": { + "type": "REQUEST", + "name": "request_7", +"path": "request_7", +"pathFormatted": "req_request-7-693933703", +"stats": { + "name": "request_7", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 99, + "ok": 99, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 94, + "ok": 94, + "ko": 0 + }, + "percentiles2": { + "total": 96, + "ok": 96, + "ko": 0 + }, + "percentiles3": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles4": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-9-693933705": { + "type": "REQUEST", + "name": "request_9", +"path": "request_9", +"pathFormatted": "req_request-9-693933705", +"stats": { + "name": "request_9", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 81, + "ok": 81, + "ko": 0 + }, + "maxResponseTime": { + "total": 110, + "ok": 110, + "ko": 0 + }, + "meanResponseTime": { + "total": 90, + "ok": 90, + "ko": 0 + }, + "standardDeviation": { + "total": 7, + "ok": 7, + "ko": 0 + }, + "percentiles1": { + "total": 92, + "ok": 92, + "ko": 0 + }, + "percentiles2": { + "total": 97, + "ok": 97, + "ko": 0 + }, + "percentiles3": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "percentiles4": { + "total": 103, + "ok": 103, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-8-693933704": { + "type": "REQUEST", + "name": "request_8", +"path": "request_8", +"pathFormatted": "req_request-8-693933704", +"stats": { + "name": "request_8", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 98, + "ok": 98, + "ko": 0 + }, + "maxResponseTime": { + "total": 175, + "ok": 175, + "ko": 0 + }, + "meanResponseTime": { + "total": 112, + "ok": 112, + "ko": 0 + }, + "standardDeviation": { + "total": 12, + "ok": 12, + "ko": 0 + }, + "percentiles1": { + "total": 109, + "ok": 109, + "ko": 0 + }, + "percentiles2": { + "total": 113, + "ok": 113, + "ko": 0 + }, + "percentiles3": { + "total": 137, + "ok": 137, + "ko": 0 + }, + "percentiles4": { + "total": 159, + "ok": 159, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + },"req_request-10-37108175": { + "type": "REQUEST", + "name": "request_10", +"path": "request_10", +"pathFormatted": "req_request-10-37108175", +"stats": { + "name": "request_10", + "numberOfRequests": { + "total": 291, + "ok": 291, + "ko": 0 + }, + "minResponseTime": { + "total": 42, + "ok": 42, + "ko": 0 + }, + "maxResponseTime": { + "total": 54, + "ok": 54, + "ko": 0 + }, + "meanResponseTime": { + "total": 47, + "ok": 47, + "ko": 0 + }, + "standardDeviation": { + "total": 3, + "ok": 3, + "ko": 0 + }, + "percentiles1": { + "total": 49, + "ok": 49, + "ko": 0 + }, + "percentiles2": { + "total": 50, + "ok": 50, + "ko": 0 + }, + "percentiles3": { + "total": 52, + "ok": 52, + "ko": 0 + }, + "percentiles4": { + "total": 53, + "ok": 53, + "ko": 0 + }, + "group1": { + "name": "t < 800 ms", + "htmlName": "t < 800 ms", + "count": 291, + "percentage": 100 +}, + "group2": { + "name": "800 ms <= t < 1200 ms", + "htmlName": "t >= 800 ms
    t < 1200 ms", + "count": 0, + "percentage": 0 +}, + "group3": { + "name": "t >= 1200 ms", + "htmlName": "t >= 1200 ms", + "count": 0, + "percentage": 0 +}, + "group4": { + "name": "failed", + "htmlName": "failed", + "count": 0, + "percentage": 0 +}, + "meanNumberOfRequestsPerSecond": { + "total": 3.8289473684210527, + "ok": 3.8289473684210527, + "ko": 0 + } +} + } +} + +} \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/theme.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/theme.js new file mode 100644 index 00000000..b95a7b3c --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/theme.js @@ -0,0 +1,127 @@ +/* + * Copyright 2011-2022 Gatling Corp + * + * Licensed under the Gatling Highcharts License + */ +Highcharts.theme = { + chart: { + backgroundColor: '#f7f7f7', + borderWidth: 0, + borderRadius: 8, + plotBackgroundColor: null, + plotShadow: false, + plotBorderWidth: 0 + }, + xAxis: { + gridLineWidth: 0, + lineColor: '#666', + tickColor: '#666', + labels: { + style: { + color: '#666' + } + }, + title: { + style: { + color: '#666' + } + } + }, + yAxis: { + alternateGridColor: null, + minorTickInterval: null, + gridLineColor: '#999', + lineWidth: 0, + tickWidth: 0, + labels: { + style: { + color: '#666', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#666', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + labels: { + style: { + color: '#CCC' + } + }, + + + rangeSelector: { + buttonTheme: { + fill: '#cfc9c6', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#b2b2a9' + }, + states: { + hover: { + fill: '#92918C', + stroke: '#000000', + style: { + color: '#34332e', + fontWeight: 'bold', + borderColor: '#8b897d' + } + }, + select: { + fill: '#E37400', + stroke: '#000000', + style: { + color: '#FFF' + } + } + } + }, + inputStyle: { + backgroundColor: '#333', + color: 'silver' + }, + labelStyle: { + color: '#8b897d' + } + }, + + navigator: { + handles: { + backgroundColor: '#f7f7f7', + borderColor: '#92918C' + }, + outlineColor: '#92918C', + outlineWidth: 1, + maskFill: 'rgba(146, 145, 140, 0.5)', + series: { + color: '#5E7BE2', + lineColor: '#5E7BE2' + } + }, + + scrollbar: { + buttonBackgroundColor: '#f7f7f7', + buttonBorderWidth: 1, + buttonBorderColor: '#92918C', + buttonArrowColor: '#92918C', + buttonBorderRadius: 2, + + barBorderWidth: 1, + barBorderRadius: 0, + barBackgroundColor: '#92918C', + barBorderColor: '#92918C', + + rifleColor: '#92918C', + + trackBackgroundColor: '#b0b0a8', + trackBorderWidth: 1, + trackBorderColor: '#b0b0a8' + } +}; + +Highcharts.setOptions(Highcharts.theme); diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/js/unpack.js b/testsrc/gatling/results/rankingrecord-20240426122555693/js/unpack.js new file mode 100644 index 00000000..883c33e7 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/js/unpack.js @@ -0,0 +1,38 @@ +'use strict'; + +var unpack = function (array) { + var findNbSeries = function (array) { + var currentPlotPack; + var length = array.length; + + for (var i = 0; i < length; i++) { + currentPlotPack = array[i][1]; + if(currentPlotPack !== null) { + return currentPlotPack.length; + } + } + return 0; + }; + + var i, j; + var nbPlots = array.length; + var nbSeries = findNbSeries(array); + + // Prepare unpacked array + var unpackedArray = new Array(nbSeries); + + for (i = 0; i < nbSeries; i++) { + unpackedArray[i] = new Array(nbPlots); + } + + // Unpack the array + for (i = 0; i < nbPlots; i++) { + var timestamp = array[i][0]; + var values = array[i][1]; + for (j = 0; j < nbSeries; j++) { + unpackedArray[j][i] = [timestamp * 1000, values === null ? null : values[j]]; + } + } + + return unpackedArray; +}; diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_main-18e3ef94-c--35899781.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_main-18e3ef94-c--35899781.html new file mode 100644 index 00000000..fed35140 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_main-18e3ef94-c--35899781.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - main.18e3ef94.css + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_main-4a961c5c-j-546111192.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_main-4a961c5c-j-546111192.html new file mode 100644 index 00000000..6c36c5e4 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_main-4a961c5c-j-546111192.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - main.4a961c5c.js + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-0-693933696.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-0-693933696.html new file mode 100644 index 00000000..4c646965 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-0-693933696.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_0 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-1-693933697.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-1-693933697.html new file mode 100644 index 00000000..43efeae3 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-1-693933697.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_1 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-10-37108175.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-10-37108175.html new file mode 100644 index 00000000..09719b35 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-10-37108175.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_10 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-2-693933698.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-2-693933698.html new file mode 100644 index 00000000..b438ef65 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-2-693933698.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_2 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-3-693933699.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-3-693933699.html new file mode 100644 index 00000000..1af7dbe5 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-3-693933699.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_3 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-4-693933700.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-4-693933700.html new file mode 100644 index 00000000..b6d81530 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-4-693933700.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_4 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-5-693933701.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-5-693933701.html new file mode 100644 index 00000000..3d717ea2 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-5-693933701.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_5 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-6-693933702.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-6-693933702.html new file mode 100644 index 00000000..94e90990 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-6-693933702.html @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_6 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-7-693933703.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-7-693933703.html new file mode 100644 index 00000000..dc0da7d4 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-7-693933703.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_7 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-8-693933704.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-8-693933704.html new file mode 100644 index 00000000..6c466d33 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-8-693933704.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_8 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-9-693933705.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-9-693933705.html new file mode 100644 index 00000000..ef7abc09 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_request-9-693933705.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - request_9 + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/req_wiq2-ico--1077617062.html b/testsrc/gatling/results/rankingrecord-20240426122555693/req_wiq2-ico--1077617062.html new file mode 100644 index 00000000..da865222 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/req_wiq2-ico--1077617062.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + + + + + + + + +Gatling Stats - wiq2.ico + + + +
    +
    +
    +
    + + + Documentation +
    + + Try + Gatling Enterprise + Gatling Enterprise + + +
    +
    + +
    +
    +
    +
    + RankingRecord +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    + +
    +
    +
    Stats
    +
    +

    Executions

    + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Total count
    Mean count/s
    +

    Response Time (ms)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TotalOKKO
    Min
    50th percentile
    75th percentile
    95th percentile
    99th percentile
    Max
    Mean
    Standard Deviation
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/simulation.log b/testsrc/gatling/results/rankingrecord-20240426122555693/simulation.log new file mode 100644 index 00000000..0da5429e --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/simulation.log @@ -0,0 +1,4657 @@ +RUN RankingRecord rankingrecord 1714134355693 3.10.5 +USER RankingRecord START 1714134356120 +REQUEST request_0 1714134356118 1714134356219 OK +USER RankingRecord START 1714134356444 +REQUEST request_0 1714134356443 1714134356529 OK +USER RankingRecord START 1714134356601 +REQUEST request_0 1714134356600 1714134356699 OK +USER RankingRecord START 1714134356710 +REQUEST request_0 1714134356709 1714134356794 OK +REQUEST request_1 1714134357241 1714134357326 OK +REQUEST request_2 1714134357364 1714134357412 OK +USER RankingRecord START 1714134357415 +REQUEST request_3 1714134357363 1714134357447 OK +REQUEST request_6 1714134357364 1714134357448 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134357363 1714134357461 OK +REQUEST request_5 1714134357364 1714134357467 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134357363 1714134357468 OK +REQUEST request_0 1714134357414 1714134357509 OK +USER RankingRecord START 1714134357525 +REQUEST wiq2.ico 1714134357362 1714134357525 OK +REQUEST request_0 1714134357524 1714134357623 OK +REQUEST request_1 1714134357540 1714134357637 OK +REQUEST main.4a961c5c.js 1714134357362 1714134357652 OK +REQUEST request_2 1714134357640 1714134357682 OK +REQUEST request_4 1714134357639 1714134357723 OK +REQUEST request_6 1714134357640 1714134357724 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134357640 1714134357738 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134357639 1714134357738 OK +REQUEST main.18e3ef94.css 1714134357639 1714134357740 OK +REQUEST request_1 1714134357711 1714134357809 OK +USER RankingRecord START 1714134357820 +REQUEST wiq2.ico 1714134357638 1714134357829 OK +USER RankingRecord START 1714134357835 +REQUEST request_2 1714134357811 1714134357858 OK +REQUEST request_1 1714134357804 1714134357889 OK +REQUEST main.4a961c5c.js 1714134357638 1714134357892 OK +REQUEST request_6 1714134357811 1714134357894 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134357811 1714134357894 OK +REQUEST request_5 1714134357811 1714134357910 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134357810 1714134357911 OK +REQUEST main.18e3ef94.css 1714134357810 1714134357911 OK +REQUEST request_0 1714134357819 1714134357917 OK +REQUEST request_0 1714134357834 1714134357918 OK +REQUEST request_2 1714134357891 1714134357934 OK +REQUEST request_4 1714134357890 1714134357976 OK +REQUEST main.18e3ef94.css 1714134357890 1714134357977 OK +REQUEST request_5 1714134357891 1714134357978 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134357890 1714134357986 OK +REQUEST request_6 1714134357891 1714134357988 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134357810 1714134358000 OK +REQUEST wiq2.ico 1714134357890 1714134358053 OK +REQUEST main.4a961c5c.js 1714134357810 1714134358055 OK +USER RankingRecord START 1714134358160 +REQUEST main.4a961c5c.js 1714134357890 1714134358179 OK +REQUEST request_0 1714134358159 1714134358258 OK +USER RankingRecord START 1714134358314 +REQUEST request_0 1714134358314 1714134358399 OK +USER RankingRecord START 1714134358500 +REQUEST request_0 1714134358499 1714134358599 OK +REQUEST request_1 1714134358514 1714134358599 OK +REQUEST request_2 1714134358604 1714134358652 OK +REQUEST request_4 1714134358603 1714134358687 OK +REQUEST request_6 1714134358605 1714134358689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134358602 1714134358701 OK +REQUEST request_5 1714134358604 1714134358701 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134358602 1714134358703 OK +REQUEST request_1 1714134358639 1714134358737 OK +REQUEST wiq2.ico 1714134358601 1714134358769 OK +REQUEST request_2 1714134358740 1714134358788 OK +USER RankingRecord START 1714134358798 +USER RankingRecord START 1714134358813 +REQUEST request_3 1714134358739 1714134358824 OK +REQUEST main.18e3ef94.css 1714134358739 1714134358825 OK +REQUEST request_4 1714134358739 1714134358837 OK +REQUEST request_6 1714134358740 1714134358837 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134358740 1714134358838 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134358602 1714134358852 OK +USER RankingRecord START 1714134358876 +REQUEST request_0 1714134358797 1714134358881 OK +REQUEST request_0 1714134358812 1714134358896 OK +USER RankingRecord START 1714134358923 +REQUEST wiq2.ico 1714134358738 1714134358932 OK +REQUEST request_0 1714134358875 1714134358971 OK +REQUEST main.4a961c5c.js 1714134358739 1714134358989 OK +REQUEST request_1 1714134358922 1714134359007 OK +REQUEST request_0 1714134358922 1714134359018 OK +REQUEST request_1 1714134358922 1714134359019 OK +REQUEST request_2 1714134359009 1714134359051 OK +REQUEST request_2 1714134359021 1714134359068 OK +REQUEST request_3 1714134359008 1714134359092 OK +REQUEST main.18e3ef94.css 1714134359008 1714134359093 OK +REQUEST request_3 1714134359020 1714134359103 OK +REQUEST request_4 1714134359021 1714134359104 OK +REQUEST request_5 1714134359021 1714134359104 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134359021 1714134359104 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134359009 1714134359106 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134359009 1714134359106 OK +REQUEST request_6 1714134359010 1714134359106 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134359020 1714134359110 OK +REQUEST wiq2.ico 1714134359008 1714134359174 OK +REQUEST wiq2.ico 1714134359020 1714134359210 OK +REQUEST main.4a961c5c.js 1714134359020 1714134359275 OK +REQUEST main.4a961c5c.js 1714134359008 1714134359303 OK +USER RankingRecord START 1714134359358 +REQUEST request_1 1714134359263 1714134359365 OK +USER RankingRecord START 1714134359374 +REQUEST request_2 1714134359366 1714134359415 OK +USER RankingRecord START 1714134359436 +REQUEST request_0 1714134359357 1714134359442 OK +REQUEST request_4 1714134359366 1714134359450 OK +REQUEST main.18e3ef94.css 1714134359366 1714134359451 OK +REQUEST request_0 1714134359373 1714134359457 OK +REQUEST request_3 1714134359366 1714134359461 OK +REQUEST request_6 1714134359367 1714134359465 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134359366 1714134359466 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134359469 +REQUEST request_1 1714134359404 1714134359487 OK +REQUEST request_0 1714134359435 1714134359521 OK +REQUEST request_2 1714134359491 1714134359531 OK +USER RankingRecord START 1714134359546 +REQUEST request_0 1714134359467 1714134359552 OK +REQUEST wiq2.ico 1714134359365 1714134359557 OK +REQUEST request_5 1714134359491 1714134359574 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134359491 1714134359575 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134359490 1714134359577 OK +REQUEST request_4 1714134359491 1714134359589 OK +REQUEST request_3 1714134359490 1714134359590 OK +REQUEST main.4a961c5c.js 1714134359366 1714134359614 OK +REQUEST request_0 1714134359546 1714134359644 OK +REQUEST wiq2.ico 1714134359489 1714134359652 OK +USER RankingRecord START 1714134359687 +REQUEST request_1 1714134359608 1714134359693 OK +USER RankingRecord START 1714134359703 +REQUEST request_2 1714134359695 1714134359744 OK +REQUEST request_0 1714134359686 1714134359772 OK +REQUEST request_6 1714134359695 1714134359781 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134359695 1714134359782 OK +REQUEST main.4a961c5c.js 1714134359490 1714134359784 OK +REQUEST main.18e3ef94.css 1714134359694 1714134359784 OK +REQUEST request_5 1714134359695 1714134359791 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134359694 1714134359793 OK +REQUEST request_0 1714134359702 1714134359798 OK +REQUEST wiq2.ico 1714134359694 1714134359859 OK +REQUEST main.4a961c5c.js 1714134359694 1714134359941 OK +REQUEST request_1 1714134359887 1714134359985 OK +REQUEST request_1 1714134359903 1714134359985 OK +REQUEST request_2 1714134359987 1714134360028 OK +REQUEST request_2 1714134359987 1714134360032 OK +REQUEST request_3 1714134359986 1714134360070 OK +REQUEST request_5 1714134359987 1714134360070 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134359986 1714134360074 OK +REQUEST request_6 1714134359987 1714134360074 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134359986 1714134360075 OK +REQUEST request_1 1714134359981 1714134360082 OK +REQUEST request_6 1714134359987 1714134360083 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134359987 1714134360083 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134359986 1714134360083 OK +REQUEST request_3 1714134359986 1714134360083 OK +REQUEST main.18e3ef94.css 1714134359986 1714134360088 OK +REQUEST request_1 1714134360028 1714134360125 OK +REQUEST request_2 1714134360084 1714134360132 OK +REQUEST wiq2.ico 1714134359986 1714134360151 OK +REQUEST request_3 1714134360083 1714134360166 OK +REQUEST request_4 1714134360084 1714134360167 OK +REQUEST request_6 1714134360084 1714134360167 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134360083 1714134360168 OK +REQUEST request_2 1714134360126 1714134360173 OK +REQUEST wiq2.ico 1714134359986 1714134360176 OK +REQUEST request_5 1714134360084 1714134360180 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134360200 +REQUEST request_6 1714134360127 1714134360209 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134360126 1714134360209 OK +REQUEST request_5 1714134360127 1714134360223 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134360126 1714134360225 OK +REQUEST main.18e3ef94.css 1714134360126 1714134360226 OK +REQUEST main.4a961c5c.js 1714134359986 1714134360237 OK +REQUEST wiq2.ico 1714134360083 1714134360273 OK +REQUEST main.4a961c5c.js 1714134359986 1714134360276 OK +REQUEST request_0 1714134360199 1714134360283 OK +REQUEST wiq2.ico 1714134360125 1714134360318 OK +REQUEST main.4a961c5c.js 1714134360083 1714134360336 OK +REQUEST main.4a961c5c.js 1714134360126 1714134360418 OK +USER RankingRecord START 1714134360480 +REQUEST request_1 1714134360448 1714134360533 OK +REQUEST request_1 1714134360464 1714134360562 OK +REQUEST request_2 1714134360535 1714134360576 OK +REQUEST request_0 1714134360480 1714134360577 OK +REQUEST request_2 1714134360564 1714134360604 OK +REQUEST request_3 1714134360534 1714134360616 OK +REQUEST request_5 1714134360535 1714134360619 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134360534 1714134360620 OK +REQUEST request_4 1714134360535 1714134360620 OK +REQUEST request_1 1714134360527 1714134360624 OK +REQUEST request_6 1714134360535 1714134360632 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134360564 1714134360649 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134360563 1714134360649 OK +REQUEST request_1 1714134360558 1714134360657 OK +REQUEST request_3 1714134360563 1714134360660 OK +REQUEST request_6 1714134360564 1714134360662 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134360563 1714134360664 OK +REQUEST request_2 1714134360626 1714134360667 OK +REQUEST request_2 1714134360659 1714134360699 OK +REQUEST wiq2.ico 1714134360534 1714134360700 OK +REQUEST request_6 1714134360626 1714134360711 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134360625 1714134360711 OK +REQUEST main.18e3ef94.css 1714134360625 1714134360713 OK +REQUEST request_3 1714134360625 1714134360722 OK +REQUEST request_5 1714134360626 1714134360724 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134360659 1714134360742 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134360659 1714134360743 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134360658 1714134360745 OK +REQUEST request_1 1714134360651 1714134360749 OK +REQUEST wiq2.ico 1714134360563 1714134360754 OK +REQUEST request_3 1714134360658 1714134360755 OK +REQUEST request_4 1714134360658 1714134360755 OK +REQUEST request_2 1714134360750 1714134360798 OK +USER RankingRecord START 1714134360807 +REQUEST main.4a961c5c.js 1714134360563 1714134360812 OK +REQUEST wiq2.ico 1714134360625 1714134360816 OK +REQUEST main.4a961c5c.js 1714134360534 1714134360822 OK +REQUEST request_3 1714134360750 1714134360833 OK +REQUEST request_5 1714134360750 1714134360833 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134360658 1714134360848 OK +REQUEST request_6 1714134360751 1714134360848 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134360750 1714134360849 OK +REQUEST main.18e3ef94.css 1714134360750 1714134360849 OK +REQUEST request_1 1714134360776 1714134360858 OK +USER RankingRecord START 1714134360870 +REQUEST main.4a961c5c.js 1714134360625 1714134360876 OK +REQUEST request_1 1714134360807 1714134360890 OK +REQUEST request_2 1714134360860 1714134360902 OK +REQUEST request_0 1714134360807 1714134360904 OK +REQUEST request_2 1714134360891 1714134360939 OK +REQUEST request_3 1714134360859 1714134360942 OK +REQUEST wiq2.ico 1714134360749 1714134360943 OK +REQUEST request_5 1714134360860 1714134360944 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134360658 1714134360945 OK +REQUEST main.18e3ef94.css 1714134360859 1714134360945 OK +REQUEST request_4 1714134360860 1714134360957 OK +REQUEST request_6 1714134360860 1714134360959 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134360869 1714134360967 OK +REQUEST request_4 1714134360891 1714134360976 OK +REQUEST request_5 1714134360892 1714134360977 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134360891 1714134360986 OK +REQUEST request_6 1714134360892 1714134360988 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134360891 1714134360989 OK +REQUEST wiq2.ico 1714134360859 1714134361022 OK +REQUEST main.4a961c5c.js 1714134360750 1714134361040 OK +REQUEST wiq2.ico 1714134360891 1714134361054 OK +REQUEST main.4a961c5c.js 1714134360859 1714134361152 OK +REQUEST main.4a961c5c.js 1714134360891 1714134361180 OK +REQUEST request_1 1714134361287 1714134361373 OK +USER RankingRecord START 1714134361396 +REQUEST request_2 1714134361375 1714134361417 OK +USER RankingRecord START 1714134361460 +REQUEST request_4 1714134361374 1714134361462 OK +REQUEST request_6 1714134361375 1714134361463 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134361374 1714134361464 OK +REQUEST request_5 1714134361375 1714134361470 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134361374 1714134361475 OK +REQUEST request_0 1714134361396 1714134361491 OK +REQUEST wiq2.ico 1714134361374 1714134361540 OK +REQUEST request_0 1714134361459 1714134361543 OK +REQUEST main.4a961c5c.js 1714134361374 1714134361628 OK +REQUEST request_1 1714134361581 1714134361667 OK +REQUEST request_2 1714134361668 1714134361716 OK +REQUEST request_3 1714134361668 1714134361751 OK +REQUEST request_6 1714134361669 1714134361753 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134361667 1714134361755 OK +REQUEST request_5 1714134361668 1714134361765 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134361668 1714134361767 OK +USER RankingRecord START 1714134361783 +REQUEST wiq2.ico 1714134361667 1714134361835 OK +REQUEST request_0 1714134361782 1714134361868 OK +REQUEST main.4a961c5c.js 1714134361667 1714134361918 OK +REQUEST request_1 1714134361907 1714134362003 OK +REQUEST request_2 1714134362005 1714134362053 OK +REQUEST request_1 1714134361969 1714134362055 OK +REQUEST request_5 1714134362005 1714134362088 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134362005 1714134362089 OK +REQUEST main.18e3ef94.css 1714134362005 1714134362090 OK +REQUEST request_4 1714134362005 1714134362100 OK +REQUEST request_2 1714134362057 1714134362103 OK +REQUEST request_6 1714134362006 1714134362103 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134362057 1714134362140 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134362057 1714134362140 OK +REQUEST main.18e3ef94.css 1714134362056 1714134362141 OK +REQUEST request_6 1714134362057 1714134362152 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134362056 1714134362153 OK +REQUEST wiq2.ico 1714134362004 1714134362193 OK +REQUEST wiq2.ico 1714134362056 1714134362222 OK +REQUEST main.4a961c5c.js 1714134362004 1714134362292 OK +REQUEST main.4a961c5c.js 1714134362056 1714134362305 OK +USER RankingRecord START 1714134362590 +REQUEST request_1 1714134362498 1714134362595 OK +USER RankingRecord START 1714134362636 +REQUEST request_2 1714134362596 1714134362644 OK +REQUEST request_1 1714134362559 1714134362656 OK +REQUEST request_0 1714134362589 1714134362673 OK +REQUEST request_3 1714134362596 1714134362679 OK +REQUEST request_4 1714134362596 1714134362679 OK +REQUEST request_5 1714134362596 1714134362680 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134362683 +REQUEST request_6 1714134362597 1714134362695 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134362596 1714134362697 OK +REQUEST request_2 1714134362658 1714134362699 OK +REQUEST request_0 1714134362636 1714134362719 OK +REQUEST request_5 1714134362658 1714134362740 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134362657 1714134362741 OK +REQUEST main.18e3ef94.css 1714134362657 1714134362742 OK +REQUEST request_6 1714134362658 1714134362743 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134362657 1714134362753 OK +REQUEST request_0 1714134362682 1714134362766 OK +REQUEST wiq2.ico 1714134362596 1714134362785 OK +REQUEST wiq2.ico 1714134362657 1714134362848 OK +REQUEST main.4a961c5c.js 1714134362596 1714134362849 OK +REQUEST main.4a961c5c.js 1714134362657 1714134362944 OK +REQUEST request_1 1714134362883 1714134362968 OK +USER RankingRecord START 1714134362977 +REQUEST request_2 1714134362969 1714134363012 OK +REQUEST main.18e3ef94.css 1714134362969 1714134363056 OK +REQUEST request_5 1714134362969 1714134363065 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134362970 1714134363066 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134362969 1714134363067 OK +REQUEST request_4 1714134362969 1714134363068 OK +REQUEST request_0 1714134362977 1714134363072 OK +REQUEST wiq2.ico 1714134362968 1714134363131 OK +USER RankingRecord START 1714134363228 +REQUEST main.4a961c5c.js 1714134362969 1714134363259 OK +USER RankingRecord START 1714134363274 +REQUEST request_0 1714134363227 1714134363325 OK +REQUEST request_0 1714134363274 1714134363372 OK +USER RankingRecord START 1714134363383 +REQUEST request_0 1714134363383 1714134363467 OK +USER RankingRecord START 1714134363666 +USER RankingRecord START 1714134363682 +REQUEST request_0 1714134363666 1714134363749 OK +REQUEST request_1 1714134363681 1714134363765 OK +REQUEST request_0 1714134363681 1714134363778 OK +REQUEST request_2 1714134363766 1714134363807 OK +REQUEST request_1 1714134363728 1714134363823 OK +REQUEST request_3 1714134363766 1714134363849 OK +REQUEST request_4 1714134363766 1714134363850 OK +REQUEST main.18e3ef94.css 1714134363766 1714134363853 OK +REQUEST request_5 1714134363766 1714134363862 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134363767 1714134363863 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134363825 1714134363865 OK +USER RankingRecord START 1714134363870 +USER RankingRecord START 1714134363870 +REQUEST request_1 1714134363775 1714134363873 OK +REQUEST request_4 1714134363825 1714134363908 OK +REQUEST request_6 1714134363825 1714134363909 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134363824 1714134363910 OK +REQUEST request_2 1714134363875 1714134363917 OK +REQUEST request_5 1714134363825 1714134363920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134363824 1714134363922 OK +REQUEST wiq2.ico 1714134363765 1714134363928 OK +REQUEST request_0 1714134363869 1714134363950 OK +REQUEST request_5 1714134363875 1714134363957 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134363875 1714134363958 OK +REQUEST request_6 1714134363875 1714134363958 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134363869 1714134363963 OK +REQUEST request_3 1714134363874 1714134363971 OK +REQUEST main.18e3ef94.css 1714134363874 1714134363975 OK +USER RankingRecord START 1714134363995 +REQUEST wiq2.ico 1714134363824 1714134364011 OK +REQUEST main.4a961c5c.js 1714134363766 1714134364014 OK +REQUEST wiq2.ico 1714134363874 1714134364067 OK +REQUEST request_0 1714134363994 1714134364091 OK +REQUEST main.4a961c5c.js 1714134363824 1714134364116 OK +REQUEST main.4a961c5c.js 1714134363874 1714134364126 OK +REQUEST request_1 1714134364073 1714134364156 OK +REQUEST request_2 1714134364157 1714134364205 OK +REQUEST request_4 1714134364157 1714134364241 OK +REQUEST request_3 1714134364157 1714134364253 OK +REQUEST request_5 1714134364157 1714134364254 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134364157 1714134364255 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134364157 1714134364256 OK +USER RankingRecord START 1714134364262 +REQUEST wiq2.ico 1714134364156 1714134364322 OK +REQUEST request_0 1714134364262 1714134364358 OK +REQUEST main.4a961c5c.js 1714134364156 1714134364409 OK +REQUEST request_1 1714134364340 1714134364438 OK +REQUEST request_1 1714134364387 1714134364485 OK +REQUEST request_2 1714134364439 1714134364487 OK +REQUEST request_6 1714134364440 1714134364522 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134364439 1714134364523 OK +REQUEST request_4 1714134364439 1714134364523 OK +REQUEST main.18e3ef94.css 1714134364439 1714134364525 OK +REQUEST request_5 1714134364440 1714134364525 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134364486 1714134364534 OK +REQUEST request_5 1714134364486 1714134364569 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134364486 1714134364570 OK +REQUEST request_1 1714134364481 1714134364577 OK +REQUEST request_3 1714134364486 1714134364582 OK +REQUEST request_6 1714134364486 1714134364583 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134364486 1714134364591 OK +REQUEST request_2 1714134364578 1714134364619 OK +REQUEST wiq2.ico 1714134364439 1714134364628 OK +REQUEST request_6 1714134364579 1714134364663 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134364578 1714134364663 OK +REQUEST wiq2.ico 1714134364485 1714134364673 OK +REQUEST request_5 1714134364578 1714134364675 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134364578 1714134364676 OK +REQUEST main.18e3ef94.css 1714134364578 1714134364678 OK +REQUEST main.4a961c5c.js 1714134364439 1714134364724 OK +REQUEST wiq2.ico 1714134364578 1714134364768 OK +REQUEST main.4a961c5c.js 1714134364485 1714134364786 OK +REQUEST main.4a961c5c.js 1714134364578 1714134364830 OK +REQUEST request_1 1714134364760 1714134364842 OK +REQUEST request_2 1714134364845 1714134364887 OK +REQUEST request_1 1714134364790 1714134364888 OK +REQUEST request_5 1714134364845 1714134364928 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134364844 1714134364930 OK +REQUEST main.18e3ef94.css 1714134364844 1714134364931 OK +REQUEST request_2 1714134364890 1714134364939 OK +REQUEST request_6 1714134364845 1714134364942 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134364844 1714134364943 OK +REQUEST request_3 1714134364889 1714134364973 OK +REQUEST request_5 1714134364890 1714134364974 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134364890 1714134364987 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134364889 1714134364987 OK +REQUEST main.18e3ef94.css 1714134364889 1714134364987 OK +REQUEST wiq2.ico 1714134364844 1714134365006 OK +REQUEST request_1 1714134364963 1714134365061 OK +REQUEST request_1 1714134364979 1714134365064 OK +REQUEST wiq2.ico 1714134364889 1714134365079 OK +REQUEST request_2 1714134365063 1714134365103 OK +REQUEST request_2 1714134365065 1714134365112 OK +REQUEST main.4a961c5c.js 1714134364889 1714134365135 OK +REQUEST main.4a961c5c.js 1714134364844 1714134365136 OK +REQUEST request_3 1714134365062 1714134365145 OK +REQUEST request_4 1714134365065 1714134365146 OK +REQUEST request_5 1714134365065 1714134365147 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134365063 1714134365147 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134365063 1714134365159 OK +REQUEST request_5 1714134365063 1714134365159 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134365064 1714134365160 OK +REQUEST request_6 1714134365065 1714134365160 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134365062 1714134365161 OK +REQUEST main.18e3ef94.css 1714134365064 1714134365166 OK +USER RankingRecord START 1714134365180 +USER RankingRecord START 1714134365180 +REQUEST request_1 1714134365101 1714134365185 OK +REQUEST wiq2.ico 1714134365064 1714134365230 OK +REQUEST request_2 1714134365186 1714134365234 OK +REQUEST wiq2.ico 1714134365062 1714134365252 OK +REQUEST request_0 1714134365180 1714134365264 OK +REQUEST request_3 1714134365186 1714134365269 OK +REQUEST main.18e3ef94.css 1714134365186 1714134365271 OK +REQUEST request_0 1714134365180 1714134365277 OK +REQUEST request_4 1714134365186 1714134365282 OK +REQUEST request_6 1714134365187 1714134365284 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134365186 1714134365284 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134365062 1714134365311 OK +REQUEST main.4a961c5c.js 1714134365064 1714134365314 OK +REQUEST wiq2.ico 1714134365186 1714134365351 OK +USER RankingRecord START 1714134365384 +REQUEST request_1 1714134365368 1714134365468 OK +REQUEST main.4a961c5c.js 1714134365186 1714134365475 OK +REQUEST request_0 1714134365384 1714134365482 OK +REQUEST request_2 1714134365470 1714134365517 OK +REQUEST request_6 1714134365470 1714134365553 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134365470 1714134365553 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134365469 1714134365565 OK +REQUEST main.18e3ef94.css 1714134365469 1714134365569 OK +REQUEST request_4 1714134365470 1714134365570 OK +REQUEST wiq2.ico 1714134365469 1714134365662 OK +REQUEST main.4a961c5c.js 1714134365469 1714134365719 OK +USER RankingRecord START 1714134366059 +REQUEST request_0 1714134366059 1714134366157 OK +USER RankingRecord START 1714134366202 +REQUEST request_0 1714134366201 1714134366298 OK +REQUEST request_1 1714134366280 1714134366364 OK +REQUEST request_1 1714134366280 1714134366377 OK +REQUEST request_2 1714134366366 1714134366414 OK +REQUEST request_2 1714134366378 1714134366420 OK +REQUEST request_5 1714134366366 1714134366451 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134366366 1714134366451 OK +REQUEST main.18e3ef94.css 1714134366365 1714134366453 OK +REQUEST request_6 1714134366366 1714134366464 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134366378 1714134366466 OK +REQUEST request_3 1714134366365 1714134366470 OK +REQUEST request_4 1714134366378 1714134366470 OK +REQUEST request_5 1714134366378 1714134366476 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134366379 1714134366477 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134366378 1714134366481 OK +USER RankingRecord START 1714134366483 +REQUEST wiq2.ico 1714134366365 1714134366529 OK +USER RankingRecord START 1714134366562 +REQUEST request_1 1714134366483 1714134366566 OK +REQUEST wiq2.ico 1714134366378 1714134366572 OK +REQUEST request_0 1714134366483 1714134366581 OK +REQUEST main.4a961c5c.js 1714134366365 1714134366613 OK +REQUEST request_2 1714134366572 1714134366619 OK +REQUEST main.4a961c5c.js 1714134366378 1714134366638 OK +REQUEST main.18e3ef94.css 1714134366569 1714134366656 OK +REQUEST request_0 1714134366562 1714134366659 OK +REQUEST request_5 1714134366572 1714134366667 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134366570 1714134366668 OK +REQUEST request_4 1714134366571 1714134366669 OK +REQUEST request_6 1714134366572 1714134366670 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134366568 1714134366733 OK +USER RankingRecord START 1714134366763 +REQUEST main.4a961c5c.js 1714134366569 1714134366823 OK +REQUEST request_0 1714134366763 1714134366846 OK +USER RankingRecord START 1714134366857 +USER RankingRecord START 1714134366872 +REQUEST request_0 1714134366857 1714134366942 OK +USER RankingRecord START 1714134366951 +REQUEST request_0 1714134366872 1714134366969 OK +USER RankingRecord START 1714134366983 +REQUEST request_0 1714134366950 1714134367047 OK +REQUEST request_0 1714134366983 1714134367078 OK +REQUEST request_1 1714134367168 1714134367254 OK +REQUEST request_2 1714134367255 1714134367303 OK +REQUEST request_3 1714134367255 1714134367336 OK +REQUEST request_5 1714134367255 1714134367338 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134367256 1714134367351 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134367255 1714134367353 OK +REQUEST main.18e3ef94.css 1714134367255 1714134367355 OK +REQUEST request_1 1714134367307 1714134367388 OK +REQUEST wiq2.ico 1714134367254 1714134367422 OK +REQUEST request_2 1714134367389 1714134367437 OK +REQUEST request_4 1714134367389 1714134367472 OK +REQUEST request_3 1714134367389 1714134367474 OK +REQUEST request_5 1714134367389 1714134367486 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134367389 1714134367487 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134367389 1714134367488 OK +REQUEST main.4a961c5c.js 1714134367255 1714134367505 OK +USER RankingRecord START 1714134367509 +REQUEST wiq2.ico 1714134367389 1714134367552 OK +USER RankingRecord START 1714134367586 +REQUEST request_0 1714134367509 1714134367592 OK +REQUEST main.4a961c5c.js 1714134367389 1714134367635 OK +REQUEST request_1 1714134367586 1714134367671 OK +REQUEST request_0 1714134367586 1714134367684 OK +REQUEST request_2 1714134367672 1714134367720 OK +USER RankingRecord START 1714134367728 +REQUEST request_1 1714134367665 1714134367750 OK +REQUEST request_6 1714134367672 1714134367755 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134367672 1714134367757 OK +REQUEST main.18e3ef94.css 1714134367672 1714134367758 OK +USER RankingRecord START 1714134367759 +REQUEST request_5 1714134367672 1714134367769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134367672 1714134367774 OK +REQUEST request_2 1714134367751 1714134367798 OK +USER RankingRecord START 1714134367806 +REQUEST request_0 1714134367728 1714134367810 OK +USER RankingRecord START 1714134367820 +REQUEST request_3 1714134367751 1714134367837 OK +REQUEST wiq2.ico 1714134367671 1714134367837 OK +REQUEST request_0 1714134367759 1714134367840 OK +REQUEST request_5 1714134367751 1714134367847 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134367751 1714134367848 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134367751 1714134367849 OK +REQUEST request_4 1714134367751 1714134367855 OK +REQUEST request_0 1714134367820 1714134367903 OK +REQUEST request_0 1714134367805 1714134367903 OK +REQUEST wiq2.ico 1714134367750 1714134367915 OK +REQUEST main.4a961c5c.js 1714134367671 1714134367917 OK +REQUEST request_1 1714134367851 1714134367950 OK +REQUEST request_2 1714134367951 1714134367992 OK +REQUEST main.4a961c5c.js 1714134367750 1714134368001 OK +REQUEST request_5 1714134367951 1714134368035 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134367951 1714134368036 OK +USER RankingRecord START 1714134368038 +REQUEST request_1 1714134367944 1714134368042 OK +REQUEST request_3 1714134367951 1714134368047 OK +REQUEST request_6 1714134367952 1714134368048 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134367951 1714134368048 OK +REQUEST request_1 1714134367975 1714134368072 OK +REQUEST request_2 1714134368043 1714134368085 OK +REQUEST request_2 1714134368074 1714134368120 OK +REQUEST request_0 1714134368038 1714134368121 OK +REQUEST request_4 1714134368043 1714134368125 OK +REQUEST main.18e3ef94.css 1714134368043 1714134368128 OK +REQUEST request_5 1714134368043 1714134368139 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134367951 1714134368139 OK +REQUEST request_6 1714134368043 1714134368139 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134368043 1714134368140 OK +REQUEST request_1 1714134368054 1714134368150 OK +REQUEST request_6 1714134368074 1714134368156 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134368074 1714134368157 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134368073 1714134368157 OK +REQUEST request_1 1714134368085 1714134368168 OK +REQUEST request_4 1714134368073 1714134368170 OK +REQUEST main.18e3ef94.css 1714134368073 1714134368175 OK +REQUEST request_2 1714134368151 1714134368198 OK +REQUEST request_2 1714134368169 1714134368216 OK +REQUEST request_4 1714134368151 1714134368234 OK +REQUEST wiq2.ico 1714134368042 1714134368234 OK +REQUEST request_5 1714134368151 1714134368236 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134367951 1714134368243 OK +REQUEST request_3 1714134368151 1714134368247 OK +REQUEST request_6 1714134368151 1714134368249 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134368169 1714134368251 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134368169 1714134368251 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134368151 1714134368252 OK +REQUEST main.18e3ef94.css 1714134368169 1714134368255 OK +REQUEST wiq2.ico 1714134368073 1714134368264 OK +REQUEST request_3 1714134368169 1714134368265 OK +REQUEST request_4 1714134368169 1714134368274 OK +REQUEST main.4a961c5c.js 1714134368073 1714134368324 OK +REQUEST main.4a961c5c.js 1714134368043 1714134368330 OK +REQUEST wiq2.ico 1714134368169 1714134368333 OK +REQUEST wiq2.ico 1714134368150 1714134368337 OK +USER RankingRecord START 1714134368350 +USER RankingRecord START 1714134368398 +REQUEST main.4a961c5c.js 1714134368151 1714134368401 OK +REQUEST request_0 1714134368350 1714134368447 OK +REQUEST main.4a961c5c.js 1714134368169 1714134368466 OK +USER RankingRecord START 1714134368477 +REQUEST request_0 1714134368398 1714134368481 OK +REQUEST request_0 1714134368477 1714134368574 OK +REQUEST request_1 1714134368601 1714134368700 OK +REQUEST request_2 1714134368701 1714134368742 OK +REQUEST request_7 1714134368664 1714134368748 OK +REQUEST request_1 1714134368695 1714134368780 OK +REQUEST request_5 1714134368701 1714134368784 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134368701 1714134368785 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134368701 1714134368797 OK +REQUEST request_4 1714134368701 1714134368801 OK +REQUEST main.18e3ef94.css 1714134368701 1714134368805 OK +REQUEST request_2 1714134368781 1714134368829 OK +REQUEST request_9 1714134368748 1714134368831 OK +REQUEST request_8 1714134368748 1714134368854 OK +REQUEST request_4 1714134368781 1714134368863 OK +REQUEST request_5 1714134368781 1714134368864 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134368781 1714134368865 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134368780 1714134368865 OK +REQUEST request_3 1714134368780 1714134368877 OK +REQUEST wiq2.ico 1714134368701 1714134368892 OK +REQUEST request_1 1714134368819 1714134368917 OK +REQUEST request_1 1714134368850 1714134368934 OK +REQUEST wiq2.ico 1714134368780 1714134368947 OK +REQUEST main.4a961c5c.js 1714134368701 1714134368952 OK +REQUEST request_2 1714134368919 1714134368959 OK +REQUEST request_2 1714134368936 1714134368976 OK +REQUEST request_7 1714134368898 1714134368995 OK +REQUEST request_1 1714134368914 1714134368996 OK +REQUEST request_1 1714134368914 1714134368997 OK +REQUEST request_6 1714134368919 1714134369002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134368919 1714134369002 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134368918 1714134369002 OK +REQUEST main.18e3ef94.css 1714134368918 1714134369004 OK +REQUEST request_3 1714134368918 1714134369016 OK +REQUEST request_3 1714134368935 1714134369019 OK +REQUEST request_6 1714134368936 1714134369019 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134368935 1714134369032 OK +REQUEST request_5 1714134368936 1714134369035 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134368935 1714134369036 OK +REQUEST request_2 1714134368996 1714134369037 OK +REQUEST request_2 1714134368997 1714134369046 OK +REQUEST main.4a961c5c.js 1714134368780 1714134369071 OK +REQUEST request_9 1714134368995 1714134369077 OK +REQUEST request_3 1714134368996 1714134369080 OK +REQUEST request_6 1714134368998 1714134369080 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134368997 1714134369080 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134368997 1714134369081 OK +REQUEST request_4 1714134368996 1714134369082 OK +REQUEST request_5 1714134368997 1714134369083 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134368996 1714134369083 OK +REQUEST request_5 1714134368997 1714134369094 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134368997 1714134369095 OK +REQUEST wiq2.ico 1714134368935 1714134369101 OK +REQUEST main.18e3ef94.css 1714134368997 1714134369105 OK +REQUEST wiq2.ico 1714134368918 1714134369109 OK +REQUEST request_8 1714134368995 1714134369114 OK +REQUEST request_7 1714134369056 1714134369151 OK +REQUEST wiq2.ico 1714134368996 1714134369160 OK +REQUEST wiq2.ico 1714134368997 1714134369162 OK +REQUEST main.4a961c5c.js 1714134368918 1714134369166 OK +USER RankingRecord START 1714134369181 +REQUEST request_1 1714134369134 1714134369217 OK +REQUEST main.4a961c5c.js 1714134368935 1714134369225 OK +REQUEST main.4a961c5c.js 1714134368997 1714134369245 OK +REQUEST request_9 1714134369151 1714134369249 OK +REQUEST request_2 1714134369218 1714134369260 OK +REQUEST request_8 1714134369151 1714134369260 OK +REQUEST request_7 1714134369181 1714134369263 OK +REQUEST request_0 1714134369181 1714134369276 OK +REQUEST main.4a961c5c.js 1714134368996 1714134369287 OK +REQUEST request_5 1714134369218 1714134369301 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134369218 1714134369301 OK +REQUEST request_3 1714134369218 1714134369302 OK +REQUEST request_6 1714134369219 1714134369302 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134369218 1714134369305 OK +REQUEST request_9 1714134369264 1714134369361 OK +REQUEST request_8 1714134369264 1714134369364 OK +REQUEST wiq2.ico 1714134369218 1714134369382 OK +USER RankingRecord START 1714134369401 +USER RankingRecord START 1714134369401 +USER RankingRecord START 1714134369416 +REQUEST main.4a961c5c.js 1714134369218 1714134369472 OK +REQUEST request_0 1714134369401 1714134369486 OK +REQUEST request_0 1714134369401 1714134369499 OK +REQUEST request_0 1714134369416 1714134369512 OK +REQUEST request_1 1714134369463 1714134369562 OK +REQUEST request_1 1714134369493 1714134369589 OK +REQUEST request_2 1714134369563 1714134369610 OK +REQUEST request_2 1714134369591 1714134369631 OK +REQUEST request_3 1714134369562 1714134369646 OK +REQUEST request_4 1714134369563 1714134369646 OK +REQUEST main.18e3ef94.css 1714134369562 1714134369649 OK +REQUEST request_5 1714134369563 1714134369659 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134369563 1714134369660 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134369591 1714134369672 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134369590 1714134369674 OK +REQUEST main.18e3ef94.css 1714134369590 1714134369676 OK +REQUEST request_1 1714134369585 1714134369683 OK +REQUEST request_6 1714134369591 1714134369689 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134369590 1714134369689 OK +REQUEST request_2 1714134369685 1714134369733 OK +REQUEST wiq2.ico 1714134369562 1714134369754 OK +REQUEST request_6 1714134369685 1714134369768 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134369684 1714134369768 OK +REQUEST request_3 1714134369684 1714134369780 OK +REQUEST request_5 1714134369685 1714134369780 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134369590 1714134369781 OK +REQUEST main.18e3ef94.css 1714134369684 1714134369784 OK +REQUEST main.4a961c5c.js 1714134369562 1714134369808 OK +USER RankingRecord START 1714134369865 +REQUEST wiq2.ico 1714134369684 1714134369875 OK +REQUEST main.4a961c5c.js 1714134369590 1714134369882 OK +REQUEST main.4a961c5c.js 1714134369684 1714134369931 OK +REQUEST request_7 1714134369865 1714134369949 OK +USER RankingRecord START 1714134369959 +REQUEST request_0 1714134369865 1714134369963 OK +REQUEST request_0 1714134369959 1714134370041 OK +REQUEST request_9 1714134369950 1714134370048 OK +REQUEST request_8 1714134369950 1714134370053 OK +REQUEST request_7 1714134370005 1714134370101 OK +USER RankingRecord START 1714134370147 +REQUEST request_9 1714134370101 1714134370185 OK +REQUEST request_8 1714134370101 1714134370209 OK +REQUEST request_0 1714134370147 1714134370229 OK +REQUEST request_7 1714134370285 1714134370368 OK +REQUEST request_1 1714134370282 1714134370378 OK +REQUEST request_7 1714134370316 1714134370412 OK +REQUEST request_2 1714134370378 1714134370426 OK +REQUEST request_9 1714134370368 1714134370450 OK +REQUEST request_3 1714134370378 1714134370460 OK +REQUEST request_8 1714134370368 1714134370473 OK +REQUEST request_6 1714134370378 1714134370474 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134370378 1714134370474 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134370378 1714134370476 OK +REQUEST request_4 1714134370378 1714134370476 OK +REQUEST request_9 1714134370412 1714134370508 OK +REQUEST request_8 1714134370412 1714134370524 OK +USER RankingRecord START 1714134370537 +REQUEST wiq2.ico 1714134370378 1714134370567 OK +REQUEST request_1 1714134370490 1714134370573 OK +REQUEST request_1 1714134370505 1714134370588 OK +REQUEST request_1 1714134370521 1714134370604 OK +REQUEST request_2 1714134370574 1714134370616 OK +REQUEST request_0 1714134370537 1714134370619 OK +REQUEST request_2 1714134370589 1714134370637 OK +REQUEST request_2 1714134370605 1714134370652 OK +REQUEST request_5 1714134370574 1714134370657 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134370574 1714134370658 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134370574 1714134370658 OK +REQUEST main.18e3ef94.css 1714134370574 1714134370659 OK +REQUEST main.4a961c5c.js 1714134370378 1714134370669 OK +REQUEST request_4 1714134370574 1714134370671 OK +REQUEST request_5 1714134370589 1714134370672 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134370589 1714134370673 OK +REQUEST main.18e3ef94.css 1714134370589 1714134370674 OK +REQUEST request_4 1714134370589 1714134370685 OK +REQUEST request_6 1714134370590 1714134370686 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134370605 1714134370688 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134370605 1714134370689 OK +REQUEST main.18e3ef94.css 1714134370604 1714134370691 OK +REQUEST request_3 1714134370604 1714134370699 OK +REQUEST request_6 1714134370605 1714134370701 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134370615 1714134370712 OK +REQUEST wiq2.ico 1714134370574 1714134370735 OK +REQUEST wiq2.ico 1714134370589 1714134370751 OK +REQUEST wiq2.ico 1714134370604 1714134370766 OK +REQUEST request_9 1714134370713 1714134370808 OK +REQUEST request_8 1714134370712 1714134370822 OK +REQUEST main.4a961c5c.js 1714134370574 1714134370861 OK +REQUEST main.4a961c5c.js 1714134370589 1714134370877 OK +REQUEST main.4a961c5c.js 1714134370604 1714134370893 OK +REQUEST request_7 1714134370799 1714134370896 OK +REQUEST request_9 1714134370896 1714134370980 OK +REQUEST request_8 1714134370896 1714134371006 OK +REQUEST request_7 1714134370956 1714134371051 OK +REQUEST request_1 1714134370971 1714134371068 OK +USER RankingRecord START 1714134371096 +REQUEST request_2 1714134371069 1714134371117 OK +REQUEST request_9 1714134371052 1714134371134 OK +REQUEST request_1 1714134371048 1714134371144 OK +REQUEST request_3 1714134371068 1714134371150 OK +REQUEST request_5 1714134371069 1714134371151 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134371068 1714134371153 OK +REQUEST request_6 1714134371069 1714134371163 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134371052 1714134371163 OK +REQUEST request_4 1714134371069 1714134371165 OK +REQUEST request_0 1714134371096 1714134371178 OK +REQUEST request_2 1714134371145 1714134371186 OK +REQUEST request_5 1714134371145 1714134371228 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134371145 1714134371228 OK +REQUEST request_6 1714134371145 1714134371243 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134371145 1714134371243 OK +REQUEST main.18e3ef94.css 1714134371145 1714134371244 OK +REQUEST wiq2.ico 1714134371068 1714134371259 OK +REQUEST request_1 1714134371235 1714134371318 OK +REQUEST request_7 1714134371251 1714134371334 OK +REQUEST wiq2.ico 1714134371145 1714134371337 OK +REQUEST main.4a961c5c.js 1714134371068 1714134371355 OK +REQUEST request_2 1714134371319 1714134371360 OK +REQUEST request_7 1714134371283 1714134371364 OK +REQUEST request_6 1714134371319 1714134371402 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134371319 1714134371402 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134371318 1714134371403 OK +REQUEST main.18e3ef94.css 1714134371318 1714134371415 OK +REQUEST request_4 1714134371319 1714134371415 OK +REQUEST request_9 1714134371335 1714134371420 OK +REQUEST request_7 1714134371344 1714134371426 OK +REQUEST main.4a961c5c.js 1714134371145 1714134371432 OK +REQUEST request_8 1714134371335 1714134371447 OK +REQUEST request_9 1714134371365 1714134371462 OK +REQUEST wiq2.ico 1714134371318 1714134371481 OK +REQUEST request_8 1714134371365 1714134371484 OK +USER RankingRecord START 1714134371499 +REQUEST request_7 1714134371420 1714134371517 OK +REQUEST request_9 1714134371427 1714134371524 OK +REQUEST request_8 1714134371427 1714134371530 OK +USER RankingRecord START 1714134371546 +REQUEST request_0 1714134371498 1714134371580 OK +USER RankingRecord START 1714134371609 +REQUEST main.4a961c5c.js 1714134371318 1714134371609 OK +REQUEST request_9 1714134371517 1714134371612 OK +REQUEST request_8 1714134371517 1714134371626 OK +REQUEST request_0 1714134371546 1714134371628 OK +USER RankingRecord START 1714134371639 +USER RankingRecord START 1714134371703 +REQUEST request_0 1714134371608 1714134371706 OK +REQUEST request_1 1714134371624 1714134371719 OK +REQUEST request_0 1714134371639 1714134371723 OK +USER RankingRecord START 1714134371750 +REQUEST request_2 1714134371720 1714134371761 OK +REQUEST request_0 1714134371703 1714134371800 OK +REQUEST request_6 1714134371721 1714134371802 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134371720 1714134371803 OK +REQUEST request_3 1714134371720 1714134371804 OK +USER RankingRecord START 1714134371813 +REQUEST request_5 1714134371720 1714134371817 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134371720 1714134371819 OK +REQUEST request_0 1714134371750 1714134371847 OK +REQUEST request_10 1714134371859 1714134371903 OK +USER RankingRecord END 1714134371905 +REQUEST wiq2.ico 1714134371720 1714134371907 OK +REQUEST request_0 1714134371813 1714134371908 OK +REQUEST request_7 1714134371828 1714134371910 OK +REQUEST request_7 1714134371828 1714134371910 OK +REQUEST main.4a961c5c.js 1714134371720 1714134371971 OK +REQUEST request_7 1714134371891 1714134371977 OK +USER RankingRecord START 1714134371985 +REQUEST request_9 1714134371910 1714134371993 OK +REQUEST request_9 1714134371910 1714134372006 OK +REQUEST request_8 1714134371910 1714134372015 OK +REQUEST request_8 1714134371910 1714134372015 OK +REQUEST request_7 1714134371953 1714134372049 OK +REQUEST request_9 1714134371977 1714134372060 OK +REQUEST request_0 1714134371985 1714134372068 OK +REQUEST request_8 1714134371977 1714134372076 OK +REQUEST request_9 1714134372049 1714134372132 OK +REQUEST request_7 1714134372047 1714134372143 OK +REQUEST request_8 1714134372049 1714134372155 OK +REQUEST request_10 1714134372126 1714134372175 OK +USER RankingRecord END 1714134372176 +REQUEST request_7 1714134372156 1714134372239 OK +REQUEST request_9 1714134372144 1714134372242 OK +REQUEST request_8 1714134372144 1714134372250 OK +USER RankingRecord START 1714134372266 +REQUEST request_7 1714134372187 1714134372270 OK +REQUEST request_1 1714134372187 1714134372272 OK +USER RankingRecord START 1714134372313 +REQUEST request_2 1714134372273 1714134372314 OK +REQUEST request_10 1714134372265 1714134372316 OK +USER RankingRecord END 1714134372316 +REQUEST request_9 1714134372240 1714134372322 OK +REQUEST request_8 1714134372239 1714134372347 OK +REQUEST request_9 1714134372271 1714134372352 OK +USER RankingRecord START 1714134372359 +REQUEST request_0 1714134372265 1714134372361 OK +REQUEST request_6 1714134372273 1714134372368 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134372272 1714134372370 OK +REQUEST request_3 1714134372272 1714134372370 OK +REQUEST request_5 1714134372273 1714134372371 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134372272 1714134372373 OK +REQUEST request_8 1714134372271 1714134372382 OK +REQUEST request_0 1714134372313 1714134372395 OK +REQUEST request_10 1714134372375 1714134372417 OK +USER RankingRecord END 1714134372418 +USER RankingRecord START 1714134372421 +REQUEST wiq2.ico 1714134372272 1714134372439 OK +REQUEST request_0 1714134372359 1714134372454 OK +REQUEST request_0 1714134372421 1714134372502 OK +REQUEST main.4a961c5c.js 1714134372272 1714134372557 OK +REQUEST request_1 1714134372591 1714134372690 OK +REQUEST request_2 1714134372691 1714134372732 OK +USER RankingRecord START 1714134372733 +REQUEST request_7 1714134372637 1714134372734 OK +REQUEST request_1 1714134372637 1714134372734 OK +REQUEST request_3 1714134372691 1714134372773 OK +REQUEST request_6 1714134372691 1714134372774 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134372737 1714134372778 OK +REQUEST request_5 1714134372691 1714134372788 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134372691 1714134372802 OK +REQUEST request_1 1714134372716 1714134372806 OK +REQUEST main.18e3ef94.css 1714134372691 1714134372808 OK +REQUEST request_6 1714134372737 1714134372820 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134372737 1714134372821 OK +REQUEST request_3 1714134372736 1714134372822 OK +REQUEST request_0 1714134372732 1714134372828 OK +REQUEST request_1 1714134372732 1714134372831 OK +REQUEST request_5 1714134372737 1714134372834 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134372736 1714134372834 OK +REQUEST main.18e3ef94.css 1714134372736 1714134372837 OK +REQUEST request_8 1714134372735 1714134372853 OK +REQUEST request_2 1714134372807 1714134372855 OK +USER RankingRecord START 1714134372873 +REQUEST request_2 1714134372832 1714134372873 OK +REQUEST wiq2.ico 1714134372690 1714134372881 OK +REQUEST request_3 1714134372807 1714134372888 OK +REQUEST request_4 1714134372807 1714134372889 OK +REQUEST request_5 1714134372807 1714134372891 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134372807 1714134372892 OK +REQUEST request_1 1714134372810 1714134372894 OK +USER RankingRecord START 1714134372904 +REQUEST request_6 1714134372807 1714134372905 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134372832 1714134372914 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134372831 1714134372919 OK +REQUEST request_6 1714134372832 1714134372927 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134372831 1714134372929 OK +REQUEST main.18e3ef94.css 1714134372831 1714134372929 OK +REQUEST request_2 1714134372895 1714134372942 OK +REQUEST wiq2.ico 1714134372736 1714134372944 OK +REQUEST request_1 1714134372857 1714134372952 OK +USER RankingRecord START 1714134372952 +REQUEST request_0 1714134372873 1714134372954 OK +REQUEST wiq2.ico 1714134372807 1714134372970 OK +REQUEST request_4 1714134372894 1714134372978 OK +REQUEST request_0 1714134372904 1714134372985 OK +REQUEST main.4a961c5c.js 1714134372736 1714134372988 OK +REQUEST main.4a961c5c.js 1714134372691 1714134372991 OK +REQUEST request_6 1714134372895 1714134372991 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134372895 1714134372992 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134372894 1714134372994 OK +REQUEST main.18e3ef94.css 1714134372894 1714134372996 OK +REQUEST request_2 1714134372953 1714134373001 OK +REQUEST request_7 1714134372920 1714134373004 OK +REQUEST request_1 1714134372920 1714134373017 OK +REQUEST wiq2.ico 1714134372831 1714134373021 OK +REQUEST request_4 1714134372953 1714134373035 OK +REQUEST request_0 1714134372952 1714134373035 OK +REQUEST main.18e3ef94.css 1714134372953 1714134373038 OK +REQUEST request_6 1714134372953 1714134373049 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134372953 1714134373051 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134372953 1714134373054 OK +REQUEST wiq2.ico 1714134372894 1714134373061 OK +REQUEST request_2 1714134373018 1714134373066 OK +REQUEST main.4a961c5c.js 1714134372831 1714134373084 OK +REQUEST request_9 1714134373004 1714134373087 OK +REQUEST main.4a961c5c.js 1714134372807 1714134373101 OK +REQUEST request_6 1714134373018 1714134373101 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134373018 1714134373102 OK +REQUEST request_10 1714134373062 1714134373106 OK +USER RankingRecord END 1714134373106 +REQUEST request_8 1714134373004 1714134373112 OK +REQUEST request_5 1714134373018 1714134373113 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134373018 1714134373114 OK +REQUEST request_3 1714134373018 1714134373115 OK +REQUEST wiq2.ico 1714134372952 1714134373141 OK +REQUEST main.4a961c5c.js 1714134372894 1714134373144 OK +REQUEST request_1 1714134373078 1714134373160 OK +REQUEST request_2 1714134373161 1714134373201 OK +REQUEST main.4a961c5c.js 1714134372952 1714134373205 OK +REQUEST wiq2.ico 1714134373018 1714134373213 OK +REQUEST request_6 1714134373161 1714134373245 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134373160 1714134373245 OK +REQUEST main.18e3ef94.css 1714134373160 1714134373246 OK +REQUEST request_5 1714134373161 1714134373257 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134373161 1714134373257 OK +REQUEST request_10 1714134373214 1714134373263 OK +USER RankingRecord END 1714134373263 +REQUEST main.4a961c5c.js 1714134373018 1714134373305 OK +REQUEST wiq2.ico 1714134373160 1714134373323 OK +USER RankingRecord START 1714134373326 +REQUEST request_7 1714134373295 1714134373391 OK +REQUEST request_7 1714134373311 1714134373407 OK +REQUEST request_0 1714134373326 1714134373423 OK +USER RankingRecord START 1714134373436 +REQUEST main.4a961c5c.js 1714134373160 1714134373448 OK +REQUEST request_1 1714134373373 1714134373470 OK +REQUEST request_9 1714134373391 1714134373475 OK +REQUEST request_1 1714134373404 1714134373500 OK +REQUEST request_8 1714134373391 1714134373503 OK +REQUEST request_9 1714134373408 1714134373505 OK +REQUEST request_2 1714134373471 1714134373519 OK +REQUEST request_8 1714134373408 1714134373521 OK +REQUEST request_0 1714134373436 1714134373521 OK +REQUEST request_10 1714134373482 1714134373528 OK +USER RankingRecord END 1714134373528 +REQUEST request_2 1714134373501 1714134373542 OK +REQUEST request_1 1714134373467 1714134373549 OK +REQUEST request_4 1714134373471 1714134373554 OK +REQUEST request_6 1714134373471 1714134373554 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134373471 1714134373568 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134373471 1714134373568 OK +REQUEST main.18e3ef94.css 1714134373471 1714134373568 OK +REQUEST request_10 1714134373529 1714134373578 OK +USER RankingRecord END 1714134373579 +REQUEST request_6 1714134373501 1714134373583 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134373501 1714134373583 OK +REQUEST request_5 1714134373501 1714134373584 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134373501 1714134373585 OK +REQUEST request_4 1714134373501 1714134373586 OK +REQUEST request_2 1714134373550 1714134373597 OK +REQUEST request_1 1714134373513 1714134373610 OK +REQUEST request_5 1714134373550 1714134373631 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134373550 1714134373632 OK +REQUEST request_6 1714134373550 1714134373645 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134373550 1714134373646 OK +REQUEST main.18e3ef94.css 1714134373550 1714134373651 OK +REQUEST request_2 1714134373611 1714134373652 OK +USER RankingRecord START 1714134373653 +REQUEST wiq2.ico 1714134373471 1714134373663 OK +REQUEST wiq2.ico 1714134373501 1714134373693 OK +REQUEST request_5 1714134373611 1714134373706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134373611 1714134373707 OK +REQUEST request_3 1714134373611 1714134373707 OK +REQUEST request_6 1714134373611 1714134373709 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134373611 1714134373711 OK +REQUEST wiq2.ico 1714134373550 1714134373711 OK +REQUEST request_0 1714134373652 1714134373749 OK +REQUEST main.4a961c5c.js 1714134373471 1714134373760 OK +REQUEST main.4a961c5c.js 1714134373501 1714134373788 OK +USER RankingRecord START 1714134373793 +REQUEST wiq2.ico 1714134373611 1714134373806 OK +REQUEST main.4a961c5c.js 1714134373550 1714134373839 OK +REQUEST main.4a961c5c.js 1714134373611 1714134373858 OK +REQUEST request_10 1714134373824 1714134373875 OK +USER RankingRecord END 1714134373876 +REQUEST request_0 1714134373793 1714134373888 OK +REQUEST request_1 1714134373840 1714134373922 OK +REQUEST request_7 1714134373855 1714134373937 OK +REQUEST request_2 1714134373923 1714134373971 OK +REQUEST request_3 1714134373923 1714134374020 OK +REQUEST request_5 1714134373923 1714134374021 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134373924 1714134374021 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134373923 1714134374023 OK +REQUEST request_9 1714134373937 1714134374024 OK +REQUEST main.18e3ef94.css 1714134373923 1714134374026 OK +REQUEST request_8 1714134373937 1714134374039 OK +REQUEST request_7 1714134373949 1714134374044 OK +REQUEST request_10 1714134374012 1714134374062 OK +USER RankingRecord END 1714134374062 +REQUEST request_1 1714134373965 1714134374062 OK +REQUEST request_1 1714134373996 1714134374080 OK +REQUEST wiq2.ico 1714134373923 1714134374086 OK +REQUEST request_2 1714134374063 1714134374104 OK +REQUEST request_2 1714134374081 1714134374121 OK +USER RankingRecord START 1714134374122 +REQUEST request_1 1714134374043 1714134374125 OK +REQUEST request_9 1714134374044 1714134374141 OK +REQUEST request_4 1714134374063 1714134374146 OK +REQUEST request_5 1714134374063 1714134374147 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134374044 1714134374157 OK +REQUEST request_3 1714134374063 1714134374159 OK +REQUEST request_6 1714134374063 1714134374160 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134374081 1714134374163 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134374080 1714134374163 OK +REQUEST request_6 1714134374081 1714134374163 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134374063 1714134374164 OK +REQUEST request_2 1714134374126 1714134374166 OK +REQUEST main.18e3ef94.css 1714134374080 1714134374166 OK +REQUEST request_4 1714134374080 1714134374175 OK +REQUEST request_4 1714134374126 1714134374208 OK +REQUEST request_5 1714134374126 1714134374209 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134373923 1714134374212 OK +REQUEST request_0 1714134374121 1714134374216 OK +REQUEST request_10 1714134374169 1714134374217 OK +USER RankingRecord END 1714134374218 +REQUEST request_3 1714134374126 1714134374221 OK +REQUEST request_6 1714134374126 1714134374223 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134374126 1714134374240 OK +REQUEST wiq2.ico 1714134374080 1714134374247 OK +REQUEST wiq2.ico 1714134374063 1714134374254 OK +REQUEST wiq2.ico 1714134374126 1714134374287 OK +REQUEST main.4a961c5c.js 1714134374063 1714134374310 OK +REQUEST request_7 1714134374262 1714134374345 OK +REQUEST main.4a961c5c.js 1714134374080 1714134374367 OK +REQUEST main.4a961c5c.js 1714134374126 1714134374427 OK +REQUEST request_9 1714134374346 1714134374443 OK +REQUEST request_8 1714134374346 1714134374445 OK +REQUEST request_10 1714134374462 1714134374506 OK +USER RankingRecord END 1714134374506 +REQUEST request_1 1714134374430 1714134374514 OK +REQUEST request_10 1714134374492 1714134374535 OK +USER RankingRecord END 1714134374535 +REQUEST request_2 1714134374514 1714134374563 OK +REQUEST request_10 1714134374539 1714134374582 OK +USER RankingRecord END 1714134374583 +REQUEST request_3 1714134374514 1714134374596 OK +REQUEST main.18e3ef94.css 1714134374514 1714134374597 OK +REQUEST request_6 1714134374515 1714134374597 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134374514 1714134374611 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134374514 1714134374612 OK +REQUEST request_1 1714134374524 1714134374622 OK +REQUEST request_2 1714134374623 1714134374665 OK +REQUEST request_10 1714134374631 1714134374680 OK +USER RankingRecord END 1714134374680 +REQUEST wiq2.ico 1714134374514 1714134374680 OK +REQUEST request_5 1714134374623 1714134374705 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134374622 1714134374713 OK +REQUEST request_6 1714134374623 1714134374714 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134374622 1714134374714 OK +REQUEST main.18e3ef94.css 1714134374622 1714134374715 OK +USER RankingRecord START 1714134374757 +REQUEST main.4a961c5c.js 1714134374514 1714134374765 OK +REQUEST wiq2.ico 1714134374622 1714134374814 OK +REQUEST request_1 1714134374757 1714134374839 OK +REQUEST request_0 1714134374757 1714134374841 OK +REQUEST request_2 1714134374840 1714134374888 OK +REQUEST main.4a961c5c.js 1714134374622 1714134374910 OK +REQUEST request_4 1714134374840 1714134374922 OK +REQUEST request_5 1714134374840 1714134374923 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134374840 1714134374923 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134374840 1714134374935 OK +REQUEST main.18e3ef94.css 1714134374840 1714134374938 OK +REQUEST request_1 1714134374897 1714134374980 OK +USER RankingRecord START 1714134374991 +REQUEST wiq2.ico 1714134374840 1714134375001 OK +USER RankingRecord START 1714134375022 +REQUEST request_2 1714134374981 1714134375030 OK +REQUEST request_3 1714134374981 1714134375064 OK +REQUEST request_5 1714134374981 1714134375066 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134375022 1714134375067 OK +REQUEST main.18e3ef94.css 1714134374981 1714134375067 OK +USER RankingRecord END 1714134375067 +REQUEST request_10 1714134375022 1714134375068 OK +USER RankingRecord END 1714134375068 +REQUEST request_0 1714134374991 1714134375074 OK +REQUEST request_6 1714134374981 1714134375077 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134374981 1714134375078 OK +REQUEST request_0 1714134375022 1714134375106 OK +REQUEST request_7 1714134375022 1714134375119 OK +REQUEST request_10 1714134375084 1714134375126 OK +USER RankingRecord END 1714134375126 +REQUEST main.4a961c5c.js 1714134374840 1714134375130 OK +REQUEST wiq2.ico 1714134374981 1714134375144 OK +REQUEST request_7 1714134375131 1714134375213 OK +REQUEST request_10 1714134375163 1714134375213 OK +USER RankingRecord END 1714134375213 +REQUEST request_9 1714134375119 1714134375215 OK +REQUEST request_7 1714134375131 1714134375226 OK +REQUEST request_8 1714134375119 1714134375227 OK +REQUEST main.4a961c5c.js 1714134374981 1714134375270 OK +USER RankingRecord START 1714134375289 +REQUEST request_9 1714134375213 1714134375297 OK +REQUEST request_10 1714134375257 1714134375307 OK +USER RankingRecord END 1714134375307 +REQUEST request_1 1714134375225 1714134375321 OK +REQUEST request_9 1714134375226 1714134375323 OK +REQUEST request_8 1714134375213 1714134375337 OK +REQUEST request_8 1714134375226 1714134375339 OK +REQUEST request_2 1714134375322 1714134375370 OK +REQUEST request_0 1714134375289 1714134375371 OK +REQUEST request_10 1714134375351 1714134375394 OK +USER RankingRecord END 1714134375394 +REQUEST request_6 1714134375322 1714134375405 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134375322 1714134375405 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134375322 1714134375407 OK +REQUEST main.18e3ef94.css 1714134375322 1714134375409 OK +REQUEST request_3 1714134375322 1714134375418 OK +REQUEST request_10 1714134375396 1714134375440 OK +USER RankingRecord END 1714134375440 +REQUEST request_7 1714134375411 1714134375506 OK +REQUEST wiq2.ico 1714134375322 1714134375513 OK +REQUEST request_9 1714134375507 1714134375604 OK +REQUEST main.4a961c5c.js 1714134375322 1714134375609 OK +REQUEST request_8 1714134375506 1714134375614 OK +USER RankingRecord START 1714134375629 +REQUEST request_0 1714134375629 1714134375712 OK +USER RankingRecord START 1714134375784 +REQUEST request_7 1714134375737 1714134375821 OK +USER RankingRecord START 1714134375878 +REQUEST request_0 1714134375784 1714134375881 OK +REQUEST request_7 1714134375799 1714134375897 OK +REQUEST request_9 1714134375821 1714134375904 OK +REQUEST request_10 1714134375861 1714134375912 OK +USER RankingRecord END 1714134375912 +REQUEST request_8 1714134375821 1714134375921 OK +REQUEST request_7 1714134375846 1714134375928 OK +REQUEST request_1 1714134375846 1714134375929 OK +REQUEST request_2 1714134375930 1714134375972 OK +REQUEST request_0 1714134375878 1714134375976 OK +REQUEST request_9 1714134375897 1714134375995 OK +REQUEST request_8 1714134375897 1714134376009 OK +REQUEST request_9 1714134375929 1714134376011 OK +REQUEST request_6 1714134375930 1714134376012 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134375930 1714134376027 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134375930 1714134376027 OK +REQUEST request_4 1714134375930 1714134376029 OK +REQUEST main.18e3ef94.css 1714134375930 1714134376029 OK +REQUEST request_8 1714134375929 1714134376034 OK +REQUEST wiq2.ico 1714134375930 1714134376094 OK +REQUEST request_10 1714134376126 1714134376170 OK +USER RankingRecord END 1714134376170 +REQUEST request_1 1714134376078 1714134376175 OK +USER RankingRecord START 1714134376189 +REQUEST request_1 1714134376110 1714134376208 OK +REQUEST request_2 1714134376176 1714134376218 OK +REQUEST main.4a961c5c.js 1714134375930 1714134376218 OK +REQUEST request_7 1714134376142 1714134376225 OK +REQUEST request_7 1714134376142 1714134376237 OK +REQUEST request_2 1714134376210 1714134376252 OK +REQUEST main.18e3ef94.css 1714134376176 1714134376261 OK +REQUEST request_3 1714134376176 1714134376271 OK +REQUEST request_0 1714134376189 1714134376272 OK +REQUEST request_5 1714134376176 1714134376272 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134376176 1714134376273 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134376176 1714134376275 OK +REQUEST request_6 1714134376211 1714134376294 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134376211 1714134376294 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134376210 1714134376299 OK +REQUEST request_4 1714134376210 1714134376310 OK +REQUEST main.18e3ef94.css 1714134376209 1714134376315 OK +REQUEST request_9 1714134376226 1714134376326 OK +REQUEST request_9 1714134376237 1714134376326 OK +REQUEST request_8 1714134376237 1714134376353 OK +REQUEST request_8 1714134376226 1714134376361 OK +REQUEST wiq2.ico 1714134376176 1714134376368 OK +REQUEST wiq2.ico 1714134376209 1714134376401 OK +REQUEST request_7 1714134376313 1714134376408 OK +REQUEST request_7 1714134376328 1714134376411 OK +REQUEST main.4a961c5c.js 1714134376176 1714134376466 OK +REQUEST main.4a961c5c.js 1714134376209 1714134376467 OK +REQUEST request_1 1714134376374 1714134376471 OK +REQUEST request_9 1714134376411 1714134376494 OK +REQUEST request_9 1714134376409 1714134376506 OK +REQUEST request_2 1714134376472 1714134376514 OK +REQUEST request_8 1714134376411 1714134376517 OK +REQUEST request_8 1714134376409 1714134376522 OK +REQUEST request_6 1714134376472 1714134376555 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134376516 1714134376566 OK +USER RankingRecord END 1714134376566 +REQUEST request_3 1714134376472 1714134376568 OK +REQUEST request_5 1714134376472 1714134376569 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134376485 1714134376570 OK +REQUEST request_10 1714134376521 1714134376572 OK +USER RankingRecord END 1714134376572 +REQUEST request_4 1714134376472 1714134376574 OK +REQUEST main.18e3ef94.css 1714134376472 1714134376586 OK +REQUEST wiq2.ico 1714134376472 1714134376662 OK +REQUEST request_9 1714134376570 1714134376667 OK +REQUEST request_8 1714134376570 1714134376671 OK +USER RankingRecord START 1714134376704 +REQUEST main.4a961c5c.js 1714134376472 1714134376718 OK +REQUEST request_1 1714134376720 1714134376801 OK +REQUEST request_0 1714134376704 1714134376802 OK +REQUEST request_7 1714134376720 1714134376814 OK +REQUEST request_2 1714134376802 1714134376842 OK +REQUEST request_3 1714134376802 1714134376885 OK +REQUEST request_6 1714134376802 1714134376885 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134376802 1714134376885 OK +REQUEST request_4 1714134376802 1714134376897 OK +REQUEST request_5 1714134376802 1714134376898 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134376814 1714134376914 OK +REQUEST request_8 1714134376814 1714134376932 OK +REQUEST wiq2.ico 1714134376802 1714134376966 OK +REQUEST request_1 1714134376888 1714134376972 OK +REQUEST request_2 1714134376973 1714134377021 OK +REQUEST main.18e3ef94.css 1714134376973 1714134377058 OK +REQUEST request_5 1714134376973 1714134377058 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134376973 1714134377059 OK +REQUEST request_6 1714134376973 1714134377059 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134376973 1714134377069 OK +REQUEST request_1 1714134376981 1714134377078 OK +REQUEST request_10 1714134377044 1714134377087 OK +USER RankingRecord END 1714134377087 +REQUEST main.4a961c5c.js 1714134376802 1714134377092 OK +REQUEST request_2 1714134377079 1714134377127 OK +REQUEST wiq2.ico 1714134376973 1714134377142 OK +REQUEST request_5 1714134377079 1714134377161 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134377079 1714134377162 OK +REQUEST main.18e3ef94.css 1714134377079 1714134377162 OK +REQUEST request_6 1714134377079 1714134377174 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134377079 1714134377177 OK +USER RankingRecord START 1714134377184 +USER RankingRecord START 1714134377199 +REQUEST request_10 1714134377167 1714134377217 OK +USER RankingRecord END 1714134377217 +REQUEST main.4a961c5c.js 1714134376973 1714134377263 OK +REQUEST wiq2.ico 1714134377079 1714134377271 OK +REQUEST request_0 1714134377184 1714134377282 OK +REQUEST request_0 1714134377199 1714134377282 OK +REQUEST request_1 1714134377278 1714134377362 OK +REQUEST main.4a961c5c.js 1714134377079 1714134377365 OK +REQUEST request_2 1714134377363 1714134377404 OK +REQUEST request_6 1714134377363 1714134377446 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134377363 1714134377447 OK +REQUEST request_4 1714134377363 1714134377448 OK +REQUEST main.18e3ef94.css 1714134377363 1714134377448 OK +REQUEST request_5 1714134377363 1714134377460 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134377450 1714134377493 OK +USER RankingRecord END 1714134377493 +REQUEST wiq2.ico 1714134377363 1714134377529 OK +REQUEST main.4a961c5c.js 1714134377363 1714134377614 OK +REQUEST request_7 1714134377621 1714134377704 OK +REQUEST request_7 1714134377653 1714134377751 OK +REQUEST request_9 1714134377706 1714134377787 OK +REQUEST request_8 1714134377705 1714134377806 OK +REQUEST request_9 1714134377751 1714134377834 OK +REQUEST request_8 1714134377751 1714134377859 OK +USER RankingRecord START 1714134377884 +REQUEST request_1 1714134377807 1714134377890 OK +REQUEST request_7 1714134377837 1714134377933 OK +REQUEST request_2 1714134377890 1714134377938 OK +USER RankingRecord START 1714134377948 +REQUEST request_3 1714134377890 1714134377973 OK +REQUEST request_0 1714134377884 1714134377978 OK +REQUEST request_6 1714134377891 1714134377988 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134377890 1714134377988 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134377890 1714134377990 OK +REQUEST main.18e3ef94.css 1714134377890 1714134377995 OK +REQUEST request_9 1714134377934 1714134378031 OK +REQUEST request_8 1714134377934 1714134378042 OK +REQUEST request_0 1714134377948 1714134378045 OK +REQUEST wiq2.ico 1714134377890 1714134378051 OK +REQUEST main.4a961c5c.js 1714134377890 1714134378138 OK +USER RankingRecord START 1714134378184 +REQUEST request_0 1714134378184 1714134378280 OK +REQUEST request_10 1714134378230 1714134378281 OK +USER RankingRecord END 1714134378281 +REQUEST request_1 1714134378292 1714134378376 OK +REQUEST request_10 1714134378339 1714134378382 OK +USER RankingRecord END 1714134378382 +REQUEST request_10 1714134378341 1714134378390 OK +USER RankingRecord END 1714134378391 +REQUEST request_1 1714134378292 1714134378391 OK +REQUEST request_2 1714134378377 1714134378418 OK +REQUEST request_2 1714134378391 1714134378439 OK +REQUEST request_3 1714134378377 1714134378458 OK +REQUEST main.18e3ef94.css 1714134378377 1714134378460 OK +REQUEST request_4 1714134378377 1714134378462 OK +REQUEST request_6 1714134378377 1714134378473 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134378377 1714134378473 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134378392 1714134378474 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134378391 1714134378478 OK +REQUEST request_3 1714134378391 1714134378486 OK +REQUEST request_5 1714134378391 1714134378486 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134378391 1714134378488 OK +REQUEST wiq2.ico 1714134378377 1714134378543 OK +REQUEST wiq2.ico 1714134378391 1714134378583 OK +REQUEST request_7 1714134378509 1714134378605 OK +REQUEST main.4a961c5c.js 1714134378377 1714134378627 OK +USER RankingRecord START 1714134378634 +REQUEST request_10 1714134378618 1714134378668 OK +USER RankingRecord END 1714134378668 +REQUEST main.4a961c5c.js 1714134378391 1714134378677 OK +REQUEST request_9 1714134378605 1714134378689 OK +REQUEST request_8 1714134378605 1714134378712 OK +REQUEST request_0 1714134378634 1714134378729 OK +REQUEST request_7 1714134378649 1714134378732 OK +REQUEST request_9 1714134378732 1714134378813 OK +REQUEST request_8 1714134378732 1714134378831 OK +USER RankingRecord START 1714134378835 +USER RankingRecord START 1714134378883 +REQUEST request_0 1714134378835 1714134378931 OK +REQUEST request_0 1714134378882 1714134378966 OK +REQUEST request_10 1714134378930 1714134378974 OK +USER RankingRecord END 1714134378974 +REQUEST request_7 1714134378930 1714134379026 OK +REQUEST request_10 1714134379023 1714134379073 OK +USER RankingRecord END 1714134379074 +REQUEST request_10 1714134379039 1714134379083 OK +USER RankingRecord END 1714134379083 +REQUEST request_7 1714134379008 1714134379090 OK +REQUEST request_1 1714134378992 1714134379090 OK +REQUEST request_9 1714134379026 1714134379121 OK +USER RankingRecord START 1714134379127 +REQUEST request_8 1714134379026 1714134379135 OK +REQUEST request_2 1714134379090 1714134379138 OK +REQUEST request_1 1714134379054 1714134379141 OK +REQUEST request_6 1714134379091 1714134379173 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134379090 1714134379177 OK +REQUEST request_5 1714134379090 1714134379187 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134379141 1714134379189 OK +REQUEST request_3 1714134379090 1714134379189 OK +REQUEST request_9 1714134379090 1714134379192 OK +REQUEST request_8 1714134379090 1714134379196 OK +REQUEST main.18e3ef94.css 1714134379090 1714134379197 OK +REQUEST request_0 1714134379126 1714134379209 OK +REQUEST request_6 1714134379142 1714134379223 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134379142 1714134379236 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134379141 1714134379239 OK +REQUEST request_4 1714134379141 1714134379239 OK +REQUEST main.18e3ef94.css 1714134379141 1714134379239 OK +REQUEST wiq2.ico 1714134379090 1714134379282 OK +REQUEST wiq2.ico 1714134379141 1714134379311 OK +REQUEST main.4a961c5c.js 1714134379090 1714134379338 OK +REQUEST request_7 1714134379256 1714134379340 OK +REQUEST request_1 1714134379287 1714134379371 OK +REQUEST main.4a961c5c.js 1714134379141 1714134379387 OK +REQUEST request_10 1714134379367 1714134379411 OK +USER RankingRecord END 1714134379411 +REQUEST request_7 1714134379335 1714134379416 OK +REQUEST request_10 1714134379367 1714134379417 OK +USER RankingRecord END 1714134379418 +REQUEST request_2 1714134379372 1714134379419 OK +REQUEST request_9 1714134379341 1714134379423 OK +REQUEST request_7 1714134379335 1714134379430 OK +REQUEST request_8 1714134379341 1714134379441 OK +REQUEST request_5 1714134379372 1714134379454 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134379372 1714134379455 OK +REQUEST main.18e3ef94.css 1714134379372 1714134379457 OK +REQUEST request_6 1714134379372 1714134379467 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134379372 1714134379467 OK +REQUEST request_7 1714134379414 1714134379496 OK +REQUEST request_9 1714134379430 1714134379513 OK +REQUEST request_9 1714134379417 1714134379513 OK +REQUEST request_8 1714134379417 1714134379527 OK +REQUEST wiq2.ico 1714134379372 1714134379537 OK +REQUEST request_8 1714134379430 1714134379546 OK +USER RankingRecord START 1714134379552 +REQUEST request_10 1714134379522 1714134379566 OK +USER RankingRecord END 1714134379566 +REQUEST request_7 1714134379476 1714134379573 OK +REQUEST request_9 1714134379496 1714134379578 OK +REQUEST request_10 1714134379537 1714134379586 OK +USER RankingRecord END 1714134379586 +USER RankingRecord START 1714134379597 +REQUEST request_8 1714134379496 1714134379607 OK +REQUEST main.4a961c5c.js 1714134379372 1714134379619 OK +REQUEST request_0 1714134379552 1714134379634 OK +REQUEST request_9 1714134379573 1714134379669 OK +REQUEST request_8 1714134379573 1714134379682 OK +REQUEST request_0 1714134379597 1714134379694 OK +REQUEST request_10 1714134379678 1714134379723 OK +USER RankingRecord END 1714134379723 +REQUEST request_1 1714134379740 1714134379824 OK +REQUEST request_2 1714134379825 1714134379873 OK +REQUEST request_3 1714134379825 1714134379908 OK +REQUEST main.18e3ef94.css 1714134379825 1714134379909 OK +REQUEST request_6 1714134379825 1714134379919 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134379825 1714134379920 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134379825 1714134379921 OK +REQUEST wiq2.ico 1714134379825 1714134379990 OK +REQUEST request_10 1714134379943 1714134379993 OK +USER RankingRecord END 1714134379993 +USER RankingRecord START 1714134380021 +REQUEST request_1 1714134379943 1714134380025 OK +REQUEST request_7 1714134379958 1714134380056 OK +REQUEST request_1 1714134379974 1714134380071 OK +REQUEST request_2 1714134380026 1714134380074 OK +REQUEST request_0 1714134380021 1714134380103 OK +REQUEST request_3 1714134380026 1714134380111 OK +REQUEST request_6 1714134380026 1714134380111 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134380071 1714134380112 OK +REQUEST main.4a961c5c.js 1714134379825 1714134380118 OK +REQUEST request_5 1714134380026 1714134380121 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134380026 1714134380123 OK +REQUEST main.18e3ef94.css 1714134380026 1714134380129 OK +REQUEST request_9 1714134380056 1714134380153 OK +REQUEST request_5 1714134380071 1714134380153 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134380071 1714134380153 OK +REQUEST request_6 1714134380071 1714134380154 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134380071 1714134380155 OK +USER RankingRecord START 1714134380161 +REQUEST request_7 1714134380082 1714134380166 OK +REQUEST main.18e3ef94.css 1714134380071 1714134380172 OK +REQUEST request_8 1714134380056 1714134380172 OK +REQUEST wiq2.ico 1714134380025 1714134380188 OK +REQUEST request_0 1714134380161 1714134380244 OK +REQUEST request_9 1714134380167 1714134380250 OK +REQUEST wiq2.ico 1714134380071 1714134380266 OK +REQUEST request_8 1714134380167 1714134380268 OK +REQUEST main.4a961c5c.js 1714134380025 1714134380271 OK +REQUEST request_7 1714134380176 1714134380272 OK +REQUEST request_1 1714134380222 1714134380306 OK +REQUEST main.4a961c5c.js 1714134380071 1714134380319 OK +REQUEST request_7 1714134380237 1714134380334 OK +REQUEST request_2 1714134380307 1714134380348 OK +REQUEST request_7 1714134380253 1714134380350 OK +REQUEST request_9 1714134380272 1714134380356 OK +USER RankingRecord START 1714134380362 +REQUEST request_8 1714134380272 1714134380379 OK +REQUEST request_7 1714134380301 1714134380383 OK +REQUEST request_5 1714134380307 1714134380389 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134380307 1714134380389 OK +REQUEST request_3 1714134380307 1714134380389 OK +REQUEST request_6 1714134380307 1714134380403 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134380307 1714134380406 OK +REQUEST request_9 1714134380334 1714134380429 OK +REQUEST request_9 1714134380350 1714134380433 OK +REQUEST request_0 1714134380361 1714134380444 OK +REQUEST wiq2.ico 1714134380307 1714134380472 OK +REQUEST request_9 1714134380384 1714134380479 OK +REQUEST request_8 1714134380350 1714134380481 OK +REQUEST request_8 1714134380334 1714134380490 OK +REQUEST request_8 1714134380383 1714134380518 OK +REQUEST request_7 1714134380486 1714134380568 OK +REQUEST main.4a961c5c.js 1714134380307 1714134380598 OK +REQUEST request_9 1714134380569 1714134380665 OK +REQUEST request_8 1714134380569 1714134380668 OK +USER RankingRecord START 1714134380736 +REQUEST request_1 1714134380642 1714134380740 OK +REQUEST request_2 1714134380740 1714134380781 OK +REQUEST request_1 1714134380705 1714134380789 OK +REQUEST request_0 1714134380736 1714134380818 OK +REQUEST request_5 1714134380740 1714134380823 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134380740 1714134380837 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134380740 1714134380837 OK +REQUEST request_3 1714134380740 1714134380838 OK +REQUEST request_2 1714134380790 1714134380838 OK +REQUEST main.18e3ef94.css 1714134380740 1714134380841 OK +REQUEST request_10 1714134380813 1714134380856 OK +USER RankingRecord END 1714134380856 +REQUEST main.18e3ef94.css 1714134380790 1714134380873 OK +REQUEST request_4 1714134380790 1714134380886 OK +REQUEST request_3 1714134380790 1714134380886 OK +REQUEST request_6 1714134380790 1714134380886 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134380790 1714134380887 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134380813 1714134380894 OK +REQUEST request_10 1714134380875 1714134380925 OK +USER RankingRecord END 1714134380925 +REQUEST wiq2.ico 1714134380740 1714134380931 OK +REQUEST wiq2.ico 1714134380790 1714134380957 OK +REQUEST request_7 1714134380890 1714134380973 OK +REQUEST request_9 1714134380895 1714134380976 OK +REQUEST main.4a961c5c.js 1714134380740 1714134380989 OK +REQUEST request_8 1714134380894 1714134380999 OK +REQUEST request_7 1714134380936 1714134381033 OK +REQUEST main.4a961c5c.js 1714134380790 1714134381040 OK +REQUEST request_9 1714134380973 1714134381056 OK +REQUEST request_8 1714134380973 1714134381076 OK +USER RankingRecord START 1714134381094 +REQUEST request_10 1714134381045 1714134381094 OK +USER RankingRecord END 1714134381095 +REQUEST request_9 1714134381033 1714134381116 OK +REQUEST request_8 1714134381033 1714134381144 OK +REQUEST request_0 1714134381093 1714134381190 OK +REQUEST request_1 1714134381109 1714134381193 OK +REQUEST request_2 1714134381193 1714134381234 OK +USER RankingRecord START 1714134381272 +REQUEST request_5 1714134381194 1714134381276 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134381193 1714134381277 OK +REQUEST request_3 1714134381193 1714134381277 OK +REQUEST request_6 1714134381194 1714134381278 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134381193 1714134381280 OK +REQUEST request_1 1714134381251 1714134381349 OK +REQUEST request_0 1714134381272 1714134381353 OK +REQUEST wiq2.ico 1714134381193 1714134381358 OK +REQUEST request_2 1714134381350 1714134381391 OK +REQUEST request_3 1714134381350 1714134381432 OK +REQUEST request_6 1714134381350 1714134381432 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134381350 1714134381433 OK +REQUEST request_4 1714134381350 1714134381434 OK +REQUEST main.4a961c5c.js 1714134381193 1714134381442 OK +REQUEST request_5 1714134381350 1714134381447 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134381455 1714134381538 OK +REQUEST wiq2.ico 1714134381350 1714134381543 OK +REQUEST request_2 1714134381538 1714134381580 OK +REQUEST request_5 1714134381538 1714134381620 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134381538 1714134381621 OK +REQUEST request_3 1714134381538 1714134381635 OK +REQUEST request_6 1714134381538 1714134381635 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134381350 1714134381636 OK +REQUEST main.18e3ef94.css 1714134381538 1714134381638 OK +REQUEST wiq2.ico 1714134381538 1714134381703 OK +REQUEST request_7 1714134381676 1714134381773 OK +REQUEST request_10 1714134381723 1714134381774 OK +USER RankingRecord END 1714134381774 +USER RankingRecord START 1714134381819 +REQUEST main.4a961c5c.js 1714134381538 1714134381830 OK +REQUEST request_9 1714134381773 1714134381856 OK +REQUEST request_10 1714134381834 1714134381878 OK +USER RankingRecord END 1714134381878 +REQUEST request_8 1714134381773 1714134381885 OK +REQUEST request_0 1714134381819 1714134381901 OK +REQUEST request_1 1714134381834 1714134381917 OK +REQUEST request_2 1714134381918 1714134381959 OK +REQUEST request_7 1714134381866 1714134381960 OK +REQUEST request_7 1714134381881 1714134381977 OK +REQUEST request_7 1714134381897 1714134381979 OK +REQUEST request_5 1714134381918 1714134382001 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134381918 1714134382002 OK +REQUEST request_3 1714134381918 1714134382014 OK +REQUEST request_6 1714134381918 1714134382015 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134381918 1714134382019 OK +REQUEST request_9 1714134381961 1714134382058 OK +REQUEST request_9 1714134381977 1714134382074 OK +REQUEST request_9 1714134381979 1714134382076 OK +REQUEST request_8 1714134381961 1714134382080 OK +REQUEST wiq2.ico 1714134381918 1714134382084 OK +REQUEST request_8 1714134381977 1714134382118 OK +REQUEST request_8 1714134381979 1714134382125 OK +REQUEST main.4a961c5c.js 1714134381918 1714134382169 OK +REQUEST request_10 1714134382144 1714134382194 OK +USER RankingRecord END 1714134382195 +USER RankingRecord START 1714134382224 +REQUEST request_10 1714134382208 1714134382251 OK +USER RankingRecord END 1714134382251 +REQUEST request_1 1714134382192 1714134382290 OK +REQUEST request_0 1714134382224 1714134382308 OK +USER RankingRecord START 1714134382332 +REQUEST request_2 1714134382291 1714134382339 OK +REQUEST request_5 1714134382291 1714134382372 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134382291 1714134382374 OK +REQUEST main.18e3ef94.css 1714134382291 1714134382375 OK +REQUEST request_6 1714134382291 1714134382386 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134382291 1714134382387 OK +REQUEST request_0 1714134382332 1714134382427 OK +REQUEST request_7 1714134382364 1714134382448 OK +REQUEST request_1 1714134382364 1714134382461 OK +REQUEST wiq2.ico 1714134382290 1714134382482 OK +REQUEST request_10 1714134382442 1714134382486 OK +USER RankingRecord END 1714134382486 +REQUEST request_2 1714134382461 1714134382501 OK +REQUEST request_7 1714134382442 1714134382524 OK +REQUEST request_9 1714134382448 1714134382531 OK +REQUEST main.4a961c5c.js 1714134382291 1714134382537 OK +REQUEST request_6 1714134382462 1714134382544 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134382462 1714134382545 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134382461 1714134382547 OK +REQUEST request_8 1714134382448 1714134382553 OK +REQUEST request_3 1714134382461 1714134382564 OK +REQUEST request_4 1714134382461 1714134382569 OK +REQUEST request_10 1714134382536 1714134382580 OK +USER RankingRecord END 1714134382580 +REQUEST request_10 1714134382552 1714134382601 OK +USER RankingRecord END 1714134382602 +REQUEST request_9 1714134382524 1714134382622 OK +REQUEST request_8 1714134382524 1714134382633 OK +REQUEST wiq2.ico 1714134382461 1714134382653 OK +REQUEST request_10 1714134382616 1714134382658 OK +USER RankingRecord END 1714134382659 +REQUEST request_7 1714134382616 1714134382700 OK +REQUEST request_10 1714134382695 1714134382746 OK +USER RankingRecord END 1714134382746 +REQUEST main.4a961c5c.js 1714134382461 1714134382767 OK +REQUEST request_9 1714134382700 1714134382797 OK +REQUEST request_8 1714134382700 1714134382802 OK +USER RankingRecord START 1714134382853 +USER RankingRecord START 1714134382853 +REQUEST request_0 1714134382852 1714134382948 OK +REQUEST request_0 1714134382852 1714134382949 OK +USER RankingRecord START 1714134382980 +REQUEST request_1 1714134382916 1714134383014 OK +REQUEST request_2 1714134383014 1714134383055 OK +REQUEST request_7 1714134382979 1714134383063 OK +REQUEST request_0 1714134382979 1714134383075 OK +REQUEST main.18e3ef94.css 1714134383014 1714134383097 OK +REQUEST request_6 1714134383015 1714134383098 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134383014 1714134383099 OK +REQUEST request_5 1714134383014 1714134383110 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134383014 1714134383113 OK +USER RankingRecord START 1714134383137 +REQUEST request_9 1714134383063 1714134383158 OK +REQUEST request_8 1714134383063 1714134383168 OK +USER RankingRecord START 1714134383184 +REQUEST wiq2.ico 1714134383014 1714134383203 OK +REQUEST request_0 1714134383137 1714134383220 OK +REQUEST request_10 1714134383179 1714134383230 OK +USER RankingRecord END 1714134383230 +REQUEST main.4a961c5c.js 1714134383014 1714134383260 OK +USER RankingRecord START 1714134383263 +REQUEST request_0 1714134383184 1714134383280 OK +REQUEST request_10 1714134383278 1714134383322 OK +USER RankingRecord END 1714134383323 +REQUEST request_0 1714134383263 1714134383358 OK +REQUEST request_1 1714134383310 1714134383408 OK +REQUEST request_10 1714134383386 1714134383436 OK +USER RankingRecord END 1714134383437 +USER RankingRecord START 1714134383447 +REQUEST request_2 1714134383409 1714134383450 OK +REQUEST request_5 1714134383409 1714134383491 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134383409 1714134383492 OK +REQUEST main.18e3ef94.css 1714134383409 1714134383494 OK +REQUEST request_3 1714134383409 1714134383505 OK +REQUEST request_6 1714134383409 1714134383505 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134383432 1714134383530 OK +REQUEST request_10 1714134383493 1714134383545 OK +REQUEST request_0 1714134383447 1714134383545 OK +USER RankingRecord END 1714134383545 +REQUEST request_10 1714134383493 1714134383545 OK +USER RankingRecord START 1714134383545 +USER RankingRecord END 1714134383545 +REQUEST request_10 1714134383525 1714134383568 OK +USER RankingRecord END 1714134383569 +REQUEST request_2 1714134383530 1714134383578 OK +REQUEST wiq2.ico 1714134383409 1714134383603 OK +REQUEST request_6 1714134383530 1714134383612 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134383530 1714134383613 OK +REQUEST request_3 1714134383530 1714134383614 OK +REQUEST request_4 1714134383530 1714134383626 OK +REQUEST request_0 1714134383545 1714134383627 OK +REQUEST request_5 1714134383530 1714134383628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134383571 1714134383653 OK +USER RankingRecord START 1714134383694 +REQUEST main.4a961c5c.js 1714134383409 1714134383701 OK +REQUEST request_10 1714134383678 1714134383721 OK +USER RankingRecord END 1714134383721 +REQUEST wiq2.ico 1714134383530 1714134383724 OK +REQUEST request_9 1714134383654 1714134383736 OK +REQUEST request_8 1714134383654 1714134383756 OK +REQUEST request_0 1714134383694 1714134383792 OK +REQUEST main.4a961c5c.js 1714134383530 1714134383820 OK +USER RankingRecord START 1714134383942 +REQUEST request_0 1714134383942 1714134384040 OK +REQUEST request_1 1714134383957 1714134384041 OK +REQUEST request_1 1714134383957 1714134384041 OK +USER RankingRecord START 1714134384052 +REQUEST request_10 1714134384004 1714134384055 OK +USER RankingRecord END 1714134384055 +REQUEST request_7 1714134384004 1714134384086 OK +REQUEST request_7 1714134384004 1714134384087 OK +REQUEST request_2 1714134384041 1714134384089 OK +REQUEST request_2 1714134384041 1714134384089 OK +REQUEST request_5 1714134384041 1714134384124 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134384041 1714134384124 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134384041 1714134384125 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134384041 1714134384127 OK +REQUEST main.18e3ef94.css 1714134384041 1714134384127 OK +REQUEST request_10 1714134384082 1714134384127 OK +REQUEST request_4 1714134384041 1714134384127 OK +USER RankingRecord END 1714134384127 +REQUEST main.18e3ef94.css 1714134384041 1714134384128 OK +REQUEST request_0 1714134384051 1714134384137 OK +REQUEST request_6 1714134384042 1714134384137 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134384041 1714134384137 OK +REQUEST request_3 1714134384041 1714134384140 OK +REQUEST request_7 1714134384089 1714134384184 OK +REQUEST request_9 1714134384086 1714134384189 OK +REQUEST request_9 1714134384087 1714134384196 OK +REQUEST request_7 1714134384114 1714134384197 OK +REQUEST request_10 1714134384145 1714134384197 OK +USER RankingRecord END 1714134384198 +REQUEST wiq2.ico 1714134384041 1714134384204 OK +REQUEST wiq2.ico 1714134384041 1714134384206 OK +REQUEST request_1 1714134384082 1714134384206 OK +REQUEST request_8 1714134384086 1714134384218 OK +REQUEST request_7 1714134384145 1714134384241 OK +REQUEST request_2 1714134384207 1714134384254 OK +USER RankingRecord START 1714134384256 +REQUEST request_8 1714134384087 1714134384262 OK +REQUEST request_9 1714134384197 1714134384280 OK +REQUEST request_9 1714134384185 1714134384281 OK +REQUEST request_3 1714134384207 1714134384289 OK +REQUEST request_7 1714134384208 1714134384303 OK +REQUEST request_6 1714134384207 1714134384303 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134384207 1714134384303 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134384207 1714134384306 OK +REQUEST main.18e3ef94.css 1714134384207 1714134384307 OK +REQUEST request_1 1714134384224 1714134384320 OK +REQUEST request_9 1714134384241 1714134384324 OK +REQUEST main.4a961c5c.js 1714134384041 1714134384331 OK +REQUEST request_8 1714134384197 1714134384334 OK +REQUEST main.4a961c5c.js 1714134384041 1714134384347 OK +REQUEST request_0 1714134384255 1714134384350 OK +REQUEST request_8 1714134384185 1714134384350 OK +REQUEST request_2 1714134384321 1714134384362 OK +REQUEST request_8 1714134384241 1714134384385 OK +REQUEST request_1 1714134384287 1714134384385 OK +REQUEST request_9 1714134384303 1714134384386 OK +USER RankingRecord START 1714134384397 +REQUEST request_7 1714134384319 1714134384402 OK +REQUEST request_3 1714134384321 1714134384403 OK +REQUEST request_6 1714134384321 1714134384404 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134384321 1714134384405 OK +REQUEST wiq2.ico 1714134384207 1714134384408 OK +REQUEST request_5 1714134384321 1714134384417 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134384303 1714134384418 OK +REQUEST request_4 1714134384321 1714134384418 OK +REQUEST request_2 1714134384385 1714134384433 OK +REQUEST main.4a961c5c.js 1714134384207 1714134384451 OK +REQUEST request_1 1714134384365 1714134384462 OK +REQUEST request_3 1714134384385 1714134384468 OK +REQUEST request_5 1714134384385 1714134384468 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134384476 +REQUEST request_6 1714134384386 1714134384482 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134384385 1714134384482 OK +REQUEST request_4 1714134384385 1714134384482 OK +REQUEST request_9 1714134384402 1714134384486 OK +REQUEST request_0 1714134384397 1714134384492 OK +REQUEST request_8 1714134384402 1714134384506 OK +REQUEST wiq2.ico 1714134384321 1714134384509 OK +REQUEST request_2 1714134384463 1714134384510 OK +REQUEST request_6 1714134384463 1714134384545 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134384463 1714134384547 OK +REQUEST main.18e3ef94.css 1714134384463 1714134384549 OK +REQUEST request_7 1714134384460 1714134384557 OK +REQUEST request_5 1714134384463 1714134384558 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134384463 1714134384560 OK +REQUEST request_0 1714134384476 1714134384572 OK +REQUEST wiq2.ico 1714134384385 1714134384577 OK +REQUEST main.4a961c5c.js 1714134384321 1714134384610 OK +REQUEST main.4a961c5c.js 1714134384385 1714134384636 OK +REQUEST request_9 1714134384557 1714134384640 OK +REQUEST request_1 1714134384554 1714134384651 OK +REQUEST wiq2.ico 1714134384463 1714134384652 OK +REQUEST request_8 1714134384557 1714134384665 OK +USER RankingRecord START 1714134384693 +REQUEST request_2 1714134384652 1714134384699 OK +REQUEST main.4a961c5c.js 1714134384463 1714134384709 OK +REQUEST request_1 1714134384631 1714134384727 OK +REQUEST request_3 1714134384651 1714134384733 OK +REQUEST request_4 1714134384651 1714134384735 OK +REQUEST main.18e3ef94.css 1714134384651 1714134384736 OK +USER RankingRecord START 1714134384740 +REQUEST request_6 1714134384652 1714134384746 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134384652 1714134384747 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134384728 1714134384769 OK +REQUEST request_0 1714134384693 1714134384790 OK +REQUEST request_3 1714134384727 1714134384810 OK +REQUEST request_5 1714134384728 1714134384813 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134384727 1714134384814 OK +REQUEST request_0 1714134384739 1714134384822 OK +REQUEST request_6 1714134384728 1714134384824 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134384728 1714134384825 OK +REQUEST wiq2.ico 1714134384651 1714134384841 OK +REQUEST request_7 1714134384770 1714134384867 OK +REQUEST request_7 1714134384801 1714134384882 OK +REQUEST request_1 1714134384801 1714134384884 OK +REQUEST wiq2.ico 1714134384727 1714134384917 OK +REQUEST request_7 1714134384842 1714134384924 OK +REQUEST request_2 1714134384884 1714134384933 OK +REQUEST request_10 1714134384894 1714134384945 OK +USER RankingRecord END 1714134384945 +REQUEST request_9 1714134384867 1714134384950 OK +REQUEST main.4a961c5c.js 1714134384651 1714134384952 OK +REQUEST request_7 1714134384862 1714134384957 OK +REQUEST request_4 1714134384884 1714134384967 OK +REQUEST request_5 1714134384884 1714134384968 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134384882 1714134384980 OK +REQUEST request_6 1714134384884 1714134384980 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134384884 1714134384983 OK +REQUEST main.18e3ef94.css 1714134384884 1714134384987 OK +REQUEST main.4a961c5c.js 1714134384727 1714134385012 OK +REQUEST request_9 1714134384925 1714134385020 OK +REQUEST request_8 1714134384867 1714134385026 OK +REQUEST request_8 1714134384882 1714134385039 OK +REQUEST request_9 1714134384957 1714134385041 OK +REQUEST wiq2.ico 1714134384884 1714134385054 OK +REQUEST request_8 1714134384924 1714134385060 OK +USER RankingRecord START 1714134385067 +REQUEST request_8 1714134384957 1714134385092 OK +USER RankingRecord START 1714134385112 +REQUEST request_1 1714134385041 1714134385125 OK +REQUEST main.4a961c5c.js 1714134384884 1714134385131 OK +REQUEST request_10 1714134385082 1714134385131 OK +USER RankingRecord END 1714134385131 +REQUEST request_0 1714134385067 1714134385162 OK +REQUEST request_10 1714134385128 1714134385171 OK +USER RankingRecord END 1714134385171 +REQUEST request_2 1714134385125 1714134385173 OK +REQUEST request_10 1714134385128 1714134385177 OK +USER RankingRecord END 1714134385177 +USER RankingRecord START 1714134385190 +REQUEST request_6 1714134385125 1714134385208 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134385125 1714134385208 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134385125 1714134385209 OK +REQUEST request_0 1714134385112 1714134385209 OK +REQUEST main.18e3ef94.css 1714134385125 1714134385222 OK +REQUEST request_3 1714134385125 1714134385222 OK +REQUEST request_1 1714134385144 1714134385227 OK +REQUEST request_2 1714134385228 1714134385268 OK +REQUEST request_0 1714134385190 1714134385286 OK +REQUEST wiq2.ico 1714134385125 1714134385288 OK +REQUEST request_5 1714134385228 1714134385311 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134385220 1714134385316 OK +REQUEST request_3 1714134385227 1714134385323 OK +REQUEST request_4 1714134385227 1714134385325 OK +REQUEST request_6 1714134385228 1714134385325 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134385227 1714134385327 OK +REQUEST main.4a961c5c.js 1714134385125 1714134385376 OK +USER RankingRecord START 1714134385392 +REQUEST wiq2.ico 1714134385227 1714134385392 OK +REQUEST request_7 1714134385314 1714134385397 OK +REQUEST request_9 1714134385316 1714134385399 OK +REQUEST request_8 1714134385316 1714134385428 OK +REQUEST request_1 1714134385355 1714134385438 OK +REQUEST request_7 1714134385376 1714134385459 OK +REQUEST request_0 1714134385392 1714134385472 OK +REQUEST main.4a961c5c.js 1714134385227 1714134385474 OK +REQUEST request_9 1714134385397 1714134385482 OK +REQUEST request_2 1714134385438 1714134385485 OK +USER RankingRecord START 1714134385500 +REQUEST request_8 1714134385397 1714134385502 OK +REQUEST request_4 1714134385438 1714134385519 OK +REQUEST request_7 1714134385437 1714134385519 OK +REQUEST request_5 1714134385438 1714134385521 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134385438 1714134385522 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134385438 1714134385524 OK +REQUEST request_3 1714134385438 1714134385537 OK +REQUEST request_9 1714134385459 1714134385557 OK +REQUEST request_8 1714134385459 1714134385565 OK +REQUEST request_0 1714134385500 1714134385597 OK +REQUEST request_1 1714134385500 1714134385598 OK +REQUEST wiq2.ico 1714134385438 1714134385600 OK +REQUEST request_10 1714134385561 1714134385605 OK +USER RankingRecord END 1714134385605 +REQUEST request_9 1714134385520 1714134385605 OK +REQUEST request_8 1714134385520 1714134385622 OK +REQUEST request_2 1714134385598 1714134385647 OK +REQUEST request_1 1714134385576 1714134385672 OK +REQUEST request_10 1714134385639 1714134385681 OK +USER RankingRecord END 1714134385682 +REQUEST request_6 1714134385598 1714134385682 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134385438 1714134385687 OK +REQUEST request_3 1714134385598 1714134385693 OK +REQUEST request_5 1714134385598 1714134385693 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134385598 1714134385694 OK +REQUEST main.18e3ef94.css 1714134385598 1714134385697 OK +REQUEST request_2 1714134385673 1714134385720 OK +REQUEST request_4 1714134385672 1714134385755 OK +REQUEST request_5 1714134385673 1714134385756 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134385673 1714134385769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134385672 1714134385780 OK +REQUEST main.18e3ef94.css 1714134385672 1714134385781 OK +REQUEST wiq2.ico 1714134385598 1714134385792 OK +REQUEST request_10 1714134385811 1714134385856 OK +USER RankingRecord END 1714134385856 +REQUEST wiq2.ico 1714134385672 1714134385862 OK +USER RankingRecord START 1714134385873 +REQUEST request_7 1714134385780 1714134385876 OK +REQUEST request_1 1714134385796 1714134385878 OK +REQUEST main.4a961c5c.js 1714134385598 1714134385885 OK +REQUEST request_1 1714134385827 1714134385911 OK +REQUEST request_2 1714134385879 1714134385927 OK +USER RankingRecord START 1714134385936 +REQUEST request_2 1714134385911 1714134385952 OK +REQUEST request_9 1714134385877 1714134385959 OK +REQUEST request_5 1714134385879 1714134385961 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134385968 +REQUEST main.4a961c5c.js 1714134385672 1714134385968 OK +REQUEST request_0 1714134385873 1714134385969 OK +REQUEST request_6 1714134385879 1714134385974 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134385879 1714134385974 OK +REQUEST request_3 1714134385879 1714134385975 OK +REQUEST main.18e3ef94.css 1714134385879 1714134385977 OK +REQUEST request_8 1714134385876 1714134385989 OK +REQUEST request_3 1714134385911 1714134385993 OK +REQUEST request_7 1714134385912 1714134385993 OK +REQUEST main.18e3ef94.css 1714134385911 1714134385995 OK +REQUEST request_6 1714134385912 1714134386006 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134385912 1714134386008 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134385911 1714134386010 OK +REQUEST request_0 1714134385936 1714134386019 OK +REQUEST wiq2.ico 1714134385879 1714134386042 OK +REQUEST request_0 1714134385968 1714134386066 OK +REQUEST wiq2.ico 1714134385911 1714134386076 OK +REQUEST request_9 1714134385994 1714134386089 OK +REQUEST request_8 1714134385994 1714134386095 OK +REQUEST main.4a961c5c.js 1714134385879 1714134386127 OK +USER RankingRecord START 1714134386200 +REQUEST main.4a961c5c.js 1714134385911 1714134386201 OK +REQUEST request_7 1714134386138 1714134386221 OK +REQUEST request_10 1714134386184 1714134386228 OK +USER RankingRecord END 1714134386229 +REQUEST request_1 1714134386169 1714134386267 OK +USER RankingRecord START 1714134386277 +REQUEST request_0 1714134386200 1714134386295 OK +REQUEST request_1 1714134386215 1714134386298 OK +REQUEST request_2 1714134386268 1714134386315 OK +REQUEST request_9 1714134386222 1714134386317 OK +REQUEST request_8 1714134386222 1714134386324 OK +REQUEST request_2 1714134386299 1714134386347 OK +REQUEST request_6 1714134386268 1714134386350 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134386268 1714134386351 OK +USER RankingRecord START 1714134386353 +REQUEST request_0 1714134386276 1714134386358 OK +REQUEST request_7 1714134386276 1714134386359 OK +REQUEST request_5 1714134386268 1714134386365 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134386268 1714134386365 OK +REQUEST main.18e3ef94.css 1714134386267 1714134386366 OK +REQUEST request_3 1714134386298 1714134386381 OK +REQUEST request_5 1714134386299 1714134386381 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134386299 1714134386381 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134386298 1714134386384 OK +REQUEST request_1 1714134386292 1714134386389 OK +REQUEST request_4 1714134386299 1714134386396 OK +REQUEST request_2 1714134386390 1714134386437 OK +REQUEST request_9 1714134386359 1714134386446 OK +REQUEST request_0 1714134386353 1714134386450 OK +REQUEST wiq2.ico 1714134386298 1714134386460 OK +REQUEST wiq2.ico 1714134386267 1714134386461 OK +REQUEST request_8 1714134386359 1714134386469 OK +REQUEST request_6 1714134386390 1714134386471 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134386390 1714134386472 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134386390 1714134386474 OK +REQUEST request_3 1714134386390 1714134386485 OK +REQUEST main.18e3ef94.css 1714134386390 1714134386488 OK +REQUEST main.4a961c5c.js 1714134386267 1714134386514 OK +REQUEST request_1 1714134386479 1714134386562 OK +REQUEST main.4a961c5c.js 1714134386298 1714134386584 OK +REQUEST wiq2.ico 1714134386389 1714134386586 OK +REQUEST request_2 1714134386563 1714134386604 OK +REQUEST main.4a961c5c.js 1714134386389 1714134386637 OK +REQUEST request_6 1714134386563 1714134386646 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134386563 1714134386647 OK +REQUEST request_3 1714134386563 1714134386647 OK +REQUEST request_5 1714134386563 1714134386660 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134386563 1714134386660 OK +USER RankingRecord START 1714134386681 +REQUEST request_1 1714134386605 1714134386700 OK +REQUEST request_7 1714134386620 1714134386716 OK +REQUEST wiq2.ico 1714134386563 1714134386727 OK +REQUEST request_2 1714134386700 1714134386749 OK +REQUEST request_0 1714134386681 1714134386764 OK +REQUEST request_6 1714134386701 1714134386783 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134386700 1714134386784 OK +REQUEST request_3 1714134386700 1714134386784 OK +REQUEST request_5 1714134386701 1714134386784 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134386700 1714134386785 OK +REQUEST request_10 1714134386757 1714134386802 OK +USER RankingRecord END 1714134386802 +REQUEST request_9 1714134386717 1714134386803 OK +REQUEST main.4a961c5c.js 1714134386563 1714134386813 OK +REQUEST request_8 1714134386717 1714134386828 OK +REQUEST wiq2.ico 1714134386700 1714134386890 OK +USER RankingRecord START 1714134386914 +REQUEST main.4a961c5c.js 1714134386700 1714134386988 OK +REQUEST request_0 1714134386914 1714134387011 OK +REQUEST request_1 1714134386976 1714134387074 OK +REQUEST request_1 1714134387023 1714134387106 OK +REQUEST request_2 1714134387074 1714134387122 OK +REQUEST request_2 1714134387107 1714134387149 OK +REQUEST request_6 1714134387074 1714134387157 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134387074 1714134387158 OK +REQUEST main.18e3ef94.css 1714134387074 1714134387158 OK +REQUEST request_1 1714134387070 1714134387166 OK +REQUEST request_3 1714134387074 1714134387170 OK +REQUEST request_5 1714134387074 1714134387171 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134387107 1714134387190 OK +REQUEST request_5 1714134387107 1714134387190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134387107 1714134387203 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134387107 1714134387204 OK +REQUEST main.18e3ef94.css 1714134387107 1714134387206 OK +REQUEST request_2 1714134387166 1714134387215 OK +REQUEST request_5 1714134387166 1714134387249 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134387166 1714134387250 OK +REQUEST main.18e3ef94.css 1714134387166 1714134387251 OK +REQUEST request_6 1714134387167 1714134387262 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134387166 1714134387262 OK +REQUEST wiq2.ico 1714134387074 1714134387266 OK +REQUEST request_10 1714134387225 1714134387269 OK +USER RankingRecord END 1714134387270 +REQUEST wiq2.ico 1714134387107 1714134387270 OK +REQUEST request_10 1714134387265 1714134387308 OK +USER RankingRecord END 1714134387308 +REQUEST request_7 1714134387225 1714134387321 OK +REQUEST main.4a961c5c.js 1714134387107 1714134387353 OK +REQUEST wiq2.ico 1714134387166 1714134387356 OK +REQUEST main.4a961c5c.js 1714134387074 1714134387357 OK +REQUEST request_10 1714134387334 1714134387378 OK +USER RankingRecord END 1714134387378 +REQUEST request_1 1714134387302 1714134387398 OK +REQUEST request_9 1714134387321 1714134387403 OK +REQUEST request_10 1714134387366 1714134387416 OK +USER RankingRecord END 1714134387416 +REQUEST request_8 1714134387321 1714134387430 OK +REQUEST request_2 1714134387399 1714134387446 OK +REQUEST request_10 1714134387396 1714134387448 OK +USER RankingRecord END 1714134387449 +REQUEST main.4a961c5c.js 1714134387166 1714134387454 OK +REQUEST request_1 1714134387366 1714134387463 OK +REQUEST request_10 1714134387428 1714134387480 OK +USER RankingRecord END 1714134387480 +REQUEST request_3 1714134387399 1714134387482 OK +REQUEST request_6 1714134387399 1714134387482 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134387399 1714134387483 OK +REQUEST main.18e3ef94.css 1714134387399 1714134387483 OK +REQUEST request_5 1714134387399 1714134387494 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134387464 1714134387505 OK +REQUEST request_3 1714134387464 1714134387548 OK +REQUEST main.18e3ef94.css 1714134387464 1714134387550 OK +REQUEST request_1 1714134387460 1714134387556 OK +REQUEST request_7 1714134387476 1714134387559 OK +REQUEST request_5 1714134387464 1714134387559 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134387464 1714134387560 OK +REQUEST request_6 1714134387464 1714134387561 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134387476 1714134387574 OK +REQUEST request_10 1714134387522 1714134387574 OK +USER RankingRecord END 1714134387574 +REQUEST wiq2.ico 1714134387399 1714134387590 OK +REQUEST request_2 1714134387557 1714134387605 OK +REQUEST request_4 1714134387557 1714134387642 OK +REQUEST request_9 1714134387559 1714134387644 OK +REQUEST request_6 1714134387557 1714134387653 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134387464 1714134387654 OK +REQUEST request_5 1714134387557 1714134387654 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134387556 1714134387655 OK +REQUEST main.18e3ef94.css 1714134387556 1714134387667 OK +REQUEST request_9 1714134387574 1714134387674 OK +REQUEST main.4a961c5c.js 1714134387399 1714134387685 OK +REQUEST request_8 1714134387574 1714134387693 OK +REQUEST request_8 1714134387559 1714134387695 OK +REQUEST request_10 1714134387677 1714134387729 OK +USER RankingRecord END 1714134387729 +REQUEST wiq2.ico 1714134387556 1714134387747 OK +REQUEST main.4a961c5c.js 1714134387464 1714134387755 OK +REQUEST main.4a961c5c.js 1714134387556 1714134387802 OK +REQUEST request_7 1714134387725 1714134387808 OK +USER RankingRecord START 1714134387833 +REQUEST request_1 1714134387771 1714134387855 OK +REQUEST request_9 1714134387808 1714134387891 OK +USER RankingRecord START 1714134387896 +REQUEST request_2 1714134387856 1714134387897 OK +REQUEST request_8 1714134387808 1714134387912 OK +REQUEST request_0 1714134387833 1714134387929 OK +REQUEST request_4 1714134387856 1714134387937 OK +REQUEST request_6 1714134387856 1714134387939 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134387856 1714134387950 OK +REQUEST request_5 1714134387856 1714134387950 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134387856 1714134387952 OK +REQUEST request_0 1714134387895 1714134387991 OK +REQUEST wiq2.ico 1714134387856 1714134388021 OK +USER RankingRecord START 1714134388053 +USER RankingRecord START 1714134388068 +REQUEST request_10 1714134388037 1714134388087 OK +USER RankingRecord END 1714134388087 +REQUEST request_10 1714134388053 1714134388096 OK +USER RankingRecord END 1714134388096 +REQUEST request_10 1714134388068 1714134388111 OK +USER RankingRecord END 1714134388112 +REQUEST request_1 1714134388021 1714134388118 OK +REQUEST request_0 1714134388053 1714134388135 OK +USER RankingRecord START 1714134388147 +REQUEST main.4a961c5c.js 1714134387856 1714134388147 OK +REQUEST request_0 1714134388068 1714134388152 OK +REQUEST request_10 1714134388099 1714134388153 OK +USER RankingRecord END 1714134388153 +REQUEST request_2 1714134388118 1714134388166 OK +REQUEST request_7 1714134388099 1714134388194 OK +REQUEST request_3 1714134388118 1714134388201 OK +REQUEST request_6 1714134388118 1714134388215 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134388118 1714134388216 OK +REQUEST request_4 1714134388118 1714134388216 OK +REQUEST request_5 1714134388118 1714134388217 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134388146 1714134388242 OK +REQUEST request_9 1714134388194 1714134388280 OK +REQUEST request_8 1714134388194 1714134388301 OK +REQUEST wiq2.ico 1714134388118 1714134388308 OK +REQUEST request_7 1714134388268 1714134388352 OK +REQUEST main.4a961c5c.js 1714134388118 1714134388369 OK +USER RankingRecord START 1714134388378 +USER RankingRecord START 1714134388393 +REQUEST request_9 1714134388352 1714134388435 OK +REQUEST request_8 1714134388352 1714134388455 OK +REQUEST request_0 1714134388378 1714134388461 OK +REQUEST request_7 1714134388378 1714134388461 OK +USER RankingRecord START 1714134388471 +REQUEST request_0 1714134388393 1714134388474 OK +REQUEST request_10 1714134388439 1714134388489 OK +USER RankingRecord END 1714134388490 +USER RankingRecord START 1714134388533 +REQUEST request_9 1714134388462 1714134388557 OK +REQUEST request_10 1714134388517 1714134388561 OK +USER RankingRecord END 1714134388561 +REQUEST request_0 1714134388470 1714134388567 OK +REQUEST request_8 1714134388462 1714134388567 OK +USER RankingRecord START 1714134388596 +REQUEST request_10 1714134388567 1714134388613 OK +USER RankingRecord END 1714134388613 +REQUEST request_0 1714134388532 1714134388630 OK +REQUEST request_10 1714134388626 1714134388669 OK +USER RankingRecord END 1714134388670 +REQUEST request_0 1714134388595 1714134388692 OK +REQUEST request_7 1714134388626 1714134388722 OK +REQUEST request_9 1714134388723 1714134388811 OK +REQUEST request_8 1714134388723 1714134388832 OK +REQUEST request_1 1714134388936 1714134389019 OK +REQUEST request_10 1714134388998 1714134389048 OK +USER RankingRecord END 1714134389048 +REQUEST request_2 1714134389020 1714134389068 OK +REQUEST request_1 1714134388998 1714134389094 OK +REQUEST request_3 1714134389020 1714134389101 OK +REQUEST request_5 1714134389020 1714134389102 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134389020 1714134389116 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134389020 1714134389118 OK +REQUEST main.18e3ef94.css 1714134389020 1714134389119 OK +REQUEST request_2 1714134389094 1714134389142 OK +REQUEST request_10 1714134389107 1714134389149 OK +USER RankingRecord END 1714134389150 +REQUEST request_4 1714134389094 1714134389176 OK +REQUEST wiq2.ico 1714134389020 1714134389182 OK +REQUEST request_6 1714134389094 1714134389189 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134389094 1714134389190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134389094 1714134389194 OK +REQUEST main.18e3ef94.css 1714134389094 1714134389196 OK +REQUEST request_1 1714134389138 1714134389222 OK +REQUEST request_1 1714134389153 1714134389249 OK +REQUEST request_7 1714134389153 1714134389250 OK +REQUEST request_2 1714134389223 1714134389263 OK +REQUEST main.4a961c5c.js 1714134389020 1714134389272 OK +REQUEST wiq2.ico 1714134389094 1714134389283 OK +REQUEST request_2 1714134389249 1714134389291 OK +REQUEST request_4 1714134389222 1714134389308 OK +REQUEST request_5 1714134389223 1714134389319 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134389222 1714134389319 OK +REQUEST request_6 1714134389223 1714134389319 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134389222 1714134389324 OK +REQUEST request_3 1714134389249 1714134389332 OK +REQUEST request_4 1714134389249 1714134389333 OK +REQUEST request_5 1714134389250 1714134389334 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134389250 1714134389337 OK +USER RankingRecord START 1714134389341 +REQUEST request_6 1714134389250 1714134389345 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134389247 1714134389346 OK +REQUEST main.18e3ef94.css 1714134389249 1714134389351 OK +REQUEST request_8 1714134389250 1714134389368 OK +REQUEST request_10 1714134389325 1714134389369 OK +USER RankingRecord END 1714134389369 +REQUEST main.4a961c5c.js 1714134389094 1714134389379 OK +REQUEST wiq2.ico 1714134389222 1714134389388 OK +REQUEST request_2 1714134389347 1714134389395 OK +REQUEST request_3 1714134389346 1714134389429 OK +REQUEST request_4 1714134389347 1714134389430 OK +REQUEST main.18e3ef94.css 1714134389346 1714134389432 OK +REQUEST request_0 1714134389341 1714134389437 OK +REQUEST wiq2.ico 1714134389249 1714134389437 OK +REQUEST request_5 1714134389347 1714134389441 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134389347 1714134389443 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134389222 1714134389473 OK +REQUEST main.4a961c5c.js 1714134389249 1714134389504 OK +REQUEST request_10 1714134389482 1714134389525 OK +USER RankingRecord END 1714134389525 +REQUEST wiq2.ico 1714134389346 1714134389536 OK +REQUEST request_1 1714134389466 1714134389562 OK +REQUEST request_1 1714134389482 1714134389579 OK +REQUEST main.4a961c5c.js 1714134389346 1714134389597 OK +REQUEST request_2 1714134389562 1714134389604 OK +REQUEST request_2 1714134389580 1714134389621 OK +REQUEST main.18e3ef94.css 1714134389562 1714134389646 OK +REQUEST request_6 1714134389562 1714134389657 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134389562 1714134389658 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134389562 1714134389658 OK +REQUEST request_3 1714134389562 1714134389659 OK +REQUEST request_4 1714134389580 1714134389665 OK +REQUEST main.18e3ef94.css 1714134389579 1714134389667 OK +REQUEST request_1 1714134389576 1714134389672 OK +REQUEST request_6 1714134389580 1714134389677 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134389580 1714134389677 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134389579 1714134389677 OK +REQUEST request_2 1714134389673 1714134389720 OK +REQUEST request_1 1714134389639 1714134389722 OK +REQUEST request_7 1714134389637 1714134389733 OK +REQUEST wiq2.ico 1714134389562 1714134389752 OK +REQUEST request_3 1714134389673 1714134389757 OK +REQUEST request_5 1714134389673 1714134389769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134389673 1714134389769 OK +REQUEST request_6 1714134389673 1714134389769 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134389723 1714134389772 OK +REQUEST wiq2.ico 1714134389579 1714134389772 OK +REQUEST main.18e3ef94.css 1714134389673 1714134389773 OK +USER RankingRecord START 1714134389780 +REQUEST request_7 1714134389686 1714134389782 OK +REQUEST request_1 1714134389702 1714134389798 OK +REQUEST request_6 1714134389723 1714134389806 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134389723 1714134389807 OK +REQUEST main.18e3ef94.css 1714134389722 1714134389807 OK +REQUEST request_3 1714134389722 1714134389808 OK +REQUEST request_5 1714134389723 1714134389820 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134389733 1714134389843 OK +REQUEST request_2 1714134389799 1714134389847 OK +REQUEST main.4a961c5c.js 1714134389562 1714134389848 OK +REQUEST request_8 1714134389733 1714134389854 OK +REQUEST wiq2.ico 1714134389673 1714134389863 OK +REQUEST main.4a961c5c.js 1714134389579 1714134389866 OK +USER RankingRecord START 1714134389874 +USER RankingRecord START 1714134389874 +REQUEST request_0 1714134389780 1714134389875 OK +REQUEST request_9 1714134389782 1714134389877 OK +REQUEST request_6 1714134389799 1714134389881 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134389799 1714134389882 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134389799 1714134389883 OK +REQUEST wiq2.ico 1714134389722 1714134389883 OK +REQUEST request_10 1714134389842 1714134389895 OK +USER RankingRecord END 1714134389895 +REQUEST request_3 1714134389798 1714134389898 OK +REQUEST main.18e3ef94.css 1714134389798 1714134389899 OK +REQUEST request_8 1714134389782 1714134389906 OK +REQUEST main.4a961c5c.js 1714134389673 1714134389920 OK +USER RankingRecord START 1714134389936 +REQUEST request_0 1714134389874 1714134389969 OK +REQUEST request_0 1714134389874 1714134389969 OK +REQUEST wiq2.ico 1714134389798 1714134389991 OK +REQUEST main.4a961c5c.js 1714134389722 1714134390013 OK +REQUEST request_0 1714134389936 1714134390018 OK +REQUEST main.4a961c5c.js 1714134389798 1714134390089 OK +USER RankingRecord START 1714134390199 +REQUEST request_0 1714134390199 1714134390297 OK +USER RankingRecord START 1714134390433 +REQUEST request_7 1714134390340 1714134390438 OK +REQUEST request_10 1714134390433 1714134390484 OK +USER RankingRecord END 1714134390484 +REQUEST request_7 1714134390402 1714134390485 OK +REQUEST request_0 1714134390433 1714134390517 OK +REQUEST request_9 1714134390438 1714134390535 OK +REQUEST request_1 1714134390449 1714134390545 OK +REQUEST request_8 1714134390438 1714134390550 OK +REQUEST request_9 1714134390486 1714134390570 OK +REQUEST request_8 1714134390486 1714134390590 OK +REQUEST request_2 1714134390545 1714134390594 OK +REQUEST request_6 1714134390545 1714134390627 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134390545 1714134390628 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134390545 1714134390629 OK +REQUEST main.18e3ef94.css 1714134390545 1714134390643 OK +REQUEST request_4 1714134390545 1714134390643 OK +REQUEST request_7 1714134390635 1714134390731 OK +REQUEST wiq2.ico 1714134390545 1714134390735 OK +REQUEST request_10 1714134390696 1714134390740 OK +USER RankingRecord END 1714134390740 +REQUEST request_10 1714134390696 1714134390744 OK +USER RankingRecord END 1714134390745 +REQUEST main.4a961c5c.js 1714134390545 1714134390792 OK +USER RankingRecord START 1714134390806 +REQUEST request_9 1714134390731 1714134390829 OK +REQUEST request_8 1714134390731 1714134390839 OK +REQUEST request_0 1714134390805 1714134390888 OK +REQUEST request_10 1714134390916 1714134390961 OK +USER RankingRecord END 1714134390962 +REQUEST request_1 1714134390885 1714134390969 OK +REQUEST request_2 1714134390971 1714134391018 OK +REQUEST request_5 1714134390971 1714134391055 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134390970 1714134391055 OK +REQUEST request_6 1714134390971 1714134391067 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134390971 1714134391068 OK +REQUEST request_3 1714134390970 1714134391069 OK +REQUEST request_1 1714134390977 1714134391074 OK +REQUEST request_1 1714134390977 1714134391074 OK +REQUEST request_1 1714134391025 1714134391108 OK +REQUEST request_2 1714134391074 1714134391121 OK +REQUEST request_2 1714134391074 1714134391123 OK +REQUEST wiq2.ico 1714134390969 1714134391134 OK +REQUEST request_2 1714134391110 1714134391151 OK +REQUEST request_6 1714134391074 1714134391156 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134391074 1714134391158 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134391074 1714134391158 OK +REQUEST request_3 1714134391074 1714134391158 OK +REQUEST request_4 1714134391074 1714134391159 OK +REQUEST request_5 1714134391074 1714134391159 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134391074 1714134391163 OK +REQUEST request_6 1714134391074 1714134391170 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134391074 1714134391171 OK +REQUEST main.18e3ef94.css 1714134391074 1714134391173 OK +REQUEST request_3 1714134391109 1714134391192 OK +REQUEST request_6 1714134391111 1714134391194 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134391110 1714134391195 OK +REQUEST main.18e3ef94.css 1714134391109 1714134391208 OK +REQUEST request_5 1714134391111 1714134391208 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134390970 1714134391217 OK +REQUEST request_7 1714134391134 1714134391217 OK +REQUEST wiq2.ico 1714134391074 1714134391262 OK +REQUEST wiq2.ico 1714134391074 1714134391264 OK +REQUEST wiq2.ico 1714134391109 1714134391273 OK +REQUEST request_9 1714134391217 1714134391315 OK +REQUEST request_8 1714134391217 1714134391319 OK +REQUEST main.4a961c5c.js 1714134391074 1714134391322 OK +REQUEST request_10 1714134391304 1714134391354 OK +USER RankingRecord END 1714134391354 +REQUEST main.4a961c5c.js 1714134391074 1714134391369 OK +REQUEST request_7 1714134391274 1714134391371 OK +REQUEST main.4a961c5c.js 1714134391109 1714134391398 OK +REQUEST request_1 1714134391304 1714134391400 OK +USER RankingRecord START 1714134391412 +REQUEST request_7 1714134391335 1714134391419 OK +REQUEST request_2 1714134391401 1714134391449 OK +REQUEST request_9 1714134391371 1714134391454 OK +REQUEST request_5 1714134391401 1714134391482 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134391401 1714134391482 OK +REQUEST request_6 1714134391401 1714134391483 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134391401 1714134391485 OK +REQUEST request_8 1714134391371 1714134391486 OK +REQUEST request_0 1714134391412 1714134391495 OK +REQUEST request_3 1714134391401 1714134391496 OK +REQUEST request_10 1714134391458 1714134391504 OK +USER RankingRecord END 1714134391505 +REQUEST request_9 1714134391419 1714134391514 OK +REQUEST request_8 1714134391419 1714134391532 OK +REQUEST wiq2.ico 1714134391401 1714134391593 OK +REQUEST request_1 1714134391521 1714134391605 OK +REQUEST request_10 1714134391567 1714134391611 OK +USER RankingRecord END 1714134391611 +REQUEST main.4a961c5c.js 1714134391401 1714134391647 OK +REQUEST request_2 1714134391606 1714134391648 OK +REQUEST request_4 1714134391606 1714134391689 OK +REQUEST request_6 1714134391606 1714134391690 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134391606 1714134391691 OK +REQUEST request_5 1714134391606 1714134391701 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134391606 1714134391703 OK +REQUEST request_7 1714134391613 1714134391710 OK +REQUEST wiq2.ico 1714134391605 1714134391772 OK +REQUEST request_9 1714134391710 1714134391807 OK +REQUEST request_8 1714134391710 1714134391819 OK +USER RankingRecord START 1714134391863 +REQUEST main.4a961c5c.js 1714134391606 1714134391893 OK +REQUEST request_10 1714134391847 1714134391898 OK +USER RankingRecord END 1714134391898 +REQUEST request_0 1714134391863 1714134391947 OK +REQUEST request_1 1714134391894 1714134391991 OK +REQUEST request_2 1714134391992 1714134392033 OK +REQUEST request_3 1714134391992 1714134392075 OK +REQUEST request_6 1714134391992 1714134392076 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134391992 1714134392077 OK +REQUEST request_5 1714134391992 1714134392088 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134391992 1714134392089 OK +REQUEST request_7 1714134392002 1714134392097 OK +REQUEST request_7 1714134392049 1714134392133 OK +REQUEST wiq2.ico 1714134391992 1714134392184 OK +REQUEST request_9 1714134392097 1714134392197 OK +REQUEST request_8 1714134392097 1714134392216 OK +USER RankingRecord START 1714134392220 +REQUEST request_9 1714134392133 1714134392229 OK +REQUEST request_8 1714134392133 1714134392264 OK +REQUEST main.4a961c5c.js 1714134391992 1714134392278 OK +REQUEST request_0 1714134392219 1714134392314 OK +REQUEST request_10 1714134392377 1714134392428 OK +USER RankingRecord END 1714134392429 +REQUEST request_7 1714134392455 1714134392539 OK +REQUEST request_1 1714134392502 1714134392600 OK +REQUEST request_9 1714134392540 1714134392637 OK +REQUEST request_2 1714134392600 1714134392641 OK +USER RankingRecord START 1714134392643 +REQUEST request_8 1714134392539 1714134392643 OK +REQUEST request_5 1714134392600 1714134392683 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134392600 1714134392685 OK +USER RankingRecord START 1714134392689 +REQUEST request_3 1714134392600 1714134392695 OK +REQUEST main.18e3ef94.css 1714134392600 1714134392697 OK +REQUEST request_6 1714134392600 1714134392699 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134392642 1714134392738 OK +REQUEST request_7 1714134392643 1714134392738 OK +REQUEST request_0 1714134392689 1714134392772 OK +REQUEST wiq2.ico 1714134392600 1714134392794 OK +REQUEST request_9 1714134392738 1714134392835 OK +REQUEST request_8 1714134392738 1714134392849 OK +REQUEST main.4a961c5c.js 1714134392600 1714134392889 OK +USER RankingRecord START 1714134392908 +REQUEST request_10 1714134392861 1714134392911 OK +USER RankingRecord END 1714134392911 +REQUEST request_7 1714134392845 1714134392943 OK +REQUEST request_10 1714134392908 1714134392959 OK +USER RankingRecord END 1714134392959 +REQUEST request_0 1714134392908 1714134393004 OK +REQUEST request_1 1714134392955 1714134393039 OK +REQUEST request_9 1714134392943 1714134393039 OK +REQUEST request_8 1714134392943 1714134393055 OK +REQUEST request_2 1714134393039 1714134393080 OK +REQUEST request_5 1714134393039 1714134393122 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134393039 1714134393122 OK +REQUEST main.18e3ef94.css 1714134393039 1714134393123 OK +REQUEST request_6 1714134393039 1714134393135 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134393039 1714134393136 OK +REQUEST wiq2.ico 1714134393039 1714134393203 OK +REQUEST request_7 1714134393171 1714134393254 OK +USER RankingRecord START 1714134393280 +REQUEST main.4a961c5c.js 1714134393039 1714134393325 OK +USER RankingRecord START 1714134393327 +REQUEST request_9 1714134393254 1714134393352 OK +REQUEST request_8 1714134393254 1714134393356 OK +REQUEST request_0 1714134393279 1714134393375 OK +REQUEST request_0 1714134393326 1714134393409 OK +REQUEST request_1 1714134393326 1714134393421 OK +REQUEST request_2 1714134393422 1714134393469 OK +REQUEST request_6 1714134393422 1714134393505 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134393422 1714134393506 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134393422 1714134393506 OK +REQUEST main.18e3ef94.css 1714134393422 1714134393507 OK +REQUEST request_4 1714134393422 1714134393519 OK +REQUEST wiq2.ico 1714134393422 1714134393612 OK +REQUEST request_10 1714134393559 1714134393613 OK +USER RankingRecord END 1714134393613 +REQUEST request_7 1714134393544 1714134393639 OK +REQUEST request_10 1714134393605 1714134393648 OK +USER RankingRecord END 1714134393648 +REQUEST main.4a961c5c.js 1714134393422 1714134393670 OK +REQUEST request_9 1714134393639 1714134393722 OK +USER RankingRecord START 1714134393743 +REQUEST request_8 1714134393639 1714134393749 OK +REQUEST request_1 1714134393743 1714134393839 OK +REQUEST request_0 1714134393743 1714134393839 OK +REQUEST request_7 1714134393774 1714134393858 OK +REQUEST request_1 1714134393774 1714134393858 OK +REQUEST request_2 1714134393839 1714134393888 OK +REQUEST request_2 1714134393860 1714134393901 OK +REQUEST request_10 1714134393853 1714134393905 OK +USER RankingRecord END 1714134393905 +REQUEST request_5 1714134393839 1714134393923 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134393839 1714134393936 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134393839 1714134393938 OK +REQUEST request_3 1714134393839 1714134393940 OK +REQUEST request_9 1714134393859 1714134393941 OK +REQUEST main.18e3ef94.css 1714134393839 1714134393941 OK +REQUEST request_3 1714134393859 1714134393943 OK +REQUEST request_5 1714134393860 1714134393955 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134393860 1714134393956 OK +REQUEST request_6 1714134393861 1714134393957 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134393859 1714134393960 OK +REQUEST request_8 1714134393858 1714134393970 OK +REQUEST wiq2.ico 1714134393859 1714134394025 OK +REQUEST wiq2.ico 1714134393839 1714134394028 OK +REQUEST main.4a961c5c.js 1714134393839 1714134394085 OK +REQUEST request_1 1714134394009 1714134394092 OK +REQUEST main.4a961c5c.js 1714134393859 1714134394109 OK +REQUEST request_2 1714134394092 1714134394140 OK +REQUEST request_5 1714134394092 1714134394188 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134394092 1714134394188 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134394092 1714134394188 OK +REQUEST request_4 1714134394092 1714134394189 OK +REQUEST main.18e3ef94.css 1714134394092 1714134394190 OK +REQUEST wiq2.ico 1714134394092 1714134394255 OK +REQUEST main.4a961c5c.js 1714134394092 1714134394338 OK +REQUEST request_7 1714134394275 1714134394361 OK +REQUEST request_10 1714134394322 1714134394366 OK +USER RankingRecord END 1714134394366 +REQUEST request_9 1714134394361 1714134394444 OK +REQUEST request_8 1714134394361 1714134394462 OK +REQUEST request_1 1714134394384 1714134394467 OK +REQUEST request_1 1714134394415 1714134394499 OK +REQUEST request_2 1714134394467 1714134394516 OK +REQUEST request_2 1714134394500 1714134394541 OK +REQUEST request_10 1714134394492 1714134394543 OK +USER RankingRecord END 1714134394543 +REQUEST request_4 1714134394467 1714134394549 OK +REQUEST request_6 1714134394468 1714134394550 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134394467 1714134394562 OK +REQUEST request_5 1714134394468 1714134394564 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134394467 1714134394565 OK +REQUEST request_10 1714134394539 1714134394582 OK +REQUEST request_5 1714134394500 1714134394582 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord END 1714134394582 +REQUEST main.18e3ef94.css 1714134394500 1714134394583 OK +REQUEST request_6 1714134394500 1714134394583 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134394586 +REQUEST request_3 1714134394500 1714134394597 OK +REQUEST request_4 1714134394500 1714134394598 OK +REQUEST wiq2.ico 1714134394467 1714134394629 OK +REQUEST wiq2.ico 1714134394500 1714134394664 OK +USER RankingRecord START 1714134394664 +REQUEST request_0 1714134394586 1714134394681 OK +REQUEST main.4a961c5c.js 1714134394467 1714134394756 OK +REQUEST request_0 1714134394664 1714134394761 OK +REQUEST main.4a961c5c.js 1714134394500 1714134394788 OK +REQUEST request_7 1714134394710 1714134394806 OK +REQUEST request_10 1714134394820 1714134394872 OK +USER RankingRecord END 1714134394872 +REQUEST request_9 1714134394806 1714134394888 OK +REQUEST request_8 1714134394806 1714134394913 OK +REQUEST request_7 1714134394836 1714134394919 OK +REQUEST request_1 1714134394852 1714134394948 OK +REQUEST request_2 1714134394948 1714134394997 OK +REQUEST request_9 1714134394919 1714134395001 OK +REQUEST request_8 1714134394919 1714134395019 OK +USER RankingRecord START 1714134395022 +REQUEST request_6 1714134394949 1714134395030 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134394948 1714134395031 OK +REQUEST main.18e3ef94.css 1714134394948 1714134395033 OK +REQUEST request_3 1714134394948 1714134395043 OK +REQUEST request_5 1714134394948 1714134395044 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134395100 +REQUEST request_0 1714134395022 1714134395118 OK +USER RankingRecord START 1714134395131 +REQUEST wiq2.ico 1714134394948 1714134395138 OK +REQUEST request_0 1714134395100 1714134395197 OK +REQUEST request_0 1714134395130 1714134395227 OK +REQUEST main.4a961c5c.js 1714134394948 1714134395244 OK +REQUEST request_10 1714134395223 1714134395273 OK +USER RankingRecord END 1714134395274 +REQUEST request_10 1714134395268 1714134395312 OK +USER RankingRecord END 1714134395312 +USER RankingRecord START 1714134395393 +REQUEST request_7 1714134395345 1714134395443 OK +REQUEST request_7 1714134395361 1714134395458 OK +USER RankingRecord START 1714134395471 +REQUEST request_0 1714134395392 1714134395475 OK +REQUEST request_9 1714134395443 1714134395540 OK +REQUEST request_7 1714134395455 1714134395551 OK +REQUEST request_0 1714134395471 1714134395553 OK +REQUEST request_8 1714134395443 1714134395554 OK +REQUEST request_9 1714134395458 1714134395555 OK +REQUEST request_8 1714134395458 1714134395569 OK +REQUEST request_9 1714134395551 1714134395647 OK +REQUEST request_8 1714134395551 1714134395657 OK +REQUEST request_10 1714134395644 1714134395688 OK +USER RankingRecord END 1714134395688 +REQUEST request_7 1714134395613 1714134395710 OK +REQUEST request_7 1714134395644 1714134395738 OK +USER RankingRecord START 1714134395787 +REQUEST request_1 1714134395692 1714134395790 OK +REQUEST request_9 1714134395710 1714134395794 OK +REQUEST request_8 1714134395710 1714134395820 OK +REQUEST request_7 1714134395724 1714134395821 OK +REQUEST request_9 1714134395739 1714134395822 OK +REQUEST request_2 1714134395791 1714134395839 OK +REQUEST request_8 1714134395739 1714134395849 OK +REQUEST request_1 1714134395771 1714134395867 OK +REQUEST request_3 1714134395790 1714134395872 OK +REQUEST request_5 1714134395791 1714134395873 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134395790 1714134395874 OK +REQUEST request_6 1714134395791 1714134395875 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134395787 1714134395881 OK +REQUEST main.18e3ef94.css 1714134395790 1714134395882 OK +REQUEST request_2 1714134395868 1714134395916 OK +REQUEST request_10 1714134395865 1714134395917 OK +USER RankingRecord END 1714134395917 +REQUEST request_9 1714134395821 1714134395919 OK +REQUEST request_8 1714134395821 1714134395935 OK +REQUEST request_3 1714134395867 1714134395951 OK +REQUEST request_5 1714134395868 1714134395951 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134395868 1714134395964 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134395867 1714134395966 OK +REQUEST request_4 1714134395868 1714134395966 OK +REQUEST wiq2.ico 1714134395790 1714134395984 OK +USER RankingRecord START 1714134395989 +REQUEST main.4a961c5c.js 1714134395790 1714134396037 OK +REQUEST request_7 1714134395958 1714134396039 OK +REQUEST wiq2.ico 1714134395867 1714134396057 OK +REQUEST request_0 1714134395989 1714134396085 OK +REQUEST request_7 1714134396019 1714134396103 OK +REQUEST request_10 1714134396066 1714134396117 OK +USER RankingRecord END 1714134396117 +REQUEST main.4a961c5c.js 1714134395867 1714134396120 OK +REQUEST request_9 1714134396040 1714134396122 OK +REQUEST request_8 1714134396040 1714134396140 OK +REQUEST request_9 1714134396103 1714134396187 OK +REQUEST request_8 1714134396103 1714134396206 OK +REQUEST request_1 1714134396127 1714134396211 OK +REQUEST request_7 1714134396143 1714134396225 OK +REQUEST request_2 1714134396212 1714134396260 OK +REQUEST request_4 1714134396212 1714134396294 OK +REQUEST request_6 1714134396212 1714134396294 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134396212 1714134396296 OK +REQUEST request_1 1714134396206 1714134396303 OK +REQUEST request_5 1714134396212 1714134396308 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134396212 1714134396313 OK +REQUEST request_1 1714134396237 1714134396321 OK +REQUEST request_9 1714134396226 1714134396324 OK +REQUEST request_8 1714134396226 1714134396328 OK +REQUEST request_2 1714134396304 1714134396351 OK +REQUEST request_2 1714134396322 1714134396369 OK +REQUEST wiq2.ico 1714134396212 1714134396378 OK +REQUEST request_6 1714134396304 1714134396386 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134396303 1714134396388 OK +REQUEST request_3 1714134396303 1714134396399 OK +REQUEST request_4 1714134396304 1714134396399 OK +REQUEST request_5 1714134396304 1714134396400 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134396322 1714134396403 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134396322 1714134396404 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134396321 1714134396407 OK +REQUEST request_10 1714134396362 1714134396407 OK +USER RankingRecord END 1714134396407 +REQUEST main.18e3ef94.css 1714134396321 1714134396408 OK +REQUEST request_4 1714134396321 1714134396417 OK +REQUEST request_7 1714134396378 1714134396474 OK +REQUEST wiq2.ico 1714134396321 1714134396483 OK +REQUEST wiq2.ico 1714134396303 1714134396495 OK +REQUEST main.4a961c5c.js 1714134396212 1714134396498 OK +REQUEST request_9 1714134396474 1714134396573 OK +REQUEST request_1 1714134396487 1714134396573 OK +REQUEST request_8 1714134396474 1714134396582 OK +REQUEST request_7 1714134396487 1714134396583 OK +REQUEST main.4a961c5c.js 1714134396303 1714134396594 OK +REQUEST main.4a961c5c.js 1714134396321 1714134396609 OK +REQUEST request_2 1714134396574 1714134396615 OK +REQUEST request_1 1714134396566 1714134396649 OK +REQUEST request_4 1714134396574 1714134396656 OK +REQUEST request_6 1714134396574 1714134396657 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134396583 1714134396668 OK +REQUEST request_5 1714134396574 1714134396671 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134396573 1714134396671 OK +REQUEST main.18e3ef94.css 1714134396573 1714134396676 OK +REQUEST request_2 1714134396649 1714134396690 OK +REQUEST request_8 1714134396583 1714134396694 OK +USER RankingRecord START 1714134396708 +REQUEST request_4 1714134396649 1714134396733 OK +REQUEST request_5 1714134396649 1714134396733 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134396573 1714134396736 OK +REQUEST request_3 1714134396649 1714134396745 OK +REQUEST request_6 1714134396649 1714134396746 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134396649 1714134396748 OK +REQUEST request_7 1714134396691 1714134396786 OK +REQUEST request_0 1714134396707 1714134396791 OK +REQUEST request_10 1714134396755 1714134396805 OK +USER RankingRecord END 1714134396805 +REQUEST wiq2.ico 1714134396649 1714134396814 OK +REQUEST main.4a961c5c.js 1714134396573 1714134396827 OK +REQUEST request_9 1714134396786 1714134396870 OK +REQUEST request_8 1714134396786 1714134396897 OK +USER RankingRecord START 1714134396928 +REQUEST main.4a961c5c.js 1714134396649 1714134396939 OK +REQUEST request_7 1714134396895 1714134396979 OK +REQUEST request_1 1714134396895 1714134396991 OK +REQUEST request_10 1714134396973 1714134397018 OK +USER RankingRecord END 1714134397018 +REQUEST request_0 1714134396928 1714134397024 OK +REQUEST request_2 1714134396992 1714134397039 OK +REQUEST request_7 1714134396973 1714134397057 OK +REQUEST request_6 1714134396992 1714134397074 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134396992 1714134397076 OK +REQUEST request_5 1714134396992 1714134397076 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134396980 1714134397076 OK +REQUEST request_8 1714134396980 1714134397086 OK +REQUEST request_3 1714134396992 1714134397088 OK +REQUEST main.18e3ef94.css 1714134396992 1714134397105 OK +REQUEST request_9 1714134397057 1714134397153 OK +REQUEST request_8 1714134397057 1714134397162 OK +REQUEST request_1 1714134397099 1714134397183 OK +REQUEST wiq2.ico 1714134396992 1714134397183 OK +USER RankingRecord START 1714134397194 +REQUEST request_7 1714134397131 1714134397228 OK +REQUEST request_2 1714134397183 1714134397231 OK +REQUEST main.4a961c5c.js 1714134396992 1714134397243 OK +REQUEST request_5 1714134397183 1714134397265 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134397194 1714134397278 OK +REQUEST request_6 1714134397184 1714134397279 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134397183 1714134397279 OK +REQUEST request_4 1714134397183 1714134397280 OK +REQUEST main.18e3ef94.css 1714134397183 1714134397283 OK +REQUEST request_7 1714134397202 1714134397285 OK +REQUEST request_9 1714134397228 1714134397311 OK +REQUEST request_8 1714134397228 1714134397339 OK +REQUEST wiq2.ico 1714134397183 1714134397348 OK +REQUEST request_9 1714134397285 1714134397381 OK +REQUEST request_8 1714134397285 1714134397387 OK +USER RankingRecord START 1714134397460 +REQUEST main.4a961c5c.js 1714134397183 1714134397473 OK +REQUEST request_10 1714134397475 1714134397519 OK +USER RankingRecord END 1714134397519 +REQUEST request_0 1714134397460 1714134397543 OK +REQUEST request_7 1714134397521 1714134397603 OK +USER RankingRecord START 1714134397615 +REQUEST request_9 1714134397603 1714134397687 OK +REQUEST request_7 1714134397599 1714134397695 OK +REQUEST request_0 1714134397614 1714134397698 OK +REQUEST request_8 1714134397603 1714134397703 OK +REQUEST request_7 1714134397646 1714134397728 OK +REQUEST request_9 1714134397696 1714134397792 OK +REQUEST request_9 1714134397729 1714134397813 OK +REQUEST request_8 1714134397695 1714134397813 OK +REQUEST request_8 1714134397729 1714134397841 OK +REQUEST request_1 1714134397792 1714134397876 OK +REQUEST request_7 1714134397818 1714134397915 OK +REQUEST request_2 1714134397876 1714134397918 OK +REQUEST request_4 1714134397876 1714134397958 OK +REQUEST request_6 1714134397876 1714134397959 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134397876 1714134397960 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134397876 1714134397973 OK +REQUEST request_10 1714134397927 1714134397977 OK +USER RankingRecord END 1714134397977 +REQUEST main.18e3ef94.css 1714134397876 1714134397980 OK +REQUEST request_9 1714134397915 1714134398000 OK +REQUEST request_8 1714134397915 1714134398031 OK +REQUEST wiq2.ico 1714134397876 1714134398038 OK +REQUEST request_10 1714134398020 1714134398063 OK +USER RankingRecord END 1714134398063 +REQUEST request_7 1714134397989 1714134398086 OK +REQUEST request_1 1714134398035 1714134398120 OK +REQUEST main.4a961c5c.js 1714134397876 1714134398128 OK +REQUEST request_2 1714134398120 1714134398169 OK +REQUEST request_9 1714134398087 1714134398183 OK +REQUEST request_8 1714134398086 1714134398196 OK +REQUEST request_4 1714134398120 1714134398203 OK +REQUEST request_6 1714134398120 1714134398204 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134398120 1714134398204 OK +REQUEST main.18e3ef94.css 1714134398120 1714134398218 OK +REQUEST request_5 1714134398120 1714134398218 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134398120 1714134398285 OK +REQUEST request_1 1714134398285 1714134398368 OK +REQUEST main.4a961c5c.js 1714134398120 1714134398411 OK +REQUEST request_2 1714134398368 1714134398411 OK +REQUEST request_7 1714134398363 1714134398448 OK +REQUEST request_4 1714134398368 1714134398451 OK +REQUEST request_5 1714134398368 1714134398452 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134398363 1714134398459 OK +REQUEST request_6 1714134398368 1714134398464 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134398368 1714134398466 OK +REQUEST main.18e3ef94.css 1714134398368 1714134398467 OK +USER RankingRecord START 1714134398504 +REQUEST wiq2.ico 1714134398368 1714134398531 OK +REQUEST request_9 1714134398449 1714134398531 OK +USER RankingRecord START 1714134398535 +REQUEST request_9 1714134398460 1714134398545 OK +REQUEST request_7 1714134398458 1714134398554 OK +REQUEST request_8 1714134398449 1714134398568 OK +REQUEST request_8 1714134398460 1714134398573 OK +REQUEST request_0 1714134398504 1714134398586 OK +REQUEST request_10 1714134398566 1714134398617 OK +USER RankingRecord END 1714134398618 +REQUEST request_0 1714134398534 1714134398619 OK +REQUEST main.4a961c5c.js 1714134398368 1714134398619 OK +REQUEST request_10 1714134398582 1714134398633 OK +USER RankingRecord END 1714134398633 +REQUEST request_1 1714134398550 1714134398633 OK +REQUEST request_9 1714134398555 1714134398652 OK +USER RankingRecord START 1714134398659 +REQUEST request_8 1714134398555 1714134398665 OK +REQUEST request_2 1714134398634 1714134398675 OK +REQUEST request_10 1714134398659 1714134398707 OK +USER RankingRecord END 1714134398708 +REQUEST request_3 1714134398633 1714134398716 OK +REQUEST main.18e3ef94.css 1714134398633 1714134398719 OK +REQUEST request_4 1714134398634 1714134398730 OK +REQUEST request_5 1714134398634 1714134398731 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134398634 1714134398731 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134398659 1714134398742 OK +REQUEST request_7 1714134398689 1714134398785 OK +REQUEST wiq2.ico 1714134398633 1714134398796 OK +REQUEST request_1 1714134398705 1714134398801 OK +REQUEST request_2 1714134398802 1714134398843 OK +REQUEST request_7 1714134398769 1714134398852 OK +REQUEST request_10 1714134398831 1714134398882 OK +USER RankingRecord END 1714134398882 +REQUEST request_9 1714134398786 1714134398883 OK +REQUEST request_6 1714134398802 1714134398884 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134398802 1714134398885 OK +REQUEST main.18e3ef94.css 1714134398802 1714134398886 OK +REQUEST request_3 1714134398802 1714134398898 OK +REQUEST request_7 1714134398815 1714134398898 OK +REQUEST request_5 1714134398802 1714134398899 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134398786 1714134398904 OK +REQUEST request_10 1714134398863 1714134398913 OK +USER RankingRecord END 1714134398913 +REQUEST main.4a961c5c.js 1714134398633 1714134398921 OK +REQUEST request_9 1714134398852 1714134398949 OK +REQUEST request_8 1714134398852 1714134398962 OK +USER RankingRecord START 1714134398963 +REQUEST request_9 1714134398898 1714134398982 OK +REQUEST request_10 1714134398939 1714134398989 OK +USER RankingRecord END 1714134398989 +REQUEST wiq2.ico 1714134398802 1714134398994 OK +REQUEST request_8 1714134398898 1714134399005 OK +USER RankingRecord START 1714134399032 +REQUEST request_0 1714134398962 1714134399044 OK +REQUEST main.4a961c5c.js 1714134398802 1714134399093 OK +REQUEST request_0 1714134399032 1714134399116 OK +REQUEST request_10 1714134399141 1714134399183 OK +USER RankingRecord END 1714134399184 +REQUEST request_7 1714134399156 1714134399239 OK +REQUEST request_10 1714134399219 1714134399263 OK +USER RankingRecord END 1714134399263 +USER RankingRecord START 1714134399266 +REQUEST request_9 1714134399240 1714134399337 OK +REQUEST request_8 1714134399240 1714134399343 OK +REQUEST request_0 1714134399266 1714134399363 OK +REQUEST request_10 1714134399343 1714134399387 OK +USER RankingRecord END 1714134399388 +REQUEST request_7 1714134399374 1714134399459 OK +REQUEST request_9 1714134399459 1714134399541 OK +REQUEST request_8 1714134399459 1714134399560 OK +REQUEST request_10 1714134399592 1714134399642 OK +USER RankingRecord END 1714134399643 +USER RankingRecord START 1714134399685 +REQUEST request_1 1714134399592 1714134399690 OK +REQUEST request_1 1714134399622 1714134399720 OK +REQUEST request_2 1714134399690 1714134399731 OK +USER RankingRecord START 1714134399748 +REQUEST request_10 1714134399701 1714134399751 OK +USER RankingRecord END 1714134399751 +REQUEST request_2 1714134399721 1714134399762 OK +REQUEST request_0 1714134399685 1714134399769 OK +REQUEST request_3 1714134399690 1714134399772 OK +REQUEST request_4 1714134399690 1714134399773 OK +REQUEST request_6 1714134399690 1714134399787 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134399690 1714134399787 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134399690 1714134399789 OK +REQUEST request_3 1714134399721 1714134399804 OK +REQUEST request_6 1714134399721 1714134399805 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134399721 1714134399817 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134399721 1714134399818 OK +REQUEST main.18e3ef94.css 1714134399721 1714134399819 OK +REQUEST request_1 1714134399748 1714134399831 OK +REQUEST request_0 1714134399748 1714134399842 OK +REQUEST request_2 1714134399832 1714134399874 OK +REQUEST wiq2.ico 1714134399690 1714134399882 OK +USER RankingRecord START 1714134399888 +REQUEST wiq2.ico 1714134399721 1714134399913 OK +REQUEST request_6 1714134399832 1714134399914 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134399832 1714134399914 OK +REQUEST request_5 1714134399832 1714134399927 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134399832 1714134399928 OK +REQUEST main.18e3ef94.css 1714134399832 1714134399931 OK +REQUEST request_10 1714134399903 1714134399953 OK +USER RankingRecord END 1714134399953 +REQUEST request_0 1714134399888 1714134399970 OK +REQUEST main.4a961c5c.js 1714134399721 1714134399971 OK +REQUEST main.4a961c5c.js 1714134399690 1714134399980 OK +REQUEST wiq2.ico 1714134399832 1714134399997 OK +REQUEST main.4a961c5c.js 1714134399832 1714134400077 OK +REQUEST request_10 1714134400089 1714134400133 OK +USER RankingRecord END 1714134400134 +REQUEST request_1 1714134400058 1714134400155 OK +REQUEST request_2 1714134400155 1714134400196 OK +REQUEST request_1 1714134400120 1714134400206 OK +REQUEST request_10 1714134400167 1714134400210 OK +USER RankingRecord END 1714134400210 +REQUEST request_3 1714134400155 1714134400237 OK +REQUEST request_6 1714134400155 1714134400238 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134400155 1714134400239 OK +REQUEST request_2 1714134400206 1714134400248 OK +REQUEST request_5 1714134400155 1714134400252 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134400155 1714134400253 OK +REQUEST request_6 1714134400206 1714134400289 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134400206 1714134400289 OK +REQUEST main.18e3ef94.css 1714134400206 1714134400291 OK +USER RankingRecord START 1714134400294 +REQUEST request_5 1714134400206 1714134400303 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134400206 1714134400304 OK +REQUEST wiq2.ico 1714134400155 1714134400343 OK +REQUEST wiq2.ico 1714134400206 1714134400372 OK +REQUEST request_7 1714134400278 1714134400373 OK +REQUEST request_0 1714134400294 1714134400377 OK +REQUEST request_10 1714134400340 1714134400391 OK +USER RankingRecord END 1714134400391 +REQUEST main.4a961c5c.js 1714134400155 1714134400405 OK +REQUEST request_10 1714134400402 1714134400447 OK +USER RankingRecord END 1714134400447 +REQUEST request_1 1714134400371 1714134400454 OK +REQUEST request_9 1714134400373 1714134400468 OK +REQUEST request_7 1714134400387 1714134400471 OK +REQUEST request_8 1714134400373 1714134400483 OK +REQUEST main.4a961c5c.js 1714134400206 1714134400492 OK +REQUEST request_2 1714134400454 1714134400502 OK +REQUEST request_5 1714134400454 1714134400536 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134400454 1714134400538 OK +REQUEST request_3 1714134400454 1714134400549 OK +REQUEST request_6 1714134400454 1714134400551 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134400471 1714134400554 OK +REQUEST main.18e3ef94.css 1714134400454 1714134400554 OK +REQUEST request_7 1714134400481 1714134400565 OK +REQUEST request_8 1714134400471 1714134400577 OK +REQUEST request_7 1714134400512 1714134400608 OK +USER RankingRecord START 1714134400608 +REQUEST wiq2.ico 1714134400454 1714134400617 OK +REQUEST request_9 1714134400566 1714134400662 OK +USER RankingRecord START 1714134400666 +USER RankingRecord START 1714134400666 +REQUEST request_8 1714134400566 1714134400670 OK +REQUEST request_9 1714134400608 1714134400691 OK +REQUEST request_0 1714134400608 1714134400693 OK +REQUEST request_7 1714134400604 1714134400700 OK +REQUEST request_8 1714134400608 1714134400722 OK +REQUEST main.4a961c5c.js 1714134400454 1714134400745 OK +REQUEST request_0 1714134400666 1714134400748 OK +REQUEST request_10 1714134400713 1714134400756 OK +USER RankingRecord END 1714134400757 +REQUEST request_0 1714134400666 1714134400763 OK +REQUEST request_9 1714134400700 1714134400783 OK +REQUEST request_8 1714134400700 1714134400808 OK +REQUEST request_1 1714134400775 1714134400859 OK +REQUEST request_10 1714134400822 1714134400871 OK +USER RankingRecord END 1714134400871 +REQUEST request_10 1714134400852 1714134400895 OK +USER RankingRecord END 1714134400896 +REQUEST request_2 1714134400859 1714134400901 OK +USER RankingRecord START 1714134400913 +REQUEST request_1 1714134400852 1714134400935 OK +REQUEST request_5 1714134400859 1714134400942 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134400944 +REQUEST request_7 1714134400852 1714134400947 OK +REQUEST request_3 1714134400859 1714134400954 OK +REQUEST request_6 1714134400859 1714134400956 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134400859 1714134400957 OK +REQUEST request_4 1714134400859 1714134400958 OK +REQUEST request_7 1714134400867 1714134400963 OK +REQUEST request_2 1714134400936 1714134400983 OK +REQUEST request_0 1714134400913 1714134400996 OK +USER RankingRecord START 1714134401006 +REQUEST request_6 1714134400936 1714134401019 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134400936 1714134401021 OK +REQUEST request_3 1714134400936 1714134401023 OK +REQUEST wiq2.ico 1714134400859 1714134401023 OK +REQUEST request_7 1714134400928 1714134401024 OK +REQUEST request_0 1714134400944 1714134401027 OK +REQUEST request_5 1714134400936 1714134401031 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134400947 1714134401054 OK +REQUEST request_9 1714134400963 1714134401065 OK +REQUEST main.18e3ef94.css 1714134400936 1714134401070 OK +REQUEST request_1 1714134400975 1714134401081 OK +REQUEST request_10 1714134401036 1714134401090 OK +USER RankingRecord END 1714134401090 +REQUEST request_8 1714134400947 1714134401092 OK +REQUEST wiq2.ico 1714134400936 1714134401098 OK +REQUEST request_0 1714134401005 1714134401101 OK +REQUEST request_7 1714134401021 1714134401103 OK +USER RankingRecord START 1714134401115 +REQUEST request_8 1714134400963 1714134401120 OK +REQUEST request_9 1714134401024 1714134401122 OK +REQUEST request_2 1714134401081 1714134401122 OK +REQUEST main.4a961c5c.js 1714134400859 1714134401144 OK +REQUEST request_8 1714134401024 1714134401155 OK +REQUEST request_5 1714134401081 1714134401164 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134401081 1714134401165 OK +REQUEST request_3 1714134401081 1714134401165 OK +REQUEST request_6 1714134401081 1714134401177 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134401081 1714134401180 OK +REQUEST request_7 1714134401099 1714134401181 OK +REQUEST main.4a961c5c.js 1714134400936 1714134401185 OK +REQUEST request_9 1714134401103 1714134401187 OK +REQUEST request_0 1714134401115 1714134401198 OK +REQUEST request_8 1714134401103 1714134401210 OK +REQUEST request_10 1714134401207 1714134401258 OK +USER RankingRecord END 1714134401258 +REQUEST request_9 1714134401181 1714134401264 OK +REQUEST wiq2.ico 1714134401081 1714134401270 OK +REQUEST request_8 1714134401181 1714134401286 OK +REQUEST main.4a961c5c.js 1714134401081 1714134401365 OK +USER RankingRecord START 1714134401440 +REQUEST request_1 1714134401378 1714134401474 OK +REQUEST request_2 1714134401474 1714134401516 OK +REQUEST request_0 1714134401440 1714134401538 OK +REQUEST request_5 1714134401474 1714134401556 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134401474 1714134401557 OK +REQUEST main.18e3ef94.css 1714134401474 1714134401559 OK +REQUEST request_6 1714134401474 1714134401570 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134401474 1714134401570 OK +REQUEST request_10 1714134401578 1714134401626 OK +USER RankingRecord END 1714134401626 +REQUEST request_10 1714134401578 1714134401627 OK +USER RankingRecord END 1714134401627 +REQUEST wiq2.ico 1714134401474 1714134401663 OK +REQUEST request_10 1714134401670 1714134401719 OK +USER RankingRecord END 1714134401720 +REQUEST main.4a961c5c.js 1714134401474 1714134401760 OK +REQUEST request_1 1714134401701 1714134401784 OK +REQUEST request_2 1714134401785 1714134401827 OK +REQUEST request_1 1714134401763 1714134401859 OK +REQUEST request_3 1714134401785 1714134401868 OK +REQUEST request_6 1714134401785 1714134401868 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134401785 1714134401869 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134401785 1714134401869 OK +REQUEST request_1 1714134401778 1714134401875 OK +REQUEST main.18e3ef94.css 1714134401785 1714134401881 OK +REQUEST request_7 1714134401795 1714134401891 OK +REQUEST request_2 1714134401860 1714134401900 OK +REQUEST request_2 1714134401876 1714134401924 OK +REQUEST request_3 1714134401859 1714134401941 OK +REQUEST request_5 1714134401860 1714134401943 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134401860 1714134401944 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134401859 1714134401945 OK +REQUEST wiq2.ico 1714134401785 1714134401948 OK +REQUEST request_4 1714134401860 1714134401957 OK +REQUEST request_6 1714134401876 1714134401957 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134401875 1714134401958 OK +REQUEST request_4 1714134401876 1714134401964 OK +REQUEST request_10 1714134401920 1714134401969 OK +USER RankingRecord END 1714134401970 +REQUEST main.18e3ef94.css 1714134401875 1714134401970 OK +REQUEST request_5 1714134401876 1714134401973 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134401891 1714134401981 OK +USER RankingRecord START 1714134401998 +REQUEST request_8 1714134401891 1714134402006 OK +REQUEST request_10 1714134401968 1714134402011 OK +USER RankingRecord END 1714134402012 +REQUEST wiq2.ico 1714134401859 1714134402050 OK +REQUEST request_10 1714134402014 1714134402058 OK +USER RankingRecord END 1714134402059 +REQUEST wiq2.ico 1714134401875 1714134402065 OK +REQUEST main.4a961c5c.js 1714134401785 1714134402070 OK +REQUEST request_0 1714134401998 1714134402094 OK +REQUEST request_1 1714134401998 1714134402095 OK +REQUEST request_1 1714134402029 1714134402126 OK +REQUEST main.4a961c5c.js 1714134401875 1714134402132 OK +REQUEST request_2 1714134402096 1714134402136 OK +REQUEST main.4a961c5c.js 1714134401859 1714134402149 OK +REQUEST request_2 1714134402126 1714134402168 OK +REQUEST request_4 1714134402096 1714134402178 OK +REQUEST request_5 1714134402096 1714134402179 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134402183 +REQUEST request_6 1714134402096 1714134402191 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134402095 1714134402193 OK +REQUEST main.18e3ef94.css 1714134402095 1714134402194 OK +REQUEST request_1 1714134402105 1714134402202 OK +REQUEST request_5 1714134402126 1714134402209 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134402126 1714134402209 OK +REQUEST request_3 1714134402126 1714134402210 OK +REQUEST request_6 1714134402126 1714134402224 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134402126 1714134402225 OK +REQUEST request_2 1714134402203 1714134402250 OK +REQUEST request_0 1714134402183 1714134402277 OK +REQUEST request_1 1714134402198 1714134402281 OK +REQUEST request_5 1714134402203 1714134402285 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134402203 1714134402287 OK +REQUEST wiq2.ico 1714134402095 1714134402293 OK +REQUEST request_6 1714134402203 1714134402298 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134402203 1714134402299 OK +REQUEST request_4 1714134402203 1714134402300 OK +REQUEST wiq2.ico 1714134402126 1714134402318 OK +REQUEST request_2 1714134402281 1714134402323 OK +REQUEST request_7 1714134402228 1714134402325 OK +REQUEST main.4a961c5c.js 1714134402095 1714134402343 OK +REQUEST request_5 1714134402281 1714134402363 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134402281 1714134402364 OK +REQUEST request_4 1714134402281 1714134402366 OK +REQUEST main.18e3ef94.css 1714134402281 1714134402366 OK +REQUEST main.4a961c5c.js 1714134402126 1714134402377 OK +REQUEST request_6 1714134402281 1714134402378 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134402203 1714134402394 OK +REQUEST request_10 1714134402355 1714134402399 OK +USER RankingRecord END 1714134402399 +REQUEST request_7 1714134402323 1714134402406 OK +REQUEST request_9 1714134402325 1714134402409 OK +REQUEST request_8 1714134402325 1714134402437 OK +REQUEST wiq2.ico 1714134402281 1714134402444 OK +REQUEST request_7 1714134402385 1714134402481 OK +REQUEST request_7 1714134402400 1714134402482 OK +REQUEST request_9 1714134402406 1714134402489 OK +REQUEST main.4a961c5c.js 1714134402203 1714134402492 OK +REQUEST request_8 1714134402406 1714134402505 OK +REQUEST request_9 1714134402482 1714134402565 OK +REQUEST main.4a961c5c.js 1714134402281 1714134402573 OK +REQUEST request_9 1714134402482 1714134402579 OK +REQUEST request_8 1714134402482 1714134402587 OK +USER RankingRecord START 1714134402587 +REQUEST request_8 1714134402481 1714134402592 OK +REQUEST request_10 1714134402571 1714134402615 OK +USER RankingRecord END 1714134402615 +USER RankingRecord START 1714134402635 +REQUEST request_1 1714134402540 1714134402636 OK +REQUEST request_0 1714134402587 1714134402685 OK +REQUEST request_2 1714134402637 1714134402685 OK +REQUEST request_0 1714134402634 1714134402717 OK +REQUEST request_5 1714134402637 1714134402719 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134402636 1714134402720 OK +REQUEST request_6 1714134402637 1714134402721 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134402650 1714134402734 OK +REQUEST request_4 1714134402637 1714134402734 OK +REQUEST main.18e3ef94.css 1714134402636 1714134402736 OK +REQUEST request_9 1714134402734 1714134402830 OK +REQUEST wiq2.ico 1714134402636 1714134402830 OK +REQUEST request_8 1714134402734 1714134402838 OK +USER RankingRecord START 1714134402854 +REQUEST main.4a961c5c.js 1714134402636 1714134402889 OK +REQUEST request_0 1714134402854 1714134402937 OK +REQUEST request_7 1714134402901 1714134402984 OK +USER RankingRecord START 1714134402996 +USER RankingRecord START 1714134403011 +USER RankingRecord START 1714134403043 +USER RankingRecord START 1714134403058 +REQUEST request_9 1714134402985 1714134403067 OK +REQUEST request_0 1714134402996 1714134403080 OK +REQUEST request_8 1714134402984 1714134403084 OK +USER RankingRecord START 1714134403106 +REQUEST request_0 1714134403011 1714134403107 OK +REQUEST request_0 1714134403043 1714134403139 OK +REQUEST request_0 1714134403058 1714134403155 OK +REQUEST request_0 1714134403106 1714134403190 OK +REQUEST request_1 1714134403106 1714134403203 OK +REQUEST request_2 1714134403203 1714134403251 OK +USER RankingRecord START 1714134403259 +REQUEST request_4 1714134403203 1714134403285 OK +REQUEST request_6 1714134403203 1714134403286 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134403203 1714134403287 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134403203 1714134403298 OK +REQUEST main.18e3ef94.css 1714134403203 1714134403302 OK +REQUEST request_0 1714134403259 1714134403356 OK +REQUEST request_1 1714134403290 1714134403373 OK +REQUEST request_7 1714134403290 1714134403373 OK +USER RankingRecord START 1714134403385 +REQUEST wiq2.ico 1714134403203 1714134403394 OK +REQUEST request_2 1714134403373 1714134403420 OK +REQUEST request_4 1714134403373 1714134403457 OK +REQUEST main.18e3ef94.css 1714134403373 1714134403457 OK +REQUEST request_6 1714134403373 1714134403458 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134403373 1714134403468 OK +REQUEST request_5 1714134403373 1714134403469 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134403373 1714134403472 OK +REQUEST request_8 1714134403373 1714134403476 OK +REQUEST request_0 1714134403385 1714134403480 OK +REQUEST main.4a961c5c.js 1714134403203 1714134403490 OK +REQUEST wiq2.ico 1714134403373 1714134403535 OK +REQUEST request_10 1714134403495 1714134403544 OK +USER RankingRecord END 1714134403545 +REQUEST request_10 1714134403591 1714134403635 OK +USER RankingRecord END 1714134403635 +REQUEST main.4a961c5c.js 1714134403373 1714134403665 OK +REQUEST request_10 1714134403683 1714134403726 OK +USER RankingRecord END 1714134403727 +REQUEST request_10 1714134403730 1714134403780 OK +USER RankingRecord END 1714134403781 +REQUEST request_1 1714134403699 1714134403795 OK +REQUEST request_1 1714134403730 1714134403815 OK +REQUEST request_2 1714134403796 1714134403845 OK +REQUEST request_2 1714134403816 1714134403857 OK +REQUEST request_10 1714134403823 1714134403873 OK +USER RankingRecord END 1714134403873 +REQUEST request_5 1714134403796 1714134403879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134403796 1714134403880 OK +REQUEST main.18e3ef94.css 1714134403796 1714134403882 OK +REQUEST request_3 1714134403796 1714134403891 OK +REQUEST request_6 1714134403796 1714134403894 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134403816 1714134403900 OK +REQUEST main.18e3ef94.css 1714134403816 1714134403902 OK +REQUEST request_4 1714134403816 1714134403912 OK +REQUEST request_5 1714134403816 1714134403913 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134403816 1714134403914 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134403815 1714134403981 OK +REQUEST wiq2.ico 1714134403796 1714134403984 OK +REQUEST request_7 1714134403903 1714134403999 OK +REQUEST request_1 1714134403949 1714134404045 OK +REQUEST main.4a961c5c.js 1714134403796 1714134404085 OK +REQUEST request_2 1714134404046 1714134404087 OK +USER RankingRecord START 1714134404089 +REQUEST request_9 1714134404000 1714134404095 OK +REQUEST request_8 1714134404000 1714134404109 OK +REQUEST main.4a961c5c.js 1714134403815 1714134404109 OK +REQUEST request_5 1714134404046 1714134404129 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134404045 1714134404129 OK +REQUEST request_3 1714134404045 1714134404130 OK +REQUEST request_4 1714134404046 1714134404130 OK +REQUEST request_6 1714134404046 1714134404144 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134404105 1714134404154 OK +USER RankingRecord END 1714134404154 +REQUEST request_0 1714134404089 1714134404169 OK +REQUEST request_1 1714134404089 1714134404172 OK +REQUEST request_10 1714134404136 1714134404185 OK +USER RankingRecord END 1714134404185 +REQUEST request_2 1714134404173 1714134404214 OK +REQUEST request_10 1714134404166 1714134404216 OK +USER RankingRecord END 1714134404216 +REQUEST request_1 1714134404120 1714134404217 OK +REQUEST wiq2.ico 1714134404045 1714134404234 OK +REQUEST request_1 1714134404151 1714134404247 OK +REQUEST request_1 1714134404166 1714134404247 OK +REQUEST request_5 1714134404173 1714134404255 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134404213 1714134404256 OK +USER RankingRecord END 1714134404256 +REQUEST request_4 1714134404173 1714134404256 OK +REQUEST main.18e3ef94.css 1714134404173 1714134404256 OK +REQUEST request_2 1714134404218 1714134404265 OK +REQUEST request_3 1714134404173 1714134404273 OK +REQUEST request_6 1714134404173 1714134404274 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134404197 1714134404278 OK +REQUEST request_2 1714134404247 1714134404294 OK +REQUEST request_2 1714134404248 1714134404296 OK +REQUEST request_5 1714134404218 1714134404298 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134404218 1714134404300 OK +REQUEST request_6 1714134404218 1714134404313 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134404217 1714134404314 OK +REQUEST main.18e3ef94.css 1714134404217 1714134404317 OK +REQUEST request_2 1714134404278 1714134404320 OK +REQUEST request_6 1714134404247 1714134404330 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134404247 1714134404330 OK +REQUEST main.18e3ef94.css 1714134404247 1714134404332 OK +REQUEST request_3 1714134404247 1714134404332 OK +REQUEST main.4a961c5c.js 1714134404045 1714134404334 OK +REQUEST request_10 1714134404291 1714134404335 OK +USER RankingRecord END 1714134404335 +REQUEST wiq2.ico 1714134404172 1714134404337 OK +REQUEST request_6 1714134404248 1714134404342 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134404248 1714134404343 OK +REQUEST request_5 1714134404248 1714134404344 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134404247 1714134404344 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134404247 1714134404346 OK +REQUEST main.18e3ef94.css 1714134404247 1714134404353 OK +REQUEST request_5 1714134404278 1714134404362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134404279 1714134404362 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134404278 1714134404363 OK +REQUEST request_4 1714134404278 1714134404364 OK +REQUEST main.18e3ef94.css 1714134404278 1714134404365 OK +REQUEST wiq2.ico 1714134404217 1714134404410 OK +REQUEST wiq2.ico 1714134404247 1714134404410 OK +REQUEST request_7 1714134404329 1714134404424 OK +REQUEST wiq2.ico 1714134404247 1714134404437 OK +REQUEST wiq2.ico 1714134404278 1714134404441 OK +REQUEST request_1 1714134404368 1714134404451 OK +REQUEST main.4a961c5c.js 1714134404172 1714134404462 OK +REQUEST request_2 1714134404452 1714134404500 OK +REQUEST main.4a961c5c.js 1714134404217 1714134404505 OK +REQUEST request_9 1714134404425 1714134404522 OK +REQUEST request_8 1714134404424 1714134404532 OK +REQUEST request_3 1714134404452 1714134404534 OK +REQUEST main.4a961c5c.js 1714134404247 1714134404535 OK +REQUEST main.18e3ef94.css 1714134404452 1714134404535 OK +REQUEST request_5 1714134404452 1714134404536 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134404247 1714134404536 OK +USER RankingRecord START 1714134404541 +REQUEST request_6 1714134404452 1714134404549 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134404452 1714134404549 OK +REQUEST main.4a961c5c.js 1714134404278 1714134404567 OK +REQUEST request_1 1714134404493 1714134404590 OK +REQUEST wiq2.ico 1714134404451 1714134404611 OK +REQUEST request_0 1714134404541 1714134404622 OK +REQUEST request_2 1714134404590 1714134404637 OK +REQUEST request_4 1714134404590 1714134404672 OK +REQUEST request_5 1714134404590 1714134404674 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134404590 1714134404686 OK +REQUEST request_6 1714134404590 1714134404686 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134404590 1714134404689 OK +REQUEST main.4a961c5c.js 1714134404451 1714134404739 OK +USER RankingRecord START 1714134404743 +REQUEST request_7 1714134404680 1714134404777 OK +REQUEST wiq2.ico 1714134404590 1714134404782 OK +USER RankingRecord START 1714134404806 +REQUEST main.4a961c5c.js 1714134404590 1714134404836 OK +REQUEST request_0 1714134404743 1714134404840 OK +REQUEST request_9 1714134404778 1714134404875 OK +REQUEST request_8 1714134404778 1714134404886 OK +REQUEST request_0 1714134404806 1714134404901 OK +USER RankingRecord START 1714134404991 +REQUEST request_10 1714134405021 1714134405073 OK +USER RankingRecord END 1714134405073 +REQUEST request_0 1714134404991 1714134405088 OK +REQUEST request_7 1714134405102 1714134405186 OK +REQUEST request_7 1714134405118 1714134405213 OK +USER RankingRecord START 1714134405228 +USER RankingRecord START 1714134405258 +REQUEST request_9 1714134405186 1714134405269 OK +REQUEST request_1 1714134405180 1714134405278 OK +REQUEST request_8 1714134405186 1714134405290 OK +REQUEST request_0 1714134405228 1714134405310 OK +REQUEST request_9 1714134405213 1714134405311 OK +REQUEST request_2 1714134405279 1714134405319 OK +REQUEST request_8 1714134405213 1714134405321 OK +REQUEST request_0 1714134405258 1714134405354 OK +REQUEST request_3 1714134405278 1714134405361 OK +REQUEST request_5 1714134405279 1714134405362 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134405278 1714134405363 OK +REQUEST request_4 1714134405278 1714134405374 OK +REQUEST request_6 1714134405279 1714134405374 KO status.find.in([200, 209], 304), found 400 +REQUEST request_7 1714134405352 1714134405434 OK +REQUEST wiq2.ico 1714134405278 1714134405478 OK +REQUEST request_10 1714134405445 1714134405496 OK +USER RankingRecord END 1714134405496 +REQUEST request_9 1714134405434 1714134405518 OK +REQUEST request_8 1714134405434 1714134405536 OK +REQUEST request_10 1714134405508 1714134405554 OK +USER RankingRecord END 1714134405554 +REQUEST main.4a961c5c.js 1714134405278 1714134405569 OK +USER RankingRecord START 1714134405587 +REQUEST request_10 1714134405602 1714134405646 OK +USER RankingRecord END 1714134405646 +REQUEST request_10 1714134405602 1714134405651 OK +USER RankingRecord END 1714134405651 +REQUEST request_0 1714134405586 1714134405683 OK +USER RankingRecord START 1714134405694 +REQUEST request_1 1714134405632 1714134405727 OK +REQUEST request_2 1714134405728 1714134405769 OK +USER RankingRecord START 1714134405772 +REQUEST request_0 1714134405694 1714134405777 OK +REQUEST request_6 1714134405728 1714134405810 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134405728 1714134405811 OK +REQUEST request_3 1714134405728 1714134405823 OK +REQUEST request_5 1714134405728 1714134405824 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134405728 1714134405826 OK +USER RankingRecord START 1714134405834 +REQUEST request_7 1714134405757 1714134405853 OK +REQUEST request_0 1714134405772 1714134405854 OK +REQUEST request_7 1714134405803 1714134405885 OK +REQUEST request_10 1714134405850 1714134405900 OK +USER RankingRecord END 1714134405901 +REQUEST wiq2.ico 1714134405728 1714134405916 OK +REQUEST request_0 1714134405834 1714134405916 OK +REQUEST request_1 1714134405845 1714134405930 OK +REQUEST request_9 1714134405853 1714134405936 OK +REQUEST request_8 1714134405853 1714134405967 OK +REQUEST request_2 1714134405930 1714134405978 OK +REQUEST request_9 1714134405885 1714134405983 OK +REQUEST request_8 1714134405885 1714134405994 OK +REQUEST request_1 1714134405912 1714134406009 OK +REQUEST request_5 1714134405930 1714134406013 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134405930 1714134406014 OK +REQUEST request_4 1714134405930 1714134406015 OK +REQUEST main.4a961c5c.js 1714134405728 1714134406015 OK +REQUEST request_3 1714134405930 1714134406025 OK +REQUEST request_6 1714134405930 1714134406026 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134406009 1714134406057 OK +REQUEST request_5 1714134406009 1714134406092 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134405930 1714134406092 OK +REQUEST main.18e3ef94.css 1714134406009 1714134406092 OK +REQUEST request_6 1714134406009 1714134406093 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406009 1714134406106 OK +REQUEST request_3 1714134406009 1714134406106 OK +REQUEST request_10 1714134406096 1714134406139 OK +USER RankingRecord END 1714134406139 +REQUEST main.4a961c5c.js 1714134405930 1714134406176 OK +USER RankingRecord START 1714134406188 +REQUEST request_1 1714134406096 1714134406192 OK +REQUEST wiq2.ico 1714134406009 1714134406198 OK +REQUEST request_2 1714134406193 1714134406241 OK +REQUEST main.4a961c5c.js 1714134406009 1714134406255 OK +REQUEST request_0 1714134406188 1714134406272 OK +REQUEST request_6 1714134406193 1714134406275 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134406193 1714134406277 OK +REQUEST request_5 1714134406193 1714134406288 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406193 1714134406288 OK +REQUEST request_3 1714134406193 1714134406289 OK +REQUEST request_7 1714134406250 1714134406334 OK +REQUEST wiq2.ico 1714134406192 1714134406382 OK +REQUEST request_1 1714134406312 1714134406395 OK +REQUEST request_9 1714134406334 1714134406432 OK +REQUEST request_8 1714134406334 1714134406436 OK +REQUEST request_2 1714134406396 1714134406441 OK +REQUEST request_1 1714134406359 1714134406442 OK +REQUEST main.4a961c5c.js 1714134406193 1714134406445 OK +USER RankingRecord START 1714134406451 +REQUEST request_2 1714134406443 1714134406490 OK +REQUEST request_5 1714134406396 1714134406491 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134406396 1714134406491 OK +REQUEST request_6 1714134406396 1714134406492 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406396 1714134406493 OK +REQUEST main.18e3ef94.css 1714134406396 1714134406494 OK +REQUEST request_5 1714134406443 1714134406525 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134406443 1714134406525 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406443 1714134406525 OK +REQUEST request_3 1714134406443 1714134406527 OK +REQUEST request_10 1714134406482 1714134406529 OK +REQUEST main.18e3ef94.css 1714134406443 1714134406529 OK +USER RankingRecord END 1714134406529 +REQUEST request_0 1714134406451 1714134406546 OK +REQUEST wiq2.ico 1714134406395 1714134406558 OK +USER RankingRecord START 1714134406605 +REQUEST wiq2.ico 1714134406442 1714134406607 OK +REQUEST main.4a961c5c.js 1714134406395 1714134406687 OK +REQUEST main.4a961c5c.js 1714134406443 1714134406690 OK +USER RankingRecord START 1714134406698 +REQUEST request_0 1714134406605 1714134406702 OK +REQUEST request_0 1714134406698 1714134406781 OK +REQUEST request_1 1714134406698 1714134406782 OK +REQUEST request_2 1714134406782 1714134406830 OK +REQUEST request_5 1714134406782 1714134406865 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134406791 1714134406877 OK +REQUEST request_6 1714134406783 1714134406879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406782 1714134406879 OK +REQUEST request_3 1714134406782 1714134406880 OK +REQUEST main.18e3ef94.css 1714134406782 1714134406880 OK +USER RankingRecord START 1714134406915 +REQUEST request_2 1714134406878 1714134406920 OK +REQUEST wiq2.ico 1714134406782 1714134406948 OK +REQUEST request_1 1714134406868 1714134406951 OK +REQUEST request_5 1714134406878 1714134406960 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134406878 1714134406960 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406878 1714134406961 OK +REQUEST request_3 1714134406878 1714134406974 OK +REQUEST main.18e3ef94.css 1714134406878 1714134406976 OK +REQUEST request_2 1714134406951 1714134406993 OK +REQUEST request_0 1714134406915 1714134407009 OK +REQUEST request_1 1714134406931 1714134407028 OK +REQUEST main.4a961c5c.js 1714134406782 1714134407031 OK +REQUEST request_3 1714134406951 1714134407034 OK +REQUEST request_6 1714134406951 1714134407034 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134406951 1714134407035 OK +REQUEST wiq2.ico 1714134406877 1714134407042 OK +REQUEST request_5 1714134406951 1714134407046 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134406951 1714134407052 OK +REQUEST request_2 1714134407029 1714134407069 OK +REQUEST request_3 1714134407028 1714134407110 OK +REQUEST request_4 1714134407028 1714134407110 OK +REQUEST wiq2.ico 1714134406951 1714134407111 OK +REQUEST main.18e3ef94.css 1714134407028 1714134407111 OK +REQUEST request_7 1714134407040 1714134407123 OK +REQUEST request_5 1714134407029 1714134407124 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134407029 1714134407125 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134406878 1714134407126 OK +REQUEST request_10 1714134407119 1714134407170 OK +USER RankingRecord END 1714134407170 +REQUEST request_7 1714134407134 1714134407218 OK +REQUEST wiq2.ico 1714134407028 1714134407221 OK +REQUEST request_9 1714134407123 1714134407223 OK +REQUEST request_8 1714134407123 1714134407227 OK +REQUEST main.4a961c5c.js 1714134406951 1714134407240 OK +REQUEST request_9 1714134407218 1714134407302 OK +REQUEST main.4a961c5c.js 1714134407028 1714134407315 OK +REQUEST request_8 1714134407218 1714134407318 OK +REQUEST request_1 1714134407274 1714134407359 OK +REQUEST request_2 1714134407359 1714134407400 OK +REQUEST main.18e3ef94.css 1714134407359 1714134407443 OK +REQUEST request_3 1714134407359 1714134407454 OK +REQUEST request_4 1714134407359 1714134407456 OK +REQUEST request_5 1714134407359 1714134407457 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134407359 1714134407457 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134407523 +REQUEST wiq2.ico 1714134407359 1714134407524 OK +REQUEST request_10 1714134407538 1714134407589 OK +USER RankingRecord END 1714134407589 +REQUEST request_7 1714134407507 1714134407604 OK +REQUEST request_0 1714134407523 1714134407620 OK +REQUEST request_1 1714134407554 1714134407647 OK +REQUEST main.4a961c5c.js 1714134407359 1714134407652 OK +REQUEST request_2 1714134407647 1714134407695 OK +REQUEST request_7 1714134407602 1714134407699 OK +REQUEST request_9 1714134407604 1714134407701 OK +REQUEST request_7 1714134407618 1714134407701 OK +REQUEST request_8 1714134407604 1714134407713 OK +REQUEST request_5 1714134407647 1714134407730 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134407647 1714134407731 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134407647 1714134407731 OK +REQUEST request_3 1714134407647 1714134407758 OK +REQUEST main.18e3ef94.css 1714134407647 1714134407758 OK +REQUEST request_9 1714134407701 1714134407784 OK +REQUEST request_9 1714134407699 1714134407795 OK +REQUEST request_1 1714134407712 1714134407795 OK +REQUEST request_8 1714134407701 1714134407805 OK +REQUEST request_8 1714134407699 1714134407810 OK +REQUEST wiq2.ico 1714134407647 1714134407813 OK +USER RankingRecord START 1714134407836 +REQUEST request_2 1714134407796 1714134407845 OK +REQUEST request_4 1714134407796 1714134407879 OK +REQUEST main.18e3ef94.css 1714134407796 1714134407880 OK +REQUEST request_5 1714134407796 1714134407880 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134407789 1714134407886 OK +REQUEST request_3 1714134407796 1714134407891 OK +REQUEST request_6 1714134407796 1714134407892 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134407647 1714134407894 OK +REQUEST request_7 1714134407835 1714134407919 OK +REQUEST request_0 1714134407835 1714134407919 OK +REQUEST request_2 1714134407887 1714134407928 OK +REQUEST request_10 1714134407898 1714134407949 OK +USER RankingRecord END 1714134407950 +REQUEST wiq2.ico 1714134407796 1714134407959 OK +REQUEST request_6 1714134407887 1714134407969 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134407887 1714134407982 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134407886 1714134407982 OK +REQUEST request_3 1714134407886 1714134407983 OK +REQUEST main.18e3ef94.css 1714134407886 1714134407991 OK +REQUEST request_9 1714134407919 1714134408004 OK +REQUEST request_8 1714134407919 1714134408025 OK +REQUEST request_7 1714134407945 1714134408027 OK +REQUEST wiq2.ico 1714134407886 1714134408076 OK +REQUEST main.4a961c5c.js 1714134407796 1714134408082 OK +REQUEST request_1 1714134408022 1714134408106 OK +REQUEST request_9 1714134408028 1714134408123 OK +REQUEST request_8 1714134408027 1714134408132 OK +REQUEST main.4a961c5c.js 1714134407886 1714134408147 OK +REQUEST request_2 1714134408106 1714134408153 OK +REQUEST request_4 1714134408106 1714134408189 OK +REQUEST request_5 1714134408106 1714134408190 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134408106 1714134408204 OK +REQUEST request_6 1714134408106 1714134408204 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134408106 1714134408206 OK +REQUEST wiq2.ico 1714134408106 1714134408271 OK +REQUEST request_10 1714134408302 1714134408346 OK +USER RankingRecord END 1714134408347 +REQUEST request_7 1714134408255 1714134408350 OK +REQUEST main.4a961c5c.js 1714134408106 1714134408357 OK +REQUEST request_10 1714134408334 1714134408383 OK +USER RankingRecord END 1714134408383 +REQUEST request_9 1714134408350 1714134408434 OK +REQUEST request_8 1714134408350 1714134408458 OK +USER RankingRecord START 1714134408459 +USER RankingRecord START 1714134408490 +USER RankingRecord START 1714134408506 +REQUEST request_0 1714134408458 1714134408554 OK +REQUEST request_7 1714134408474 1714134408571 OK +REQUEST request_0 1714134408490 1714134408586 OK +REQUEST request_0 1714134408506 1714134408590 OK +REQUEST request_10 1714134408552 1714134408595 OK +USER RankingRecord END 1714134408595 +REQUEST request_9 1714134408571 1714134408667 OK +REQUEST request_8 1714134408571 1714134408682 OK +REQUEST request_1 1714134408629 1714134408713 OK +USER RankingRecord START 1714134408754 +REQUEST request_2 1714134408713 1714134408761 OK +REQUEST request_5 1714134408713 1714134408797 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134408713 1714134408798 OK +REQUEST request_3 1714134408713 1714134408798 OK +REQUEST main.18e3ef94.css 1714134408713 1714134408799 OK +REQUEST request_6 1714134408713 1714134408809 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134408754 1714134408838 OK +REQUEST wiq2.ico 1714134408713 1714134408878 OK +REQUEST main.4a961c5c.js 1714134408713 1714134408963 OK +REQUEST request_1 1714134408926 1714134409010 OK +REQUEST request_10 1714134408973 1714134409023 OK +USER RankingRecord END 1714134409024 +REQUEST request_10 1714134409004 1714134409048 OK +USER RankingRecord END 1714134409048 +REQUEST request_2 1714134409011 1714134409052 OK +REQUEST request_5 1714134409011 1714134409094 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134409010 1714134409097 OK +REQUEST request_6 1714134409011 1714134409108 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134409010 1714134409108 OK +REQUEST request_3 1714134409010 1714134409109 OK +REQUEST wiq2.ico 1714134409010 1714134409172 OK +REQUEST request_7 1714134409129 1714134409224 OK +USER RankingRecord START 1714134409255 +REQUEST main.4a961c5c.js 1714134409010 1714134409256 OK +REQUEST request_9 1714134409224 1714134409308 OK +REQUEST request_8 1714134409224 1714134409331 OK +REQUEST request_0 1714134409254 1714134409338 OK +REQUEST request_10 1714134409440 1714134409484 OK +USER RankingRecord END 1714134409484 +REQUEST request_7 1714134409424 1714134409521 OK +REQUEST request_9 1714134409521 1714134409605 OK +REQUEST request_8 1714134409521 1714134409627 OK +REQUEST request_1 1714134409564 1714134409659 OK +REQUEST request_1 1714134409596 1714134409678 OK +REQUEST request_1 1714134409596 1714134409692 OK +REQUEST request_2 1714134409660 1714134409707 OK +REQUEST request_7 1714134409628 1714134409712 OK +REQUEST request_2 1714134409678 1714134409726 OK +REQUEST request_2 1714134409692 1714134409734 OK +USER RankingRecord START 1714134409737 +REQUEST request_3 1714134409659 1714134409743 OK +REQUEST request_6 1714134409660 1714134409745 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134409659 1714134409745 OK +REQUEST request_4 1714134409660 1714134409755 OK +REQUEST request_5 1714134409660 1714134409758 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134409678 1714134409762 OK +REQUEST request_3 1714134409678 1714134409762 OK +REQUEST request_6 1714134409678 1714134409773 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134409678 1714134409774 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134409692 1714134409776 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134409692 1714134409777 OK +REQUEST request_4 1714134409692 1714134409780 OK +USER RankingRecord START 1714134409784 +USER RankingRecord START 1714134409784 +REQUEST main.18e3ef94.css 1714134409678 1714134409785 OK +REQUEST request_6 1714134409692 1714134409788 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134409692 1714134409792 OK +REQUEST request_9 1714134409712 1714134409796 OK +REQUEST request_0 1714134409737 1714134409820 OK +REQUEST request_8 1714134409712 1714134409822 OK +REQUEST wiq2.ico 1714134409678 1714134409840 OK +USER RankingRecord START 1714134409846 +REQUEST wiq2.ico 1714134409659 1714134409847 OK +REQUEST wiq2.ico 1714134409692 1714134409880 OK +REQUEST request_0 1714134409784 1714134409880 OK +REQUEST request_0 1714134409784 1714134409881 OK +REQUEST request_0 1714134409846 1714134409929 OK +REQUEST main.4a961c5c.js 1714134409678 1714134409931 OK +REQUEST request_1 1714134409846 1714134409942 OK +REQUEST main.4a961c5c.js 1714134409659 1714134409947 OK +REQUEST request_2 1714134409942 1714134409984 OK +REQUEST main.4a961c5c.js 1714134409692 1714134409989 OK +REQUEST request_7 1714134409924 1714134410021 OK +REQUEST request_3 1714134409942 1714134410025 OK +REQUEST request_4 1714134409942 1714134410038 OK +REQUEST request_6 1714134409942 1714134410038 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134409942 1714134410039 OK +REQUEST request_5 1714134409942 1714134410039 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134410051 +REQUEST request_9 1714134410021 1714134410105 OK +REQUEST wiq2.ico 1714134409942 1714134410130 OK +REQUEST request_8 1714134410021 1714134410131 OK +REQUEST request_0 1714134410051 1714134410133 OK +USER RankingRecord START 1714134410160 +REQUEST request_7 1714134410097 1714134410181 OK +REQUEST main.4a961c5c.js 1714134409942 1714134410189 OK +USER RankingRecord START 1714134410222 +REQUEST request_0 1714134410160 1714134410256 OK +USER RankingRecord START 1714134410267 +REQUEST request_9 1714134410181 1714134410278 OK +REQUEST request_10 1714134410237 1714134410281 OK +USER RankingRecord END 1714134410281 +REQUEST request_8 1714134410181 1714134410283 OK +REQUEST request_0 1714134410222 1714134410306 OK +REQUEST request_0 1714134410267 1714134410363 OK +REQUEST request_10 1714134410329 1714134410373 OK +USER RankingRecord END 1714134410373 +USER RankingRecord START 1714134410407 +REQUEST request_1 1714134410345 1714134410443 OK +USER RankingRecord START 1714134410470 +REQUEST request_2 1714134410444 1714134410485 OK +REQUEST request_0 1714134410407 1714134410502 OK +REQUEST request_6 1714134410444 1714134410527 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134410444 1714134410539 OK +REQUEST request_5 1714134410444 1714134410540 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134410444 1714134410541 OK +REQUEST main.18e3ef94.css 1714134410444 1714134410542 OK +REQUEST request_0 1714134410470 1714134410567 OK +USER RankingRecord START 1714134410578 +REQUEST wiq2.ico 1714134410444 1714134410636 OK +REQUEST request_0 1714134410578 1714134410660 OK +REQUEST main.4a961c5c.js 1714134410444 1714134410693 OK +REQUEST request_10 1714134410719 1714134410769 OK +USER RankingRecord END 1714134410770 +REQUEST request_10 1714134410812 1714134410855 OK +USER RankingRecord END 1714134410855 +REQUEST request_10 1714134410812 1714134410862 OK +USER RankingRecord END 1714134410863 +USER RankingRecord START 1714134410875 +REQUEST request_1 1714134410828 1714134410925 OK +REQUEST request_2 1714134410925 1714134410967 OK +REQUEST request_0 1714134410875 1714134410972 OK +REQUEST request_1 1714134410890 1714134410987 OK +REQUEST request_1 1714134410890 1714134410987 OK +REQUEST request_3 1714134410925 1714134411010 OK +REQUEST main.18e3ef94.css 1714134410925 1714134411010 OK +REQUEST request_4 1714134410925 1714134411010 OK +REQUEST request_5 1714134410925 1714134411021 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134410925 1714134411022 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134410987 1714134411034 OK +REQUEST request_1 1714134410937 1714134411034 OK +REQUEST request_2 1714134410988 1714134411036 OK +USER RankingRecord START 1714134411060 +REQUEST request_5 1714134410987 1714134411070 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134410988 1714134411071 OK +REQUEST request_3 1714134410987 1714134411071 OK +REQUEST request_5 1714134410988 1714134411071 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134411029 1714134411073 OK +USER RankingRecord END 1714134411074 +REQUEST main.18e3ef94.css 1714134410988 1714134411074 OK +REQUEST request_2 1714134411035 1714134411077 OK +REQUEST request_7 1714134410983 1714134411078 OK +REQUEST request_7 1714134410983 1714134411080 OK +REQUEST request_6 1714134410988 1714134411083 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134410987 1714134411086 OK +REQUEST request_6 1714134410987 1714134411086 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134410988 1714134411086 OK +REQUEST main.18e3ef94.css 1714134410987 1714134411089 OK +USER RankingRecord START 1714134411091 +REQUEST wiq2.ico 1714134410925 1714134411117 OK +REQUEST request_6 1714134411035 1714134411118 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134411035 1714134411118 OK +REQUEST request_5 1714134411035 1714134411130 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134411035 1714134411131 OK +REQUEST main.18e3ef94.css 1714134411035 1714134411138 OK +REQUEST request_0 1714134411060 1714134411157 OK +REQUEST request_9 1714134411078 1714134411163 OK +REQUEST request_9 1714134411080 1714134411164 OK +USER RankingRecord START 1714134411169 +REQUEST request_7 1714134411091 1714134411172 OK +REQUEST wiq2.ico 1714134410987 1714134411179 OK +REQUEST request_10 1714134411137 1714134411180 OK +USER RankingRecord END 1714134411181 +REQUEST wiq2.ico 1714134410987 1714134411182 OK +REQUEST request_0 1714134411091 1714134411185 OK +REQUEST request_8 1714134411080 1714134411210 OK +REQUEST main.4a961c5c.js 1714134410925 1714134411214 OK +REQUEST wiq2.ico 1714134411035 1714134411230 OK +REQUEST request_1 1714134411137 1714134411233 OK +REQUEST main.4a961c5c.js 1714134410987 1714134411234 OK +REQUEST request_8 1714134411078 1714134411238 OK +REQUEST request_9 1714134411172 1714134411255 OK +REQUEST request_0 1714134411169 1714134411264 OK +REQUEST request_2 1714134411234 1714134411276 OK +REQUEST main.4a961c5c.js 1714134410987 1714134411277 OK +REQUEST request_8 1714134411172 1714134411278 OK +REQUEST request_5 1714134411234 1714134411317 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134411234 1714134411318 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134411234 1714134411318 OK +REQUEST main.4a961c5c.js 1714134411035 1714134411324 OK +REQUEST request_3 1714134411234 1714134411331 OK +REQUEST main.18e3ef94.css 1714134411234 1714134411331 OK +REQUEST request_1 1714134411262 1714134411359 OK +REQUEST request_1 1714134411310 1714134411394 OK +REQUEST request_2 1714134411359 1714134411407 OK +REQUEST wiq2.ico 1714134411233 1714134411424 OK +USER RankingRecord START 1714134411434 +REQUEST request_2 1714134411394 1714134411436 OK +REQUEST request_4 1714134411359 1714134411443 OK +REQUEST request_5 1714134411359 1714134411455 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134411359 1714134411456 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134411371 1714134411457 OK +REQUEST request_3 1714134411359 1714134411458 OK +REQUEST main.18e3ef94.css 1714134411359 1714134411460 OK +REQUEST request_6 1714134411394 1714134411476 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134411394 1714134411479 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134411482 +REQUEST main.4a961c5c.js 1714134411234 1714134411482 OK +REQUEST request_3 1714134411394 1714134411490 OK +REQUEST main.18e3ef94.css 1714134411394 1714134411493 OK +REQUEST request_4 1714134411394 1714134411493 OK +REQUEST request_7 1714134411418 1714134411501 OK +REQUEST request_2 1714134411457 1714134411504 OK +REQUEST request_10 1714134411465 1714134411516 OK +USER RankingRecord END 1714134411516 +REQUEST request_0 1714134411433 1714134411531 OK +REQUEST wiq2.ico 1714134411359 1714134411547 OK +REQUEST request_5 1714134411457 1714134411552 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134411457 1714134411553 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134411394 1714134411559 OK +REQUEST request_4 1714134411457 1714134411561 OK +REQUEST request_3 1714134411457 1714134411564 OK +REQUEST main.18e3ef94.css 1714134411457 1714134411572 OK +REQUEST request_0 1714134411481 1714134411576 OK +REQUEST request_9 1714134411502 1714134411591 OK +REQUEST request_7 1714134411497 1714134411593 OK +REQUEST request_1 1714134411513 1714134411610 OK +REQUEST request_8 1714134411501 1714134411612 OK +REQUEST main.4a961c5c.js 1714134411359 1714134411617 OK +REQUEST wiq2.ico 1714134411457 1714134411618 OK +REQUEST main.4a961c5c.js 1714134411394 1714134411644 OK +REQUEST request_2 1714134411611 1714134411658 OK +REQUEST request_1 1714134411577 1714134411662 OK +REQUEST request_9 1714134411593 1714134411690 OK +REQUEST request_5 1714134411611 1714134411692 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134411611 1714134411693 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134411611 1714134411695 OK +REQUEST request_3 1714134411610 1714134411695 OK +REQUEST main.4a961c5c.js 1714134411457 1714134411701 OK +REQUEST request_8 1714134411593 1714134411705 OK +REQUEST main.18e3ef94.css 1714134411610 1714134411711 OK +REQUEST request_2 1714134411663 1714134411711 OK +REQUEST request_10 1714134411684 1714134411735 OK +USER RankingRecord END 1714134411736 +REQUEST request_4 1714134411662 1714134411746 OK +REQUEST request_5 1714134411663 1714134411747 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134411662 1714134411747 OK +USER RankingRecord START 1714134411747 +REQUEST request_1 1714134411669 1714134411751 OK +REQUEST request_6 1714134411663 1714134411757 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134411662 1714134411760 OK +REQUEST request_2 1714134411752 1714134411793 OK +REQUEST wiq2.ico 1714134411610 1714134411801 OK +REQUEST wiq2.ico 1714134411662 1714134411830 OK +REQUEST request_5 1714134411752 1714134411834 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134411752 1714134411835 OK +REQUEST main.18e3ef94.css 1714134411752 1714134411835 OK +REQUEST request_7 1714134411747 1714134411843 OK +REQUEST request_0 1714134411747 1714134411844 OK +REQUEST request_6 1714134411752 1714134411847 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134411752 1714134411849 OK +REQUEST main.4a961c5c.js 1714134411610 1714134411861 OK +USER RankingRecord START 1714134411871 +REQUEST wiq2.ico 1714134411751 1714134411912 OK +REQUEST request_9 1714134411843 1714134411926 OK +USER RankingRecord START 1714134411949 +REQUEST main.4a961c5c.js 1714134411662 1714134411950 OK +REQUEST request_0 1714134411871 1714134411954 OK +REQUEST request_8 1714134411843 1714134411956 OK +REQUEST request_0 1714134411949 1714134412031 OK +REQUEST main.4a961c5c.js 1714134411752 1714134412042 OK +USER RankingRecord START 1714134412059 +REQUEST request_1 1714134411980 1714134412064 OK +REQUEST request_2 1714134412065 1714134412113 OK +REQUEST request_5 1714134412065 1714134412148 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134412059 1714134412157 OK +REQUEST request_4 1714134412065 1714134412158 OK +REQUEST request_3 1714134412065 1714134412161 OK +REQUEST main.18e3ef94.css 1714134412065 1714134412162 OK +REQUEST request_6 1714134412065 1714134412163 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134412065 1714134412230 OK +REQUEST request_7 1714134412152 1714134412249 OK +REQUEST request_1 1714134412166 1714134412265 OK +REQUEST request_7 1714134412197 1714134412281 OK +REQUEST request_1 1714134412197 1714134412281 OK +REQUEST request_2 1714134412266 1714134412313 OK +REQUEST request_2 1714134412281 1714134412328 OK +REQUEST request_9 1714134412250 1714134412347 OK +REQUEST main.18e3ef94.css 1714134412266 1714134412349 OK +REQUEST request_3 1714134412266 1714134412349 OK +REQUEST request_6 1714134412266 1714134412350 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134412266 1714134412350 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134412065 1714134412355 OK +REQUEST request_5 1714134412281 1714134412364 KO status.find.in([200, 209], 304), found 400 +REQUEST request_9 1714134412281 1714134412367 OK +REQUEST request_4 1714134412266 1714134412370 OK +REQUEST main.18e3ef94.css 1714134412281 1714134412376 OK +REQUEST request_3 1714134412281 1714134412376 OK +REQUEST request_6 1714134412281 1714134412378 KO status.find.in([200, 209], 304), found 400 +REQUEST request_8 1714134412250 1714134412382 OK +REQUEST request_4 1714134412281 1714134412383 OK +REQUEST request_1 1714134412275 1714134412384 OK +REQUEST request_10 1714134412337 1714134412388 OK +USER RankingRecord END 1714134412388 +REQUEST request_8 1714134412281 1714134412404 OK +REQUEST request_2 1714134412384 1714134412431 OK +REQUEST wiq2.ico 1714134412281 1714134412447 OK +REQUEST wiq2.ico 1714134412266 1714134412456 OK +REQUEST request_7 1714134412368 1714134412462 OK +REQUEST request_4 1714134412384 1714134412466 OK +REQUEST request_3 1714134412384 1714134412467 OK +REQUEST main.18e3ef94.css 1714134412384 1714134412470 OK +REQUEST request_6 1714134412384 1714134412481 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134412384 1714134412481 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134412281 1714134412547 OK +REQUEST main.4a961c5c.js 1714134412266 1714134412552 OK +REQUEST request_9 1714134412462 1714134412554 OK +REQUEST request_8 1714134412462 1714134412571 OK +REQUEST wiq2.ico 1714134412384 1714134412573 OK +USER RankingRecord START 1714134412587 +USER RankingRecord START 1714134412587 +REQUEST request_1 1714134412540 1714134412624 OK +REQUEST request_0 1714134412586 1714134412670 OK +REQUEST request_2 1714134412624 1714134412672 OK +REQUEST main.4a961c5c.js 1714134412384 1714134412675 OK +REQUEST request_10 1714134412632 1714134412683 OK +REQUEST request_1 1714134412586 1714134412683 OK +USER RankingRecord END 1714134412683 +REQUEST request_0 1714134412586 1714134412683 OK +REQUEST request_5 1714134412624 1714134412706 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134412624 1714134412707 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134412624 1714134412708 OK +REQUEST request_3 1714134412624 1714134412720 OK +REQUEST main.18e3ef94.css 1714134412624 1714134412721 OK +REQUEST request_2 1714134412683 1714134412730 OK +REQUEST request_3 1714134412683 1714134412766 OK +REQUEST request_6 1714134412683 1714134412767 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134412683 1714134412767 OK +REQUEST request_5 1714134412683 1714134412767 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134412683 1714134412779 OK +REQUEST wiq2.ico 1714134412624 1714134412789 OK +REQUEST main.4a961c5c.js 1714134412624 1714134412869 OK +REQUEST request_7 1714134412771 1714134412870 OK +REQUEST request_10 1714134412826 1714134412870 OK +USER RankingRecord END 1714134412870 +REQUEST wiq2.ico 1714134412683 1714134412873 OK +REQUEST request_1 1714134412850 1714134412946 OK +REQUEST main.4a961c5c.js 1714134412683 1714134412967 OK +REQUEST request_9 1714134412870 1714134412968 OK +REQUEST request_8 1714134412870 1714134412980 OK +REQUEST request_2 1714134412947 1714134412995 OK +REQUEST request_5 1714134412947 1714134413029 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134412947 1714134413030 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134412947 1714134413031 OK +REQUEST request_3 1714134412947 1714134413031 OK +REQUEST request_4 1714134412947 1714134413031 OK +USER RankingRecord START 1714134413054 +REQUEST request_1 1714134412959 1714134413058 OK +USER RankingRecord START 1714134413085 +REQUEST request_2 1714134413059 1714134413101 OK +USER RankingRecord START 1714134413116 +REQUEST request_1 1714134413038 1714134413135 OK +REQUEST request_0 1714134413054 1714134413137 OK +REQUEST wiq2.ico 1714134412946 1714134413138 OK +REQUEST request_4 1714134413059 1714134413143 OK +REQUEST request_6 1714134413059 1714134413143 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134413059 1714134413155 OK +REQUEST request_5 1714134413059 1714134413155 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134413059 1714134413157 OK +REQUEST request_7 1714134413085 1714134413168 OK +REQUEST request_2 1714134413136 1714134413176 OK +REQUEST request_0 1714134413085 1714134413182 OK +REQUEST request_10 1714134413132 1714134413184 OK +USER RankingRecord END 1714134413184 +REQUEST main.4a961c5c.js 1714134412946 1714134413195 OK +REQUEST request_0 1714134413116 1714134413210 OK +REQUEST request_5 1714134413136 1714134413218 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134413135 1714134413218 OK +REQUEST request_6 1714134413136 1714134413219 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134413225 +REQUEST request_3 1714134413135 1714134413233 OK +REQUEST main.18e3ef94.css 1714134413135 1714134413240 OK +REQUEST request_7 1714134413148 1714134413245 OK +REQUEST request_1 1714134413163 1714134413246 OK +REQUEST wiq2.ico 1714134413059 1714134413251 OK +REQUEST request_9 1714134413168 1714134413252 OK +USER RankingRecord START 1714134413256 +REQUEST request_7 1714134413163 1714134413258 OK +REQUEST request_8 1714134413168 1714134413278 OK +REQUEST request_2 1714134413247 1714134413295 OK +REQUEST main.4a961c5c.js 1714134413059 1714134413309 OK +REQUEST request_0 1714134413225 1714134413322 OK +REQUEST wiq2.ico 1714134413135 1714134413327 OK +REQUEST request_6 1714134413247 1714134413328 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134413246 1714134413329 OK +REQUEST request_5 1714134413247 1714134413329 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134413246 1714134413331 OK +REQUEST request_10 1714134413288 1714134413332 OK +USER RankingRecord END 1714134413333 +REQUEST request_9 1714134413245 1714134413340 OK +REQUEST request_3 1714134413246 1714134413342 OK +REQUEST request_0 1714134413256 1714134413353 OK +REQUEST request_9 1714134413259 1714134413362 OK +REQUEST request_8 1714134413258 1714134413378 OK +REQUEST main.4a961c5c.js 1714134413135 1714134413381 OK +REQUEST request_8 1714134413245 1714134413387 OK +REQUEST wiq2.ico 1714134413246 1714134413410 OK +REQUEST request_7 1714134413352 1714134413447 OK +REQUEST request_7 1714134413383 1714134413477 OK +USER RankingRecord START 1714134413477 +REQUEST main.4a961c5c.js 1714134413246 1714134413536 OK +REQUEST request_9 1714134413447 1714134413545 OK +REQUEST request_8 1714134413447 1714134413558 OK +REQUEST request_0 1714134413477 1714134413559 OK +REQUEST request_9 1714134413477 1714134413572 OK +REQUEST request_8 1714134413477 1714134413588 OK +REQUEST request_7 1714134413493 1714134413591 OK +USER RankingRecord START 1714134413636 +REQUEST request_7 1714134413587 1714134413670 OK +REQUEST request_9 1714134413591 1714134413674 OK +REQUEST request_8 1714134413591 1714134413699 OK +REQUEST request_0 1714134413635 1714134413732 OK +REQUEST request_9 1714134413671 1714134413755 OK +REQUEST request_8 1714134413671 1714134413779 OK +REQUEST request_1 1714134413682 1714134413780 OK +REQUEST request_1 1714134413698 1714134413782 OK +REQUEST request_2 1714134413780 1714134413822 OK +USER RankingRecord START 1714134413824 +REQUEST request_2 1714134413783 1714134413831 OK +REQUEST request_6 1714134413783 1714134413866 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134413783 1714134413874 OK +REQUEST request_5 1714134413780 1714134413875 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134413780 1714134413876 OK +REQUEST request_6 1714134413780 1714134413877 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134413780 1714134413878 OK +REQUEST request_5 1714134413783 1714134413879 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134413783 1714134413881 OK +REQUEST request_4 1714134413780 1714134413882 OK +REQUEST main.18e3ef94.css 1714134413783 1714134413882 OK +REQUEST request_0 1714134413824 1714134413920 OK +REQUEST wiq2.ico 1714134413783 1714134413946 OK +REQUEST wiq2.ico 1714134413780 1714134413972 OK +USER RankingRecord START 1714134413978 +REQUEST request_7 1714134413902 1714134413999 OK +REQUEST main.4a961c5c.js 1714134413783 1714134414042 OK +USER RankingRecord START 1714134414055 +REQUEST main.4a961c5c.js 1714134413780 1714134414068 OK +USER RankingRecord START 1714134414071 +REQUEST request_0 1714134413978 1714134414077 OK +REQUEST request_9 1714134414000 1714134414083 OK +REQUEST request_8 1714134413999 1714134414110 OK +REQUEST request_0 1714134414055 1714134414137 OK +USER RankingRecord START 1714134414163 +REQUEST request_0 1714134414071 1714134414168 OK +REQUEST request_1 1714134414148 1714134414232 OK +REQUEST request_0 1714134414163 1714134414260 OK +REQUEST request_2 1714134414232 1714134414273 OK +REQUEST request_10 1714134414226 1714134414278 OK +USER RankingRecord END 1714134414278 +REQUEST request_10 1714134414242 1714134414292 OK +USER RankingRecord END 1714134414292 +REQUEST request_1 1714134414194 1714134414292 OK +REQUEST request_3 1714134414232 1714134414314 OK +REQUEST request_4 1714134414232 1714134414314 OK +REQUEST request_6 1714134414232 1714134414315 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134414232 1714134414329 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134414226 1714134414330 OK +REQUEST request_10 1714134414289 1714134414334 OK +REQUEST main.18e3ef94.css 1714134414232 1714134414334 OK +USER RankingRecord END 1714134414334 +REQUEST request_2 1714134414293 1714134414340 OK +REQUEST request_3 1714134414293 1714134414375 OK +REQUEST request_6 1714134414293 1714134414376 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134414330 1714134414378 OK +REQUEST main.18e3ef94.css 1714134414293 1714134414379 OK +REQUEST request_4 1714134414293 1714134414390 OK +REQUEST request_5 1714134414293 1714134414391 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134414232 1714134414396 OK +REQUEST request_1 1714134414337 1714134414420 OK +REQUEST request_5 1714134414331 1714134414427 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134414331 1714134414427 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134414330 1714134414428 OK +REQUEST request_4 1714134414330 1714134414430 OK +REQUEST main.18e3ef94.css 1714134414330 1714134414433 OK +REQUEST request_1 1714134414368 1714134414452 OK +REQUEST request_2 1714134414420 1714134414468 OK +REQUEST wiq2.ico 1714134414293 1714134414489 OK +REQUEST request_2 1714134414452 1714134414500 OK +REQUEST request_5 1714134414420 1714134414501 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134414420 1714134414505 OK +REQUEST main.18e3ef94.css 1714134414420 1714134414507 OK +REQUEST request_3 1714134414420 1714134414516 OK +REQUEST request_6 1714134414420 1714134414517 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134414330 1714134414522 OK +REQUEST main.4a961c5c.js 1714134414232 1714134414524 OK +USER RankingRecord START 1714134414524 +REQUEST request_3 1714134414452 1714134414535 OK +REQUEST request_6 1714134414452 1714134414535 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134414452 1714134414536 OK +REQUEST main.4a961c5c.js 1714134414293 1714134414538 OK +REQUEST request_5 1714134414452 1714134414549 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134414452 1714134414551 OK +REQUEST request_7 1714134414493 1714134414577 OK +REQUEST main.4a961c5c.js 1714134414330 1714134414580 OK +REQUEST wiq2.ico 1714134414420 1714134414581 OK +REQUEST wiq2.ico 1714134414452 1714134414615 OK +REQUEST request_0 1714134414524 1714134414621 OK +REQUEST request_1 1714134414570 1714134414654 OK +REQUEST request_10 1714134414617 1714134414663 OK +USER RankingRecord END 1714134414663 +REQUEST main.4a961c5c.js 1714134414420 1714134414672 OK +REQUEST request_9 1714134414577 1714134414675 OK +REQUEST request_8 1714134414577 1714134414679 OK +REQUEST request_2 1714134414655 1714134414696 OK +REQUEST main.4a961c5c.js 1714134414452 1714134414698 OK +REQUEST request_5 1714134414655 1714134414750 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134414655 1714134414750 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134414655 1714134414751 OK +REQUEST request_3 1714134414654 1714134414752 OK +REQUEST main.18e3ef94.css 1714134414654 1714134414753 OK +REQUEST request_10 1714134414711 1714134414760 OK +USER RankingRecord END 1714134414761 +REQUEST request_7 1714134414681 1714134414778 OK +REQUEST wiq2.ico 1714134414654 1714134414821 OK +REQUEST request_1 1714134414741 1714134414823 OK +USER RankingRecord START 1714134414835 +REQUEST request_2 1714134414824 1714134414872 OK +REQUEST request_9 1714134414778 1714134414875 OK +REQUEST request_8 1714134414778 1714134414888 OK +REQUEST main.4a961c5c.js 1714134414654 1714134414904 OK +REQUEST main.18e3ef94.css 1714134414824 1714134414907 OK +REQUEST request_4 1714134414824 1714134414907 OK +REQUEST request_5 1714134414824 1714134414909 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134414913 +REQUEST request_0 1714134414835 1714134414919 OK +REQUEST request_3 1714134414824 1714134414920 OK +REQUEST request_6 1714134414824 1714134414920 KO status.find.in([200, 209], 304), found 400 +REQUEST wiq2.ico 1714134414824 1714134414988 OK +REQUEST request_0 1714134414913 1714134414995 OK +REQUEST request_10 1714134414961 1714134415011 OK +USER RankingRecord END 1714134415012 +REQUEST request_1 1714134414929 1714134415014 OK +USER RankingRecord START 1714134415023 +REQUEST request_2 1714134415014 1714134415062 OK +REQUEST request_3 1714134415014 1714134415096 OK +REQUEST request_4 1714134415014 1714134415098 OK +REQUEST request_0 1714134415023 1714134415105 OK +REQUEST request_5 1714134415014 1714134415110 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134415014 1714134415111 KO status.find.in([200, 209], 304), found 400 +REQUEST main.4a961c5c.js 1714134414824 1714134415112 OK +REQUEST main.18e3ef94.css 1714134415014 1714134415113 OK +REQUEST request_7 1714134415086 1714134415168 OK +REQUEST request_1 1714134415086 1714134415170 OK +REQUEST wiq2.ico 1714134415014 1714134415180 OK +REQUEST request_7 1714134415117 1714134415199 OK +REQUEST request_2 1714134415170 1714134415219 OK +REQUEST request_1 1714134415148 1714134415250 OK +REQUEST request_3 1714134415170 1714134415252 OK +REQUEST request_4 1714134415170 1714134415252 OK +REQUEST main.18e3ef94.css 1714134415170 1714134415253 OK +REQUEST request_9 1714134415168 1714134415265 OK +REQUEST main.4a961c5c.js 1714134415014 1714134415265 OK +REQUEST request_5 1714134415170 1714134415266 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134415170 1714134415267 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134415180 1714134415286 OK +REQUEST request_9 1714134415199 1714134415289 OK +REQUEST request_2 1714134415251 1714134415292 OK +REQUEST request_8 1714134415168 1714134415303 OK +REQUEST request_8 1714134415199 1714134415307 OK +REQUEST wiq2.ico 1714134415170 1714134415334 OK +REQUEST request_6 1714134415251 1714134415335 KO status.find.in([200, 209], 304), found 400 +REQUEST request_2 1714134415287 1714134415336 OK +REQUEST main.18e3ef94.css 1714134415251 1714134415336 OK +REQUEST request_3 1714134415251 1714134415346 OK +REQUEST request_4 1714134415251 1714134415348 OK +REQUEST request_5 1714134415251 1714134415350 KO status.find.in([200, 209], 304), found 400 +USER RankingRecord START 1714134415367 +REQUEST request_5 1714134415287 1714134415369 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134415272 1714134415369 OK +REQUEST request_6 1714134415287 1714134415370 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134415287 1714134415371 OK +REQUEST main.18e3ef94.css 1714134415287 1714134415384 OK +REQUEST request_4 1714134415287 1714134415384 OK +REQUEST request_7 1714134415335 1714134415417 OK +REQUEST request_2 1714134415370 1714134415418 OK +REQUEST request_10 1714134415383 1714134415433 OK +USER RankingRecord END 1714134415433 +REQUEST wiq2.ico 1714134415251 1714134415443 OK +REQUEST request_0 1714134415367 1714134415450 OK +REQUEST request_4 1714134415370 1714134415451 OK +REQUEST request_6 1714134415370 1714134415453 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134415370 1714134415454 OK +REQUEST main.4a961c5c.js 1714134415170 1714134415455 OK +REQUEST request_10 1714134415414 1714134415456 OK +USER RankingRecord END 1714134415456 +USER RankingRecord START 1714134415460 +REQUEST request_5 1714134415370 1714134415466 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134415370 1714134415476 OK +REQUEST wiq2.ico 1714134415287 1714134415476 OK +USER RankingRecord START 1714134415492 +REQUEST request_9 1714134415417 1714134415514 OK +REQUEST request_8 1714134415417 1714134415519 OK +REQUEST main.4a961c5c.js 1714134415287 1714134415534 OK +REQUEST main.4a961c5c.js 1714134415251 1714134415537 OK +REQUEST request_0 1714134415460 1714134415556 OK +REQUEST request_7 1714134415476 1714134415558 OK +REQUEST wiq2.ico 1714134415370 1714134415561 OK +REQUEST request_0 1714134415492 1714134415573 OK +REQUEST request_7 1714134415508 1714134415589 OK +REQUEST main.4a961c5c.js 1714134415370 1714134415619 OK +REQUEST request_7 1714134415539 1714134415635 OK +REQUEST request_10 1714134415584 1714134415635 OK +REQUEST request_7 1714134415539 1714134415635 OK +USER RankingRecord END 1714134415635 +REQUEST request_9 1714134415559 1714134415640 OK +REQUEST request_7 1714134415569 1714134415652 OK +REQUEST request_8 1714134415559 1714134415667 OK +REQUEST request_9 1714134415590 1714134415672 OK +REQUEST request_8 1714134415590 1714134415702 OK +REQUEST request_9 1714134415635 1714134415718 OK +REQUEST request_9 1714134415635 1714134415718 OK +USER RankingRecord START 1714134415724 +REQUEST request_1 1714134415632 1714134415726 OK +USER RankingRecord START 1714134415739 +REQUEST request_9 1714134415652 1714134415747 OK +REQUEST request_8 1714134415635 1714134415758 OK +REQUEST request_2 1714134415727 1714134415774 OK +REQUEST request_8 1714134415635 1714134415784 OK +REQUEST request_8 1714134415652 1714134415795 OK +REQUEST request_0 1714134415724 1714134415806 OK +REQUEST request_3 1714134415726 1714134415808 OK +REQUEST request_5 1714134415727 1714134415809 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134415727 1714134415810 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134415726 1714134415811 OK +REQUEST request_4 1714134415727 1714134415822 OK +REQUEST request_0 1714134415739 1714134415834 OK +REQUEST request_7 1714134415754 1714134415850 OK +REQUEST wiq2.ico 1714134415726 1714134415916 OK +REQUEST request_7 1714134415847 1714134415929 OK +REQUEST request_9 1714134415850 1714134415932 OK +REQUEST request_8 1714134415850 1714134415958 OK +REQUEST main.4a961c5c.js 1714134415726 1714134416014 OK +REQUEST request_1 1714134415923 1714134416019 OK +REQUEST request_9 1714134415930 1714134416026 OK +REQUEST request_8 1714134415929 1714134416027 OK +USER RankingRecord START 1714134416033 +REQUEST request_10 1714134415986 1714134416036 OK +USER RankingRecord END 1714134416036 +REQUEST request_2 1714134416019 1714134416061 OK +REQUEST request_1 1714134416001 1714134416086 OK +REQUEST request_5 1714134416019 1714134416102 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134416019 1714134416102 OK +REQUEST request_6 1714134416019 1714134416116 KO status.find.in([200, 209], 304), found 400 +REQUEST request_0 1714134416033 1714134416117 OK +REQUEST request_4 1714134416019 1714134416117 OK +REQUEST main.18e3ef94.css 1714134416019 1714134416122 OK +REQUEST request_2 1714134416086 1714134416126 OK +REQUEST request_4 1714134416086 1714134416169 OK +REQUEST request_5 1714134416086 1714134416169 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134416086 1714134416170 OK +REQUEST main.18e3ef94.css 1714134416086 1714134416170 OK +REQUEST request_6 1714134416086 1714134416182 KO status.find.in([200, 209], 304), found 400 +REQUEST request_1 1714134416110 1714134416206 OK +REQUEST wiq2.ico 1714134416019 1714134416209 OK +REQUEST request_2 1714134416207 1714134416247 OK +REQUEST wiq2.ico 1714134416086 1714134416250 OK +REQUEST main.4a961c5c.js 1714134416019 1714134416270 OK +REQUEST request_3 1714134416206 1714134416288 OK +REQUEST request_5 1714134416207 1714134416289 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134416207 1714134416291 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134416207 1714134416305 OK +REQUEST main.18e3ef94.css 1714134416206 1714134416305 OK +REQUEST request_10 1714134416281 1714134416325 OK +USER RankingRecord END 1714134416325 +REQUEST main.4a961c5c.js 1714134416086 1714134416372 OK +REQUEST wiq2.ico 1714134416206 1714134416396 OK +REQUEST request_10 1714134416391 1714134416441 OK +USER RankingRecord END 1714134416442 +REQUEST request_10 1714134416391 1714134416442 OK +USER RankingRecord END 1714134416443 +REQUEST main.4a961c5c.js 1714134416206 1714134416454 OK +REQUEST request_1 1714134416453 1714134416536 OK +REQUEST request_2 1714134416537 1714134416581 OK +REQUEST request_10 1714134416562 1714134416611 OK +USER RankingRecord END 1714134416612 +REQUEST request_5 1714134416537 1714134416622 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134416537 1714134416634 OK +REQUEST request_4 1714134416537 1714134416635 OK +REQUEST request_6 1714134416537 1714134416636 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134416537 1714134416637 OK +REQUEST request_10 1714134416593 1714134416643 OK +USER RankingRecord END 1714134416643 +REQUEST request_1 1714134416562 1714134416646 OK +REQUEST request_1 1714134416578 1714134416662 OK +REQUEST request_7 1714134416578 1714134416672 OK +REQUEST request_2 1714134416646 1714134416694 OK +REQUEST wiq2.ico 1714134416537 1714134416698 OK +REQUEST request_2 1714134416662 1714134416703 OK +REQUEST request_6 1714134416646 1714134416737 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134416646 1714134416737 OK +REQUEST request_5 1714134416646 1714134416742 KO status.find.in([200, 209], 304), found 400 +REQUEST request_3 1714134416646 1714134416742 OK +REQUEST request_4 1714134416646 1714134416743 OK +REQUEST request_3 1714134416662 1714134416745 OK +REQUEST request_6 1714134416662 1714134416749 KO status.find.in([200, 209], 304), found 400 +REQUEST request_10 1714134416701 1714134416752 OK +USER RankingRecord END 1714134416752 +REQUEST request_9 1714134416672 1714134416755 OK +REQUEST main.18e3ef94.css 1714134416662 1714134416757 OK +REQUEST request_5 1714134416662 1714134416758 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134416662 1714134416761 OK +REQUEST main.4a961c5c.js 1714134416537 1714134416786 OK +REQUEST request_8 1714134416672 1714134416788 OK +REQUEST wiq2.ico 1714134416646 1714134416811 OK +REQUEST request_10 1714134416779 1714134416822 OK +USER RankingRecord END 1714134416823 +REQUEST wiq2.ico 1714134416662 1714134416827 OK +REQUEST request_1 1714134416811 1714134416906 OK +REQUEST main.4a961c5c.js 1714134416662 1714134416916 OK +REQUEST request_1 1714134416842 1714134416923 OK +REQUEST main.4a961c5c.js 1714134416646 1714134416933 OK +REQUEST request_2 1714134416907 1714134416948 OK +REQUEST request_2 1714134416923 1714134416970 OK +REQUEST request_3 1714134416907 1714134416989 OK +REQUEST request_6 1714134416907 1714134416989 KO status.find.in([200, 209], 304), found 400 +REQUEST request_5 1714134416907 1714134416990 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134416907 1714134417003 OK +REQUEST main.18e3ef94.css 1714134416907 1714134417003 OK +REQUEST request_5 1714134416923 1714134417006 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134416923 1714134417006 KO status.find.in([200, 209], 304), found 400 +REQUEST request_4 1714134416923 1714134417007 OK +REQUEST request_3 1714134416923 1714134417020 OK +REQUEST main.18e3ef94.css 1714134416923 1714134417034 OK +REQUEST wiq2.ico 1714134416923 1714134417087 OK +REQUEST wiq2.ico 1714134416906 1714134417095 OK +REQUEST request_7 1714134417028 1714134417113 OK +REQUEST request_10 1714134417121 1714134417173 OK +USER RankingRecord END 1714134417173 +REQUEST main.4a961c5c.js 1714134416906 1714134417193 OK +REQUEST request_9 1714134417113 1714134417196 OK +REQUEST request_1 1714134417121 1714134417217 OK +REQUEST request_8 1714134417113 1714134417218 OK +REQUEST main.4a961c5c.js 1714134416923 1714134417224 OK +REQUEST request_2 1714134417218 1714134417259 OK +REQUEST request_7 1714134417182 1714134417278 OK +REQUEST request_3 1714134417218 1714134417300 OK +REQUEST request_4 1714134417218 1714134417301 OK +REQUEST request_5 1714134417218 1714134417302 KO status.find.in([200, 209], 304), found 400 +REQUEST request_6 1714134417218 1714134417302 KO status.find.in([200, 209], 304), found 400 +REQUEST main.18e3ef94.css 1714134417218 1714134417304 OK +REQUEST request_7 1714134417260 1714134417357 OK +REQUEST request_9 1714134417278 1714134417374 OK +REQUEST request_8 1714134417278 1714134417386 OK +REQUEST wiq2.ico 1714134417217 1714134417408 OK +REQUEST request_9 1714134417357 1714134417441 OK +REQUEST request_8 1714134417357 1714134417463 OK +REQUEST main.4a961c5c.js 1714134417218 1714134417471 OK +REQUEST request_7 1714134417461 1714134417557 OK +REQUEST request_9 1714134417557 1714134417653 OK +REQUEST request_8 1714134417557 1714134417664 OK +REQUEST request_10 1714134417690 1714134417734 OK +USER RankingRecord END 1714134417734 +REQUEST request_7 1714134417690 1714134417786 OK +REQUEST request_7 1714134417706 1714134417787 OK +REQUEST request_9 1714134417788 1714134417871 OK +REQUEST request_9 1714134417787 1714134417881 OK +REQUEST request_8 1714134417787 1714134417897 OK +REQUEST request_8 1714134417787 1714134417900 OK +REQUEST request_10 1714134417891 1714134417943 OK +USER RankingRecord END 1714134417943 +REQUEST request_7 1714134418033 1714134418115 OK +REQUEST request_9 1714134418115 1714134418199 OK +REQUEST request_8 1714134418115 1714134418219 OK +REQUEST request_7 1714134418142 1714134418236 OK +REQUEST request_9 1714134418236 1714134418319 OK +REQUEST request_7 1714134418250 1714134418334 OK +REQUEST request_8 1714134418236 1714134418345 OK +REQUEST request_10 1714134418313 1714134418357 OK +USER RankingRecord END 1714134418357 +REQUEST request_10 1714134418313 1714134418359 OK +USER RankingRecord END 1714134418359 +REQUEST request_7 1714134418329 1714134418413 OK +REQUEST request_9 1714134418334 1714134418418 OK +REQUEST request_8 1714134418334 1714134418437 OK +REQUEST request_9 1714134418413 1714134418512 OK +REQUEST request_8 1714134418413 1714134418513 OK +REQUEST request_10 1714134418533 1714134418576 OK +USER RankingRecord END 1714134418576 +REQUEST request_10 1714134418672 1714134418716 OK +USER RankingRecord END 1714134418717 +REQUEST request_10 1714134418703 1714134418745 OK +USER RankingRecord END 1714134418746 +REQUEST request_7 1714134418656 1714134418753 OK +REQUEST request_10 1714134418765 1714134418816 OK +USER RankingRecord END 1714134418816 +REQUEST request_10 1714134418797 1714134418840 OK +USER RankingRecord END 1714134418840 +REQUEST request_10 1714134418797 1714134418846 OK +USER RankingRecord END 1714134418846 +REQUEST request_9 1714134418753 1714134418850 OK +REQUEST request_8 1714134418753 1714134418864 OK +REQUEST request_7 1714134418906 1714134418989 OK +REQUEST request_10 1714134418969 1714134419019 OK +USER RankingRecord END 1714134419019 +REQUEST request_9 1714134418990 1714134419073 OK +REQUEST request_10 1714134419032 1714134419075 OK +USER RankingRecord END 1714134419075 +REQUEST request_8 1714134418990 1714134419090 OK +REQUEST request_7 1714134419095 1714134419192 OK +REQUEST request_7 1714134419157 1714134419252 OK +REQUEST request_9 1714134419192 1714134419288 OK +REQUEST request_8 1714134419192 1714134419298 OK +REQUEST request_9 1714134419253 1714134419336 OK +REQUEST request_8 1714134419252 1714134419358 OK +REQUEST request_7 1714134419360 1714134419456 OK +REQUEST request_9 1714134419456 1714134419552 OK +REQUEST request_8 1714134419456 1714134419563 OK +REQUEST request_10 1714134419796 1714134419846 OK +USER RankingRecord END 1714134419847 +REQUEST request_7 1714134419968 1714134420052 OK +REQUEST request_9 1714134420052 1714134420136 OK +REQUEST request_8 1714134420052 1714134420153 OK +REQUEST request_10 1714134420232 1714134420275 OK +USER RankingRecord END 1714134420276 +REQUEST request_7 1714134420263 1714134420360 OK +REQUEST request_10 1714134420389 1714134420439 OK +USER RankingRecord END 1714134420439 +REQUEST request_9 1714134420360 1714134420457 OK +REQUEST request_8 1714134420360 1714134420467 OK +REQUEST request_10 1714134420467 1714134420517 OK +USER RankingRecord END 1714134420518 +REQUEST request_10 1714134420671 1714134420721 OK +USER RankingRecord END 1714134420722 +REQUEST request_10 1714134420902 1714134420946 OK +USER RankingRecord END 1714134420946 +REQUEST request_10 1714134420902 1714134420952 OK +USER RankingRecord END 1714134420952 +REQUEST request_7 1714134420933 1714134421029 OK +REQUEST request_7 1714134420948 1714134421045 OK +REQUEST request_7 1714134420995 1714134421079 OK +REQUEST request_9 1714134421030 1714134421128 OK +REQUEST request_9 1714134421045 1714134421141 OK +REQUEST request_8 1714134421045 1714134421160 OK +REQUEST request_8 1714134421030 1714134421163 OK +REQUEST request_9 1714134421079 1714134421175 OK +REQUEST request_8 1714134421079 1714134421202 OK +REQUEST request_10 1714134421231 1714134421275 OK +USER RankingRecord END 1714134421275 +REQUEST request_7 1714134421199 1714134421281 OK +REQUEST request_9 1714134421281 1714134421366 OK +REQUEST request_8 1714134421281 1714134421381 OK +REQUEST request_10 1714134421355 1714134421405 OK +USER RankingRecord END 1714134421405 +REQUEST request_10 1714134421448 1714134421491 OK +USER RankingRecord END 1714134421492 +REQUEST request_10 1714134421526 1714134421569 OK +USER RankingRecord END 1714134421570 +REQUEST request_7 1714134421697 1714134421781 OK +REQUEST request_9 1714134421782 1714134421866 OK +REQUEST request_8 1714134421782 1714134421883 OK +REQUEST request_10 1714134421869 1714134421920 OK +USER RankingRecord END 1714134421920 +REQUEST request_10 1714134422102 1714134422146 OK +USER RankingRecord END 1714134422146 +REQUEST request_7 1714134422226 1714134422321 OK +REQUEST request_7 1714134422242 1714134422324 OK +REQUEST request_10 1714134422304 1714134422354 OK +USER RankingRecord END 1714134422354 +REQUEST request_7 1714134422289 1714134422386 OK +REQUEST request_9 1714134422324 1714134422408 OK +REQUEST request_10 1714134422367 1714134422416 OK +USER RankingRecord END 1714134422416 +REQUEST request_9 1714134422322 1714134422419 OK +REQUEST request_7 1714134422336 1714134422432 OK +REQUEST request_8 1714134422322 1714134422439 OK +REQUEST request_8 1714134422324 1714134422440 OK +REQUEST request_9 1714134422386 1714134422483 OK +REQUEST request_8 1714134422386 1714134422495 OK +REQUEST request_9 1714134422432 1714134422516 OK +REQUEST request_8 1714134422432 1714134422541 OK +REQUEST request_7 1714134422492 1714134422577 OK +REQUEST request_10 1714134422568 1714134422618 OK +USER RankingRecord END 1714134422618 +REQUEST request_9 1714134422577 1714134422661 OK +REQUEST request_8 1714134422577 1714134422676 OK +REQUEST request_7 1714134422631 1714134422713 OK +REQUEST request_7 1714134422647 1714134422731 OK +REQUEST request_7 1714134422710 1714134422793 OK +REQUEST request_9 1714134422713 1714134422810 OK +REQUEST request_8 1714134422713 1714134422820 OK +REQUEST request_9 1714134422731 1714134422828 OK +REQUEST request_8 1714134422731 1714134422841 OK +REQUEST request_9 1714134422793 1714134422891 OK +REQUEST request_8 1714134422793 1714134422897 OK +REQUEST request_7 1714134422866 1714134422949 OK +REQUEST request_9 1714134422949 1714134423034 OK +REQUEST request_8 1714134422949 1714134423053 OK +REQUEST request_7 1714134422960 1714134423057 OK +REQUEST request_9 1714134423057 1714134423140 OK +REQUEST request_7 1714134423054 1714134423151 OK +REQUEST request_8 1714134423057 1714134423165 OK +REQUEST request_10 1714134423161 1714134423206 OK +USER RankingRecord END 1714134423206 +REQUEST request_9 1714134423151 1714134423249 OK +REQUEST request_8 1714134423151 1714134423262 OK +REQUEST request_7 1714134423362 1714134423446 OK +REQUEST request_10 1714134423471 1714134423522 OK +USER RankingRecord END 1714134423522 +REQUEST request_9 1714134423446 1714134423542 OK +REQUEST request_8 1714134423446 1714134423549 OK +REQUEST request_7 1714134423549 1714134423647 OK +REQUEST request_7 1714134423565 1714134423661 OK +REQUEST request_9 1714134423647 1714134423744 OK +REQUEST request_9 1714134423661 1714134423745 OK +REQUEST request_8 1714134423647 1714134423760 OK +REQUEST request_8 1714134423661 1714134423772 OK +REQUEST request_7 1714134423690 1714134423786 OK +REQUEST request_9 1714134423786 1714134423883 OK +REQUEST request_8 1714134423786 1714134423896 OK +REQUEST request_7 1714134423877 1714134423961 OK +REQUEST request_9 1714134423961 1714134424056 OK +REQUEST request_8 1714134423961 1714134424064 OK +REQUEST request_7 1714134423970 1714134424068 OK +REQUEST request_9 1714134424068 1714134424165 OK +REQUEST request_8 1714134424068 1714134424178 OK +REQUEST request_10 1714134424172 1714134424223 OK +USER RankingRecord END 1714134424223 +REQUEST request_10 1714134424172 1714134424224 OK +USER RankingRecord END 1714134424224 +REQUEST request_10 1714134424204 1714134424247 OK +USER RankingRecord END 1714134424247 +REQUEST request_7 1714134424204 1714134424287 OK +REQUEST request_9 1714134424288 1714134424372 OK +REQUEST request_8 1714134424288 1714134424391 OK +REQUEST request_7 1714134424312 1714134424395 OK +REQUEST request_10 1714134424392 1714134424436 OK +USER RankingRecord END 1714134424437 +REQUEST request_9 1714134424395 1714134424477 OK +REQUEST request_7 1714134424392 1714134424488 OK +REQUEST request_8 1714134424395 1714134424497 OK +REQUEST request_9 1714134424488 1714134424584 OK +REQUEST request_8 1714134424488 1714134424597 OK +REQUEST request_7 1714134424548 1714134424629 OK +REQUEST request_9 1714134424629 1714134424725 OK +REQUEST request_8 1714134424629 1714134424731 OK +REQUEST request_10 1714134424890 1714134424935 OK +USER RankingRecord END 1714134424935 +REQUEST request_7 1714134425044 1714134425143 OK +REQUEST request_7 1714134425076 1714134425160 OK +REQUEST request_9 1714134425143 1714134425239 OK +REQUEST request_9 1714134425160 1714134425244 OK +REQUEST request_8 1714134425143 1714134425259 OK +REQUEST request_8 1714134425160 1714134425268 OK +REQUEST request_10 1714134425448 1714134425491 OK +USER RankingRecord END 1714134425491 +REQUEST request_10 1714134425448 1714134425497 OK +USER RankingRecord END 1714134425497 +REQUEST request_10 1714134425511 1714134425561 OK +USER RankingRecord END 1714134425561 +REQUEST request_10 1714134425543 1714134425592 OK +USER RankingRecord END 1714134425592 +REQUEST request_7 1714134425527 1714134425611 OK +REQUEST request_7 1714134425543 1714134425626 OK +REQUEST request_7 1714134425591 1714134425688 OK +REQUEST request_9 1714134425611 1714134425693 OK +REQUEST request_9 1714134425626 1714134425709 OK +REQUEST request_8 1714134425611 1714134425718 OK +REQUEST request_10 1714134425685 1714134425728 OK +USER RankingRecord END 1714134425728 +REQUEST request_8 1714134425626 1714134425734 OK +REQUEST request_7 1714134425685 1714134425767 OK +REQUEST request_7 1714134425700 1714134425781 OK +REQUEST request_9 1714134425688 1714134425785 OK +REQUEST request_8 1714134425688 1714134425798 OK +REQUEST request_9 1714134425767 1714134425852 OK +REQUEST request_10 1714134425826 1714134425869 OK +USER RankingRecord END 1714134425869 +REQUEST request_8 1714134425767 1714134425877 OK +REQUEST request_9 1714134425781 1714134425878 OK +REQUEST request_10 1714134425842 1714134425886 OK +USER RankingRecord END 1714134425886 +REQUEST request_8 1714134425781 1714134425893 OK +REQUEST request_10 1714134425905 1714134425948 OK +USER RankingRecord END 1714134425948 +REQUEST request_7 1714134425905 1714134425989 OK +REQUEST request_9 1714134425989 1714134426072 OK +REQUEST request_8 1714134425989 1714134426092 OK +REQUEST request_10 1714134426061 1714134426105 OK +USER RankingRecord END 1714134426105 +REQUEST request_7 1714134426124 1714134426219 OK +REQUEST request_10 1714134426169 1714134426219 OK +USER RankingRecord END 1714134426220 +REQUEST request_9 1714134426219 1714134426316 OK +REQUEST request_10 1714134426278 1714134426329 OK +REQUEST request_8 1714134426219 1714134426329 OK +USER RankingRecord END 1714134426330 +REQUEST request_7 1714134426278 1714134426362 OK +REQUEST request_9 1714134426362 1714134426459 OK +REQUEST request_8 1714134426362 1714134426465 OK +REQUEST request_7 1714134426465 1714134426547 OK +REQUEST request_10 1714134426558 1714134426610 OK +USER RankingRecord END 1714134426610 +REQUEST request_7 1714134426542 1714134426638 OK +REQUEST request_7 1714134426542 1714134426640 OK +REQUEST request_9 1714134426548 1714134426644 OK +REQUEST request_8 1714134426548 1714134426651 OK +REQUEST request_9 1714134426638 1714134426721 OK +REQUEST request_7 1714134426635 1714134426731 OK +REQUEST request_9 1714134426640 1714134426737 OK +REQUEST request_8 1714134426638 1714134426761 OK +REQUEST request_8 1714134426640 1714134426767 OK +REQUEST request_10 1714134426775 1714134426827 OK +USER RankingRecord END 1714134426827 +REQUEST request_10 1714134426775 1714134426828 OK +USER RankingRecord END 1714134426828 +REQUEST request_9 1714134426731 1714134426828 OK +REQUEST request_8 1714134426731 1714134426842 OK +REQUEST request_10 1714134426900 1714134426950 OK +USER RankingRecord END 1714134426950 +REQUEST request_10 1714134427070 1714134427114 OK +USER RankingRecord END 1714134427115 +REQUEST request_7 1714134427025 1714134427121 OK +REQUEST request_9 1714134427121 1714134427219 OK +REQUEST request_10 1714134427178 1714134427229 OK +USER RankingRecord END 1714134427229 +REQUEST request_8 1714134427121 1714134427232 OK +REQUEST request_7 1714134427271 1714134427353 OK +REQUEST request_10 1714134427396 1714134427440 OK +USER RankingRecord END 1714134427440 +REQUEST request_9 1714134427353 1714134427449 OK +REQUEST request_8 1714134427353 1714134427457 OK +REQUEST request_7 1714134427380 1714134427464 OK +REQUEST request_7 1714134427458 1714134427540 OK +REQUEST request_10 1714134427505 1714134427547 OK +USER RankingRecord END 1714134427548 +REQUEST request_9 1714134427464 1714134427561 OK +REQUEST request_8 1714134427464 1714134427568 OK +REQUEST request_9 1714134427540 1714134427623 OK +REQUEST request_8 1714134427540 1714134427642 OK +REQUEST request_10 1714134427599 1714134427649 OK +USER RankingRecord END 1714134427649 +REQUEST request_10 1714134427739 1714134427782 OK +USER RankingRecord END 1714134427783 +REQUEST request_7 1714134427801 1714134427898 OK +REQUEST request_9 1714134427898 1714134427981 OK +REQUEST request_7 1714134427924 1714134428007 OK +REQUEST request_8 1714134427898 1714134428007 OK +REQUEST request_7 1714134427939 1714134428022 OK +REQUEST request_9 1714134428007 1714134428090 OK +REQUEST request_8 1714134428007 1714134428114 OK +REQUEST request_9 1714134428022 1714134428118 OK +REQUEST request_8 1714134428022 1714134428128 OK +REQUEST request_7 1714134428203 1714134428287 OK +REQUEST request_10 1714134428266 1714134428317 OK +USER RankingRecord END 1714134428317 +REQUEST request_10 1714134428282 1714134428326 OK +USER RankingRecord END 1714134428326 +REQUEST request_7 1714134428234 1714134428329 OK +REQUEST request_9 1714134428287 1714134428369 OK +REQUEST request_8 1714134428287 1714134428393 OK +REQUEST request_9 1714134428330 1714134428413 OK +REQUEST request_8 1714134428329 1714134428440 OK +REQUEST request_7 1714134428484 1714134428580 OK +REQUEST request_9 1714134428580 1714134428676 OK +REQUEST request_8 1714134428580 1714134428690 OK +REQUEST request_10 1714134428732 1714134428776 OK +USER RankingRecord END 1714134428777 +REQUEST request_10 1714134428748 1714134428792 OK +USER RankingRecord END 1714134428792 +REQUEST request_10 1714134428811 1714134428861 OK +USER RankingRecord END 1714134428862 +REQUEST request_10 1714134428888 1714134428931 OK +USER RankingRecord END 1714134428931 +REQUEST request_10 1714134428904 1714134428947 OK +USER RankingRecord END 1714134428947 +REQUEST request_10 1714134429107 1714134429153 OK +USER RankingRecord END 1714134429153 +REQUEST request_10 1714134429341 1714134429391 OK +USER RankingRecord END 1714134429391 +REQUEST request_10 1714134429478 1714134429522 OK +USER RankingRecord END 1714134429522 +REQUEST request_10 1714134429664 1714134429707 OK +USER RankingRecord END 1714134429707 +REQUEST request_10 1714134429773 1714134429822 OK +USER RankingRecord END 1714134429823 +REQUEST request_10 1714134429773 1714134429824 OK +USER RankingRecord END 1714134429824 +REQUEST request_10 1714134429850 1714134429901 OK +USER RankingRecord END 1714134429901 +REQUEST request_10 1714134430241 1714134430291 OK +USER RankingRecord END 1714134430292 +REQUEST request_10 1714134430458 1714134430502 OK +USER RankingRecord END 1714134430502 +REQUEST request_10 1714134430583 1714134430627 OK +USER RankingRecord END 1714134430627 +REQUEST request_10 1714134430645 1714134430688 OK +USER RankingRecord END 1714134430688 +REQUEST request_10 1714134431017 1714134431067 OK +USER RankingRecord END 1714134431067 +REQUEST request_10 1714134431127 1714134431170 OK +USER RankingRecord END 1714134431170 +REQUEST request_10 1714134431142 1714134431185 OK +USER RankingRecord END 1714134431185 +REQUEST request_10 1714134431407 1714134431451 OK +USER RankingRecord END 1714134431451 +REQUEST request_10 1714134431453 1714134431503 OK +USER RankingRecord END 1714134431504 +REQUEST request_10 1714134431702 1714134431752 OK +USER RankingRecord END 1714134431753 diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/bootstrap.min.css b/testsrc/gatling/results/rankingrecord-20240426122555693/style/bootstrap.min.css new file mode 100644 index 00000000..76a2b9ba --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/bootstrap.min.css @@ -0,0 +1,27 @@ +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-3px;} +.tooltip.right{margin-left:3px;} +.tooltip.bottom{margin-top:3px;} +.tooltip.left{margin-left:-3px;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:750px;padding:1px;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);}.popover.top{margin-top:-10px;} +.popover.right{margin-left:10px;} +.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;} +.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-content{padding:9px 14px;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} +.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow:after{content:"";z-index:-1;} +.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#ffffff;}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0, 0, 0, 0.25);bottom:-1px;left:-11px;} +.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#ffffff;}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0, 0, 0, 0.25);bottom:-11px;left:-1px;} +.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#ffffff;}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0, 0, 0, 0.25);top:-1px;left:-11px;} +.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#ffffff;}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0, 0, 0, 0.25);bottom:-11px;right:-1px;} diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/close.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/close.svg new file mode 100644 index 00000000..c161bb90 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/executions.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/executions.svg new file mode 100644 index 00000000..84068cd4 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/executions.svg @@ -0,0 +1,3 @@ + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/expand.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/expand.svg new file mode 100644 index 00000000..f6e75e0d --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/expand.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/favicon.ico b/testsrc/gatling/results/rankingrecord-20240426122555693/style/favicon.ico new file mode 100644 index 00000000..d2d20e11 Binary files /dev/null and b/testsrc/gatling/results/rankingrecord-20240426122555693/style/favicon.ico differ diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/fullscreen.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/fullscreen.svg new file mode 100644 index 00000000..91f3b279 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/fullscreen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-dark.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-dark.svg new file mode 100644 index 00000000..7eb4d51c --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-enterprise-dark.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-enterprise-dark.svg new file mode 100644 index 00000000..1127d75e --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-enterprise-dark.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-enterprise-light.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-enterprise-light.svg new file mode 100644 index 00000000..4a6e1dec --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-enterprise-light.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-light.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-light.svg new file mode 100644 index 00000000..f519eef7 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/logo-light.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort-down.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort-down.svg new file mode 100644 index 00000000..db58a09d --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort-up.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort-up.svg new file mode 100644 index 00000000..bba9d846 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort.svg b/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort.svg new file mode 100644 index 00000000..43b658e2 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testsrc/gatling/results/rankingrecord-20240426122555693/style/style.css b/testsrc/gatling/results/rankingrecord-20240426122555693/style/style.css new file mode 100644 index 00000000..edc96263 --- /dev/null +++ b/testsrc/gatling/results/rankingrecord-20240426122555693/style/style.css @@ -0,0 +1,1199 @@ +/* + * Copyright 2011-2024 GatlingCorp (https://gatling.io) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +:root { + --gatling-background-color: #f2f2f2; + --gatling-background-light-color: #f7f7f7; + --gatling-border-color: #dddddd; + --gatling-blue-color: #4a9fe5; + --gatling-dark-blue-color: #24275e; + --gatling-danger-color: #f15b4f; + --gatling-danger-light-color: #f5d1ce; + --gatling-enterprise-color: #6161d6; + --gatling-enterprise-light-color: #c4c4ed; + --gatling-gray-medium-color: #bbb; + --gatling-hover-color: #e6e6e6; + --gatling-hover-background-color: #e6e6e6; + --gatling-light-color: #ffffff; + --gatling-orange-color: #f78557; + --gatling-success-color: #68b65c; + --gatling-text-color: #1f2024; + --gatling-total-color: #ffa900; + + --gatling-border-radius: 2px; + --gatling-spacing-small: 5px; + --gatling-spacing: 10px; + --gatling-spacing-layout: 20px; + + --gatling-font-weight-normal: 400; + --gatling-font-weight-medium: 500; + --gatling-font-weight-bold: 700; + --gatling-font-size-secondary: 12px; + --gatling-font-size-default: 14px; + --gatling-font-size-heading: 16px; + --gatling-font-size-section: 22px; + --gatling-font-size-header: 34px; + + --gatling-media-desktop-large: 1920px; +} + +html[data-theme="dark"] { + --gatling-background-color: #1e2225; + --gatling-background-light-color: #272c30; + --gatling-border-color: #555555; + --gatling-blue-color: #1188ff; + --gatling-dark-blue-color: #17223B; + --gatling-danger-color: #d9534f; + --gatling-danger-light-color: #c9302c; + --gatling-enterprise-color: #b2a2ea; + --gatling-enterprise-light-color: #343479; + --gatling-gray-medium-color: #999; + --gatling-hover-color: #30363b; + --gatling-hover-background-color: #2c2c2c; + --gatling-light-color: #394046; + --gatling-orange-color: #fe8e5f; + --gatling-success-color: #5cb85c; + --gatling-text-color: #dee2e6; + --gatling-total-color: #ffa900; +} + +* { + min-height: 0; + min-width: 0; +} + +html, +body { + height: 100%; + width: 100%; +} + +body { + color: var(--gatling-text-color); + font-family: arial; + font-size: var(--gatling-font-size-secondary); + margin: 0; +} + +.app-container { + display: flex; + flex-direction: column; + + height: 100%; + width: 100%; +} + +.head { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + + flex: 1; + + background-color: var(--gatling-light-color); + border-bottom: 1px solid var(--gatling-border-color); + min-height: 69px; + padding: 0 var(--gatling-spacing-layout); +} + +.head .spacer { + flex-grow: 1; +} + +.head .theme-toggle { + margin-left: 20px; + background: none; + color: var(--gatling-text-color); + border: none; +} + +.head .theme-toggle:hover { + color: var(--gatling-gray-medium-color); + cursor: pointer; +} + +body .toggle-dark, body .toggle-light { + display: block; +} + +[data-theme="dark"] body .toggle-dark { + display: none; +} + +[data-theme="light"] body .toggle-light { + display: none; +} + +[data-theme="dark"] body .logo-enterprise-light { + display: none; +} + +[data-theme="light"] body .logo-enterprise-dark { + display: none; +} + +.gatling-open-source { + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row; + gap: var(--gatling-spacing-layout); +} + +.gatling-documentation { + display: flex; + align-items: center; + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-orange-color); + border: 1px solid var(--gatling-orange-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 23px; + + font-size: var(--gatling-font-size-default); +} + +.gatling-documentation:hover { + background-color: var(--gatling-orange-color); + color: var(--gatling-light-color); +} + +.gatling-logo { + height: 35px; +} + +.gatling-logo img { + height: 100%; +} + +[data-theme="dark"] .gatling-logo-light { + display: none; +} + +[data-theme="light"] .gatling-logo-dark { + display: none; +} + +.container { + display: flex; + align-items: stretch; + height: 100%; +} + +.nav { + min-width: 210px; + width: 210px; + max-height: calc(100vh - var(--gatling-spacing-layout) - var(--gatling-spacing-layout)); + background: var(--gatling-light-color); + border-right: 1px solid var(--gatling-border-color); + overflow-y: auto; +} + +@media print { + .nav { + display: none; + } +} + +@media screen and (min-width: 1920px) { + .nav { + min-width: 310px; + width: 310px; + } +} + +.nav ul { + display: flex; + flex-direction: column; + + padding: 0; + margin: 0; +} + +.nav li { + display: flex; + list-style: none; + width: 100%; + padding: 0; +} + +.nav .item { + display: inline-flex; + align-items: center; + margin: 0 auto; + white-space: nowrap; + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + margin: 0; + width: 100%; +} + +.nav .item .nav-label { + padding: var(--gatling-spacing) var(--gatling-spacing-layout); +} + +.nav .item:hover { + background-color: var(--gatling-hover-color); +} + +.nav .on .item { + background-color: var(--gatling-orange-color); +} + +.nav .on .item span { + color: var(--gatling-light-color); +} + +.cadre { + width: 100%; + height: 100%; + overflow-y: scroll; + scroll-behavior: smooth; +} + +@media print { + .cadre { + overflow-y: unset; + } +} + +.frise { + position: absolute; + top: 60px; + z-index: -1; + + background-color: var(--gatling-background-color); + height: 530px; +} + +.global { + height: 650px +} + +a { + text-decoration: none; +} + +a:hover { + color: var(--gatling-hover-color); +} + +img { + border: 0; +} + +h1 { + color: var(--gatling-dark-blue-color); + font-size: var(--gatling-font-size-section); + font-weight: var(--gatling-font-weight-medium); + text-align: center; + margin: 0; +} + +h1 span { + color: var(--gatling-hover-color); +} + +.enterprise { + display: flex; + align-items: center; + justify-content: center; + gap: var(--gatling-spacing-small); + + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-enterprise-color); + color: var(--gatling-enterprise-color); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); + height: 25px; +} + +.enterprise:hover { + background-color: var(--gatling-hover-color); + color: var(--gatling-enterprise-color); +} + +.enterprise img { + display: block; + width: 160px; +} + +.simulation-card { + display: flex; + flex-direction: column; + align-self: stretch; + flex: 1; + gap: var(--gatling-spacing-layout); + max-height: 375px; +} + +#simulation-information { + flex: 1; +} + +.simulation-version-information { + display: flex; + flex-direction: column; + + gap: var(--gatling-spacing); + font-size: var(--gatling-font-size-default); + + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing); +} + +.simulation-information-container { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing); +} + +.withTooltip .popover-title { + display: none; +} + +.popover-content p { + margin: 0; +} + +html[data-theme="dark"] div.popover { + background-color: var(--gatling-light-color); + border-bottom: none; +} + +html[data-theme="dark"] div.popover.right .arrow { + border-right-color: var(--gatling-light-color); +} + +.ellipsed-name { + display: block; + + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.simulation-information-item { + display: flex; + flex-direction: row; + align-items: flex-start; + gap: var(--gatling-spacing-small); +} + +.simulation-information-item.description { + flex-direction: column; +} + +.simulation-information-label { + display: inline-block; + font-weight: var(--gatling-font-weight-bold); + min-width: fit-content; +} + +.simulation-information-title { + display: block; + text-align: center; + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + width: 100%; +} + +.simulation-tooltip span { + display: inline-block; + word-wrap: break-word; + overflow: hidden; + text-overflow: ellipsis; +} + +.content { + display: flex; + flex-direction: column; +} + +.content-in { + width: 100%; + height: 100%; + + overflow-x: scroll; +} + +html[data-theme="dark"] .content-in { + background-color: var(--gatling-background-color); +} + +@media print { + .content-in { + overflow-x: unset; + } +} + +.container-article { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + min-width: 1050px; + width: 1050px; + margin: 0 auto; + padding: var(--gatling-spacing-layout); + box-sizing: border-box; +} + +@media screen and (min-width: 1920px) { + .container-article { + min-width: 1350px; + width: 1350px; + } + + #responses * .highcharts-tracker { + transform: translate(400px, 70px); + } +} + +.content-header { + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); + + background-color: var(--gatling-background-light-color); + border-bottom: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-layout) var(--gatling-spacing-layout) 0; +} + +.onglet { + font-size: var(--gatling-font-size-header); + font-weight: var(--gatling-font-weight-medium); + text-align: center; +} + +.sous-menu { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; +} + +.sous-menu-spacer { + display: flex; + align-items: center; + flex-direction: row; +} + +.sous-menu .item { + margin-bottom: -1px; +} + +.sous-menu a { + display: block; + + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-normal); + padding: var(--gatling-spacing-small) var(--gatling-spacing) var(--gatling-spacing); + border-bottom: 2px solid transparent; + color: var(--gatling-text-color); + text-align: center; + width: 100px; +} + +.sous-menu a:hover { + border-bottom-color: var(--gatling-text-color); +} + +.sous-menu .ouvert a { + border-bottom-color: var(--gatling-orange-color); + font-weight: var(--gatling-font-weight-bold); +} + +.article { + position: relative; + + display: flex; + flex-direction: column; + gap: var(--gatling-spacing-layout); +} + +.infos { + width: 340px; + color: var(--gatling-light-color); +} + +.infos-title { + background-color: var(--gatling-background-light-color); + border: 1px solid var(--gatling-border-color); + border-bottom: 0; + border-top-left-radius: var(--gatling-border-radius); + border-top-right-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.info { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + height: 100%; + margin: 0; +} + +.info table { + margin: auto; + padding-right: 15px; +} + +.alert-danger { + background-color: var(--gatling-danger-light-color); + border: 1px solid var(--gatling-danger-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-layout); + font-weight: var(--gatling-font-weight-bold); +} + +.infos h2 { + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + height: 19px; + margin: 0; + padding: 3.5px 0 0 35px; +} + +.infos .first::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.infos .second::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .infos .first::before, +html[data-theme="dark"] .infos .second::before { + filter: invert(0.9); +} + +.infos th { + text-align: center; +} + +.infos td { + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing-small); + -webkit-border-radius: var(--gatling-border-radius); + -moz-border-radius: var(--gatling-border-radius); + -ms-border-radius: var(--gatling-border-radius); + -o-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + text-align: right; + width: 50px; +} + +.infos .title { + width: 120px; +} + +.infos .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); +} + +.infos .total { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); +} + +.infos .ko { + background-color: var(--gatling-danger-color); + -webkit-border-radius: var(--gatling-border-radius); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); +} + +.schema-container { + display: flex; + align-items: center; + justify-content: space-between; + gap: var(--gatling-spacing-layout); +} + +.schema { + background: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); +} + +.ranges { + height: 375px; + width: 500px; +} + +.ranges-large { + height: 375px; + width: 530px; +} + +.geant { + height: 362px; +} + +.extensible-geant { + width: 100%; +} + +.polar { + height: 375px; + width: 230px; +} + +.chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .chart_title { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); + font-size: var(--gatling-font-size-heading); + padding: 2px var(--gatling-spacing); +} + +html[data-theme="dark"] .highcharts-background { + fill: var(--gatling-background-light-color); +} + +html[data-theme="dark"] .highcharts-button-normal rect { + fill: var(--gatling-background-color) !important; +} + +html[data-theme="dark"] .highcharts-button-disabled rect { + fill: var(--gatling-background-light-color) !important; +} + +html[data-theme="dark"] .highcharts-button-pressed rect { + fill: var(--gatling-orange-color) !important; +} + +html[data-theme="dark"] .highcharts-axis text, +html[data-theme="dark"] .highcharts-axis-labels text, +html[data-theme="dark"] .highcharts-button text, +html[data-theme="dark"] .highcharts-legend-item text, +html[data-theme="dark"] .highcharts-range-selector-buttons text { + fill: var(--gatling-text-color) !important; +} + +.statistics { + display: flex; + flex-direction: column; + + background-color: var(--gatling-background-light-color); + border-radius: var(--gatling-border-radius); + border-collapse: collapse; + color: var(--gatling-text-color); + max-height: 100%; +} + +.statistics .title { + display: flex; + text-align: center; + justify-content: space-between; + + min-height: 49.5px; + box-sizing: border-box; + + border: 1px solid var(--gatling-border-color); + color: var(--gatling-text-color); + font-size: var(--gatling-font-size-heading); + font-weight: var(--gatling-font-weight-bold); + padding: var(--gatling-spacing); +} + +.title_base { + display: flex; + align-items: center; + text-align: left; + user-select: none; +} + +.title_base_stats { + color: var(--gatling-text-color); + margin-right: 20px; +} + +.toggle-table { + position: relative; + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: 25px; + width: 40px; + height: 20px; + margin: 0 var(--gatling-spacing-small); +} + +.toggle-table::before { + position: absolute; + top: calc(50% - 9px); + left: 1px; + content: ""; + width: 50%; + height: 18px; + border-radius: 50%; + background-color: var(--gatling-text-color); +} + +.toggle-table.off::before { + left: unset; + right: 1px; +} + +.title_expanded { + cursor: pointer; + color: var(--gatling-text-color); +} + +.expand-table, +.collapse-table { + font-size: var(--gatling-font-size-secondary); + font-weight: var(--gatling-font-weight-normal); +} + +.title_expanded span.expand-table { + color: var(--gatling-gray-medium-color); +} + +.title_collapsed { + cursor: pointer; + color: var(--gatling-text-color); +} + +.title_collapsed span.collapse-table { + color: var(--gatling-gray-medium-color); +} + +#container_statistics_head { + position: sticky; + top: -1px; + + background: var(--gatling-background-light-color); + margin-top: -1px; + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); +} + +#container_statistics_body { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + margin-top: -1px; + padding: 0px var(--gatling-spacing-small) var(--gatling-spacing-small) var(--gatling-spacing-small); +} + +#container_errors { + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small); + margin-top: -1px; +} + +#container_assertions { + background-color: var(--gatling-background-light-color); + border-bottom-left-radius: var(--gatling-border-radius); + border-bottom-right-radius: var(--gatling-border-radius); + padding: var(--gatling-spacing-small); + margin-top: -1px; +} + +.statistics-in { + border-spacing: var(--gatling-spacing-small); + border-collapse: collapse; + margin: 0; +} + +.statistics .scrollable { + max-height: 100%; + overflow-y: auto; +} + +#statistics_table_container .statistics .scrollable { + max-height: 785px; +} + +.statistics-in a { + color: var(--gatling-text-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .header { + border-radius: var(--gatling-border-radius); + border: 1px solid var(--gatling-border-color); + font-size: var(--gatling-font-size-default); + font-weight: var(--gatling-font-weight-bold); + text-align: center; + padding: var(--gatling-spacing-small); +} + +.sortable { + cursor: pointer; +} + +.sortable span::after { + content: ''; + display: inline-block; + margin-left: 5px; + vertical-align: middle; + width: 12px; + height: 12px; + background: url('sort.svg'); + background-size: contain; +} + +.sorted-up span::after { + background: url('sort-up.svg'); + background-size: contain; +} + +.sorted-down span::after { + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .sortable span::after { + filter: invert(0.9); +} + +.executions::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 14px; + height: 14px; + background: url('executions.svg'); + background-size: contain; +} + +.response-time::before { + content: ''; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; + vertical-align: middle; + width: 16px; + height: 16px; + background: url('time.svg'); + background-size: contain; +} + +html[data-theme="dark"] .executions::before, +html[data-theme="dark"] .response-time::before { + filter: invert(0.9); +} + +.statistics-in td { + background-color: var(--gatling-light-color); + border: 1px solid var(--gatling-border-color); + padding: var(--gatling-spacing-small); + min-width: 50px; +} + +.statistics-in .col-1 { + width: 175px; + max-width: 175px; +} +@media screen and (min-width: 1200px) { + .statistics-in .col-1 { + width: 50%; + } +} + +.expandable-container { + display: flex; + flex-direction: row; + box-sizing: border-box; + max-width: 100%; +} + +.statistics-in .value { + text-align: right; + width: 50px; +} + +.statistics-in .total { + color: var(--gatling-text-color); +} + +.statistics-in .col-2 { + background-color: var(--gatling-total-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .error-col-1 { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); +} + +.statistics-in .error-col-2 { + text-align: center; +} + +.statistics-in .ok { + background-color: var(--gatling-success-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .ko { + background-color: var(--gatling-danger-color); + color: var(--gatling-light-color); + font-weight: var(--gatling-font-weight-bold); +} + +.statistics-in .expand-button { + padding-left: var(--gatling-spacing); + cursor: pointer; +} + +.expand-button.hidden { + background: none; + cursor: default; +} + +.statistics-button { + background-color: var(--gatling-light-color); + color: var(--gatling-text-color); + padding: var(--gatling-spacing-small) var(--gatling-spacing); + border: 1px solid var(--gatling-border-color); + border-radius: var(--gatling-border-radius); +} + +#statistics_full_screen{ + padding: var(--gatling-spacing-small); +} + +#statistics_full_screen > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] #statistics_full_screen > img { + filter: invert(0.9); +} + +#statistics_full_screen:disabled { + display: none; +} + +.statistics-button:hover:not(:disabled) { + cursor: pointer; + background-color: var(--gatling-hover-color); +} + +.statistics-in .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('expand.svg'); + background-size: contain; +} + +.statistics-in .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + width: 2px; + height: 10px; + background: url('sort-down.svg'); + background-size: contain; +} + +html[data-theme="dark"] .statistics-in .expand-button.collapse, +html[data-theme="dark"] .statistics-in .expand-button.expand { + filter: invert(0.9); +} + +.nav .expand-button { + padding: var(--gatling-spacing-small) var(--gatling-spacing); +} + +.nav .expand-button.expand { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('expand.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +.nav .expand-button.collapse { + content: ''; + display: inline-block; + vertical-align: middle; + height: 8px; + background: url('sort-down.svg') no-repeat; + background-size: contain; + cursor: pointer; + margin-top: 6px; +} + +html[data-theme="dark"] .nav .expand-button.expand, +html[data-theme="dark"] .nav .expand-button.collapse { + filter: invert(0.9); +} + +.right { + display: flex; + align-items: center; + gap: var(--gatling-spacing); + float: right; + font-size: var(--gatling-font-size-default); +} + +.withTooltip { + outline: none; +} + +.withTooltip:hover { + text-decoration: none; +} + +.withTooltip .tooltipContent { + position: absolute; + z-index: 10; + display: none; + + background: var(--gatling-orange-color); + -webkit-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + -moz-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2); + border-radius: var(--gatling-border-radius); + color: var(--gatling-light-color); + margin-top: -5px; + padding: var(--gatling-spacing-small); +} + +.withTooltip:hover .tooltipContent { + display: inline; +} + +.button-modal { + padding: var(--gatling-spacing-small); +} + +.button-modal > img { + width: 14px; + height: 14px; +} + +html[data-theme="dark"] .button-modal > img { + filter: invert(0.9); +} + +.statistics-table-modal { + background-color: var(--gatling-background-color); + height: calc(100% - 60px); + width: calc(100% - 60px); + border-radius: var(--gatling-border-radius); +} + +.statistics-table-modal::backdrop { + position: fixed; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + + background-color: rgba(100, 100, 100, 0.9); +} + +.statistics-table-modal-container { + display: flex; + flex-direction: column; + + width: 100%; + height: calc(100% - 35px); + overflow-x: auto; +} + +.button-modal { + cursor: pointer; + + height: 25px; + width: 25px; + + border: 1px solid var(--gatling-border-color); + background-color: var(--gatling-light-color); + border-radius: var(--gatling-border-radius); + color: var(--gatling-text-color); +} + +.button-modal:hover { + background-color: var(--gatling-background-color); +} + +.statistics-table-modal-header { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-bottom: var(--gatling-spacing); +} + +.statistics-table-modal-content { + flex: 1; + overflow-y: auto; + min-width: 1050px; +} + +.statistics-table-modal-footer { + display: flex; + align-items: flex-end; + justify-content: flex-end; + + padding-top: var(--gatling-spacing); +}